solidus_i18n 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.hound.yml +25 -0
  4. data/.rubocop.yml +7 -0
  5. data/.travis.yml +12 -0
  6. data/CONTRIBUTING.md +70 -0
  7. data/Gemfile +13 -0
  8. data/Guardfile +11 -0
  9. data/LICENSE.md +26 -0
  10. data/README.md +74 -0
  11. data/Rakefile +85 -0
  12. data/app/assets/javascripts/spree/backend/solidus_i18n.js +2 -0
  13. data/app/assets/javascripts/spree/backend/translations.js.coffee +5 -0
  14. data/app/assets/javascripts/spree/frontend/cart_decorator.js.coffee +5 -0
  15. data/app/assets/javascripts/spree/frontend/locale.js.coffee +3 -0
  16. data/app/assets/javascripts/spree/frontend/solidus_i18n.js +2 -0
  17. data/app/assets/stylesheets/spree/backend/solidus_i18n.css +8 -0
  18. data/app/assets/stylesheets/spree/frontend/solidus_i18n.css +8 -0
  19. data/app/controllers/spree/admin/general_settings_controller_decorator.rb +12 -0
  20. data/app/controllers/spree/api/base_controller_decorator.rb +3 -0
  21. data/app/controllers/spree/base_controller_decorator.rb +3 -0
  22. data/app/controllers/spree/locale_controller_decorator.rb +6 -0
  23. data/app/helpers/solidus_i18n/locale_helper.rb +31 -0
  24. data/app/overrides/spree/admin/general_settings/edit/localization_settings.html.erb.deface +20 -0
  25. data/app/overrides/spree/shared/_main_nav_bar/cart_link.html.erb.deface +9 -0
  26. data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +16 -0
  27. data/bin/rails +7 -0
  28. data/config/initializers/country_names.rb +51 -0
  29. data/config/initializers/routing_filter.rb +2 -0
  30. data/config/locales/bg.yml +1330 -0
  31. data/config/locales/ca.yml +1334 -0
  32. data/config/locales/cs.yml +1363 -0
  33. data/config/locales/da.yml +1336 -0
  34. data/config/locales/de-CH.yml +1288 -0
  35. data/config/locales/de.yml +1477 -0
  36. data/config/locales/en-AU.yml +1334 -0
  37. data/config/locales/en-GB.yml +1338 -0
  38. data/config/locales/en-IN.yml +1336 -0
  39. data/config/locales/en-NZ.yml +1334 -0
  40. data/config/locales/es-CL.yml +1398 -0
  41. data/config/locales/es-EC.yml +1338 -0
  42. data/config/locales/es-MX.yml +1337 -0
  43. data/config/locales/es.yml +1338 -0
  44. data/config/locales/et.yml +1316 -0
  45. data/config/locales/fa.yml +1163 -0
  46. data/config/locales/fi.yml +1352 -0
  47. data/config/locales/fr.yml +1588 -0
  48. data/config/locales/id.yml +1335 -0
  49. data/config/locales/it.yml +1395 -0
  50. data/config/locales/ja.yml +1336 -0
  51. data/config/locales/ko.yml +1294 -0
  52. data/config/locales/lv.yml +1328 -0
  53. data/config/locales/nb.yml +1339 -0
  54. data/config/locales/nl.yml +1338 -0
  55. data/config/locales/pl.yml +1345 -0
  56. data/config/locales/pt-BR.yml +1364 -0
  57. data/config/locales/pt.yml +1290 -0
  58. data/config/locales/ro.yml +1335 -0
  59. data/config/locales/ru.yml +1400 -0
  60. data/config/locales/sk.yml +1345 -0
  61. data/config/locales/sl-SI.yml +1288 -0
  62. data/config/locales/sv.yml +1372 -0
  63. data/config/locales/th.yml +1330 -0
  64. data/config/locales/tr.yml +1291 -0
  65. data/config/locales/uk.yml +1447 -0
  66. data/config/locales/vi.yml +1290 -0
  67. data/config/locales/zh-CN.yml +1345 -0
  68. data/config/locales/zh-TW.yml +1293 -0
  69. data/config/routes.rb +6 -0
  70. data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +65 -0
  71. data/lib/generators/solidus_i18n/install/install_generator.rb +27 -0
  72. data/lib/solidus_i18n/configuration.rb +9 -0
  73. data/lib/solidus_i18n/controller_locale_helper.rb +29 -0
  74. data/lib/solidus_i18n/engine.rb +45 -0
  75. data/lib/solidus_i18n/locale.rb +13 -0
  76. data/lib/solidus_i18n/utils.rb +56 -0
  77. data/lib/solidus_i18n/version.rb +18 -0
  78. data/lib/solidus_i18n.rb +8 -0
  79. data/lib/tasks/solidus_i18n/upgrade.rake +43 -0
  80. data/solidus_i18n.gemspec +46 -0
  81. data/spec/controllers/locales_controller_spec.rb +24 -0
  82. data/spec/features/admin/translations_spec.rb +33 -0
  83. data/spec/features/russian_errors_translation_spec.rb +17 -0
  84. data/spec/features/translation_spec.rb +31 -0
  85. data/spec/features/translations_spec.rb +28 -0
  86. data/spec/spec_helper.rb +31 -0
  87. data/spec/support/capybara.rb +11 -0
  88. data/spec/support/database_cleaner.rb +23 -0
  89. data/spec/support/factory_girl.rb +5 -0
  90. data/spec/support/i18n.rb +5 -0
  91. data/spec/support/spree.rb +12 -0
  92. metadata +411 -0
