agilidee-devise 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +14 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +3 -0
  5. data/Rakefile +2 -0
  6. data/app/helpers/agilidee_devise/application_helper.rb +32 -0
  7. data/app/views/devise/confirmations/new.html.slim +11 -0
  8. data/app/views/devise/mailer/confirmation_instructions.html.slim +3 -0
  9. data/app/views/devise/mailer/reset_password_instructions.html.slim +5 -0
  10. data/app/views/devise/mailer/unlock_instructions.html.slim +4 -0
  11. data/app/views/devise/passwords/edit.html.slim +17 -0
  12. data/app/views/devise/passwords/new.html.slim +11 -0
  13. data/app/views/devise/registrations/edit.html.slim +30 -0
  14. data/app/views/devise/registrations/new.html.slim +19 -0
  15. data/app/views/devise/sessions/new.html.slim +19 -0
  16. data/app/views/devise/shared/_links.html.slim +24 -0
  17. data/app/views/devise/unlocks/new.html.slim +11 -0
  18. data/config/locales/af.yml +120 -0
  19. data/config/locales/ar.yml +124 -0
  20. data/config/locales/az.yml +118 -0
  21. data/config/locales/bg.yml +120 -0
  22. data/config/locales/bn.yml +120 -0
  23. data/config/locales/bs.yml +122 -0
  24. data/config/locales/ca.yml +120 -0
  25. data/config/locales/cs.yml +121 -0
  26. data/config/locales/da.yml +120 -0
  27. data/config/locales/de-CH.yml +122 -0
  28. data/config/locales/de.yml +120 -0
  29. data/config/locales/el.yml +120 -0
  30. data/config/locales/en-GB.yml +120 -0
  31. data/config/locales/en.yml +120 -0
  32. data/config/locales/es-AR.yml +51 -0
  33. data/config/locales/es-ES.yml +59 -0
  34. data/config/locales/es-MX.yml +120 -0
  35. data/config/locales/es.yml +120 -0
  36. data/config/locales/et.yml +120 -0
  37. data/config/locales/fa.yml +120 -0
  38. data/config/locales/fi.yml +120 -0
  39. data/config/locales/fr-CA.yml +120 -0
  40. data/config/locales/fr.yml +121 -0
  41. data/config/locales/he.yml +120 -0
  42. data/config/locales/hr.yml +122 -0
  43. data/config/locales/hu.yml +120 -0
  44. data/config/locales/id.yml +118 -0
  45. data/config/locales/is.yml +120 -0
  46. data/config/locales/it.yml +120 -0
  47. data/config/locales/ja.yml +120 -0
  48. data/config/locales/ko.yml +118 -0
  49. data/config/locales/lt.yml +121 -0
  50. data/config/locales/lv.yml +121 -0
  51. data/config/locales/my.yml +118 -0
  52. data/config/locales/nb.yml +120 -0
  53. data/config/locales/nl.yml +120 -0
  54. data/config/locales/nn-NO.yml +120 -0
  55. data/config/locales/no.yml +120 -0
  56. data/config/locales/pl.yml +122 -0
  57. data/config/locales/pt-BR.yml +120 -0
  58. data/config/locales/pt.yml +120 -0
  59. data/config/locales/ro.yml +121 -0
  60. data/config/locales/ru.yml +122 -0
  61. data/config/locales/sk.yml +121 -0
  62. data/config/locales/sl.yml +128 -0
  63. data/config/locales/sr-RS.yml +122 -0
  64. data/config/locales/sr.yml +122 -0
  65. data/config/locales/sv.yml +120 -0
  66. data/config/locales/th.yml +118 -0
  67. data/config/locales/tr.yml +118 -0
  68. data/config/locales/uk.yml +122 -0
  69. data/config/locales/vi.yml +120 -0
  70. data/config/locales/zh-CN.yml +120 -0
  71. data/config/locales/zh-HK.yml +118 -0
  72. data/config/locales/zh-TW.yml +120 -0
  73. data/lib/agilidee-devise/engine.rb +6 -0
  74. data/lib/agilidee-devise/version.rb +3 -0
  75. data/lib/agilidee-devise.rb +4 -0
  76. metadata +132 -0
