translation_center 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/README.md +3 -2
  2. data/app/assets/stylesheets/translation_center/translation_keys.css +5 -0
  3. data/app/assets/stylesheets/translation_center/translations.css +0 -1
  4. data/app/helpers/translation_center/application_helper.rb +5 -0
  5. data/app/views/translation_center/translation_keys/_show.html.haml +2 -2
  6. data/app/views/translation_center/translation_keys/_show_keys.html.haml +5 -0
  7. data/app/views/translation_center/translations/_index.html.haml +1 -1
  8. data/app/views/translation_center/translations/_show.html.haml +9 -9
  9. data/lib/generators/translation_center/install/templates/config/translation_center.yml +1 -1
  10. data/lib/translation_center.rb +3 -0
  11. data/lib/translation_center/locale/en.yml +65 -0
  12. data/lib/translation_center/translation_helpers.rb +5 -3
  13. data/lib/translation_center/version.rb +1 -1
  14. data/test/dummy/app/assets/javascripts/{posts.js → articles.js} +0 -0
  15. data/test/dummy/app/assets/stylesheets/{posts.css → articles.css} +0 -0
  16. data/test/dummy/app/controllers/articles_controller.rb +85 -0
  17. data/test/dummy/app/helpers/articles_helper.rb +2 -0
  18. data/test/dummy/app/models/article.rb +5 -0
  19. data/test/dummy/app/models/user.rb +1 -5
  20. data/test/dummy/app/views/articles/_form.html.haml +16 -0
  21. data/test/dummy/app/views/articles/edit.html.haml +7 -0
  22. data/test/dummy/app/views/articles/index.html.haml +21 -0
  23. data/test/dummy/app/views/articles/new.html.haml +5 -0
  24. data/test/dummy/app/views/articles/show.html.haml +12 -0
  25. data/test/dummy/config/initializers/devise.rb +13 -5
  26. data/test/dummy/config/locales/devise.en.yml +48 -47
  27. data/test/dummy/config/locales/en.yml +0 -419
  28. data/test/dummy/config/routes.rb +4 -4
  29. data/test/dummy/config/translation_center.yml +45 -11
  30. data/test/dummy/db/migrate/{20121129070437_devise_create_users.rb → 20130410082611_devise_create_users.rb} +0 -1
  31. data/test/dummy/db/migrate/{20121121124501_create_posts.rb → 20130410082701_create_articles.rb} +2 -2
  32. data/test/dummy/db/migrate/{20121219092928182074_create_translation_center_categories.rb → 20130410084711234392_create_translation_center_categories.rb} +0 -0
  33. data/test/dummy/db/migrate/{20121219092928182741_create_translation_center_translation_keys.rb → 20130410084711235054_create_translation_center_translation_keys.rb} +0 -2
  34. data/test/dummy/db/migrate/{20121219092928183282_create_translation_center_translations.rb → 20130410084711235601_create_translation_center_translations.rb} +0 -0
  35. data/test/dummy/db/migrate/{20130103124224_install_audited.rb → 20130410084711235602_install_audited.rb} +0 -0
  36. data/test/dummy/db/migrate/{20130218091808_acts_as_votable_migration.rb → 20130410084711_acts_as_votable_migration.rb} +0 -0
  37. data/test/dummy/db/migrate/20130410113111070575_add_de_status_translation_center_translation_keys.rb +5 -0
  38. data/test/dummy/db/schema.rb +16 -18
  39. data/test/dummy/log/development.log +65885 -0
  40. data/test/dummy/test/fixtures/articles.yml +9 -0
  41. data/test/dummy/test/fixtures/users.yml +1 -1
  42. data/test/dummy/test/functional/articles_controller_test.rb +49 -0
  43. data/test/dummy/test/unit/article_test.rb +7 -0
  44. data/test/dummy/test/unit/helpers/articles_helper_test.rb +4 -0
  45. data/test/dummy/tmp/cache/assets/CD6/F30/sprockets%2F3d4924f68747fc1d600b4d7a0b181f20 +0 -0
  46. data/test/dummy/tmp/cache/assets/CDB/0B0/sprockets%2Fd44248d455dc32b5d0d0694193b9a3f3 +0 -0
  47. data/test/dummy/tmp/cache/assets/CEC/260/sprockets%2F5aac1d5511a4610034d1d00628abd48f +0 -0
  48. data/test/dummy/tmp/cache/assets/D20/350/sprockets%2F35207dd785a3f4e98ceeaf12894a5917 +0 -0
  49. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  50. data/test/dummy/tmp/cache/assets/D3D/A50/sprockets%2F117dc38b0a178661ba6d8ab89dcd3654 +0 -0
  51. data/test/dummy/tmp/cache/assets/D4D/010/sprockets%2Fec636c8534d9e6236a1cd8d7a45e94a7 +0 -0
  52. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  53. data/test/dummy/tmp/cache/assets/D7E/C10/sprockets%2Fd4ea295413a05aab4f4a3c04a380f3ca +0 -0
  54. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  55. data/test/dummy/tmp/cache/assets/D9C/E20/sprockets%2Fb865317c6a5e8d0a7287d5bbe5aeab34 +0 -0
  56. data/test/dummy/tmp/cache/assets/D9E/B80/sprockets%2F97e683d4fae31c45cfb5db8ad7151c31 +0 -0
  57. data/test/dummy/tmp/cache/assets/DA5/E10/sprockets%2F5832171b4dbe59aae921ccd70f9a9fd8 +0 -0
  58. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  59. data/test/dummy/tmp/pids/server.pid +1 -1
  60. metadata +55 -42
  61. data/test/dummy/app/controllers/posts_controller.rb +0 -84
  62. data/test/dummy/app/helpers/posts_helper.rb +0 -2
  63. data/test/dummy/app/models/post.rb +0 -3
  64. data/test/dummy/app/views/posts/_form.html.haml +0 -16
  65. data/test/dummy/app/views/posts/edit.html.haml +0 -7
  66. data/test/dummy/app/views/posts/index.html.haml +0 -22
  67. data/test/dummy/app/views/posts/new.html.haml +0 -5
  68. data/test/dummy/app/views/posts/show.html.haml +0 -12
  69. data/test/dummy/config/locales/ar.yml +0 -42
  70. data/test/dummy/config/locales/de.yml +0 -12
  71. data/test/dummy/db/migrate/20121219094037954653_add_ar_status_translation_center_translation_keys.rb +0 -5
