solidus_i18n 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,1290 @@
1
+ pt:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: Endereço
6
+ address2: Endereço (cont.)
7
+ city: Cidade
8
+ country: País
9
+ firstname: Primeiro Nome
10
+ lastname: Ultimo Nome
11
+ phone: Telefone
12
+ state: Estado
13
+ zipcode: Código 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: Nome ISO
24
+ name: Nome
25
+ numcode: Código ISO
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: Tipo
29
+ month: Mês
30
+ name:
31
+ number: Número
32
+ verification_value:
33
+ year:
34
+ spree/inventory_unit:
35
+ state:
36
+ spree/line_item:
37
+ price: Preço
38
+ quantity: Quantidade
39
+ spree/option_type:
40
+ name: Nome
41
+ presentation:
42
+ spree/order:
43
+ checkout_complete:
44
+ completed_at:
45
+ considered_risky:
46
+ coupon_code:
47
+ created_at:
48
+ email:
49
+ ip_address:
50
+ item_total:
51
+ number: Número
52
+ payment_state:
53
+ shipment_state:
54
+ special_instructions:
55
+ state:
56
+ 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: Quantia
75
+ spree/payment_method:
76
+ name: Nome
77
+ spree/product:
78
+ available_on:
79
+ cost_currency:
80
+ cost_price: Cost Price
81
+ description: Descrição
82
+ master_price: Master Price
83
+ name: Nome
84
+ on_hand:
85
+ shipping_category:
86
+ tax_category:
87
+ spree/promotion:
88
+ advertise: Advertise
89
+ code: Código
90
+ description: Descrição
91
+ event_name:
92
+ expires_at:
93
+ name:
94
+ path:
95
+ starts_at:
96
+ usage_limit:
97
+ spree/promotion_category:
98
+ name:
99
+ spree/property:
100
+ name:
101
+ presentation:
102
+ spree/prototype:
103
+ name:
104
+ spree/return_authorization:
105
+ amount:
106
+ spree/role:
107
+ name:
108
+ spree/state:
109
+ abbr:
110
+ name:
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:
128
+ name:
129
+ spree/tax_rate:
130
+ amount:
131
+ included_in_price:
132
+ show_rate_in_label:
133
+ spree/taxon:
134
+ name:
135
+ permalink:
136
+ position:
137
+ spree/taxonomy:
138
+ name:
139
+ spree/user:
140
+ email:
141
+ password:
142
+ password_confirmation:
143
+ spree/variant:
144
+ cost_currency:
145
+ cost_price:
146
+ depth:
147
+ height:
148
+ price:
149
+ sku:
150
+ weight:
151
+ width:
152
+ spree/zone:
153
+ description:
154
+ name:
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
+ spree/country:
204
+ spree/credit_card:
205
+ spree/customer_return:
206
+ spree/inventory_unit:
207
+ spree/line_item:
208
+ spree/option_type:
209
+ spree/option_value:
210
+ spree/order:
211
+ spree/payment:
212
+ spree/payment_method:
213
+ spree/product:
214
+ spree/promotion:
215
+ spree/promotion_category:
216
+ spree/property:
217
+ spree/prototype:
218
+ spree/refund_reason:
219
+ spree/reimbursement:
220
+ spree/reimbursement_type:
221
+ spree/return_authorization:
222
+ spree/return_authorization_reason:
223
+ spree/role:
224
+ spree/shipment:
225
+ spree/shipping_category:
226
+ spree/shipping_method:
227
+ spree/state:
228
+ spree/state_change:
229
+ spree/stock_location:
230
+ spree/stock_movement:
231
+ spree/stock_transfer:
232
+ spree/tax_category:
233
+ spree/tax_rate:
234
+ spree/taxon:
235
+ spree/taxonomy:
236
+ spree/tracker:
237
+ spree/user:
238
+ spree/variant:
239
+ spree/zone:
240
+ devise:
241
+ confirmations:
242
+ confirmed:
243
+ send_instructions:
244
+ failure:
245
+ inactive:
246
+ invalid:
247
+ invalid_token:
248
+ locked:
249
+ timeout:
250
+ unauthenticated:
251
+ unconfirmed:
252
+ mailer:
253
+ confirmation_instructions:
254
+ subject:
255
+ reset_password_instructions:
256
+ subject:
257
+ unlock_instructions:
258
+ subject:
259
+ oauth_callbacks:
260
+ failure:
261
+ success:
262
+ unlocks:
263
+ send_instructions:
264
+ unlocked:
265
+ user_passwords:
266
+ user:
267
+ cannot_be_blank:
268
+ send_instructions:
269
+ updated:
270
+ user_registrations:
271
+ destroyed:
272
+ inactive_signed_up:
273
+ signed_up:
274
+ updated:
275
+ user_sessions:
276
+ signed_in:
277
+ signed_out:
278
+ errors:
279
+ messages:
280
+ already_confirmed:
281
+ not_found:
282
+ not_locked:
283
+ not_saved:
284
+ spree:
285
+ abbreviation: Abreviação
286
+ accept:
287
+ acceptance_errors:
288
+ acceptance_status:
289
+ accepted:
290
+ account: Conta
291
+ account_updated: Conta atualizada!
292
+ action: Ação
293
+ actions:
294
+ cancel: Cancelar
295
+ continue:
296
+ create: Criar
297
+ destroy: Destruir
298
+ edit:
299
+ list: Lista
300
+ listing: Listagem
301
+ new: Nova
302
+ refund:
303
+ save:
304
+ update: Atualizar
305
+ activate: Activate
306
+ active: Ativo
307
+ add: Adicionar
308
+ add_action_of_type: Add action of type
309
+ add_country: Adicionar País
310
+ add_coupon_code:
311
+ add_new_header:
312
+ add_new_style:
313
+ add_one:
314
+ add_option_value: Adicionar Valor da Opção
315
+ add_product: Adicionar Produtp
316
+ add_product_properties: Adicionar Propriedades do Produto
317
+ add_rule_of_type: Adicionar regra de tipo
318
+ add_state: Adicionar Distrito
319
+ add_stock:
320
+ add_stock_management:
321
+ add_to_cart: Adicionar ao Carrinho de Compras
322
+ add_variant:
323
+ additional_item: Artigo adicional
324
+ address1:
325
+ address2:
326
+ adjustable:
327
+ adjustment: Acerto
328
+ adjustment_amount:
329
+ adjustment_successfully_closed:
330
+ adjustment_successfully_opened:
331
+ adjustment_total: Total do Acerto
332
+ adjustments: Acertos
333
+ admin:
334
+ tab:
335
+ configuration:
336
+ option_types:
337
+ orders:
338
+ overview:
339
+ products:
340
+ promotions:
341
+ promotion_categories:
342
+ properties:
343
+ prototypes:
344
+ reports:
345
+ taxonomies:
346
+ taxons:
347
+ users:
348
+ user:
349
+ account:
350
+ addresses:
351
+ items:
352
+ items_purchased:
353
+ order_history:
354
+ order_num:
355
+ orders:
356
+ user_information:
357
+ administration: Administração
358
+ advertise:
359
+ agree_to_privacy_policy:
360
+ agree_to_terms_of_service:
361
+ all:
362
+ all_adjustments_closed:
363
+ all_adjustments_opened:
364
+ all_departments:
365
+ all_items_have_been_returned:
366
+ allow_ssl_in_development_and_test: Allow SSL to be used when in development and test modes
367
+ allow_ssl_in_production: Allow SSL to be used in production mode
368
+ allow_ssl_in_staging: Allow SSL to be used in staging mode
369
+ already_signed_up_for_analytics:
370
+ alt_text: Texto alternativo
371
+ alternative_phone: Telefone alternativo
372
+ amount: Montante
373
+ analytics_desc_header_1:
374
+ analytics_desc_header_2:
375
+ analytics_desc_list_1:
376
+ analytics_desc_list_2:
377
+ analytics_desc_list_3:
378
+ analytics_desc_list_4:
379
+ analytics_trackers: Analytics Trackers
380
+ and:
381
+ approve:
382
+ approved_at:
383
+ approver:
384
+ are_you_sure: Tem a certeza?
385
+ are_you_sure_delete: Tem a certeza que deseja remover este registo?
386
+ associated_adjustment_closed:
387
+ at_symbol: '@'
388
+ authorization_failure: Falha na autorização
389
+ authorized:
390
+ auto_capture:
391
+ available_on: Disponível em
392
+ average_order_value:
393
+ avs_response:
394
+ back: Voltar
395
+ back_end: Back End
396
+ back_to_payment:
397
+ back_to_resource_list:
398
+ back_to_rma_reason_list:
399
+ back_to_store: Voltar para a loja
400
+ back_to_users_list:
401
+ backorderable:
402
+ backorderable_default:
403
+ backordered:
404
+ backorders_allowed:
405
+ balance_due: Saldo devedor
406
+ base_amount:
407
+ base_percent:
408
+ bill_address: Endereço para Faturação
409
+ billing: Faturação
410
+ billing_address: Endereço para Faturação
411
+ both: Ambos
412
+ calculated_reimbursements:
413
+ calculator: Calculadora
414
+ calculator_settings_warning: Se alterar o tipo de calculadora, deve primeiro confirmar a alteração antes de editar as configurações.
415
+ cancel: cancelar
416
+ canceled_at:
417
+ canceler:
418
+ cannot_create_customer_returns:
419
+ cannot_create_payment_without_payment_methods: You cannot create a payment for an order without any payment methods defined.
420
+ cannot_create_returns: Não é possível criar um retorno para esse pedido, pois ele ainda não foi enviado.
421
+ cannot_perform_operation: Não foi possível realizar esta operação
422
+ cannot_set_shipping_method_without_address:
423
+ capture: Capturar
424
+ capture_events:
425
+ card_code: Código do cartão
426
+ card_number: Número do cartão
427
+ card_type:
428
+ card_type_is: A bandeira do cartão é
429
+ cart: Carrinho de Compras
430
+ cart_subtotal:
431
+ categories: Categorias
432
+ category: Categoria
433
+ charged:
434
+ check_for_spree_alerts:
435
+ checkout: Finalizar compra
436
+ choose_a_customer:
437
+ choose_a_taxon_to_sort_products_for:
438
+ choose_currency:
439
+ choose_dashboard_locale:
440
+ choose_location:
441
+ city: Cidade
442
+ clear_cache:
443
+ clear_cache_ok:
444
+ clear_cache_warning:
445
+ click_and_drag_on_the_products_to_sort_them:
446
+ clone: Clone
447
+ close:
448
+ close_all_adjustments:
449
+ code: Código
450
+ company:
451
+ complete: completo
452
+ configuration: Configuração
453
+ configurations: Configurações
454
+ confirm: Confirme
455
+ confirm_delete: Confirmar que deseja remover
456
+ confirm_password: Confirmação da password
457
+ continue: Continuar
458
+ continue_shopping: Continuar a comprar
459
+ cost_currency:
460
+ cost_price: Preço de custo
461
+ could_not_connect_to_jirafe:
462
+ could_not_create_customer_return:
463
+ could_not_create_stock_movement:
464
+ count_on_hand:
465
+ countries:
466
+ country: País
467
+ country_based: Baseado em País
468
+ country_name:
469
+ country_names:
470
+ CA:
471
+ FRA:
472
+ ITA:
473
+ US:
474
+ coupon: Cupão
475
+ coupon_code: Código do cupão de desconto
476
+ coupon_code_already_applied:
477
+ coupon_code_applied:
478
+ coupon_code_better_exists:
479
+ coupon_code_expired:
480
+ coupon_code_max_usage:
481
+ coupon_code_not_eligible:
482
+ coupon_code_not_found:
483
+ coupon_code_unknown_error:
484
+ create: Criar
485
+ create_a_new_account: Criar uma nova conta
486
+ create_new_order:
487
+ create_reimbursement:
488
+ created_at:
489
+ credit: Crédito
490
+ credit_card: Cartão de Crédito
491
+ credit_cards: Credit Cards
492
+ credit_owed: Crédito Devedor
493
+ credits:
494
+ currency:
495
+ currency_decimal_mark:
496
+ currency_settings:
497
+ currency_symbol_position:
498
+ currency_thousands_separator:
499
+ current: Atual
500
+ current_promotion_usage:
501
+ customer: Cliente
502
+ customer_details: Detalhes do cliente
503
+ customer_details_updated:
504
+ customer_return:
505
+ customer_returns:
506
+ customer_search: Busca de clientes
507
+ cut:
508
+ cvv_response:
509
+ dash:
510
+ jirafe:
511
+ app_id:
512
+ app_token:
513
+ currently_unavailable:
514
+ explanation:
515
+ header:
516
+ site_id:
517
+ token:
518
+ jirafe_settings_updated:
519
+ date:
520
+ date_completed: Date Completed
521
+ date_picker:
522
+ first_day:
523
+ format:
524
+ js_format:
525
+ date_range: Entre as Datas
526
+ default: Padrão
527
+ default_refund_amount:
528
+ default_tax:
529
+ default_tax_zone:
530
+ delete: Apagar
531
+ deleted_variants_present:
532
+ delivery: Entrega
533
+ depth: Espessura
534
+ description: Descrição
535
+ destination:
536
+ destroy: Destruir
537
+ details:
538
+ discount_amount: Desconto
539
+ dismiss_banner:
540
+ display: Mostrar
541
+ display_currency:
542
+ doesnt_track_inventory:
543
+ edit: Editar de Imposto
544
+ editing_resource:
545
+ editing_rma_reason:
546
+ editing_user: Editando Utilizador
547
+ eligibility_errors:
548
+ messages:
549
+ has_excluded_product:
550
+ item_total_less_than:
551
+ item_total_less_than_or_equal:
552
+ item_total_more_than:
553
+ item_total_more_than_or_equal:
554
+ limit_once_per_user:
555
+ missing_product:
556
+ missing_taxon:
557
+ no_applicable_products:
558
+ no_matching_taxons:
559
+ no_user_or_email_specified:
560
+ no_user_specified:
561
+ not_first_order:
562
+ email: Email
563
+ empty: Vazio
564
+ empty_cart: Esvaziar o Carro
565
+ enable_mail_delivery: Habilitar envio de email
566
+ end:
567
+ ending_in:
568
+ environment: Ambiente
569
+ error: erro
570
+ errors:
571
+ messages:
572
+ could_not_create_taxon: Não foi possível criar taxon
573
+ no_payment_methods_available: No payment methods are configured for this environment
574
+ no_shipping_methods_available: Não há métodos de envio disponíveis para a localização que selecionou, por favor altere o seu endereço e tente novamente
575
+ errors_prohibited_this_record_from_being_saved:
576
+ one: 1 erro não permitiu que estes dados fossem gravados
577
+ other: "%{count} erros não permitiram que estes dados fossem gravados"
578
+ event: Evento
579
+ events:
580
+ spree:
581
+ cart:
582
+ add:
583
+ checkout:
584
+ coupon_code_added:
585
+ content:
586
+ visited:
587
+ order:
588
+ contents_changed:
589
+ page_view:
590
+ user:
591
+ signup:
592
+ exceptions:
593
+ count_on_hand_setter:
594
+ exchange_for:
595
+ excl:
596
+ existing_shipments:
597
+ expedited_exchanges_warning:
598
+ expiration: Expiração
599
+ extension: Extensão
600
+ failed_payment_attempts:
601
+ filename: Nome do arquivo
602
+ fill_in_customer_info:
603
+ filter_results:
604
+ finalize: Finalizar
605
+ finalized:
606
+ find_a_taxon:
607
+ first_item: Custo do primeiro item
608
+ first_name: Nome
609
+ first_name_begins_with: Primeiro nome começa com
610
+ flat_percent: Percentagem (flat)
611
+ flat_rate_per_order: "(Flat) taxa (por pedido)"
612
+ flexible_rate: Taxa Flexivel
613
+ forgot_password: Esqueci-me da minha password
614
+ free_shipping: Entrega grátis
615
+ free_shipping_amount:
616
+ front_end: Front End
617
+ gateway: Gateway
618
+ gateway_config_unavailable: Gateway não está disponível
619
+ gateway_error: Erro na Gateway
620
+ general: Geral
621
+ general_settings: Configurações Gerais
622
+ google_analytics: Google Analytics
623
+ google_analytics_id: Analytics ID
624
+ guest_checkout: Comprar como visitante
625
+ guest_user_account: Comprar como visitante
626
+ has_no_shipped_units: não tem unidades entregues
627
+ height: Altura
628
+ hide_cents:
629
+ home: Início
630
+ i18n:
631
+ available_locales:
632
+ language:
633
+ localization_settings:
634
+ this_file_language: Português (PT)
635
+ icon: Icone
636
+ identifier:
637
+ image: Imagem
638
+ images: Imagens
639
+ implement_eligible_for_return:
640
+ implement_requires_manual_intervention:
641
+ inactive:
642
+ incl:
643
+ included_in_price:
644
+ included_price_validation:
645
+ incomplete:
646
+ info_number_of_skus_not_shown:
647
+ info_product_has_multiple_skus:
648
+ instructions_to_reset_password: 'Preencha o formulário abaixo e enviaremos instruções de como redefinir a sua password por email:'
649
+ insufficient_stock: Insufficient stock available, only %{on_hand} remaining
650
+ insufficient_stock_lines_present:
651
+ intercept_email_address: Interceptar endereço de email
652
+ intercept_email_instructions: Sobreescrever destinatários por este endereço de email.
653
+ internal_name:
654
+ invalid_credit_card:
655
+ invalid_exchange_variant:
656
+ invalid_payment_provider:
657
+ invalid_promotion_action:
658
+ invalid_promotion_rule:
659
+ inventory: Inventário
660
+ inventory_adjustment: Ajuste de Inventário
661
+ inventory_error_flash_for_insufficient_quantity:
662
+ inventory_state:
663
+ is_not_available_to_shipment_address: Não está disponível para endereço de entrega
664
+ iso_name:
665
+ item: Artigo
666
+ item_description: Descrição do Artigo
667
+ item_total: Total do Artigo
668
+ item_total_rule:
669
+ operators:
670
+ gt: maior que
671
+ gte: maior ou igual que
672
+ lt:
673
+ lte:
674
+ items_cannot_be_shipped:
675
+ items_in_rmas:
676
+ items_reimbursed:
677
+ items_to_be_reimbursed:
678
+ jirafe:
679
+ landing_page_rule:
680
+ path: Path
681
+ last_name: Sobrenome
682
+ last_name_begins_with: Sobrenome começa com
683
+ learn_more: Learn More
684
+ lifetime_stats:
685
+ line_item_adjustments:
686
+ list: Lista
687
+ loading: Carregando
688
+ locale_changed: Localização Alterada
689
+ location:
690
+ lock:
691
+ log_entries:
692
+ logged_in_as: Registado como
693
+ logged_in_succesfully: Autenticação feita com sucesso, obrigado!
694
+ logged_out: Você saiu.
695
+ login: Login
696
+ login_as_existing: Entrar como utilizador existente
697
+ login_failed: Falha na autenticação.
698
+ login_name: Nome de Utilizador
699
+ logout: Sair
700
+ logs:
701
+ look_for_similar_items: Procurar artigos similares
702
+ make_refund: Devolução
703
+ make_sure_the_above_reimbursement_amount_is_correct:
704
+ manage_promotion_categories:
705
+ manage_variants:
706
+ manual_intervention_required:
707
+ master_price: Preço Principal
708
+ match_choices:
709
+ all:
710
+ none:
711
+ max_items: Artigos máximos
712
+ member_since:
713
+ memo:
714
+ meta_description: Descrição
715
+ meta_keywords: Palavras-Chave
716
+ meta_title:
717
+ metadata: Metadados
718
+ minimal_amount: Quantidade mínima
719
+ month: Mês
720
+ more: More
721
+ move_stock_between_locations:
722
+ my_account: Minha Conta
723
+ my_orders: As Minhas Encomendas
724
+ name: Nome
725
+ name_on_card:
726
+ name_or_sku: Nome ou SKU
727
+ new: Novo
728
+ new_adjustment: Novo Ajuste
729
+ new_country:
730
+ new_customer: Novo Cliente
731
+ new_customer_return:
732
+ new_image: Nova Imagem
733
+ new_option_type: Novo Tipo de Opção
734
+ new_order: Novo Pedido
735
+ new_order_completed: Novo Pedido Completado
736
+ new_payment: Novo Pagamento
737
+ new_payment_method: Nova Forma de Pagamento
738
+ new_product: Novo Produto
739
+ new_promotion: Nova Promoção
740
+ new_promotion_category:
741
+ new_property: Nova Propriedade
742
+ new_prototype: Novo Protótipo
743
+ new_refund:
744
+ new_refund_reason:
745
+ new_return_authorization: Nova Autorização de Devolução
746
+ new_rma_reason:
747
+ new_shipment_at_location:
748
+ new_shipping_category: Nova Categoria de Entrega
749
+ new_shipping_method: Novo Método de Entrega
750
+ new_state: Novo Estado
751
+ new_stock_location:
752
+ new_stock_movement:
753
+ new_stock_transfer:
754
+ new_tax_category: Nova Categoria de Imposto
755
+ new_tax_rate: Nova Taxa de Imposto
756
+ new_taxon: Novo Táxon
757
+ new_taxonomy: Nova Taxonomia
758
+ new_tracker: Novo Rastreio
759
+ new_user: Novo utilizador
760
+ new_variant: Nova Variante
761
+ new_zone: Nova Zona
762
+ next: Próximo
763
+ no_actions_added:
764
+ no_payment_found:
765
+ no_pending_payments:
766
+ no_products_found: Não existem produtos
767
+ no_resource_found:
768
+ no_results: Não existem resultados
769
+ no_returns_found:
770
+ no_rules_added: Nenhuma regra adicionada
771
+ no_shipping_method_selected:
772
+ no_state_changes:
773
+ no_tracking_present:
774
+ none: Nenhum
775
+ none_selected:
776
+ normal_amount: Quantidade Normal
777
+ not: não
778
+ not_available: N/A
779
+ not_enough_stock:
780
+ not_found: "%{resource} is not found"
781
+ note:
782
+ notice_messages:
783
+ product_cloned: Produto clonado
784
+ product_deleted: Produto apagado
785
+ product_not_cloned: Produto não pode ser clonado
786
+ product_not_deleted: Produto não pode ser apagado
787
+ variant_deleted: Variante deletada
788
+ variant_not_deleted: Variante não pode ser apagada
789
+ num_orders:
790
+ on_hand: Em Stock
791
+ open:
792
+ open_all_adjustments:
793
+ option_type: Tipo de Opção
794
+ option_type_placeholder:
795
+ option_types: Tipos de Opção
796
+ option_value: Valor da Opção
797
+ option_values: Valores das Opções
798
+ optional:
799
+ options: Opções
800
+ or: ou
801
+ or_over_price: "%{price} ou mais"
802
+ order: Pedido
803
+ order_adjustments: Order adjustments
804
+ order_already_updated:
805
+ order_approved:
806
+ order_canceled:
807
+ order_details: Detalhes do Pedido
808
+ order_email_resent: Email de Confirmação Reenviado
809
+ order_information:
810
+ order_mailer:
811
+ cancel_email:
812
+ dear_customer:
813
+ instructions:
814
+ order_summary_canceled:
815
+ subject: Cancelamento da Encomenda
816
+ subtotal:
817
+ total:
818
+ confirm_email:
819
+ dear_customer:
820
+ instructions:
821
+ order_summary:
822
+ subject:
823
+ subtotal:
824
+ thanks:
825
+ total:
826
+ order_not_found:
827
+ order_number:
828
+ order_processed_successfully: O seu pedido foi processado com sucesso.
829
+ order_resumed:
830
+ order_state:
831
+ address: endereço
832
+ awaiting_return: aguardando retorno
833
+ canceled: cancelado
834
+ cart: carrinho de compras
835
+ complete: completo
836
+ confirm: confirmação
837
+ considered_risky:
838
+ delivery: entrega
839
+ payment: pagamento
840
+ resumed: resumido
841
+ returned: devolvido
842
+ order_summary: Resumo do Pedido
843
+ order_sure_want_to: Você tem certeza que deseja %{event} este pedido?
844
+ order_total: Total do Pedido
845
+ order_updated: Pedido Atualizado
846
+ orders: Encomendas
847
+ other_items_in_other:
848
+ out_of_stock: Esgotado
849
+ overview: Resumo
850
+ package_from:
851
+ pagination:
852
+ next_page:
853
+ previous_page:
854
+ truncate: "…"
855
+ password:
856
+ paste:
857
+ path: Caminho
858
+ pay: Pague
859
+ payment: Pagamento
860
+ payment_could_not_be_created:
861
+ payment_identifier:
862
+ payment_information: Dados do Pagamento
863
+ payment_method: Método de Pagamento
864
+ payment_method_not_supported:
865
+ payment_methods: Métodos de Pagamento
866
+ payment_processing_failed: Pagamento não foi processado, por favor verifique os detalhes informados.
867
+ payment_processor_choose_banner_text: If you need help choosing a payment processor, please visit
868
+ payment_processor_choose_link: our payments page
869
+ payment_state: Distrito do Pagamento
870
+ payment_states:
871
+ balance_due: Saldo devedor
872
+ checkout: finalizar encomenda
873
+ completed: Completo
874
+ credit_owed: Crédito devido
875
+ failed: Falhou
876
+ paid: Pago
877
+ pending: Pendente
878
+ processing: Processando
879
+ void: nulo
880
+ payment_updated: Pagamento Atualizado
881
+ payments: Pagamentos
882
+ pending:
883
+ percent:
884
+ percent_per_item:
885
+ permalink: Link Permanente
886
+ phone: Telefone
887
+ place_order: Fazer Pedido
888
+ please_define_payment_methods:
889
+ populate_get_error:
890
+ powered_by:
891
+ pre_tax_amount:
892
+ pre_tax_refund_amount:
893
+ pre_tax_total:
894
+ preferred_reimbursement_type:
895
+ presentation: Apresentação
896
+ previous: anterior
897
+ previous_state_missing:
898
+ price: Preço
899
+ price_range: Intervalo de Preço
900
+ price_sack: Saco de Preço
901
+ process: Processar
902
+ product: Produto
903
+ product_details: Detalhes do Produto
904
+ product_has_no_description: Produto não tem descrição
905
+ product_not_available_in_this_currency:
906
+ product_properties: Propriedades do Produto
907
+ product_rule:
908
+ choose_products: Escolher produtos
909
+ label:
910
+ match_all: todos
911
+ match_any: pelo menos um
912
+ match_none:
913
+ product_source:
914
+ group: de grupo de produto
915
+ manual: escolha manual
916
+ products: Produtos
917
+ promotion: Promoção
918
+ promotion_action:
919
+ promotion_action_types:
920
+ create_adjustment:
921
+ description:
922
+ name:
923
+ create_item_adjustments:
924
+ description:
925
+ name:
926
+ create_line_items:
927
+ description:
928
+ name:
929
+ free_shipping:
930
+ description:
931
+ name:
932
+ promotion_actions:
933
+ promotion_form:
934
+ match_policies:
935
+ all: Combinar todas regras
936
+ any: Combinar algumas regras
937
+ promotion_rule: Promotion Rule
938
+ promotion_rule_types:
939
+ first_order:
940
+ description: Deve ser o primeiro pedido do utilizador
941
+ name: Primeiro pedido
942
+ item_total:
943
+ description: Total do pedio fecha com estes critérios
944
+ name:
945
+ landing_page:
946
+ description:
947
+ name:
948
+ one_use_per_user:
949
+ description:
950
+ name:
951
+ option_value:
952
+ description:
953
+ name:
954
+ product:
955
+ description: Pedido inclui produto(s) específico(s)
956
+ name: Produto(s)
957
+ taxon:
958
+ description:
959
+ name:
960
+ user:
961
+ description: Disponível apenas para utilizadores específicos
962
+ name: Utilizadores
963
+ user_logged_in:
964
+ description: Available only to logged in users
965
+ name: User Logged In
966
+ promotion_uses:
967
+ promotionable:
968
+ promotions: Promoções
969
+ propagate_all_variants:
970
+ properties: Propriedades
971
+ property: Propriedade
972
+ prototype: Protótipo
973
+ prototypes: Protótipos
974
+ provider: Provedor
975
+ provider_settings_warning: Se está a alterar o tipo de provedor, deve guardar antes de editar as configurações
976
+ qty: Qtde.
977
+ quantity:
978
+ quantity_returned: Quantidade devolvida
979
+ quantity_shipped: Quantidade enviada
980
+ quick_search:
981
+ rate: Taxa
982
+ reason: Razões
983
+ receive: receber
984
+ receive_stock:
985
+ received: Recebido
986
+ reception_status:
987
+ reference:
988
+ refund: Restituição
989
+ refund_amount_must_be_greater_than_zero:
990
+ refund_reasons:
991
+ refunded_amount:
992
+ refunds:
993
+ register: Registrar-se
994
+ registration: Registo
995
+ reimburse:
996
+ reimbursed:
997
+ reimbursement:
998
+ reimbursement_mailer:
999
+ reimbursement_email:
1000
+ days_to_send:
1001
+ dear_customer:
1002
+ exchange_summary:
1003
+ for:
1004
+ instructions:
1005
+ refund_summary:
1006
+ subject:
1007
+ total_refunded:
1008
+ reimbursement_perform_failed:
1009
+ reimbursement_status:
1010
+ reimbursement_type:
1011
+ reimbursement_type_override:
1012
+ reimbursement_types:
1013
+ reimbursements:
1014
+ reject:
1015
+ rejected:
1016
+ remember_me: Lembre-se de mim
1017
+ remove: Remover
1018
+ rename: Rename
1019
+ report:
1020
+ reports: Relatórios
1021
+ resend: Reenviar
1022
+ reset_password: Repôr a minha password
1023
+ response_code: Código de Resposta
1024
+ resume: Continuar
1025
+ resumed: Resumido
1026
+ return: Devolução
1027
+ return_authorization: Autorização de devolução
1028
+ return_authorization_reasons:
1029
+ return_authorization_updated: Autorização de devolução atualizada
1030
+ return_authorizations: Autorizações de devolução
1031
+ return_item_inventory_unit_ineligible:
1032
+ return_item_inventory_unit_reimbursed:
1033
+ return_item_rma_ineligible:
1034
+ return_item_time_period_ineligible:
1035
+ return_items:
1036
+ return_items_cannot_be_associated_with_multiple_orders:
1037
+ return_number:
1038
+ return_quantity: Quantidade a ser devolvido
1039
+ returned: Devolvido
1040
+ returns:
1041
+ review: Review
1042
+ risk:
1043
+ risk_analysis:
1044
+ risky:
1045
+ rma_credit: Crédito RMA
1046
+ rma_number: Número RMA
1047
+ rma_value: Valor RMA
1048
+ roles: Funções
1049
+ rules: Regras
1050
+ safe:
1051
+ sales_total: Total de Vendas
1052
+ sales_total_description: Total de vendas por todos os pedidos
1053
+ sales_totals:
1054
+ save_and_continue: Guardar e Continuar
1055
+ save_my_address:
1056
+ say_no: false
1057
+ say_yes: true
1058
+ scope: Scopo
1059
+ search: Pesquisa
1060
+ search_results: Resultados da pesquisa por '%{keywords}'
1061
+ searching: Pesquisando
1062
+ secure_connection_type: Tipo de conexão segura
1063
+ security_settings: Security Settings
1064
+ select: Selecionar
1065
+ select_a_return_authorization_reason:
1066
+ select_a_stock_location:
1067
+ select_from_prototype: Selecionar a partir de Protótipo
1068
+ select_stock:
1069
+ send_copy_of_all_mails_to: Enviar cópias de todos emails para
1070
+ send_mails_as: Enviar email como
1071
+ server: Servidor
1072
+ server_error: O servidor retornou um erro
1073
+ settings: Configurações
1074
+ ship: entrega
1075
+ ship_address: Endereço da Entrega
1076
+ ship_total:
1077
+ shipment: Distribuição
1078
+ shipment_adjustments:
1079
+ shipment_details:
1080
+ shipment_mailer:
1081
+ shipped_email:
1082
+ dear_customer:
1083
+ instructions:
1084
+ shipment_summary:
1085
+ subject: Notificação de Envio
1086
+ thanks:
1087
+ track_information:
1088
+ track_link:
1089
+ shipment_state: Estado da entrega
1090
+ shipment_states:
1091
+ backorder: fora do sistema
1092
+ canceled:
1093
+ partial: parcial
1094
+ pending: pendente
1095
+ ready: pronta
1096
+ shipped: entregue
1097
+ shipment_transfer_error:
1098
+ shipment_transfer_success:
1099
+ shipments: Entregas
1100
+ shipped: enviado
1101
+ shipping: Entrega
1102
+ shipping_address: Endereço de Entrega
1103
+ shipping_categories: Categorias de Entrega
1104
+ shipping_category: Categoria de Entrega
1105
+ shipping_flat_rate_per_item:
1106
+ shipping_flat_rate_per_order:
1107
+ shipping_flexible_rate:
1108
+ shipping_instructions: Instruções de entrega
1109
+ shipping_method: Método de Entrega
1110
+ shipping_methods: Métodos de Entrega
1111
+ shipping_price_sack:
1112
+ shipping_total:
1113
+ shop_by_taxonomy: Comprar por %{taxonomy}
1114
+ shopping_cart: Carrinho de Compra
1115
+ show: Mostrar
1116
+ show_active: Mostrar ativos
1117
+ show_deleted: Mortra Eliminados
1118
+ show_only_complete_orders: Mostrar apenas pedidos completos
1119
+ show_only_considered_risky:
1120
+ show_rate_in_label:
1121
+ sku: SKU
1122
+ skus:
1123
+ slug:
1124
+ source:
1125
+ special_instructions: Instruções Especiais
1126
+ split:
1127
+ spree_gateway_error_flash_for_checkout: Houve um problema com a informação de pagamentp. Por favor verifique a informação e tente novamente.
1128
+ ssl:
1129
+ change_protocol:
1130
+ start: Início
1131
+ state: Distrito
1132
+ state_based: Baseado no Distrito
1133
+ state_machine_states:
1134
+ accepted:
1135
+ address:
1136
+ authorized:
1137
+ awaiting:
1138
+ awaiting_return:
1139
+ backordered:
1140
+ canceled:
1141
+ cart:
1142
+ checkout:
1143
+ closed:
1144
+ complete:
1145
+ completed:
1146
+ confirm:
1147
+ delivery:
1148
+ errored:
1149
+ failed:
1150
+ given_to_customer:
1151
+ invalid:
1152
+ manual_intervention_required:
1153
+ on_hand:
1154
+ open:
1155
+ order:
1156
+ payment:
1157
+ pending:
1158
+ processing:
1159
+ ready:
1160
+ reimbursed:
1161
+ resumed:
1162
+ returned:
1163
+ shipped:
1164
+ void:
1165
+ states: Distritos
1166
+ states_required:
1167
+ status: Estado
1168
+ stock:
1169
+ stock_location:
1170
+ stock_location_info:
1171
+ stock_locations:
1172
+ stock_locations_need_a_default_country:
1173
+ stock_management:
1174
+ stock_management_requires_a_stock_location:
1175
+ stock_movements:
1176
+ stock_movements_for_stock_location:
1177
+ stock_successfully_transferred:
1178
+ stock_transfer:
1179
+ stock_transfers:
1180
+ stop: Final
1181
+ store: Loja
1182
+ street_address: Endereço
1183
+ street_address_2: Endereço (compl.)
1184
+ subtotal: Sub-total
1185
+ subtract: Subtrair
1186
+ success:
1187
+ successfully_created: "%{resource} foi criado com sucesso!"
1188
+ successfully_refunded:
1189
+ successfully_removed: "%{resource} foi removido com sucesso!"
1190
+ successfully_signed_up_for_analytics:
1191
+ successfully_updated: "%{resource} foi atualizado com sucesso!"
1192
+ summary:
1193
+ tax: Imposto
1194
+ tax_categories: Categorias de Imposto
1195
+ tax_category: Categoria de Imposto
1196
+ tax_code:
1197
+ tax_included:
1198
+ tax_rate_amount_explanation:
1199
+ tax_rates: Taxas de imposto
1200
+ taxon: Taxón
1201
+ taxon_edit: Editar taxón
1202
+ taxon_placeholder:
1203
+ taxon_rule:
1204
+ choose_taxons:
1205
+ label:
1206
+ match_all:
1207
+ match_any:
1208
+ taxonomies: Taxonomias
1209
+ taxonomy: Taxonomy
1210
+ taxonomy_edit: Editar taxonomia
1211
+ taxonomy_tree_error: A modificação não foi aceita e a árvore retornou ao seu estado anterior, por favor tente novamente.
1212
+ taxonomy_tree_instruction: "* Clique com o botão direito sobre um nó da árvore para ver o menu."
1213
+ taxons: Taxons
1214
+ test: Teste
1215
+ test_mailer:
1216
+ test_email:
1217
+ greeting:
1218
+ message:
1219
+ subject:
1220
+ test_mode: Modo de Teste
1221
+ thank_you_for_your_order: Obrigado pela sua compra. Por favor, imprima uma cópia desta página de confirmação.
1222
+ there_are_no_items_for_this_order:
1223
+ there_were_problems_with_the_following_fields: Houve um problema com os seguintes campos
1224
+ this_order_has_already_received_a_refund:
1225
+ thumbnail: Miniatura
1226
+ tiered_flat_rate:
1227
+ tiered_percent:
1228
+ tiers:
1229
+ time:
1230
+ to_add_variants_you_must_first_define: Para adicionar variantes você deve primeiro definir
1231
+ total: Total
1232
+ total_per_item:
1233
+ total_pre_tax_refund:
1234
+ total_price:
1235
+ total_sales:
1236
+ track_inventory:
1237
+ tracking: Rastreio
1238
+ tracking_number:
1239
+ tracking_url:
1240
+ tracking_url_placeholder:
1241
+ transaction_id:
1242
+ transfer_from_location:
1243
+ transfer_stock:
1244
+ transfer_to_location:
1245
+ tree: "Árvore"
1246
+ type: Tipo
1247
+ type_to_search: Tipo de pesquisa
1248
+ unable_to_connect_to_gateway: Impossível conectar-se ao Gateway
1249
+ unable_to_create_reimbursements:
1250
+ under_price: Menos de %{price}
1251
+ unlock:
1252
+ unrecognized_card_type: Tipo de cartão desconhecido
1253
+ unshippable_items:
1254
+ update: Atualizar
1255
+ updating: Atualizando
1256
+ usage_limit: Limite de utilização
1257
+ use_app_default:
1258
+ use_billing_address: Utilizar endereço de faturação
1259
+ use_new_cc: Utilizar um novo cartão
1260
+ use_s3: Use Amazon S3 For Images
1261
+ user: utilizador
1262
+ user_rule:
1263
+ choose_users: Escolher utilizadores
1264
+ users: utilizadores
1265
+ validation:
1266
+ cannot_be_less_than_shipped_units: não pode ser menor que o número de unidades enviadas.
1267
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1268
+ exceeds_available_stock:
1269
+ is_too_large: "é muito grande -- quantidade em stock não consegue cobrir este pedido!"
1270
+ must_be_int: deve ser um inteiro
1271
+ must_be_non_negative: deve ser um valor positivo ou zero
1272
+ unpaid_amount_not_zero:
1273
+ value: Valor
1274
+ variant: Variant
1275
+ variant_placeholder:
1276
+ variants: Variantes
1277
+ version: Versão
1278
+ void: Vazio
1279
+ weight: Peso
1280
+ what_is_a_cvv: O que é o Código do Cartão de Crédito (CVV)?
1281
+ what_is_this: O que é isto?
1282
+ width: Largura
1283
+ year: Ano
1284
+ you_have_no_orders_yet: Ainda não tem pedidos.
1285
+ your_cart_is_empty: O carrinho de compras está vazio
1286
+ your_order_is_empty_add_product:
1287
+ zip: Código Postal
1288
+ zipcode:
1289
+ zone: Zona
1290
+ zones: Zonas