solidus_i18n 1.2.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +35 -0
  3. data/.gem_release.yml +5 -0
  4. data/.github/stale.yml +17 -0
  5. data/.gitignore +4 -8
  6. data/.hound.yml +1 -1
  7. data/.rspec +2 -0
  8. data/.rubocop.yml +3 -6
  9. data/.rubocop_todo.yml +18 -0
  10. data/Gemfile +20 -10
  11. data/{LICENSE.md → LICENSE} +2 -2
  12. data/README.md +47 -46
  13. data/Rakefile +8 -24
  14. data/bin/console +17 -0
  15. data/bin/rails +12 -4
  16. data/bin/setup +8 -0
  17. data/config/locales/bg.yml +1 -47
  18. data/config/locales/ca.yml +12 -49
  19. data/config/locales/cs.yml +1 -48
  20. data/config/locales/da.yml +1 -47
  21. data/config/locales/de-CH.yml +0 -48
  22. data/config/locales/de.yml +408 -257
  23. data/config/locales/en-AU.yml +0 -48
  24. data/config/locales/en-GB.yml +1 -47
  25. data/config/locales/en-IN.yml +7 -53
  26. data/config/locales/en-NZ.yml +0 -48
  27. data/config/locales/es-CL.yml +1 -49
  28. data/config/locales/es-EC.yml +1 -47
  29. data/config/locales/es-MX.yml +417 -111
  30. data/config/locales/es.yml +27 -63
  31. data/config/locales/et.yml +0 -50
  32. data/config/locales/fa.yml +0 -48
  33. data/config/locales/fi.yml +1 -47
  34. data/config/locales/fr.yml +660 -264
  35. data/config/locales/id.yml +2 -46
  36. data/config/locales/it.yml +1196 -646
  37. data/config/locales/ja.yml +7 -53
  38. data/config/locales/ko.yml +0 -48
  39. data/config/locales/lv.yml +0 -48
  40. data/config/locales/nb.yml +0 -48
  41. data/config/locales/nl.yml +1 -47
  42. data/config/locales/pl.yml +1 -47
  43. data/config/locales/pt-BR.yml +1093 -251
  44. data/config/locales/pt.yml +0 -48
  45. data/config/locales/ro.yml +3 -48
  46. data/config/locales/ru.yml +1884 -1240
  47. data/config/locales/sk.yml +1 -45
  48. data/config/locales/sl-SI.yml +0 -48
  49. data/config/locales/sv.yml +1 -47
  50. data/config/locales/th.yml +1 -45
  51. data/config/locales/tr.yml +1 -45
  52. data/config/locales/uk.yml +1 -49
  53. data/config/locales/vi.yml +1 -45
  54. data/config/locales/zh-CN.yml +1 -45
  55. data/config/locales/zh-TW.yml +1 -45
  56. data/config/routes.rb +2 -8
  57. data/i18n-tasks.yml +4 -0
  58. data/lib/generators/solidus_i18n/install/install_generator.rb +10 -13
  59. data/lib/solidus_i18n/engine.rb +9 -36
  60. data/lib/solidus_i18n/factories.rb +4 -0
  61. data/lib/solidus_i18n/version.rb +3 -16
  62. data/lib/solidus_i18n.rb +4 -5
  63. data/lib/tasks/solidus_i18n/upgrade.rake +13 -11
  64. data/solidus_i18n.gemspec +29 -37
  65. data/spec/dummy/README.md +24 -0
  66. data/spec/dummy/Rakefile +6 -0
  67. data/spec/dummy/app/assets/config/manifest.js +2 -0
  68. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  69. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  70. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  71. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  72. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  73. data/spec/dummy/app/jobs/application_job.rb +7 -0
  74. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  75. data/spec/dummy/app/models/application_record.rb +3 -0
  76. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  77. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  78. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  79. data/spec/dummy/bin/rails +4 -0
  80. data/spec/dummy/bin/rake +4 -0
  81. data/spec/dummy/bin/setup +33 -0
  82. data/spec/dummy/config/application.rb +53 -0
  83. data/spec/dummy/config/boot.rb +6 -0
  84. data/spec/dummy/config/cable.yml +10 -0
  85. data/spec/dummy/config/credentials.yml.enc +1 -0
  86. data/spec/dummy/config/database.yml +12 -0
  87. data/spec/dummy/config/environment.rb +5 -0
  88. data/spec/dummy/config/environments/development.rb +76 -0
  89. data/spec/dummy/config/environments/production.rb +120 -0
  90. data/spec/dummy/config/environments/test.rb +36 -0
  91. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  92. data/spec/dummy/config/initializers/assets.rb +12 -0
  93. data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
  94. data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
  95. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  96. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  97. data/spec/dummy/config/initializers/inflections.rb +16 -0
  98. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  99. data/spec/dummy/config/initializers/permissions_policy.rb +11 -0
  100. data/spec/dummy/config/initializers/spree.rb +74 -0
  101. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  102. data/spec/dummy/config/locales/en.yml +33 -0
  103. data/spec/dummy/config/master.key +1 -0
  104. data/spec/dummy/config/routes.rb +9 -0
  105. data/spec/dummy/config/storage.yml +34 -0
  106. data/spec/dummy/config.ru +6 -0
  107. data/spec/dummy/db/migrate/20210218213814_create_active_storage_tables.active_storage.rb +36 -0
  108. data/spec/dummy/db/migrate/20210218213818_create_action_mailbox_tables.action_mailbox.rb +14 -0
  109. data/spec/dummy/db/migrate/20210218213819_create_action_text_tables.action_text.rb +14 -0
  110. data/spec/dummy/db/migrate/20210218213820_solidus_one_four.spree.rb +1103 -0
  111. data/spec/dummy/db/migrate/20210218213821_create_spree_wallet_payment_sources.spree.rb +28 -0
  112. data/spec/dummy/db/migrate/20210218213822_migrate_credit_cards_to_wallet_payment_sources.spree.rb +30 -0
  113. data/spec/dummy/db/migrate/20210218213823_remove_is_default_from_prices.spree.rb +8 -0
  114. data/spec/dummy/db/migrate/20210218213824_remove_currency_from_line_items.spree.rb +8 -0
  115. data/spec/dummy/db/migrate/20210218213825_add_available_to_columns_and_remove_display_on_from_payment_methods.spree.rb +31 -0
  116. data/spec/dummy/db/migrate/20210218213826_create_spree_promotion_code_batch.spree.rb +39 -0
  117. data/spec/dummy/db/migrate/20210218213827_add_available_to_users_and_remove_display_on_from_shipping_methods.spree.rb +23 -0
  118. data/spec/dummy/db/migrate/20210218213828_add_index_to_spree_payments_number.spree.rb +8 -0
  119. data/spec/dummy/db/migrate/20210218213829_remove_spree_store_credits_column.spree.rb +8 -0
  120. data/spec/dummy/db/migrate/20210218213830_add_lft_and_rgt_indexes_to_taxons.spree.rb +9 -0
  121. data/spec/dummy/db/migrate/20210218213831_remove_order_id_from_inventory_units.spree.rb +31 -0
  122. data/spec/dummy/db/migrate/20210218213832_transform_tax_rate_category_relation.spree.rb +51 -0
  123. data/spec/dummy/db/migrate/20210218213833_add_roles_unique_constraints.spree.rb +9 -0
  124. data/spec/dummy/db/migrate/20210218213834_add_time_range_to_tax_rate.spree.rb +9 -0
  125. data/spec/dummy/db/migrate/20210218213835_rename_bogus_gateways.spree.rb +19 -0
  126. data/spec/dummy/db/migrate/20210218213836_remove_default_tax_from_spree_zones.spree.rb +8 -0
  127. data/spec/dummy/db/migrate/20210218213837_create_promotion_rule_stores.spree.rb +13 -0
  128. data/spec/dummy/db/migrate/20210218213838_create_store_shipping_methods.spree.rb +13 -0
  129. data/spec/dummy/db/migrate/20210218213839_add_available_locales_to_stores.spree.rb +10 -0
  130. data/spec/dummy/db/migrate/20210218213840_add_amount_remaining_to_store_credit_events.spree.rb +62 -0
  131. data/spec/dummy/db/migrate/20210218213841_add_join_characters_to_promotion_code_batch.spree.rb +12 -0
  132. data/spec/dummy/db/migrate/20210218213842_add_apply_to_all_to_variant_property_rule.spree.rb +13 -0
  133. data/spec/dummy/db/migrate/20210218213843_create_spree_store_credit_reasons_table.spree.rb +56 -0
  134. data/spec/dummy/db/migrate/20210218213844_remove_code_from_spree_promotions.spree.rb +43 -0
  135. data/spec/dummy/db/migrate/20210218213845_drop_spree_store_credit_update_reasons.spree.rb +20 -0
  136. data/spec/dummy/db/migrate/20210218213846_add_default_billng_flag_to_user_addresses.spree.rb +7 -0
  137. data/spec/dummy/db/migrate/20210218213847_add_bcc_email_to_spree_stores.spree.rb +8 -0
  138. data/spec/dummy/db/migrate/20210218213848_add_discontinue_on_to_spree_products.spree.rb +8 -0
  139. data/spec/dummy/db/migrate/20210218213849_add_name_to_spree_addresses.spree.rb +14 -0
  140. data/spec/dummy/db/migrate/20210218213850_add_api_key_to_spree_users.spree_api.rb +10 -0
  141. data/spec/dummy/db/migrate/20210218213851_resize_api_key_field.spree_api.rb +10 -0
  142. data/spec/dummy/db/migrate/20210218213852_rename_api_key_to_spree_api_key.spree_api.rb +10 -0
  143. data/spec/dummy/db/migrate/20210218213853_add_index_to_user_spree_api_key.spree_api.rb +10 -0
  144. data/spec/dummy/db/schema.rb +1215 -0
  145. data/spec/dummy/db/seeds.rb +10 -0
  146. data/spec/dummy/db/solidus_test.sqlite3 +0 -0
  147. data/spec/dummy/log/test.log +1198 -0
  148. data/spec/dummy/public/404.html +67 -0
  149. data/spec/dummy/public/422.html +67 -0
  150. data/spec/dummy/public/500.html +66 -0
  151. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  152. data/spec/dummy/public/apple-touch-icon.png +0 -0
  153. data/spec/dummy/public/favicon.ico +0 -0
  154. data/spec/dummy/tmp/development_secret.txt +1 -0
  155. data/spec/dummy/vendor/assets/javascripts/spree/backend/all.js +10 -0
  156. data/spec/dummy/vendor/assets/javascripts/spree/frontend/all.js +10 -0
  157. data/{app/assets/stylesheets/spree/backend/solidus_i18n.css → spec/dummy/vendor/assets/stylesheets/spree/backend/all.css} +1 -0
  158. data/{app/assets/stylesheets/spree/frontend/solidus_i18n.css → spec/dummy/vendor/assets/stylesheets/spree/frontend/all.css} +1 -0
  159. data/spec/examples.txt +4 -0
  160. data/spec/solidus_i18n_spec.rb +67 -0
  161. data/spec/spec_helper.rb +15 -13
  162. metadata +222 -264
  163. data/.travis.yml +0 -30
  164. data/app/assets/javascripts/spree/backend/solidus_i18n.js +0 -2
  165. data/app/assets/javascripts/spree/backend/translations.js.coffee +0 -5
  166. data/app/assets/javascripts/spree/frontend/locale.js.coffee +0 -3
  167. data/app/assets/javascripts/spree/frontend/solidus_i18n.js +0 -2
  168. data/app/controllers/spree/admin/locales_controller.rb +0 -16
  169. data/app/controllers/spree/api/base_controller_decorator.rb +0 -3
  170. data/app/controllers/spree/base_controller_decorator.rb +0 -3
  171. data/app/controllers/spree/locale_controller_decorator.rb +0 -6
  172. data/app/helpers/solidus_i18n/locale_helper.rb +0 -31
  173. data/app/overrides/spree/admin/shared/_configuration_menu/add_i18n_tab.html.erb.deface +0 -2
  174. data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +0 -16
  175. data/app/views/spree/admin/locales/show.html.erb +0 -27
  176. data/config/initializers/country_names.rb +0 -51
  177. data/config/initializers/routing_filter.rb +0 -2
  178. data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +0 -65
  179. data/lib/solidus_i18n/configuration.rb +0 -9
  180. data/lib/solidus_i18n/controller_locale_helper.rb +0 -29
  181. data/lib/solidus_i18n/locale.rb +0 -13
  182. data/spec/controllers/locales_controller_spec.rb +0 -24
  183. data/spec/features/admin/translations_spec.rb +0 -34
  184. data/spec/features/russian_errors_translation_spec.rb +0 -17
  185. data/spec/features/translation_spec.rb +0 -31
  186. data/spec/features/translations_spec.rb +0 -28
  187. data/spec/support/capybara.rb +0 -11
  188. data/spec/support/database_cleaner.rb +0 -23
  189. data/spec/support/factory_girl.rb +0 -5
  190. data/spec/support/i18n.rb +0 -5
  191. data/spec/support/spree.rb +0 -12