@@ -0,0 +1,120 @@
1
+ zh-TW:
2
+ activerecord:
3
+ attributes:
4
+ user:
5
+ current_password: "當前密碼"
6
+ email: "電子郵箱"
7
+ password: "密碼"
8
+ password_confirmation: "密碼確認"
9
+ remember_me: "記憶登入訊息"
10
+ reset_password_token:
11
+ unlock_token:
12
+ models:
13
+ user: "用戶"
14
+ devise:
15
+ confirmations:
16
+ confirmed: "您的帳號已通過驗證,現在您已成功登入。"
17
+ new:
18
+ resend_confirmation_instructions: "重新發送確認信"
19
+ send_instructions: "您將在幾分鐘後收到一封電子郵件,內有驗證帳號的步驟說明。"
20
+ send_paranoid_instructions: "如果我們有您的信箱,您將會收到一封驗證您的帳號的電子郵件。"
21
+ failure:
22
+ already_authenticated: "您已經登入。"
23
+ inactive: "您的帳號尚未被啟用。"
24
+ invalid: "信箱或密碼是無效的。"
25
+ last_attempt: "您還有最後一次嘗試機會,再次失敗您的帳號將會被鎖定。"
26
+ locked: "您的帳號已被鎖定。"
27
+ not_found_in_database: "信箱或密碼是無效的。"
28
+ timeout: "您的登入時效過期,請重新登入。"
29
+ unauthenticated: "您需要先登入或註冊後才能繼續。"
30
+ unconfirmed: "您的帳號需需要經過驗證後,才能繼續。"
31
+ mailer:
32
+ confirmation_instructions:
33
+ action: "確認帳號"
34
+ greeting: "%{recipient} 你好!"
35
+ instruction: "您可以利用下面的連結確認您的帳戶的電子郵件:"
36
+ subject: "帳號驗證步驟"
37
+ password_change:
38
+ greeting: "你好 %{recipient}!"
39
+ message: "它會通知您,您的密碼已被更改。"
40
+ subject: "密碼已更改"
41
+ reset_password_instructions:
42
+ action: "更改我的密碼"
43
+ greeting: "你好 %{recipient}!"
44
+ instruction: "有人要求更改密碼的連結,你可以利用下面的連結更改密碼。"
45
+ instruction_2: "如果你沒有要求,請忽略此電子郵件。"
46
+ instruction_3: "如果你沒有進入上面的連結,並建立新的密碼,你的密碼不會被改變。"
47
+ subject: "密碼重設步驟"
48
+ unlock_instructions:
49
+ action: "帳戶解鎖"
50
+ greeting: "你好 %{recipient}!"
51
+ instruction: "點擊下面的連結到您的帳戶進行解鎖:"
52
+ message: "由於多次的不成功的登入嘗試,您的帳戶已被鎖定。"
53
+ subject: "帳號解鎖步驟"
54
+ omniauth_callbacks:
55
+ failure: 無法從 %{kind} 驗證,因為 "%{reason}"。
56
+ success: "成功從 %{kind} 驗證。"
57
+ passwords:
58
+ edit:
59
+ change_my_password: "更改我的密碼"
60
+ change_your_password: "更改您的密碼"
61
+ confirm_new_password: "確認新密碼"
62
+ new_password: "新密碼"
63
+ new:
64
+ forgot_your_password: "忘記密碼?"
65
+ send_me_reset_password_instructions: "請寄重設密碼的說明信件給我"
66
+ no_token: "這是密碼重設頁面,僅能透過密碼重設信件進入。如果您是透過重設信件進入的,請確認您的網址是完整的。"
67
+ send_instructions: "您將在幾分鐘後收到一封電子郵件,內有重新設定密碼的步驟說明。"
68
+ send_paranoid_instructions: "如果我們有您的信箱,您將會收到一封內含可重新設定密碼連結的電子郵件。"
69
+ updated: "您的密碼已被修改,您現在已經登入。"
70
+ updated_not_active: "您的密碼已被修改。"
71
+ registrations:
72
+ destroyed: "再會!您的帳號已被取消。有緣再會。"
73
+ edit:
74
+ are_you_sure: "你確定嗎?"
75
+ cancel_my_account: "取消我的帳戶"
76
+ currently_waiting_confirmation_for_email: "等待 %{email} 的確認"
77
+ leave_blank_if_you_don_t_want_to_change_it: "不想修改的話就不需要填寫這個欄位"
78
+ title: "修改 %{resource}"
79
+ unhappy: "不喜歡"
80
+ update: "更新"
81
+ we_need_your_current_password_to_confirm_your_changes: "我們需要您的目前的密碼以確認您的更改"
82
+ new:
83
+ sign_up: "註冊"
84
+ signed_up: "註冊成功,歡迎!"
85
+ signed_up_but_inactive: "您已註冊成功。然而因為您的帳號尚未啓動,暫時無法登入,抱歉!"
86
+ signed_up_but_locked: "您已註冊成功。 然而因為您的帳號已被鎖定,暫時無法登入,抱歉!"
87
+ signed_up_but_unconfirmed: "確認信件已送至您的 Email 信箱,請點擊信件內連結以啓動您的帳號。"
88
+ update_needs_confirmation: "您已經成功的更新帳號資訊,但我們仍需確認您的電子信箱,請至新信箱收信並點擊連結以確認您的新電子郵件帳號。"
89
+ updated: "您已經成功的更新帳號資訊。"
90
+ sessions:
91
+ already_signed_out: "成功登出了。"
92
+ new:
93
+ sign_in: "登入"
94
+ signed_in: "成功登入了。"
95
+ signed_out: "成功登出了。"
96
+ shared:
97
+ links:
98
+ back: "返回"
99
+ didn_t_receive_confirmation_instructions: "沒有收到確認信件?"
100
+ didn_t_receive_unlock_instructions: "沒有收到解鎖信件?"
101
+ forgot_your_password: "忘記密碼?"
102
+ sign_in: "登入"
103
+ sign_in_with_provider: "用 %{provider} 登入"
104
+ sign_up: "註冊"
105
+ unlocks:
106
+ new:
107
+ resend_unlock_instructions: "重發解鎖說明信件"
108
+ send_instructions: "您將在幾分鐘後收到一封電子郵件,內有將帳號解除鎖定的步驟說明。"
109
+ send_paranoid_instructions: "如果您的帳號已存在,您的電子信箱將會收到如何解鎖帳號的指示。"
110
+ unlocked: "您的帳號已被解鎖,現在已經登入。"
111
+ errors:
112
+ messages:
113
+ already_confirmed: "已經驗證,請直接登入。"
114
+ confirmation_period_expired: "必須在 %{period} 內驗證,請重新申請。"
115
+ expired: "已經過期,請重新申請。"
116
+ not_found: "找不到。"
117
+ not_locked: "並未被鎖定。"
118
+ not_saved:
119
+ one: "有一個錯誤導致 %{resource} 不能被儲存:"
120
+ other: "有 %{count} 個錯誤導致 %{resource} 不能被儲存:"
@@ -0,0 +1,6 @@
1
+ require "devise"
2
+
3
+ module AgilideeDevise
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module AgilideeDevise
2
+ VERSION = "1.0.0"
3
+ end
@@ -0,0 +1,4 @@
1
+ require "agilidee-devise/engine"
2
+
3
+ module AgilideeDevise
4
+ end
metadata ADDED
@@ -0,0 +1,132 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: agilidee-devise
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - agilidée
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-10-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: devise
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Agilidée Devise
28
+ email:
29
+ - contact@agilidee.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - CHANGELOG.md
35
+ - LICENSE.txt
36
+ - README.md
37
+ - Rakefile
38
+ - app/helpers/agilidee_devise/application_helper.rb
39
+ - app/views/devise/confirmations/new.html.slim
40
+ - app/views/devise/mailer/confirmation_instructions.html.slim
41
+ - app/views/devise/mailer/reset_password_instructions.html.slim
42
+ - app/views/devise/mailer/unlock_instructions.html.slim
43
+ - app/views/devise/passwords/edit.html.slim
44
+ - app/views/devise/passwords/new.html.slim
45
+ - app/views/devise/registrations/edit.html.slim
46
+ - app/views/devise/registrations/new.html.slim
47
+ - app/views/devise/sessions/new.html.slim
48
+ - app/views/devise/shared/_links.html.slim
49
+ - app/views/devise/unlocks/new.html.slim
50
+ - config/locales/af.yml
51
+ - config/locales/ar.yml
52
+ - config/locales/az.yml
53
+ - config/locales/bg.yml
54
+ - config/locales/bn.yml
55
+ - config/locales/bs.yml
56
+ - config/locales/ca.yml
57
+ - config/locales/cs.yml
58
+ - config/locales/da.yml
59
+ - config/locales/de-CH.yml
60
+ - config/locales/de.yml
61
+ - config/locales/el.yml
62
+ - config/locales/en-GB.yml
63
+ - config/locales/en.yml
64
+ - config/locales/es-AR.yml
65
+ - config/locales/es-ES.yml
66
+ - config/locales/es-MX.yml
67
+ - config/locales/es.yml
68
+ - config/locales/et.yml
69
+ - config/locales/fa.yml
70
+ - config/locales/fi.yml
71
+ - config/locales/fr-CA.yml
72
+ - config/locales/fr.yml
73
+ - config/locales/he.yml
74
+ - config/locales/hr.yml
75
+ - config/locales/hu.yml
76
+ - config/locales/id.yml
77
+ - config/locales/is.yml
78
+ - config/locales/it.yml
79
+ - config/locales/ja.yml
80
+ - config/locales/ko.yml
81
+ - config/locales/lt.yml
82
+ - config/locales/lv.yml
83
+ - config/locales/my.yml
84
+ - config/locales/nb.yml
85
+ - config/locales/nl.yml
86
+ - config/locales/nn-NO.yml
87
+ - config/locales/no.yml
88
+ - config/locales/pl.yml
89
+ - config/locales/pt-BR.yml
90
+ - config/locales/pt.yml
91
+ - config/locales/ro.yml
92
+ - config/locales/ru.yml
93
+ - config/locales/sk.yml
94
+ - config/locales/sl.yml
95
+ - config/locales/sr-RS.yml
96
+ - config/locales/sr.yml
97
+ - config/locales/sv.yml
98
+ - config/locales/th.yml
99
+ - config/locales/tr.yml
100
+ - config/locales/uk.yml
101
+ - config/locales/vi.yml
102
+ - config/locales/zh-CN.yml
103
+ - config/locales/zh-HK.yml
104
+ - config/locales/zh-TW.yml
105
+ - lib/agilidee-devise.rb
106
+ - lib/agilidee-devise/engine.rb
107
+ - lib/agilidee-devise/version.rb
108
+ homepage: https://github.com/agilidee/agilidee-devise
109
+ licenses:
110
+ - MIT
111
+ metadata: {}
112
+ post_install_message:
113
+ rdoc_options: []
114
+ require_paths:
115
+ - lib
116
+ required_ruby_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ required_rubygems_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ requirements: []
127
+ rubyforge_project:
128
+ rubygems_version: 2.6.13
129
+ signing_key:
130
+ specification_version: 4
131
+ summary: Agilidée Devise
132
+ test_files: []