logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: db92eec876efc2d5b450b0c9c70d78091762fc4b
parent: 44969307c71bbd9caf21890b02a525910d1cf017
Author: alpaca-tc <alpaca-tc@alpaca.tc>
Date:   Thu,  4 May 2017 06:36:19 +0900

Localize 'throttled' (#2755)


Diffstat:

Mconfig/i18n-tasks.yml1+
Mconfig/initializers/rack_attack.rb2+-
Mconfig/locales/en.yml1+
Mconfig/locales/ja.yml1+
4 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/config/i18n-tasks.yml b/config/i18n-tasks.yml @@ -54,3 +54,4 @@ ignore_unused: - 'simple_form.{error_notification,required}.:' - 'errors.messages.*' - 'activerecord.errors.models.doorkeeper/*' + - 'errors.429' diff --git a/config/initializers/rack_attack.rb b/config/initializers/rack_attack.rb @@ -38,6 +38,6 @@ class Rack::Attack 'X-RateLimit-Reset' => (now + (match_data[:period] - now.to_i % match_data[:period])).iso8601(6), } - [429, headers, [{ error: 'Throttled' }.to_json]] + [429, headers, [{ error: I18n.t('errors.429') }.to_json]] end end diff --git a/config/locales/en.yml b/config/locales/en.yml @@ -223,6 +223,7 @@ en: '422': content: Security verification failed. Are you blocking cookies? title: Security verification failed + '429': Throttled exports: blocks: You block csv: CSV diff --git a/config/locales/ja.yml b/config/locales/ja.yml @@ -222,6 +222,7 @@ ja: '422': content: セキュリティ認証に失敗しました。Cookieをブロックしていませんか? title: セキュリティ認証に失敗 + '429': リクエストの制限に達しました。 exports: blocks: ブロック csv: CSV