@@ -281,50 +281,6 @@ en-AU:
281
281
  spree/zone:
282
282
  one: Zone
283
283
  other: Zones
284
- devise:
285
- confirmations:
286
- confirmed:
287
- send_instructions:
288
- failure:
289
- inactive:
290
- invalid:
291
- invalid_token:
292
- locked:
293
- timeout:
294
- unauthenticated:
295
- unconfirmed:
296
- mailer:
297
- confirmation_instructions:
298
- subject:
299
- reset_password_instructions:
300
- subject:
301
- unlock_instructions:
302
- subject:
303
- oauth_callbacks:
304
- failure:
305
- success:
306
- unlocks:
307
- send_instructions:
308
- unlocked:
309
- user_passwords:
310
- user:
311
- cannot_be_blank:
312
- send_instructions:
313
- updated:
314
- user_registrations:
315
- destroyed:
316
- inactive_signed_up:
317
- signed_up:
318
- updated:
319
- user_sessions:
320
- signed_in:
321
- signed_out:
322
- errors:
323
- messages:
324
- already_confirmed:
325
- not_found:
326
- not_locked:
327
- not_saved:
328
284
  spree:
329
285
  abbreviation: Abbreviation
330
286
  accept:
@@ -562,10 +518,6 @@ en-AU:
562
518
  jirafe_settings_updated:
563
519
  date:
564
520
  date_completed: Date Completed
565
- date_picker:
566
- first_day:
567
- format:
568
- js_format:
569
521
  date_range: Date Range
570
522
  default: Default
571
523
  default_refund_amount:
@@ -281,52 +281,6 @@ en-GB:
281
281
  spree/zone:
282
282
  one: Zone
283
283
  other: Zones
284
- devise:
285
- confirmations:
286
- confirmed: Your account was successfully confirmed. You are now signed in.
287
- send_instructions: You will receive an email with instructions about how to confirm your account in a few minuets.
288
- failure:
289
- inactive: Your account was not activated yet.
290
- invalid: Invalid email or password.
291
- invalid_token: Invalid authentication token.
292
- locked: Your account is locked.
293
- timeout: Your session expired, please sign in again to continue.
294
- unauthenticated: You need to sign in or sign up before continuing.
295
- unconfirmed: You have to confirm your account before continuing.
296
- mailer:
297
- confirmation_instructions:
298
- subject: Confirmation instructions
299
- reset_password_instructions:
300
- subject: Reset password instructions
301
- unlock_instructions:
302
- subject: Unlock Instructions
303
- oauth_callbacks:
304
- failure: Could not authorise you from %{kind} because \%{reason}\.
305
- success: Successfully authorised from %{kind} account.
306
- unlocks:
307
- send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
308
- unlocked: Your account was successfully unlocked. You are now signed in.
309
- user_passwords:
310
- user:
311
- cannot_be_blank: Your password cannot be blank.
312
- send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
313
- updated: Your password was changed successfully. You are now signed in.
314
- user_registrations:
315
- destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
316
- inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
317
- signed_up: Welcome! You have signed up successfully.
318
- updated: You updated your account successfully.
319
- user_sessions:
320
- signed_in: Signed in successfully.
321
- signed_out: Signed out successfully.
322
- errors:
323
- messages:
324
- already_confirmed: was already confirmed
325
- not_found: not found
326
- not_locked: was not locked
327
- not_saved:
328
- one: '1 error prohibited with %{resource} from being saved:'
329
- other: "%{count} errors prohibited this %{resource} from being saved:"
330
284
  spree:
