refinerycms-authentication 0.9.9.8 → 0.9.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/config/locales/jp.yml +72 -0
- data/refinerycms-authentication.gemspec +4 -3
- metadata +4 -3
@@ -0,0 +1,72 @@
|
|
1
|
+
jp:
|
2
|
+
plugins:
|
3
|
+
refinery_users:
|
4
|
+
title: ユーザ
|
5
|
+
description: ユーザ管理
|
6
|
+
admin:
|
7
|
+
users:
|
8
|
+
delete: ユーザを削除
|
9
|
+
edit: 変更
|
10
|
+
update:
|
11
|
+
cannot_remove_user_plugin_from_current_user: 現在使用中のアカウントから'ユーザ'プラグインを削除する事は出来ません。
|
12
|
+
form:
|
13
|
+
blank_password_keeps_current: 空にしておくと現在のパスワードがそのまま保存されます。
|
14
|
+
plugin_access: プラグインアクセス
|
15
|
+
role_access: ロールアクセス
|
16
|
+
enable_all: 全てを有効にする
|
17
|
+
actions:
|
18
|
+
create_new_user: ユーザの新規作成
|
19
|
+
user:
|
20
|
+
email_user: このユーザにメールを送信
|
21
|
+
preview: '(%{who}) により %{created_at} に作成されました。'
|
22
|
+
sessions:
|
23
|
+
new:
|
24
|
+
hello_please_sign_in: サインインして下さい
|
25
|
+
sign_in: サインイン
|
26
|
+
forgot_password: パスワードを無くしました
|
27
|
+
users:
|
28
|
+
setup_website_name_html: "サイトに名前を付けます。<a href='%{link}' name='%{title}'>ここ</a>をクリックして下さい。"
|
29
|
+
new:
|
30
|
+
fill_form: 記入して下さい。
|
31
|
+
sign_up: サインアップ
|
32
|
+
create:
|
33
|
+
welcome: '%{who}さん、Refineryへようこそ。'
|
34
|
+
forgot:
|
35
|
+
email_address: メールアドレス
|
36
|
+
enter_email_address: メールアドレスを記入して下さい。
|
37
|
+
reset_password: パスワードのリセット
|
38
|
+
blank_email: メールアドレス欄が空欄です
|
39
|
+
email_not_associated_with_account_html: "「%{email}」は記録に無いアドレスです。<br />今一度確認して下さい。"
|
40
|
+
email_reset_sent: パスワードをリセットする為のリンクをメールで送信しました。
|
41
|
+
password_encryption: パスワードの暗号が強化されましたので、パスワードをリセットする必要があります。
|
42
|
+
reset:
|
43
|
+
code_invalid: "リセット用のコードは失効したか、無効です。メールに書かれているリンクをコピーするか、パスワードのリセット手続きを初めからやり直して下さい。"
|
44
|
+
successful: "「%{email}」のパスワードは正しくリセットされました。"
|
45
|
+
pick_new_password_for: "%{email}の新しいパスワードを入れて下さい。"
|
46
|
+
reset_password: パスワードをリセット
|
47
|
+
user_mailer:
|
48
|
+
reset_notification:
|
49
|
+
subject: パスワードをリセットして下さい
|
50
|
+
reset_request_received_for: "%{username}のパスワード変更依頼がありました。"
|
51
|
+
visit_this_url: ここをクリックしてパスワードを更新して下さい。
|
52
|
+
remain_same_if_no_action: 何もしなければパスワードの変更はありません。
|
53
|
+
devise:
|
54
|
+
failure:
|
55
|
+
unauthenticated: サインインして下さい。
|
56
|
+
invalid: ログイン、またはパスワードが違います。
|
57
|
+
sessions:
|
58
|
+
signed_in: サインインしました。
|
59
|
+
roles:
|
60
|
+
superuser: 管理人
|
61
|
+
refinery: Refinery
|
62
|
+
activerecord:
|
63
|
+
models:
|
64
|
+
user: ユーザ
|
65
|
+
attributes:
|
66
|
+
user:
|
67
|
+
login: ログイン
|
68
|
+
username: アカウント名
|
69
|
+
password: パスワード
|
70
|
+
password_confirmation: パスワードの確認
|
71
|
+
email: メールアドレス
|
72
|
+
remember_me: ユーザ情報を記憶する
|
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{refinerycms-authentication}
|
5
|
-
s.version = %q{0.9.9.
|
5
|
+
s.version = %q{0.9.9.9}
|
6
6
|
s.summary = %q{Authentication engine for Refinery CMS}
|
7
7
|
s.description = %q{The default authentication engine for Refinery CMS}
|
8
|
-
s.date = %q{2011-03-
|
8
|
+
s.date = %q{2011-03-15}
|
9
9
|
s.email = %q{info@refinerycms.com}
|
10
10
|
s.homepage = %q{http://refinerycms.com}
|
11
11
|
s.rubyforge_project = %q{refinerycms}
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.require_paths = %w(lib)
|
15
15
|
s.executables = %w()
|
16
16
|
|
17
|
-
s.add_dependency 'refinerycms-core', '~> 0.9.9.
|
17
|
+
s.add_dependency 'refinerycms-core', '~> 0.9.9.9'
|
18
18
|
s.add_dependency 'devise', '~> 1.1'
|
19
19
|
|
20
20
|
s.files = [
|
@@ -68,6 +68,7 @@ Gem::Specification.new do |s|
|
|
68
68
|
'config/locales/es.yml',
|
69
69
|
'config/locales/fr.yml',
|
70
70
|
'config/locales/it.yml',
|
71
|
+
'config/locales/jp.yml',
|
71
72
|
'config/locales/lolcat.yml',
|
72
73
|
'config/locales/lt.yml',
|
73
74
|
'config/locales/lv.yml',
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: refinerycms-authentication
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.9.9.
|
5
|
+
version: 0.9.9.9
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Resolve Digital
|
@@ -13,7 +13,7 @@ autorequire:
|
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
15
|
|
16
|
-
date: 2011-03-
|
16
|
+
date: 2011-03-15 00:00:00 +13:00
|
17
17
|
default_executable:
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
@@ -24,7 +24,7 @@ dependencies:
|
|
24
24
|
requirements:
|
25
25
|
- - ~>
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.9.9.
|
27
|
+
version: 0.9.9.9
|
28
28
|
type: :runtime
|
29
29
|
version_requirements: *id001
|
30
30
|
- !ruby/object:Gem::Dependency
|
@@ -81,6 +81,7 @@ files:
|
|
81
81
|
- config/locales/es.yml
|
82
82
|
- config/locales/fr.yml
|
83
83
|
- config/locales/it.yml
|
84
|
+
- config/locales/jp.yml
|
84
85
|
- config/locales/lolcat.yml
|
85
86
|
- config/locales/lt.yml
|
86
87
|
- config/locales/lv.yml
|