@@ -0,0 +1,1334 @@
1
+ ca:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: Adreça
6
+ address2: Adreça (continuació)
7
+ city: Ciutat
8
+ country: País
9
+ firstname: Nom
10
+ lastname: Cognom
11
+ phone: Telèfon
12
+ state: Estat
13
+ zipcode: Codi postal
14
+ spree/calculator/tiered_flat_rate:
15
+ preferred_base_amount:
16
+ preferred_tiers:
17
+ spree/calculator/tiered_percent:
18
+ preferred_base_percent:
19
+ preferred_tiers:
20
+ spree/country:
21
+ iso: ISO
22
+ iso3: ISO3
23
+ iso_name: Nomeni ISO
24
+ name: Nom
25
+ numcode: Codi ISO
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: Tipus
29
+ month: Mes
30
+ name:
31
+ number: Nombre
32
+ verification_value: Codi de verificació
33
+ year: Any
34
+ spree/inventory_unit:
35
+ state: Província
36
+ spree/line_item:
37
+ price: Preu
38
+ quantity: Quantitat
39
+ spree/option_type:
40
+ name:
41
+ presentation:
42
+ spree/order:
43
+ checkout_complete: Comanda completada
44
+ completed_at: Completat el
45
+ considered_risky:
46
+ coupon_code:
47
+ created_at: Data Comanda
48
+ email:
49
+ ip_address: Adreça IP
50
+ item_total:
51
+ number: Nombre
52
+ payment_state: Estat Pagament
53
+ shipment_state: Estat Enviament
54
+ special_instructions: Instruccions especials
55
+ state: Estat
56
+ total: Total
57
+ spree/order/bill_address:
58
+ address1:
59
+ city:
60
+ firstname:
61
+ lastname:
62
+ phone:
63
+ state:
64
+ zipcode:
65
+ spree/order/ship_address:
66
+ address1:
67
+ city:
68
+ firstname:
69
+ lastname:
70
+ phone:
71
+ state:
72
+ zipcode:
73
+ spree/payment:
74
+ amount:
75
+ spree/payment_method:
76
+ name:
77
+ spree/product:
78
+ available_on: Disponible en
79
+ cost_currency: Cost Moneda
80
+ cost_price: Preu de cost
81
+ description: Descripció
82
+ master_price: Preu principal
83
+ name: Nom
84
+ on_hand: Disponibles
85
+ shipping_category: Categoria d'enviament
86
+ tax_category: Categoria d'impostos
87
+ spree/promotion:
88
+ advertise: Advertise
89
+ code: Codi
90
+ description: Descripció
91
+ event_name: Event Name
92
+ expires_at: Caduca el
93
+ name: Nom
94
+ path: Path
95
+ starts_at: Comença el
96
+ usage_limit: Límit d'ús
97
+ spree/promotion_category:
98
+ name:
99
+ spree/property:
100
+ name: Nom
101
+ presentation: Presentació
102
+ spree/prototype:
103
+ name: Nom
104
+ spree/return_authorization:
105
+ amount: Quantitat
106
+ spree/role:
107
+ name: Nom
108
+ spree/state:
109
+ abbr: Abreviatura
110
+ name: Nom
111
+ spree/state_change:
112
+ state_changes:
113
+ state_from:
114
+ state_to:
115
+ timestamp:
116
+ type:
117
+ updated:
118
+ user:
119
+ spree/store:
120
+ mail_from_address:
121
+ meta_description:
122
+ meta_keywords:
123
+ name:
124
+ seo_title:
125
+ url:
126
+ spree/tax_category:
127
+ description: Descripció
128
+ name: Nom
129
+ spree/tax_rate:
130
+ amount: Taxa
131
+ included_in_price: Included in Price
132
+ show_rate_in_label: Show rate in label
133
+ spree/taxon:
134
+ name: Nom
135
+ permalink: Enllaç permanent
136
+ position: Posició
137
+ spree/taxonomy:
138
+ name: Nom
139
+ spree/user:
140
+ email: Email
141
+ password: Password
142
+ password_confirmation: Password Confirmation
143
+ spree/variant:
144
+ cost_currency: Cost Moneda
145
+ cost_price: Preu de cost
146
+ depth: Profunditat
147
+ height: Altura
148
+ price: Preu
149
+ sku: Codi de producte
150
+ weight: Pes
151
+ width: Ample
152
+ spree/zone:
153
+ description: Descripció
154
+ name: Nom
155
+ errors:
156
+ models:
157
+ spree/calculator/tiered_flat_rate:
158
+ attributes:
159
+ base:
160
+ keys_should_be_positive_number:
161
+ preferred_tiers:
162
+ should_be_hash:
163
+ spree/calculator/tiered_percent:
164
+ attributes:
165
+ base:
166
+ keys_should_be_positive_number:
167
+ values_should_be_percent:
168
+ preferred_tiers:
169
+ should_be_hash:
170
+ spree/classification:
171
+ attributes:
172
+ taxon_id:
173
+ already_linked:
174
+ spree/credit_card:
175
+ attributes:
176
+ base:
177
+ card_expired:
178
+ expiry_invalid:
179
+ spree/line_item:
180
+ attributes:
181
+ currency:
182
+ must_match_order_currency:
183
+ spree/refund:
184
+ attributes:
185
+ amount:
186
+ greater_than_allowed:
187
+ spree/reimbursement:
188
+ attributes:
189
+ base:
190
+ return_items_order_id_does_not_match:
191
+ spree/return_item:
192
+ attributes:
193
+ inventory_unit:
194
+ other_completed_return_item_exists:
195
+ reimbursement:
196
+ cannot_be_associated_unless_accepted:
197
+ spree/store:
198
+ attributes:
199
+ base:
200
+ cannot_destroy_default_store:
201
+ models:
202
+ spree/address:
203
+ one: Adreça
204
+ other: Adreces
205
+ spree/country:
206
+ one: País
207
+ other: Països
208
+ spree/credit_card:
209
+ one: Targeta de crèdit
210
+ other: Targetes de crèdit
211
+ spree/customer_return:
212
+ spree/inventory_unit:
213
+ one: Unitat en inventari
214
+ other: Unitats en inventari
215
+ spree/line_item:
216
+ one: Article
217
+ other: Articles
218
+ spree/option_type:
219
+ spree/option_value:
220
+ spree/order:
221
+ one: Comanda
222
+ other: Comandes
223
+ spree/payment:
224
+ one: Pagament
225
+ other: Pagaments
226
+ spree/payment_method:
227
+ spree/product:
228
+ one: Producte
229
+ other: Productes
230
+ spree/promotion:
231
+ spree/promotion_category:
232
+ spree/property:
233
+ one: Propietat
234
+ other: Propietats
235
+ spree/prototype:
236
+ one: Prototip
237
+ other: Prototips
238
+ spree/refund_reason:
239
+ spree/reimbursement:
240
+ spree/reimbursement_type:
241
+ spree/return_authorization:
242
+ one: Autorització de devolució
243
+ other: Autoritzacions de devolució
244
+ spree/return_authorization_reason:
245
+ spree/role:
246
+ one: Funció
247
+ other: Funcions
248
+ spree/shipment:
249
+ one: Enviament
250
+ other: Enviaments
251
+ spree/shipping_category:
252
+ one: Categoria d'enviament
253
+ other: Categories de enviament
254
+ spree/shipping_method:
255
+ spree/state:
256
+ one: Estat
257
+ other: Estats
258
+ spree/state_change:
259
+ spree/stock_location:
260
+ spree/stock_movement:
261
+ spree/stock_transfer:
262
+ spree/tax_category:
263
+ one: Categoria d'impostos
264
+ other: Categories d'impostos
265
+ spree/tax_rate:
266
+ one: Taxa d'impostos
267
+ other: Taxes d'impostos
268
+ spree/taxon:
269
+ one: Categoria
270
+ other: Categories
271
+ spree/taxonomy:
272
+ one: Propietat
273
+ other: Propietats
274
+ spree/tracker:
275
+ spree/user:
276
+ one: Usuari
277
+ other: Usuaris
278
+ spree/variant:
279
+ one:
280
+ other:
281
+ spree/zone:
282
+ one: Zona
283
+ other:
284
+ devise:
285
+ confirmations:
286
+ confirmed:
287
+ send_instructions:
288
+ failure:
289
+ inactive: El seu compte no s'ha estat activat encara.
290
+ invalid: Correu electrònic o contrasenya no vàlids.
291
+ invalid_token: Token d'autenticació no vàlid.
292
+ locked: El seu compte està bloquejat.
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: no trobat
326
+ not_locked:
327
+ not_saved:
328
+ spree:
329
+ abbreviation: Abreviatura
330
+ accept:
331
+ acceptance_errors:
332
+ acceptance_status:
333
+ accepted:
334
+ account: Compte
335
+ account_updated: Explica actualitzada!
336
+ action: Acció
337
+ actions:
338
+ cancel: Cancel·lar
339
+ continue: Continuar
340
+ create: Crear
341
+ destroy: Eliminar
342
+ edit: Edita
343
+ list: Llesta
344
+ listing: Llistat
345
+ new: Nova
346
+ refund:
347
+ save:
348
+ update: Actualitzar
349
+ activate: Activate
350
+ active: Actiu
351
+ add: Afegir
352
+ add_action_of_type: Add action of type
353
+ add_country: Afegir País
354
+ add_coupon_code:
355
+ add_new_header: Add New Header
356
+ add_new_style: Add New Style
357
+ add_one: Afegeix un
358
+ add_option_value: Afegir valor d'opció
359
+ add_product: Afegir producte
360
+ add_product_properties: Afegir propietats de producte
361
+ add_rule_of_type: Afegir regla de tipus
362
+ add_state: Afegir província
363
+ add_stock:
364
+ add_stock_management:
365
+ add_to_cart: Afegir al carret
366
+ add_variant:
367
+ additional_item: Cost addicional per element
368
+ address1: Adreça
369
+ address2: Adreça(cont.)
370
+ adjustable:
371
+ adjustment: Ajust
372
+ adjustment_amount:
373
+ adjustment_successfully_closed:
374
+ adjustment_successfully_opened:
375
+ adjustment_total: Ajust total
376
+ adjustments: Ajustos
377
+ admin:
378
+ tab:
379
+ configuration:
380
+ option_types:
381
+ orders:
382
+ overview:
383
+ products:
384
+ promotions:
385
+ promotion_categories:
386
+ properties:
387
+ prototypes:
388
+ reports:
389
+ taxonomies:
390
+ taxons:
391
+ users:
392
+ user:
393
+ account:
394
+ addresses:
395
+ items:
396
+ items_purchased:
397
+ order_history:
398
+ order_num:
399
+ orders:
400
+ user_information:
401
+ administration: Administració
402
+ advertise:
403
+ agree_to_privacy_policy:
404
+ agree_to_terms_of_service:
405
+ all: Tots
406
+ all_adjustments_closed:
407
+ all_adjustments_opened:
408
+ all_departments: Tots els departaments
409
+ all_items_have_been_returned:
410
+ allow_ssl_in_development_and_test:
411
+ allow_ssl_in_production:
412
+ allow_ssl_in_staging:
413
+ already_signed_up_for_analytics:
414
+ alt_text: Text alternatiu
415
+ alternative_phone: Telèfon alternatiu
416
+ amount: Quantia
417
+ analytics_desc_header_1: Spree Analytics
418
+ analytics_desc_header_2:
419
+ analytics_desc_list_1:
420
+ analytics_desc_list_2:
421
+ analytics_desc_list_3:
422
+ analytics_desc_list_4:
423
+ analytics_trackers: Trackers de Google Analytics
424
+ and:
425
+ approve:
426
+ approved_at:
427
+ approver:
428
+ are_you_sure: Està segur?
429
+ are_you_sure_delete: Està segur que vol eliminar aquesta entrada?
430
+ associated_adjustment_closed:
431
+ at_symbol: '@'
432
+ authorization_failure: Fallada d'autorització
433
+ authorized:
434
+ auto_capture:
435
+ available_on: Disponible en
436
+ average_order_value:
437
+ avs_response:
438
+ back: Enrere
439
+ back_end: Part Interna
440
+ back_to_payment:
441
+ back_to_resource_list:
442
+ back_to_rma_reason_list:
443
+ back_to_store: Tornar a la tenda
444
+ back_to_users_list:
445
+ backorderable:
446
+ backorderable_default:
447
+ backordered:
448
+ backorders_allowed:
449
+ balance_due: Saldo pendent
450
+ base_amount:
451
+ base_percent:
452
+ bill_address: Adreça de facturació
453
+ billing: Facturació
454
+ billing_address: Adreça de facturació
455
+ both: tots dos
456
+ calculated_reimbursements:
457
+ calculator: Calculadora
458
+ calculator_settings_warning: Si està canviant el tipus de calculadora, ha de guardar la seva selecció abans d'editar la seva configuració
459
+ cancel: Cancel·lar
460
+ canceled_at:
461
+ canceler:
462
+ cannot_create_customer_returns:
463
+ cannot_create_payment_without_payment_methods:
464
+ cannot_create_returns: No pot crear-se la devolució ja que aquest demanat encara no ha estat enviat.
465
+ cannot_perform_operation: No pot realitzar-se l'operació
466
+ cannot_set_shipping_method_without_address:
467
+ capture: captura
468
+ capture_events:
469
+ card_code: Codi de la targeta
470
+ card_number: Nombre de targeta
471
+ card_type:
472
+ card_type_is: Tipus de targeta
473
+ cart: Carret
474
+ cart_subtotal:
475
+ categories: Categories
476
+ category: Categoria
477
+ charged:
478
+ check_for_spree_alerts:
479
+ checkout: Pagar
480
+ choose_a_customer:
481
+ choose_a_taxon_to_sort_products_for:
482
+ choose_currency:
483
+ choose_dashboard_locale:
484
+ choose_location:
485
+ city: Ciutat
486
+ clear_cache:
487
+ clear_cache_ok:
488
+ clear_cache_warning:
489
+ click_and_drag_on_the_products_to_sort_them:
490
+ clone: Clonar
491
+ close: Tanca
492
+ close_all_adjustments:
493
+ code: Codi
494
+ company:
495
+ complete: complet
496
+ configuration: Configuració
497
+ configurations: Configuracions
498
+ confirm: Confirmar
499
+ confirm_delete: Confirmar esborrat
500
+ confirm_password: Confirmi la contrasenya
501
+ continue: Continuar
502
+ continue_shopping: Seguir comprant
503
+ cost_currency:
504
+ cost_price: Preu del Cost
505
+ could_not_connect_to_jirafe:
506
+ could_not_create_customer_return:
507
+ could_not_create_stock_movement:
508
+ count_on_hand:
509
+ countries: Països
510
+ country: País
511
+ country_based: País basi
512
+ country_name: Nom
513
+ country_names:
514
+ CA:
515
+ FRA:
516
+ ITA:
517
+ US:
518
+ coupon: Cupó
519
+ coupon_code: Codi de cupó
520
+ coupon_code_already_applied:
521
+ coupon_code_applied:
522
+ coupon_code_better_exists:
523
+ coupon_code_expired:
524
+ coupon_code_max_usage:
525
+ coupon_code_not_eligible:
526
+ coupon_code_not_found:
527
+ coupon_code_unknown_error:
528
+ create: Crear
529
+ create_a_new_account: Crear un nou compte
530
+ create_new_order:
531
+ create_reimbursement:
532
+ created_at:
533
+ credit: Crèdit
534
+ credit_card: Targeta de crèdit
535
+ credit_cards:
536
+ credit_owed: Crèdit disponible
537
+ credits:
538
+ currency:
539
+ currency_decimal_mark:
540
+ currency_settings:
541
+ currency_symbol_position:
542
+ currency_thousands_separator:
543
+ current: Actual
544
+ current_promotion_usage:
545
+ customer: Client
546
+ customer_details: Detalls del client
547
+ customer_details_updated:
548
+ customer_return:
549
+ customer_returns:
550
+ customer_search: Cerca de clients
551
+ cut:
552
+ cvv_response:
553
+ dash:
554
+ jirafe:
555
+ app_id:
556
+ app_token:
557
+ currently_unavailable:
558
+ explanation:
559
+ header:
560
+ site_id:
561
+ token:
562
+ jirafe_settings_updated:
563
+ date: Data
564
+ date_completed:
565
+ date_picker:
566
+ first_day:
567
+ format:
568
+ js_format:
569
+ date_range: Rang de Data
570
+ default: Per omissió
571
+ default_refund_amount:
572
+ default_tax:
573
+ default_tax_zone:
574
+ delete: Eliminar
575
+ deleted_variants_present:
576
+ delivery: Enviament
577
+ depth: Profunditat
578
+ description: Descripció
579
+ destination:
580
+ destroy: Eliminar
581
+ details:
582
+ discount_amount: Import del descompte
583
+ dismiss_banner: No. Thanks! I'm not interested, do not display this message again
584
+ display: Mostrar
585
+ display_currency:
586
+ doesnt_track_inventory:
587
+ edit: Editar
588
+ editing_resource:
589
+ editing_rma_reason:
590
+ editing_user: Editant usuari
591
+ eligibility_errors:
592
+ messages:
593
+ has_excluded_product:
594
+ item_total_less_than:
595
+ item_total_less_than_or_equal:
596
+ item_total_more_than:
597
+ item_total_more_than_or_equal:
598
+ limit_once_per_user:
599
+ missing_product:
600
+ missing_taxon:
601
+ no_applicable_products:
602
+ no_matching_taxons:
603
+ no_user_or_email_specified:
604
+ no_user_specified:
605
+ not_first_order:
606
+ email: Correu Electrònic
607
+ empty: Buit
608
+ empty_cart: Buidar carret
609
+ enable_mail_delivery: Habilitar enviament per correu
610
+ end: Fi
611
+ ending_in: Ending in
612
+ environment: Entorn
613
+ error: error
614
+ errors:
615
+ messages:
616
+ could_not_create_taxon: no va poder crear-se la categoria
617
+ no_payment_methods_available: No payment methods are configured for this environment
618
+ no_shipping_methods_available: No hi ha mètodes d'enviament disponibles per a la localitat seleccionada. Per favor, canviï l'adreça i torni a intentar-ho.
619
+ errors_prohibited_this_record_from_being_saved:
620
+ one: 1 error va impedir que no pogués guardar-se el registre
621
+ other: "%{count} errors van impedir que no pogués guardar-se el registre"
622
+ event: Esdeveniment
623
+ events:
624
+ spree:
625
+ cart:
626
+ add:
627
+ checkout:
628
+ coupon_code_added:
629
+ content:
630
+ visited:
631
+ order:
632
+ contents_changed:
633
+ page_view:
634
+ user:
635
+ signup:
636
+ exceptions:
637
+ count_on_hand_setter:
638
+ exchange_for:
639
+ excl:
640
+ existing_shipments:
641
+ expedited_exchanges_warning:
642
+ expiration: Caducitat
643
+ extension: Extensió
644
+ failed_payment_attempts:
645
+ filename: Nom d'arxiu
646
+ fill_in_customer_info:
647
+ filter_results:
648
+ finalize: Finalitzar
649
+ finalized:
650
+ find_a_taxon:
651
+ first_item: Cost del primer element
652
+ first_name: Nom
653
+ first_name_begins_with: Nom comença per
654
+ flat_percent: Percentatge simple
655
+ flat_rate_per_order: Quantitat fixa (per comanda)
656
+ flexible_rate: Quantitat variable
657
+ forgot_password: Vas oblidar la teva contrasenya?
658
+ free_shipping: Despeses d'enviament gratuïts
659
+ free_shipping_amount:
660
+ front_end: Sistema Intern
661
+ gateway: mitjà
662
+ gateway_config_unavailable: Passarel·la no disponible per configuració
663
+ gateway_error: Error en el mitjà
664
+ general: General
665
+ general_settings: Configuració general
666
+ google_analytics: Google Analytics
667
+ google_analytics_id: Analytics ID
668
+ guest_checkout: Compra anònima
669
+ guest_user_account: Comprar sense registrar-se
670
+ has_no_shipped_units: no té unitats enviades
671
+ height: Altura
672
+ hide_cents:
673
+ home: Inici
674
+ i18n:
675
+ available_locales:
676
+ language:
677
+ localization_settings:
678
+ this_file_language: Català
679
+ icon: Icona
680
+ identifier:
681
+ image: Imatge
682
+ images: Imatges
683
+ implement_eligible_for_return:
684
+ implement_requires_manual_intervention:
685
+ inactive:
686
+ incl:
687
+ included_in_price:
688
+ included_price_validation:
689
+ incomplete:
690
+ info_number_of_skus_not_shown:
691
+ info_product_has_multiple_skus:
692
+ instructions_to_reset_password: 'Empleni el formulari i rebrà per email instruccions sobre com reiniciar el seu password:'
693
+ insufficient_stock: Insufficient stock available, only %{on_hand} remaining
694
+ insufficient_stock_lines_present:
695
+ intercept_email_address: Interceptar adreça d'Email
696
+ intercept_email_instructions: Substituir el receptor de l'email amb aquesta adreça.
697
+ internal_name:
698
+ invalid_credit_card:
699
+ invalid_exchange_variant:
700
+ invalid_payment_provider:
701
+ invalid_promotion_action:
702
+ invalid_promotion_rule:
703
+ inventory: Inventari
704
+ inventory_adjustment: Ajust d'inventari
705
+ inventory_error_flash_for_insufficient_quantity:
706
+ inventory_state:
707
+ is_not_available_to_shipment_address: No es troba disponible per a l'adreça d'enviament
708
+ iso_name:
709
+ item: article
710
+ item_description: Descripció de l'article
711
+ item_total: Total d'articles
712
+ item_total_rule:
713
+ operators:
714
+ gt: major que
715
+ gte: major o igual que
716
+ lt:
717
+ lte:
718
+ items_cannot_be_shipped:
719
+ items_in_rmas:
720
+ items_reimbursed:
721
+ items_to_be_reimbursed:
722
+ jirafe: Jirafe
723
+ landing_page_rule:
724
+ path: Path
725
+ last_name: Cognoms
726
+ last_name_begins_with: Cognom comença per
727
+ learn_more: Learn More
728
+ lifetime_stats:
729
+ line_item_adjustments:
730
+ list: Llesta
731
+ loading: Carregant
732
+ locale_changed: S'ha canviat l'idioma
733
+ location:
734
+ lock:
735
+ log_entries:
736
+ logged_in_as: Identificat com
737
+ logged_in_succesfully: Connectat amb èxit
738
+ logged_out: S'ha tancat la sessió.
739
+ login: Validació
740
+ login_as_existing: Validar-se com a client existent
741
+ login_failed: No s'ha pogut iniciar la sessió, error d'autenticació.
742
+ login_name: Nom d'usuari
743
+ logout: Tancar sessió
744
+ logs:
745
+ look_for_similar_items: Buscar articles similars
746
+ make_refund: Realitzar devolució
747
+ make_sure_the_above_reimbursement_amount_is_correct:
748
+ manage_promotion_categories:
749
+ manage_variants:
750
+ manual_intervention_required:
751
+ master_price: Preu principal
752
+ match_choices:
753
+ all:
754
+ none:
755
+ max_items: Màxim d'elements
756
+ member_since:
757
+ memo:
758
+ meta_description: Fiqui descripció
759
+ meta_keywords: Fiqui paraules clau
760
+ meta_title:
761
+ metadata: Metadades
762
+ minimal_amount: Quantitat mínima
763
+ month: Mes
764
+ more:
765
+ move_stock_between_locations:
766
+ my_account: El meu compte
767
+ my_orders: Les meves comandes
768
+ name: Nom
769
+ name_on_card:
770
+ name_or_sku: Nom o codi de producte
771
+ new: Nou
772
+ new_adjustment: nou ajust
773
+ new_country:
774
+ new_customer: Nou client
775
+ new_customer_return:
776
+ new_image: Nova Imatge
777
+ new_option_type: Nou tipus d'opció
778
+ new_order: Nova comanda
779
+ new_order_completed: Nova comanda completada
780
+ new_payment: Nou pagament
781
+ new_payment_method: Nova forma de pagament
782
+ new_product: Nou producte
783
+ new_promotion: nova promoció
784
+ new_promotion_category:
785
+ new_property: Nova propietat
786
+ new_prototype: Nou prototip
787
+ new_refund:
788
+ new_refund_reason:
789
+ new_return_authorization: Nova autorització de devolució
790
+ new_rma_reason:
791
+ new_shipment_at_location:
792
+ new_shipping_category: Nova categoria d'enviament
793
+ new_shipping_method: Nova forma d'enviament
794
+ new_state: Nova província
795
+ new_stock_location:
796
+ new_stock_movement:
797
+ new_stock_transfer:
798
+ new_tax_category: Nova categoria
799
+ new_tax_rate: Nou tipus impositiu
800
+ new_taxon: Nova Categoria
801
+ new_taxonomy: Nova Propietat
802
+ new_tracker: Nou Tracker
803
+ new_user: Nou usuari
804
+ new_variant: Nova Variant
805
+ new_zone: Nova zona
806
+ next: següent
807
+ no_actions_added:
808
+ no_payment_found:
809
+ no_pending_payments:
810
+ no_products_found: No s'han trobat productes
811
+ no_resource_found:
812
+ no_results: Sense resultats
813
+ no_returns_found:
814
+ no_rules_added: No s'han afegit noves normes
815
+ no_shipping_method_selected:
816
+ no_state_changes:
817
+ no_tracking_present:
818
+ none: Cap
819
+ none_selected:
820
+ normal_amount: Quantitat normal
821
+ not: false
822
+ not_available: N/A
823
+ not_enough_stock:
824
+ not_found: "%{resource} is not found"
825
+ note:
826
+ notice_messages:
827
+ product_cloned: Producte clonat
828
+ product_deleted: Producte esborrat
829
+ product_not_cloned: No ha pogut clonar-se el producte
830
+ product_not_deleted: No ha pogut esborrar-se el producte
831
+ variant_deleted: Variant esborrada
832
+ variant_not_deleted: La variant no ha pogut esborrar-se
833
+ num_orders:
834
+ on_hand: Disponible
835
+ open: Obert
836
+ open_all_adjustments:
837
+ option_type: Tipus d'opció
838
+ option_type_placeholder:
839
+ option_types: Tipus d'opció
840
+ option_value: Valor de l'opció
841
+ option_values: Valors de l'opció
842
+ optional:
843
+ options: Opcions
844
+ or: o
845
+ or_over_price: "%{price} or over"
846
+ order: Demanat
847
+ order_adjustments: Order adjustments
848
+ order_already_updated:
849
+ order_approved:
850
+ order_canceled:
851
+ order_details: Detalls de la comanda
852
+ order_email_resent: Email de comanda reexpedida
853
+ order_information:
854
+ order_mailer:
855
+ cancel_email:
856
+ dear_customer:
857
+ instructions:
858
+ order_summary_canceled:
859
+ subject: Cancel·lació de comanda
860
+ subtotal:
861
+ total:
862
+ confirm_email:
863
+ dear_customer:
864
+ instructions:
865
+ order_summary:
866
+ subject: Confirmació de comanda
867
+ subtotal:
868
+ thanks:
869
+ total:
870
+ order_not_found:
871
+ order_number:
872
+ order_processed_successfully: La seva comanda s'ha processat correctament
873
+ order_resumed:
874
+ order_state:
875
+ address: adreça
876
+ awaiting_return: esperant resposta
877
+ canceled: cancel·lat
878
+ cart: carret
879
+ complete: completat
880
+ confirm: confirmat
881
+ considered_risky:
882
+ delivery: enviament
883
+ payment: pagament
884
+ resumed: continuat
885
+ returned: retornat
886
+ order_summary: Resum de comanda
887
+ order_sure_want_to: Està segur de vol %{event} aquesta comanda?
888
+ order_total: Total de la comanda
889
+ order_updated: Comanda actualitzada
890
+ orders: Demanats
891
+ other_items_in_other:
892
+ out_of_stock: Sense estoc
893
+ overview: General
894
+ package_from:
895
+ pagination:
896
+ next_page:
897
+ previous_page:
898
+ truncate: "…"
899
+ password: Contrasenya
900
+ paste:
901
+ path: Ruta
902
+ pay: Pagar
903
+ payment: Pagament
904
+ payment_could_not_be_created:
905
+ payment_identifier:
906
+ payment_information: Informació del pagament
907
+ payment_method: Mètode de pagament
908
+ payment_method_not_supported:
909
+ payment_methods: Mètodes de pagament
910
+ payment_processing_failed: El pagament no ha pogut ser processat, per favor, revisi les dades proporcionades.
911
+ payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
912
+ payment_processor_choose_link: our payments page
913
+ payment_state: Estat del pagament
914
+ payment_states:
915
+ balance_due: pagament pendent
916
+ checkout: caixa
917
+ completed: completat
918
+ credit_owed: cŕedito a deure
919
+ failed: fallat
920
+ paid: pagat
921
+ pending: pendent
922
+ processing: processant
923
+ void: buit
924
+ payment_updated: Pagament actualitzat
925
+ payments: Pagaments
926
+ pending:
927
+ percent:
928
+ percent_per_item:
929
+ permalink: Enllaç permanent
930
+ phone: Telèfon
931
+ place_order: Fer comanda
932
+ please_define_payment_methods:
933
+ populate_get_error: Something went wrong. Please try adding the item again.
934
+ powered_by: Suportat per
935
+ pre_tax_amount:
936
+ pre_tax_refund_amount:
937
+ pre_tax_total:
938
+ preferred_reimbursement_type:
939
+ presentation: Presentació
940
+ previous: Anterior
941
+ previous_state_missing:
942
+ price: Preu
943
+ price_range:
944
+ price_sack:
945
+ process: Processar
946
+ product: Producte
947
+ product_details: Detalls del producte
948
+ product_has_no_description: El producte no té descripció
949
+ product_not_available_in_this_currency:
950
+ product_properties: Propietats del producte
951
+ product_rule:
952
+ choose_products: Triï productes
953
+ label:
954
+ match_all: tots
955
+ match_any: almenys un de
956
+ match_none:
957
+ product_source:
958
+ group: Del grup de productes
959
+ manual: Triar manualment
960
+ products: Productes
961
+ promotion: Promoció
962
+ promotion_action:
963
+ promotion_action_types:
964
+ create_adjustment:
965
+ description:
966
+ name:
967
+ create_item_adjustments:
968
+ description:
969
+ name:
970
+ create_line_items:
971
+ description:
972
+ name:
973
+ free_shipping:
974
+ description:
975
+ name:
976
+ promotion_actions:
977
+ promotion_form:
978
+ match_policies:
979
+ all: Coincideix amb alguna de les següents regles
980
+ any: Coincideix amb totes les següents regles
981
+ promotion_rule: Promotion Rule
982
+ promotion_rule_types:
983
+ first_order:
984
+ description: Ha de ser la primera comanda del client
985
+ name: Primera comanda
986
+ item_total:
987
+ description: Total de la comanda coincideix amb els següents criteris
988
+ name: Total d'elements
989
+ landing_page:
990
+ description:
991
+ name:
992
+ one_use_per_user:
993
+ description:
994
+ name:
995
+ option_value:
996
+ description:
997
+ name:
998
+ product:
999
+ description: La comanda inclou els següents productes
1000
+ name: Productes
1001
+ taxon:
1002
+ description:
1003
+ name:
1004
+ user:
1005
+ description: Disponible només per als següents clients
1006
+ name: Client
1007
+ user_logged_in:
1008
+ description:
1009
+ name:
1010
+ promotion_uses:
1011
+ promotionable:
1012
+ promotions: Promocions
1013
+ propagate_all_variants:
1014
+ properties: Propietats
1015
+ property: Propietat
1016
+ prototype: Prototip
1017
+ prototypes: Prototips
1018
+ provider: Proveïdor
1019
+ provider_settings_warning: Si està canviant el tipus de proveïdor, ha de guardar-ho abans d'editar les seves característiques
1020
+ qty: Quan.
1021
+ quantity: Quantitat
1022
+ quantity_returned: Quantitat retornada
1023
+ quantity_shipped: Quantitat enviada
1024
+ quick_search:
1025
+ rate: proporció
1026
+ reason: Raó
1027
+ receive: rebre
1028
+ receive_stock:
1029
+ received: Rebut
1030
+ reception_status:
1031
+ reference:
1032
+ refund: Retornar
1033
+ refund_amount_must_be_greater_than_zero:
1034
+ refund_reasons:
1035
+ refunded_amount:
1036
+ refunds:
1037
+ register: Registrar com a nou client
1038
+ registration: Registre
1039
+ reimburse:
1040
+ reimbursed:
1041
+ reimbursement:
1042
+ reimbursement_mailer:
1043
+ reimbursement_email:
1044
+ days_to_send:
1045
+ dear_customer:
1046
+ exchange_summary:
1047
+ for:
1048
+ instructions:
1049
+ refund_summary:
1050
+ subject:
1051
+ total_refunded:
1052
+ reimbursement_perform_failed:
1053
+ reimbursement_status:
1054
+ reimbursement_type:
1055
+ reimbursement_type_override:
1056
+ reimbursement_types:
1057
+ reimbursements:
1058
+ reject:
1059
+ rejected:
1060
+ remember_me: Recordar-me en aquest equip
1061
+ remove: Eliminar
1062
+ rename: Rename
1063
+ report:
1064
+ reports: Informes
1065
+ resend: Tornar a enviar
1066
+ reset_password: Reiniciar la meva contrasenya
1067
+ response_code: Codi de resposta
1068
+ resume: Reprendre
1069
+ resumed: Reprès
1070
+ return: tornar
1071
+ return_authorization: Autorització per a devolució
1072
+ return_authorization_reasons:
1073
+ return_authorization_updated: Retornar autorització actualitzada
1074
+ return_authorizations: Autoritzacions per a devolucions
1075
+ return_item_inventory_unit_ineligible:
1076
+ return_item_inventory_unit_reimbursed:
1077
+ return_item_rma_ineligible:
1078
+ return_item_time_period_ineligible:
1079
+ return_items:
1080
+ return_items_cannot_be_associated_with_multiple_orders:
1081
+ return_number:
1082
+ return_quantity: Retornar quantitat
1083
+ returned: va tornar
1084
+ returns:
1085
+ review:
1086
+ risk:
1087
+ risk_analysis:
1088
+ risky:
1089
+ rma_credit: Crèdit RMA
1090
+ rma_number: Nombre RMA
1091
+ rma_value: Valor RMA
1092
+ roles: Funcions
1093
+ rules: Regles
1094
+ safe:
1095
+ sales_total: Total de vendes
1096
+ sales_total_description: Total de vendes de totes les comandes
1097
+ sales_totals:
1098
+ save_and_continue: Guardar i continuar
1099
+ save_my_address:
1100
+ say_no:
1101
+ say_yes:
1102
+ scope: Scope
1103
+ search: Buscar
1104
+ search_results: Buscar resultats per '%{keywords}'
1105
+ searching: Buscant
1106
+ secure_connection_type: Tipus de connexió segura
1107
+ security_settings: Security Settings
1108
+ select: Seleccionar
1109
+ select_a_return_authorization_reason:
1110
+ select_a_stock_location:
1111
+ select_from_prototype: Seleccionar des de prototip
1112
+ select_stock:
1113
+ send_copy_of_all_mails_to: Envia una còpia de tots els correus a
1114
+ send_mails_as: Enviar correus com
1115
+ server: Servidor
1116
+ server_error: El servidor ha retornat un error
1117
+ settings: Configuració
1118
+ ship: enviar
1119
+ ship_address: adreça d'enviament
1120
+ ship_total:
1121
+ shipment: Enviament
1122
+ shipment_adjustments:
1123
+ shipment_details:
1124
+ shipment_mailer:
1125
+ shipped_email:
1126
+ dear_customer:
1127
+ instructions:
1128
+ shipment_summary:
1129
+ subject:
1130
+ thanks:
1131
+ track_information:
1132
+ track_link:
1133
+ shipment_state: Estat de l'enviament
1134
+ shipment_states:
1135
+ backorder:
1136
+ canceled:
1137
+ partial: parcial
1138
+ pending: pendent
1139
+ ready: llest
1140
+ shipped: enviat
1141
+ shipment_transfer_error:
1142
+ shipment_transfer_success:
1143
+ shipments: Enviaments
1144
+ shipped: Enviat
1145
+ shipping: Enviament
1146
+ shipping_address: Adreça d'enviament
1147
+ shipping_categories: Categories d'enviament
1148
+ shipping_category: Categoria d'enviament
1149
+ shipping_flat_rate_per_item:
1150
+ shipping_flat_rate_per_order:
1151
+ shipping_flexible_rate:
1152
+ shipping_instructions: Instruccions d'enviament
1153
+ shipping_method: Mètode d'enviament
1154
+ shipping_methods: Mètodes d'enviament
1155
+ shipping_price_sack:
1156
+ shipping_total:
1157
+ shop_by_taxonomy: Comprar per %{taxonomy}
1158
+ shopping_cart: Cistella de compres
1159
+ show: Mostrar
1160
+ show_active: mostrar actius
1161
+ show_deleted: Mostrar esborrats
1162
+ show_only_complete_orders: Mostrar només les comandes completades
1163
+ show_only_considered_risky:
1164
+ show_rate_in_label:
1165
+ sku: Codi
1166
+ skus:
1167
+ slug:
1168
+ source: Font
1169
+ special_instructions: Instruccions especials
1170
+ split:
1171
+ spree_gateway_error_flash_for_checkout: va haver-hi un problema amb la seva informació de pagament. Per favor, revisi-la i intenti-ho de nou.
1172
+ ssl:
1173
+ change_protocol:
1174
+ start: Inici
1175
+ state: Província
1176
+ state_based: Província
1177
+ state_machine_states:
1178
+ accepted:
1179
+ address:
1180
+ authorized:
1181
+ awaiting:
1182
+ awaiting_return:
1183
+ backordered:
1184
+ canceled:
1185
+ cart:
1186
+ checkout:
1187
+ closed:
1188
+ complete:
1189
+ completed:
1190
+ confirm:
1191
+ delivery:
1192
+ errored:
1193
+ failed:
1194
+ given_to_customer:
1195
+ invalid:
1196
+ manual_intervention_required:
1197
+ on_hand:
1198
+ open:
1199
+ order:
1200
+ payment:
1201
+ pending:
1202
+ processing:
1203
+ ready:
1204
+ reimbursed:
1205
+ resumed:
1206
+ returned:
1207
+ shipped:
1208
+ void:
1209
+ states: Províncies
1210
+ states_required:
1211
+ status: Estat
1212
+ stock:
1213
+ stock_location:
1214
+ stock_location_info:
1215
+ stock_locations:
1216
+ stock_locations_need_a_default_country:
1217
+ stock_management:
1218
+ stock_management_requires_a_stock_location:
1219
+ stock_movements:
1220
+ stock_movements_for_stock_location:
1221
+ stock_successfully_transferred:
1222
+ stock_transfer:
1223
+ stock_transfers:
1224
+ stop: Fins a
1225
+ store: Tenda
1226
+ street_address: Adreça
1227
+ street_address_2: Adreça (continuació)
1228
+ subtotal: Subtotal
1229
+ subtract: Restar
1230
+ success:
1231
+ successfully_created: "%{resource} ha estat creat amb èxit"
1232
+ successfully_refunded:
1233
+ successfully_removed: "%{resource} ha estat esborrat amb èxit"
1234
+ successfully_signed_up_for_analytics:
1235
+ successfully_updated: "%{resource} ha estat actualitzat amb èxit"
1236
+ summary:
1237
+ tax: Imposats
1238
+ tax_categories: Categories fiscals
1239
+ tax_category: Categoria fiscal
1240
+ tax_code:
1241
+ tax_included:
1242
+ tax_rate_amount_explanation:
1243
+ tax_rates: Taxes d'impostos
1244
+ taxon: Categoria
1245
+ taxon_edit: Editar categoria
1246
+ taxon_placeholder:
1247
+ taxon_rule:
1248
+ choose_taxons:
1249
+ label:
1250
+ match_all:
1251
+ match_any:
1252
+ taxonomies:
1253
+ taxonomy:
1254
+ taxonomy_edit: Editar categories
1255
+ taxonomy_tree_error: El canvi sol·licitat no ha estat acceptat i l'arbre ha tornat al seu estat anterior. Per favor, intenti-ho de nou.
1256
+ taxonomy_tree_instruction: "* Clic dret en un dels nodes per accedir al menu per afegir, eliminar o ordenar nodes"
1257
+ taxons: Categories
1258
+ test:
1259
+ test_mailer:
1260
+ test_email:
1261
+ greeting:
1262
+ message:
1263
+ subject:
1264
+ test_mode: Manera Prova
1265
+ thank_you_for_your_order: Gràcies per la seva comanda
1266
+ there_are_no_items_for_this_order:
1267
+ there_were_problems_with_the_following_fields: 'Han hagut problemes amb els següents camps:'
1268
+ this_order_has_already_received_a_refund:
1269
+ thumbnail: Miniatura
1270
+ tiered_flat_rate:
1271
+ tiered_percent:
1272
+ tiers:
1273
+ time:
1274
+ to_add_variants_you_must_first_define: Per agregar variants, primer ha de definir
1275
+ total: Total
1276
+ total_per_item:
1277
+ total_pre_tax_refund:
1278
+ total_price:
1279
+ total_sales:
1280
+ track_inventory:
1281
+ tracking: Seguiment
1282
+ tracking_number:
1283
+ tracking_url:
1284
+ tracking_url_placeholder:
1285
+ transaction_id:
1286
+ transfer_from_location:
1287
+ transfer_stock:
1288
+ transfer_to_location:
1289
+ tree: Arbre
1290
+ type: Tipus
1291
+ type_to_search: Tipus a buscar
1292
+ unable_to_connect_to_gateway: No ha estat possible connectar-se a la passarel·la.
1293
+ unable_to_create_reimbursements:
1294
+ under_price: Under %{price}
1295
+ unlock:
1296
+ unrecognized_card_type: Tipus de targeta desconegut
1297
+ unshippable_items:
1298
+ update: Actualitzar
1299
+ updating: Actualitzant
1300
+ usage_limit: Límit d'ús
1301
+ use_app_default:
1302
+ use_billing_address: Usar l'adreça de facturació
1303
+ use_new_cc: Usar una targeta diferent
1304
+ use_s3:
1305
+ user: Usuari
1306
+ user_rule:
1307
+ choose_users: Triar usuaris
1308
+ users: Usuaris
1309
+ validation:
1310
+ cannot_be_less_than_shipped_units: no pot ser menys que el nombre d'unitats enviades.
1311
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1312
+ exceeds_available_stock:
1313
+ is_too_large: "és massa gran -- no hi ha suficients productes disponibles per a aquesta quantitat"
1314
+ must_be_int: ha de ser un sencer
1315
+ must_be_non_negative: ha de ser un valor no negatiu
1316
+ unpaid_amount_not_zero:
1317
+ value: valor
1318
+ variant: Variant
1319
+ variant_placeholder:
1320
+ variants: Variants
1321
+ version: Versió
1322
+ void: Buit
1323
+ weight: Pes
1324
+ what_is_a_cvv: Què és el codi de verificació (CVV)?
1325
+ what_is_this: Què és això?
1326
+ width: Ample
1327
+ year: Any
1328
+ you_have_no_orders_yet: Encara no té cap comanda.
1329
+ your_cart_is_empty: La seva cistella està buida
1330
+ your_order_is_empty_add_product:
1331
+ zip: Codi postal
1332
+ zipcode: Codi Postal
1333
+ zone: Zona
1334
+ zones: Zones