2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-05-18 14:24:00 +00:00
|
|
|
class TranslationsController < ApplicationController
|
2020-03-19 09:39:51 +00:00
|
|
|
prepend_before_action -> { authentication_check && authorize! }, except: [:lang]
|
2012-05-18 14:24:00 +00:00
|
|
|
|
2015-04-12 08:41:59 +00:00
|
|
|
# GET /translations/lang/:locale
|
2015-11-18 13:27:46 +00:00
|
|
|
def lang
|
|
|
|
render json: Translation.lang(params[:locale])
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
2015-06-28 00:16:47 +00:00
|
|
|
# PUT /translations/push
|
|
|
|
def push
|
|
|
|
start = Time.zone.now
|
|
|
|
Translation.push(params[:locale])
|
2016-08-12 16:39:09 +00:00
|
|
|
if start > Time.zone.now - 4.seconds
|
|
|
|
sleep 3
|
2015-06-28 00:16:47 +00:00
|
|
|
end
|
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
2015-09-21 12:20:36 +00:00
|
|
|
# POST /translations/sync/:locale
|
2015-06-28 00:16:47 +00:00
|
|
|
def sync
|
2015-09-21 12:20:36 +00:00
|
|
|
Translation.load(params[:locale])
|
2015-06-28 00:16:47 +00:00
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
# POST /translations/reset
|
|
|
|
def reset
|
|
|
|
Translation.reset(params[:locale])
|
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
2015-04-12 08:41:59 +00:00
|
|
|
# GET /translations/admin/lang/:locale
|
|
|
|
def admin
|
2015-11-18 13:27:46 +00:00
|
|
|
render json: Translation.lang(params[:locale], true)
|
2015-04-12 08:41:59 +00:00
|
|
|
end
|
|
|
|
|
2012-05-18 14:24:00 +00:00
|
|
|
# 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
|
2016-11-30 10:30:03 +00:00
|
|
|
model_destroy_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|