331
285
  filter: Filter
332
286
  quick_search: Quick Search . . .
@@ -569,7 +523,7 @@ en-GB:
569
523
  date_picker:
570
524
  first_day: 0
571
525
  format: "%Y/%m/%d"
572
- js_format: yy/mm/dd
526
+ js_format: Y/m/d
573
527
  date_range: Date Range
574
528
  default: Default
575
529
  default_refund_amount:
@@ -10,7 +10,7 @@ en-IN:
10
10
  lastname: Last Name
11
11
  phone: Phone
12
12
  state: State
13
- zipcode: Zip Code
13
+ zipcode: Pin Code
14
14
  spree/calculator/tiered_flat_rate:
15
15
  preferred_base_amount:
16
16
  preferred_tiers:
@@ -61,7 +61,7 @@ en-IN:
61
61
  lastname: Billing address last name
62
62
  phone: Billing address phone
63
63
  state: Billing address state
64
- zipcode: Billing address zipcode
64
+ zipcode: Billing address pincode
65
65
  spree/order/ship_address:
66
66
  address1: Shipping address street
67
67
  city: Shipping address city
@@ -69,7 +69,7 @@ en-IN:
69
69
  lastname: Shipping address last name
70
70
  phone: Shipping address phone
71
71
  state: Shipping address state
