2013-06-12 15:59:58 +00:00
|
|
|
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2012-05-18 14:24:00 +00:00
|
|
|
class TranslationsController < ApplicationController
|
|
|
|
before_filter :authentication_check, :except => [:load]
|
|
|
|
|
|
|
|
# GET /translations/:lang
|
|
|
|
def load
|
2013-08-06 08:18:50 +00:00
|
|
|
render :json => Translation.list( params[:locale] )
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /translations
|
|
|
|
def index
|
2012-09-20 12:08:02 +00:00
|
|
|
model_index_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /translations/1
|
|
|
|
def show
|
2012-09-20 12:08:02 +00:00
|
|
|
model_show_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# POST /translations
|
|
|
|
def create
|
2012-09-20 12:08:02 +00:00
|
|
|
model_create_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# PUT /translations/1
|
|
|
|
def update
|
2012-09-20 12:08:02 +00:00
|
|
|
model_update_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# DELETE /translations/1
|
|
|
|
def destroy
|
2012-09-20 12:08:02 +00:00
|
|
|
model_destory_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
2013-08-06 08:18:50 +00:00
|
|
|
end
|