Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add japanese locale #69

Merged
merged 1 commit into from
Jan 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions config/locales/ja.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
ja:
errors:
messages:
taken_in_past: 'は既に使われています。'
equal_to_current_password: 'は現在のパスワードと異なるものである必要があります。'
password_complexity:
digit:
one: は最低1つの数字を含む必要があります。
other: は最低%{count}つの数字を含む必要があります。
lower:
one: は最低1つの小文字英字を含む必要があります。
other: は最低%{count}つの小文字英字を含む必要があります。
symbol:
one: は最低1つの記号を含む必要があります。
other: は最低%{count}つの記号を含む必要があります。
upper:
one: は最低1つの大文字英字を含む必要があります。
other: は最低%{count}つの大文字英字を含む必要があります。
devise:
invalid_captcha: 'キャプチャ入力が不正です。'
invalid_security_question: 'セキュリティ質問に対すつ回答が不正です。'
paranoid_verify:
code_required: 'サポートチームに提供された認証コードを入力してください。'
password_expired:
updated: '新しいパスワードが保存されました。'
change_required: 'パスワードが期限切れです。パスワードを新しく設定してください。'
failure:
session_limited: '他のブラウザでログインされました。このブラウザで続ける場合は、もう一度サインインしてください。'
expired: '活動がなかったため、あなたのアカウントは期限切れとなりました。サイト管理者に連絡してください。'
2 changes: 1 addition & 1 deletion lib/generators/devise_security/install_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module DeviseSecurity
module Generators
# Generator for Rails to create or append to a Devise initializer.
class InstallGenerator < Rails::Generators::Base
LOCALES = %w[en es de fr it tr].freeze
LOCALES = %w[en es de fr it ja tr].freeze

source_root File.expand_path('../../templates', __FILE__)
desc 'Install the devise security extension'
Expand Down
1 change: 1 addition & 0 deletions test/test_install_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class TestInstallGenerator < Rails::Generators::TestCase
assert_file 'config/locales/devise.security_extension.es.yml'
assert_file 'config/locales/devise.security_extension.fr.yml'
assert_file 'config/locales/devise.security_extension.it.yml'
assert_file 'config/locales/devise.security_extension.ja.yml'
assert_file 'config/locales/devise.security_extension.tr.yml'
end
end