72
- zipcode: Shipping address zipcode
72
+ zipcode: Shipping address pincode
73
73
  spree/payment:
74
74
  amount: Amount
75
75
  spree/payment_method:
@@ -281,52 +281,6 @@ en-IN:
281
281
  spree/zone:
282
282
  one: Zone
283
283
  other: Zones
284
- devise:
285
- confirmations:
286
- confirmed: Your account was successfully confirmed. You are now signed in.
287
- send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
288
- failure:
289
- inactive: Your account has not been activated yet.
290
- invalid: Invalid email or password.
291
- invalid_token: Invalid authentication token.
292
- locked: Your account is locked.
293
- timeout: Your session expired, please sign in again to continue.
294
- unauthenticated: You need to sign in or sign up before continuing.
295
- unconfirmed: You have to confirm your account before continuing.
296
- mailer:
297
- confirmation_instructions:
298
- subject: Confirmation instructions
299
- reset_password_instructions:
300
- subject: Reset password instructions
301
- unlock_instructions:
302
- subject: Unlock Instructions
303
- oauth_callbacks:
304
- failure: Could not authorize you from %{kind} because %{reason}.
305
- success: Successfully authorized from %{kind} account
306
- unlocks:
307
- send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
308
- unlocked: Your account was successfully unlocked. You are now signed in.
309
- user_passwords:
310
- user:
311
- cannot_be_blank: Your password cannot be blank.
312
- send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
313
- updated: Your password was changed successfully. You are now signed in.
314
- user_registrations:
315
- destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
316
- inactive_signed_up: You have signed up successfully. However, we could not sign you in because your account is %{reason}.
317
- signed_up: Welcome! You have signed up successfully.
318
- updated: You updated your account successfully.
319
- user_sessions:
320
- signed_in: Signed in successfully.
321
- signed_out: Signed out successfully.
322
- errors:
323
- messages:
324
- already_confirmed: was already confirmed
325
- not_found: not found
326
- not_locked: was not locked
327
- not_saved:
328
- one: '1 error prohibited this %{resource} from being saved:'
329
- other: "%{count} errors prohibited this %{resource} from being saved:"
330
284
  spree:
331
285
  abbreviation: Abbreviation
332
286
  accept:
@@ -567,7 +521,7 @@ en-IN:
567
521
  date_picker:
568
522
  first_day:
569
523
  format: "%Y/%m/%d"
570
- js_format: yy/mm/dd
524
+ js_format: Y/m/d
571
525
  date_range: Date Range
572
526
  default: Default
573
527
  default_refund_amount:
@@ -677,7 +631,7 @@ en-IN:
677
631
  available_locales:
678
632
  language:
679
633
  localization_settings:
680
- this_file_language: English (UK)
634
+ this_file_language: English (IN)
681
635
  icon: Icon
682
636
  identifier:
683
637
  image: Image
@@ -1330,7 +1284,7 @@ en-IN:
1330
1284
  you_have_no_orders_yet: You have no orders yet.
1331
1285
  your_cart_is_empty: Your basket is empty
1332
1286
  your_order_is_empty_add_product: Your order is empty, please search for and add a product above
1333
- zip: PIN Code
1334
- zipcode: Zip Code
1287
+ zip: Pin Code
1288
+ zipcode: Pin Code
1335
1289
  zone: Zone