@@ -1,58 +1,59 @@
1
1
  # Additional translations at https://github.com/plataformatec/devise/wiki/I18n
2
2
 
3
3
  en:
4
+ devise:
5
+ confirmations:
6
+ confirmed: "Your account was successfully confirmed. You are now signed in."
7
+ send_instructions: "You will receive an email with instructions about how to confirm your account in a few minutes."
8
+ send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes."
9
+ failure:
10
+ already_authenticated: "You are already signed in."
11
+ inactive: "Your account was not activated yet."
12
+ invalid: "Invalid email or password."
13
+ invalid_token: "Invalid authentication token."
14
+ locked: "Your account is locked."
15
+ not_found_in_database: "Invalid email or password."
16
+ timeout: "Your session expired, please sign in again to continue."
17
+ unauthenticated: "You need to sign in or sign up before continuing."
18
+ unconfirmed: "You have to confirm your account before continuing."
19
+ mailer:
20
+ confirmation_instructions:
21
+ subject: "Confirmation instructions"
22
+ reset_password_instructions:
23
+ subject: "Reset password instructions"
24
+ unlock_instructions:
25
+ subject: "Unlock Instructions"
26
+ omniauth_callbacks:
27
+ failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
28
+ success: "Successfully authenticated from %{kind} account."
29
+ passwords:
30
+ no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
31
+ send_instructions: "You will receive an email with instructions about how to reset your password in a few minutes."
32
+ send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
33
+ updated: "Your password was changed successfully. You are now signed in."
34
+ updated_not_active: "Your password was changed successfully."
35
+ registrations:
36
+ destroyed: "Bye! Your account was successfully cancelled. We hope to see you again soon."
37
+ signed_up: "Welcome! You have signed up successfully."
38
+ signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
39
+ signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
40
+ signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please open the link to activate your account."
41
+ update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address."
42
+ updated: "You updated your account successfully."
43
+ sessions:
44
+ signed_in: "Signed in successfully."
45
+ signed_out: "Signed out successfully."
46
+ unlocks:
47
+ send_instructions: "You will receive an email with instructions about how to unlock your account in a few minutes."
48
+ send_paranoid_instructions: "If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."
49
+ unlocked: "Your account has been unlocked successfully. Please sign in to continue."
4
50
  errors:
5
51
  messages:
52
+ already_confirmed: "was already confirmed, please try signing in"
53
+ confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
6
54
  expired: "has expired, please request a new one"
7
55
  not_found: "not found"
8
- already_confirmed: "was already confirmed, please try signing in"
9
56
  not_locked: "was not locked"
10
57
  not_saved:
11
58
  one: "1 error prohibited this %{resource} from being saved:"
12
59
  other: "%{count} errors prohibited this %{resource} from being saved:"
13
-
14
- devise:
15
- failure:
16
- already_authenticated: 'You are already signed in.'
17
- unauthenticated: 'You need to sign in or sign up before continuing.'
18
- unconfirmed: 'You have to confirm your account before continuing.'
19
- locked: 'Your account is locked.'
20
- invalid: 'Invalid email or password.'
21
- invalid_token: 'Invalid authentication token.'
22
- timeout: 'Your session expired, please sign in again to continue.'
23
- inactive: 'Your account was not activated yet.'
24
- sessions:
25
- signed_in: 'Signed in successfully.'
26
- signed_out: 'Signed out successfully.'
27
- passwords:
28
- send_instructions: 'You will receive an email with instructions about how to reset your password in a few minutes.'
29
- updated: 'Your password was changed successfully. You are now signed in.'
30
- updated_not_active: 'Your password was changed successfully.'
31
- send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
32
- no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
33
- confirmations:
34
- send_instructions: 'You will receive an email with instructions about how to confirm your account in a few minutes.'
35
- send_paranoid_instructions: 'If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes.'
36
- confirmed: 'Your account was successfully confirmed. You are now signed in.'
37
- registrations:
38
- signed_up: 'Welcome! You have signed up successfully.'
39
- signed_up_but_unconfirmed: 'A message with a confirmation link has been sent to your email address. Please open the link to activate your account.'
40
- signed_up_but_inactive: 'You have signed up successfully. However, we could not sign you in because your account is not yet activated.'
41
- signed_up_but_locked: 'You have signed up successfully. However, we could not sign you in because your account is locked.'
42
- updated: 'You updated your account successfully.'
43
- update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address."
44
- destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
45
- unlocks:
46
- send_instructions: 'You will receive an email with instructions about how to unlock your account in a few minutes.'
47
- unlocked: 'Your account has been unlocked successfully. Please sign in to continue.'
48
- send_paranoid_instructions: 'If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.'
49
- omniauth_callbacks:
50
- success: 'Successfully authenticated from %{kind} account.'
51
- failure: 'Could not authenticate you from %{kind} because "%{reason}".'
52
- mailer:
53
- confirmation_instructions:
54
- subject: 'Confirmation instructions'
55
- reset_password_instructions:
56
- subject: 'Reset password instructions'
57
- unlock_instructions:
58
- subject: 'Unlock Instructions'
@@ -1,420 +1 @@
1
- ---
2
1
  en:
3
- actions:
4
- are_you_sure: "Are you sure ?"
5
- activerecord:
6
- attributes: Attributes
7
- errors:
8
- messages:
9
- record_invalid: "Validation failed: %{errors}"
10
- taken: "has already been taken"
11
- models: Models
12
- attributes:
13
- content: Content
14
- email: Email
15
- password: Password
16
- remember_me: "Remember Me"
17
- title: Title
18
- date:
19
- abbr_day_names:
20
- - Sun
21
- - Mon
22
- - Tue
23
- - Wed
24
- - Thu
25
- - Fri
26
- - Sat
27
- abbr_month_names:
28
- - Jan
29
- - Feb
30
- - Mar
31
- - Apr
32
- - May
33
- - Jun
34
- - Jul
35
- - Aug
36
- - Sep
37
- - Oct
38
- - Nov
39
- - Dec
40
- day_names:
41
- - Sunday
42
- - Monday
43
- - Tuesday
44
- - Wednesday
45
- - Thursday
46
- - Friday
47
- - Saturday
48
- formats:
49
- default: "%Y-%m-%d"
50
- long: "%B %d, %Y"
51
- short: "%b %d"
52
- month_names:
53
- - January
54
- - February
55
- - March
56
- - April
57
- - May
58
- - June
59
- - July
60
- - August
61
- - September
62
- - October
63
- - November
64
- - December
65
- order:
66
- - year
67
- - month
68
- - day
69
- datetime:
70
- distance_in_words:
71
- about_x_hours:
72
- one: "about 1 hour"
73
- other: "about %{count} hours"
74
- about_x_months:
75
- one: "about 1 month"
76
- other: "about %{count} months"
77
- about_x_years:
78
- one: "about 1 year"
79
- other: "about %{count} years"
80
- almost_x_years:
81
- one: "almost 1 year"
82
- other: "almost %{count} years"
83
- half_a_minute: "half a minute"
84
- less_than_x_minutes:
85
- one: "less than a minute"
86
- other: "less than %{count} minutes"
87
- less_than_x_seconds:
88
- one: "less than 1 second"
89
- other: "less than %{count} seconds"
90
- over_x_years:
91
- one: "over 1 year"
92
- other: "over %{count} years"
93
- x_days:
94
- one: "1 day"
95
- other: "%{count} days"
96
- x_minutes:
97
- one: "1 minute"
98
- other: "%{count} minutes"
99
- x_months:
100
- one: "1 month"
101
- other: "%{count} months"
102
- x_seconds:
103
- one: "1 second"
104
- other: "%{count} seconds"
105
- prompts:
106
- day: Day
107
- hour: Hour
108
- minute: Minute
109
- month: Month
110
- second: Seconds
111
- year: Year
112
- devise:
113
- confirmations:
114
- confirmed: "Your account was successfully confirmed. You are now signed in."
115
- send_instructions: "You will receive an email with instructions about how to confirm your account in a few minutes."
116
- send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes."
117
- failure:
118
- already_authenticated: "You are already signed in."
119
- inactive: "Your account was not activated yet."
120
- invalid: "Invalid email or password."
121
- invalid_token: "Invalid authentication token."
122
- locked: "Your account is locked."
123
- not_found_in_database: "Invalid email or password."
124
- timeout: "Your session expired, please sign in again to continue."
125
- unauthenticated: "You need to sign in or sign up before continuing."
126
- unconfirmed: "You have to confirm your account before continuing."
127
- mailer:
128
- confirmation_instructions:
129
- subject: "Confirmation instructions"
130
- reset_password_instructions:
131
- subject: "Reset password instructions"
132
- unlock_instructions:
133
- subject: "Unlock Instructions"
134
- omniauth_callbacks:
135
- failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
136
- success: "Successfully authenticated from %{kind} account."
137
- passwords:
138
- no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
139
- send_instructions: "You will receive an email with instructions about how to reset your password in a few minutes."
140
- send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
141
- updated: "Your password was changed successfully. You are now signed in."
142
- updated_not_active: "Your password was changed successfully."
143
- registrations:
144
- destroyed: "Bye! Your account was successfully cancelled. We hope to see you again soon."
145
- signed_up: "Welcome! You have signed up successfully."
146
- signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
147
- signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
148
- signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please open the link to activate your account."
149
- update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address."
150
- updated: "You updated your account successfully."
151
- sessions:
152
- signed_in: "Signed in successfully."
153
- signed_out: "Signed out successfully."
154
- unlocks:
155
- send_instructions: "You will receive an email with instructions about how to unlock your account in a few minutes."
156
- send_paranoid_instructions: "If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."
157
- unlocked: "Your account has been unlocked successfully. Please sign in to continue."
158
- errors:
159
- format: "%{attribute} %{message}"
160
- messages:
161
- accepted: "must be accepted"
162
- already_confirmed: "was already confirmed, please try signing in"
163
- blank: "can't be blank"
164
- confirmation: "doesn't match confirmation"
165
- confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
166
- empty: "can't be empty"
167
- equal_to: "must be equal to %{count}"
168
- even: "must be even"
169
- exclusion: "is reserved"
170
- expired: "has expired, please request a new one"
171
- greater_than: "must be greater than %{count}"
172
- greater_than_or_equal_to: "must be greater than or equal to %{count}"
173
- inclusion: "is not included in the list"
174
- invalid: "is invalid"
175
- less_than: "must be less than %{count}"
176
- less_than_or_equal_to: "must be less than or equal to %{count}"
177
- not_a_number: "is not a number"
178
- not_an_integer: "must be an integer"
179
- not_found: "not found"
180
- not_locked: "was not locked"
181
- not_saved:
182
- one: "1 error prohibited this %{resource} from being saved:"
183
- other: "%{count} errors prohibited this %{resource} from being saved:"
184
- odd: "must be odd"
185
- too_long: "is too long (maximum is %{count} characters)"
186
- too_short: "is too short (minimum is %{count} characters)"
187
- wrong_length: "is the wrong length (should be %{count} characters)"
188
- helpers:
189
- button:
190
- create: "Create %{model}"
191
- submit: "Save %{model}"
192
- update: "Update %{model}"
193
- label:
194
- user:
195
- email: Email
196
- password: Password
197
- remember_me: "Remember Me"
198
- select:
199
- prompt: "Please select"
200
- submit:
201
- create: "Create %{model}"
202
- submit: "Save %{model}"
203
- update: "Update %{model}"
204
- layouts:
205
- translation_center:
206
- application:
207
- Translation_Center: "Translation Center"
208
- back_to_app: "Back To App"
209
- from: From
210
- to: To
211
- translate_to: "Translate To"
212
- meta_search:
213
- created_at_gteq: "Created At Gteq"
214
- or: or
215
- predicates:
216
- contains: "%{attribute} contains"
217
- does_not_contain: "%{attribute} doesn't contain"
218
- does_not_end_with: "%{attribute} doesn't end with"
219
- does_not_equal: "%{attribute} doesn't equal"
220
- does_not_start_with: "%{attribute} doesn't start with"
221
- ends_with: "%{attribute} ends with"
222
- equals: "%{attribute} equals"
223
- greater_than: "%{attribute} greater than"
224
- greater_than_or_equal_to: "%{attribute} greater than or equal to"
225
- in: "%{attribute} is one of"
226
- is_blank: "%{attribute} is blank"
227
- is_false: "%{attribute} is false"
228
- is_not_null: "%{attribute} isn't null"
229
- is_null: "%{attribute} is null"
230
- is_present: "%{attribute} is present"
231
- is_true: "%{attribute} is true"
232
- less_than: "%{attribute} less than"
233
- less_than_or_equal_to: "%{attribute} less than or equal to"
234
- not_in: "%{attribute} isn't one of"
235
- starts_with: "%{attribute} starts with"
236
- number:
237
- currency:
238
- format:
239
- delimiter: ","
240
- format: "%u%n"
241
- precision: 2
242
- separator: "."
243
- significant: false
244
- strip_insignificant_zeros: false
245
- unit: $
246
- format:
247
- delimiter: ","
248
- precision: 3
249
- separator: "."
250
- significant: false
251
- strip_insignificant_zeros: false
252
- human:
253
- decimal_units:
254
- format: "%n %u"
255
- units:
256
- billion: Billion
257
- million: Million
258
- quadrillion: Quadrillion
259
- thousand: Thousand
260
- trillion: Trillion
261
- unit: ""
262
- format:
263
- delimiter: ""
264
- precision: 3
265
- significant: true
266
- strip_insignificant_zeros: true
267
- storage_units:
268
- format: "%n %u"
269
- units:
270
- byte:
271
- one: Byte
272
- other: Bytes
273
- gb: GB
274
- kb: KB
275
- mb: MB
276
- tb: TB
277
- percentage:
278
- format:
279
- delimiter: ""
280
- precision:
281
- format:
282
- delimiter: ""
283
- post:
284
- content: Content
285
- posts:
286
- index:
287
- Content: Content
288
- Title: Title
289
- testing_new_keys: "Testing New Keys"
290
- search:
291
- created_at_gteq: "Created At Gteq"
292
- support:
293
- array:
294
- last_word_connector: ", and "
295
- two_words_connector: " and "
296
- words_connector: ", "
297
- time:
298
- am: am
299
- formats:
300
- default: "%a, %d %b %Y %H:%M:%S %z"
301
- long: "%B %d, %Y %H:%M"
302
- short: "%d %b %H:%M"
303
- pm: pm
304
- translation_center:
305
- back_to_app: "Back To App"
306
- categories:
307
- category:
308
- complete: complete
309
- keys: Keys
310
- translations_keys: "Translations Keys"
311
- index:
312
- Name: Name
313
- categories: Categories
314
- show: Show
315
- show:
316
- all: All
317
- name: Name
318
- pending: Pending
319
- translated: Translated
320
- untranslated: Untranslated
321
- center:
322
- activity:
323
- ago: Ago
324
- changes: Changes
325
- key: Key
326
- locale: Locale
327
- no_matches: "No Matches"
328
- time: Time
329
- user: User
330
- dashboard:
331
- activity: Activity
332
- ago: Ago
333
- all: All
334
- changes: Changes
335
- choose_filter: "Choose Filter"
336
- dashboard: Dashboard
337
- date: Date
338
- filter: Filter
339
- filter_by: "Filter By"
340
- key: Key
341
- language: Language
342
- locale: Locale
343
- pending: Pending
344
- progress: Progress
345
- reset: Reset
346
- search: Search
347
- search_by: "Search By"
348
- select_locale: "Select Locale"
349
- time: Time
350
- to: To
351
- translated: Translated
352
- untranslated: Untranslated
353
- user: User
354
- dashboard: Dashboard
355
- search_keys: "Search Keys"
356
- translate_to: "Translate To"
357
- translation_center: "Translation Center"
358
- translation_keys:
359
- destroyed_successfully: "Translation key was destroyed successfully"
360
- show:
361
- Add/Edit_Translation: "Add/Edit Translation"
362
- Add_Translation: "Add Translation"
363
- Translations: Translations
364
- back_to_category: "Back To"
365
- destroy: Destroy
366
- no_translations_available: "No Translations Available"
367
- show_keys:
368
- translated: Translated
369
- untranslated: Untranslated
370
- waiting_acceptance: "Waiting Acceptance"
371
- translation_keys:
372
- no_translation_keys: "No Translation Keys"
373
- untranslated: Untranslated
374
- translations:
375
- accept_translation:
376
- accept: Accept
377
- accepted: Accepted
378
- unaccept: Unaccept
379
- index:
380
- date: Date
381
- no_translations_available: "No Translations Available"
382
- ? "sort_by:"
383
- : "Sort By:"
384
- votes: Votes
385
- show:
386
- accept: Accept
387
- accepted: Accepted
388
- by: By
389
- ? "on"
390
- : "On"
391
- unvote: Unvote
392
- vote: Vote
393
- votes: Votes
394
- you: You
395
- unvote:
396
- vote: Vote
397
- vote:
398
- unvote: Unvote
399
- user:
400
- email: Email
401
- invalid: Invalid
402
- password: Password
403
- remember_me: "Remember Me"
404
- signed_in: "Signed In"
405
- unauthenticated: Unauthenticated
406
- will_paginate:
407
- next_label: "Next →"
408
- page_entries_info:
409
- multi_page: "Displaying %{model} %{from} - %{to} of %{count} in total"
410
- multi_page_html: "Displaying %{model} <b>%{from}&nbsp;-&nbsp;%{to}</b> of <b>%{count}</b> in total"
411
- single_page:
412
- one: "Displaying 1 %{model}"
413
- other: "Displaying all %{count} %{model}"
414
- zero: "No %{model} found"
415
- single_page_html:
416
- one: "Displaying <b>1</b> %{model}"
417
- other: "Displaying <b>all&nbsp;%{count}</b> %{model}"
418
- zero: "No %{model} found"
419
- page_gap: "&hellip;"
420
- previous_label: "&#8592; Previous"