1336
1290
  zones: Zones
@@ -281,50 +281,6 @@ en-NZ:
281
281
  spree/zone:
282
282
  one: Zone
283
283
  other: Zones
284
- devise:
285
- confirmations:
286
- confirmed: Your account was successfully confirmed. You are now signed in.
287
- send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
288
- failure:
289
- inactive: Your account has not been activated yet.
290
- invalid: Invalid email or password.
291
- invalid_token: Invalid authentication token.
292
- locked: Your account is locked.
293
- timeout: Your session expired, please sign in again to continue.
294
- unauthenticated: You need to sign in or sign up before continuing.
295
- unconfirmed: You have to confirm your account before continuing.
296
- mailer:
297
- confirmation_instructions:
298
- subject: Confirmation instructions
299
- reset_password_instructions:
300
- subject: Reset password instructions
301
- unlock_instructions:
302
- subject: Unlock Instructions
303
- oauth_callbacks:
304
- failure: Could not authorise you from %{kind} because %{reason}.
305
- success: Successfully authorised from %{kind} account.
306
- unlocks:
307
- send_instructions:
308
- unlocked:
309
- user_passwords:
310
- user:
311
- cannot_be_blank:
312
- send_instructions:
313
- updated:
314
- user_registrations:
315
- destroyed:
316
- inactive_signed_up:
317
- signed_up:
318
- updated:
319
- user_sessions:
320
- signed_in:
321
- signed_out:
322
- errors:
323
- messages:
324
- already_confirmed:
325
- not_found:
326
- not_locked:
327
- not_saved:
328
284
  spree:
329
285
  abbreviation: Abbreviation
330
286
  accept:
@@ -562,10 +518,6 @@ en-NZ:
562
518
  jirafe_settings_updated:
563
519
  date:
564
520
  date_completed: Date Completed
565
- date_picker:
566
- first_day:
567
- format:
568
- js_format:
569
521
  date_range: Date Range
570
522
  default: Default
571
523
  default_refund_amount:
@@ -317,54 +317,6 @@ es-CL:
317
317
  base:
318
318
  cannot_destroy_default_store: Cannot destroy the default Store.
319
319
 
320
- devise:
321
- confirmations:
322
- confirmed: Tu cuenta fue confirmada satisfactoriamente. Ya estás registrado.
323
- send_instructions: Recibirás un email con instrucciones sobre como confirmar tu cuenta en breves minutos.
324
- failure:
325
- inactive: Tu cuenta aún no ha sido activada.
326
- invalid: E-Mail o contraseña inválida.
327
- invalid_token: Cadena de autenticación no válida.
328
- locked: Tu cuenta está bloqueada.
329
- timeout: 'Tu sesión expiró, por favor inicia sesión nuevamente para continuar.'
330
- unauthenticated: Necesitas registrarte o activar tu cuenta antes de continuar.
331
- unconfirmed: Tienes que confirmar tu cuenta antes de continuar.
332
- mailer:
333
- confirmation_instructions:
334
- subject: Instrucciones de confirmación
335
- reset_password_instructions:
336
- subject: Instrucciones para cambiar contraseña
337
- unlock_instructions:
338
- subject: Instrucciones para desbloqueo
339
- oauth_callbacks:
340
- failure: No se pudo realizar la autorización desde %{kind} debido a %{reason}.
341
- success: Autorizada satisfactoriamente desde la cuenta %{kind}.
342
- unlocks:
343
- send_instructions: Recibirás un email con instrucciones sobre como desbloquear la cuenta en breves minutos.
344
- unlocked: Tu cuenta fue desbloqueada satisfactoriamente. Ya estás registrado.
345
- user_passwords:
346
- user:
347
- cannot_be_blank: Tu contraseña no puede estar en blanco.
348
- send_instructions: Recibirás un email con instrucciones sobre como cambiar tu contraseña en breves minutos
349
- updated: Tu contraseña fue cambiada con éxito. Ya estás registrado.
350
- user_registrations:
351
- destroyed: "¡Adiós! Tu cuenta fue cancelada satisfactoriamente. Esperamos volver a verte pronto."
352
- inactive_signed_up: Te has registrado satisfactoriamente. Sin embargo, no pudimos iniciar sesión debido a que tu cuenta está %{reason}.
353
- signed_up: Bienvenido! Te has registrado satisfactoriamente.
354
- updated: Has actualizado tu cuenta satisfactoriamente.
355
- user_sessions:
356
- signed_in: Has iniciado sesión satisfactoriamente.
357
- signed_out: Sesión finalizada satisfactoriamente.
358
-
359
- errors:
360
- messages:
361
- already_confirmed: fue ya confirmada.
362
- not_found: no encontrado
363
- not_locked: no estaba bloqueada
364
- not_saved:
365
- one: '1 error evitó que este %{resource} fuese grabado.'
366
- other: "%{count} errores evitaron que este %{resource} fuese grabado:"
367
-
368
320
  number:
369
321
  percentage:
370
322
  format:
@@ -610,7 +562,7 @@ es-CL:
610
562
  date_picker:
611
563
  first_day: 1
612
564
  format: "%d/%m/%Y"
613
- js_format: dd/mm/yy
565
+ js_format: d/m/Y
614
566
  date_range: Rango de fechas
615
567
  default: Por defecto
616
568
  default_refund_amount: Valor por defecto del reembolso
@@ -283,52 +283,6 @@ es-EC:
283
283
  spree/zone:
284
284
  one: Zona
285
285
  other: Zonas
286
- devise:
287
- confirmations:
288
- confirmed: Tu cuenta fue confirmada satisfactoriamente. Ya estás registrado.
289
- send_instructions: Recibirás un email con instrucciones sobre como confirmar tu cuenta en breves minutos.
290
- failure:
291
- inactive: Tu cuenta no fue activada todavía.
292
- invalid: Email o password inválido.
293
- invalid_token: Cadena de autenticación no válida.
294
- locked: Tu cuenta está bloqueada
295
- timeout: Tu sesión expiró, por favor regístrate otra vez para continuar.
296
- unauthenticated: Necesitas registrarte o darte de alta antes de continuar
297
- unconfirmed: Tienes que confirmar tu cuenta antes de continuar.
298
- mailer:
299
- confirmation_instructions:
300
- subject: Instrucciones de confirmación
301
- reset_password_instructions:
302
- subject: Instrucciones para reinicializar el password
303
- unlock_instructions:
304
- subject: Instrucciones de desbloqueo
305
- oauth_callbacks:
306
- failure: No se te pudo autorizar desde %{kind} debido a %{reason}.
307
- success: Autorizada satisfactoriamente desde la cuenta %{kind}.
308
- unlocks:
309
- send_instructions: Recibirás un email con instrucciones sobre como desbloquear la cuenta en breves minutos.
310
- unlocked: Tu cuenta fue desbloqueada satisfactoriamente. Ya estás registrado.
311
- user_passwords:
312
- user:
313
- cannot_be_blank: Tu password no puede estar en blanco
314
- send_instructions: Recibiras un email con instrucciones sobre como reinicializar tu password en breves minutos
315
- updated: Tu password fue cambiado con éxito. Ya estás registrado.
316
- user_registrations:
317
- destroyed: "¡Adiós! Tu cuenta fue cancelada satisfactoriamente. Esperamos volver a verte pronto."
318
- inactive_signed_up: Te has dado de alta satisfactoriamente. Sin embargo, no pudimos registrarte debido a que tu cuenta está %{reason}.
319
- signed_up: Bienvenido! Te has dado de alta satisfactoriamente.
320
- updated: Has actualizado tu cuenta satisfactoriamente.
321
- user_sessions:
322
- signed_in: Registrado satisfactoriamente.
323
- signed_out: Abandonado satisfactoriamente.
324
- errors:
325
- messages:
326
- already_confirmed: fue ya confirmada.
327
- not_found: no encontrado
328
- not_locked: no estaba bloqueada
329
- not_saved:
330
- one: 1 error evitó que este %{resource} fuese grabado.
331
- other: "%{count} errores evitaron que este %{resource} fuese grabado:"
332
286
  spree:
333
287
  abbreviation: Abreviatura
334
288
  accept:
@@ -569,7 +523,7 @@ es-EC:
569
523
  date_picker:
570
524
  first_day: 1
571
525
  format: "%d/%m/%Y"
572
- js_format: dd/mm/yy
526
+ js_format: d/m/Y
573
527
  date_range: Rango de fechas
574
528
  default: Por defecto
575
529
  default_refund_amount: