solidus_i18n 2.1.1 → 2.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e81407d27ac8d4d865c858353136816de626274eb4b0ceaf1feababdd89dae18
4
- data.tar.gz: a4a36c750eb435adaf4be6af1f8cd248c5f4a2658e9eea03d06dd942abdc71a4
3
+ metadata.gz: e0a546281378460b3fea1aa8a8dbdeb93e9b6f283c96cc7e708c17d3d4008810
4
+ data.tar.gz: 72387a67c8f44af797f57e3fdc6ac3cda4793a6612e053f21646825b8e80e733
5
5
  SHA512:
6
- metadata.gz: 4dd88e9176dfa9d5a0b880c327796635282ce844183f57591aa587c3461a2e4becafa792a93a6ee036e8fb5c88aa3542ca72576169a9969e84f481099ab64dfd
7
- data.tar.gz: 4c23b55f2cf650a14d3d26988bdb82e0f24bda27f858ceba812b2e0ff9c8482eccaeaf5082f06a3093f13eab1bdee536f7fda82710fa5f7daa60b271089e86b2
6
+ metadata.gz: d35a05b4cac1e3743999e1b6c31714b7ba3dbc23cbb48607d0c25953b071bd1b0810bc03cb7b6cb57b6433bdd46d35fef17bb744880f1ba52835889a108af6f8
7
+ data.tar.gz: 2e89302bf3235ffaede4d64594f627d965aa77426d182cd3379fd35a9cc246a97cd8e7602c22b24c28121c2de653daaecb46741f1ba9df70d7dc2d47c3d75b6f
data/.circleci/config.yml CHANGED
@@ -8,20 +8,40 @@ orbs:
8
8
  solidusio_extensions: solidusio/extensions@volatile
9
9
 
10
10
  jobs:
11
- run-specs-with-postgres:
12
- executor: solidusio_extensions/postgres
11
+ run-specs:
12
+ parameters:
13
+ solidus:
14
+ type: string
15
+ default: master
16
+ db:
17
+ type: string
18
+ default: "postgres"
19
+ ruby:
20
+ type: string
21
+ default: "3.2"
22
+ executor:
23
+ name: solidusio_extensions/<< parameters.db >>
24
+ ruby_version: << parameters.ruby >>
13
25
  steps:
14
- - solidusio_extensions/run-tests
15
- run-specs-with-mysql:
16
- executor: solidusio_extensions/mysql
17
- steps:
18
- - solidusio_extensions/run-tests
26
+ - checkout
27
+ - solidusio_extensions/run-tests-solidus-<< parameters.solidus >>
19
28
 
20
29
  workflows:
21
30
  "Run specs on supported Solidus versions":
22
31
  jobs:
23
- - run-specs-with-postgres
24
- - run-specs-with-mysql
32
+ - run-specs:
33
+ name: &name "run-specs-solidus-<< matrix.solidus >>-ruby-<< matrix.ruby >>-db-<< matrix.db >>"
34
+ matrix:
35
+ parameters: { solidus: ["master"], ruby: ["3.2"], db: ["postgres"] }
36
+ - run-specs:
37
+ name: *name
38
+ matrix:
39
+ parameters: { solidus: ["current"], ruby: ["3.1"], db: ["mysql"] }
40
+ - run-specs:
41
+ name: *name
42
+ matrix:
43
+ parameters: { solidus: ["older"], ruby: ["3.0"], db: ["sqlite"] }
44
+
25
45
  "Weekly run specs against master":
26
46
  triggers:
27
47
  - schedule:
@@ -31,5 +51,11 @@ workflows:
31
51
  only:
32
52
  - master
33
53
  jobs:
34
- - run-specs-with-postgres
35
- - run-specs-with-mysql
54
+ - run-specs:
55
+ name: *name
56
+ matrix:
57
+ parameters: { solidus: ["master"], ruby: ["3.2"], db: ["postgres"] }
58
+ - run-specs:
59
+ name: *name
60
+ matrix:
61
+ parameters: { solidus: ["current"], ruby: ["3.1"], db: ["mysql"] }
data/.github/stale.yml CHANGED
@@ -1,17 +1 @@
1
- # Number of days of inactivity before an issue becomes stale
2
- daysUntilStale: 60
3
- # Number of days of inactivity before a stale issue is closed
4
- daysUntilClose: 7
5
- # Issues with these labels will never be considered stale
6
- exemptLabels:
7
- - pinned
8
- - security
9
- # Label to use when marking an issue as stale
10
- staleLabel: wontfix
11
- # Comment to post when marking an issue as stale. Set to `false` to disable
12
- markComment: >
13
- This issue has been automatically marked as stale because it has not had
14
- recent activity. It will be closed if no further activity occurs. Thank you
15
- for your contributions.
16
- # Comment to post when closing a stale issue. Set to `false` to disable
17
- closeComment: false
1
+ _extends: .github
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ # Changelog
2
+
3
+ See https://github.com/solidusio/solidus_i18n/releases for older versions.
data/Gemfile CHANGED
@@ -4,7 +4,13 @@ source 'https://rubygems.org'
4
4
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
5
5
 
6
6
  branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
7
- gem 'solidus', github: 'solidusio/solidus', branch: branch
7
+ solidus_git, solidus_frontend_git = if (branch == 'master') || (branch >= 'v3.2')
8
+ %w[solidusio/solidus solidusio/solidus_frontend]
9
+ else
10
+ %w[solidusio/solidus] * 2
11
+ end
12
+ gem 'solidus', github: solidus_git, branch: branch
13
+ gem 'solidus_frontend', github: solidus_frontend_git, branch: branch
8
14
 
9
15
  # Needed to help Bundler figure out how to resolve dependencies,
10
16
  # otherwise it takes forever to resolve them.
data/Rakefile CHANGED
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'bundler/gem_tasks'
3
4
  require 'solidus_dev_support/rake_tasks'
4
5
  SolidusDevSupport::RakeTasks.install
5
6
 
data/bin/rake ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "rubygems"
5
+ require "bundler/setup"
6
+
7
+ load Gem.bin_path("rake", "rake")
@@ -460,11 +460,6 @@ bg:
460
460
  country: "Страна"
461
461
  country_based:
462
462
  country_name: "Име"
463
- country_names:
464
- CA:
465
- FRA:
466
- ITA:
467
- US:
468
463
  coupon: "Ваучер"
469
464
  coupon_code: "Код на ваучер"
470
465
  coupon_code_already_applied: "Този код вече е използван за тази доставка."
@@ -466,11 +466,6 @@ ca:
466
466
  country: País
467
467
  country_based: País basi
468
468
  country_name: Nom
469
- country_names:
470
- CA:
471
- FRA:
472
- ITA:
473
- US:
474
469
  coupon: Cupó
475
470
  coupon_code: Codi de cupó
476
471
  coupon_code_already_applied:
@@ -532,11 +532,6 @@ da:
532
532
  country: Land
533
533
  country_based: Landbaseret
534
534
  country_name: Navn
535
- country_names:
536
- CA:
537
- FRA:
538
- ITA:
539
- US:
540
535
  coupon: Rabat
541
536
  coupon_code: Rabatkode
542
537
  coupon_code_already_applied: Rabatkoden er allerede anvendt på denne ordre
@@ -422,11 +422,6 @@ de-CH:
422
422
  country: Land
423
423
  country_based: Länderbasiert
424
424
  country_name:
425
- country_names:
426
- CA:
427
- FRA:
428
- ITA:
429
- US:
430
425
  coupon:
431
426
  coupon_code:
432
427
  coupon_code_already_applied:
@@ -98,7 +98,7 @@ de:
98
98
  email: Kunden E-Mail
99
99
  included_tax_total: enthaltene Steuer
100
100
  ip_address: IP Adresse
101
- item_total: Artikel gesamt
101
+ item_total: Zwischensumme
102
102
  number: Bestellnummer
103
103
  payment_state: Bezahlstatus
104
104
  shipment_state: Versandstatus
@@ -297,7 +297,7 @@ de:
297
297
  meta_title: Meta-Titel
298
298
  name: Name
299
299
  permalink: Permalink
300
- position: Posten
300
+ position: Position
301
301
  spree/taxonomy:
302
302
  name: Name
303
303
  spree/tracker:
@@ -351,11 +351,11 @@ de:
351
351
  spree/product:
352
352
  attributes:
353
353
  base:
354
- cannot_destroy_if_attached_to_line_items: Produkte können nicht gelöscht werden wenn sie in einem Einzelposten sind
354
+ cannot_destroy_if_attached_to_line_items: Produkte können nicht gelöscht werden wenn sie zu einem Artikel einer Bestellung gehören
355
355
  spree/refund:
356
356
  attributes:
357
357
  amount:
358
- greater_than_allowed: Maximalwert überschritten
358
+ greater_than_allowed: ": Maximal erstattbarer Wert überschritten"
359
359
  spree/reimbursement:
360
360
  attributes:
361
361
  base:
@@ -373,7 +373,7 @@ de:
373
373
  spree/variant:
374
374
  attributes:
375
375
  base:
376
- cannot_destroy_if_attached_to_line_items: Variante kann nicht gelöscht werden wenn sie zu einem Einzelposten gehört
376
+ cannot_destroy_if_attached_to_line_items: Varianten können nicht gelöscht werden wenn sie zu einem Artikel einer Bestellung gehören
377
377
  models:
378
378
  spree/address:
379
379
  one: Adresse
@@ -390,8 +390,8 @@ de:
390
390
  one: Kreditkarte
391
391
  other: Kreditkarten
392
392
  spree/customer_return:
393
- one: Kundenrücksendung
394
- other: Kundenrücksendungen
393
+ one: Rücksendung
394
+ other: Rücksendungen
395
395
  spree/image:
396
396
  one: Bild
397
397
  other: Bilder
@@ -402,8 +402,8 @@ de:
402
402
  one: Benutzer
403
403
  other: Benutzer
404
404
  spree/line_item:
405
- one: Einzelposten
406
- other: Einzelposten
405
+ one: Artikel
406
+ other: Artikel
407
407
  spree/log_entry:
408
408
  other: Logeinträge
409
409
  spree/option_type:
@@ -443,8 +443,8 @@ de:
443
443
  one: Prototyp
444
444
  other: Prototypen
445
445
  spree/refund:
446
- one: Rückerstattung
447
- other: Rückerstattungen
446
+ one: Erstattung
447
+ other: Erstattungen
448
448
  spree/refund_reason:
449
449
  one: Begründung der Gutschrift
450
450
  other: Gutschriftsbegründungen
@@ -479,8 +479,8 @@ de:
479
479
  one: Statusänderung
480
480
  other: Statusänderungen
481
481
  spree/stock_location:
482
- one: Lagerstätte
483
- other: Lagerstätten
482
+ one: Versandlager
483
+ other: Versandlager
484
484
  spree/stock_movement:
485
485
  one: Lagerbewegung
486
486
  other: Lagerbewegungen
@@ -546,7 +546,7 @@ de:
546
546
  list: auflisten
547
547
  listing: Liste
548
548
  new: neu
549
- refund: Gutschrift
549
+ refund: erstatten
550
550
  remove: Entfernen
551
551
  save: Speichern
552
552
  ship: verschicken
@@ -558,7 +558,7 @@ de:
558
558
  add_action_of_type: Aktion hinzufügen
559
559
  add_country: Land hinzufügen
560
560
  add_coupon_code: Gutscheincode hinzufügen
561
- add_line_item: Bestellposten hinzufügen
561
+ add_line_item: Artikel hinzufügen
562
562
  add_new_header: Header hinzufügen
563
563
  add_new_style: Stil hinzufügen
564
564
  add_one: Hinzufügen
@@ -712,7 +712,7 @@ de:
712
712
  taxonomies: Klassifikationen
713
713
  taxons: Klassifikation
714
714
  users: Benutzer
715
- RMA: RMA
715
+ rma: RMA
716
716
  taxons:
717
717
  display_order: Darstellungsreihenfolge
718
718
  user:
@@ -748,7 +748,7 @@ de:
748
748
  all_adjustments_closed: Alle Anpassung wurden erfolgreich geschlossen!
749
749
  all_adjustments_opened: Alle Anpassung wurden erfolgreich geöffnet!
750
750
  all_departments: Alle Bereiche
751
- all_items_have_been_returned: Alles zurückgegeben
751
+ all_items_have_been_returned: Alle Artikel wurden zurückgegeben
752
752
  allow_ssl_in_development_and_test: Erlaube SSL im Vorproduktions- und Testmodus
753
753
  allow_ssl_in_production: Erlaube SSL im Produktionsmodus
754
754
  allow_ssl_in_staging: Erlaube SSL im Vorproduktionsmodus
@@ -791,6 +791,8 @@ de:
791
791
  avs_response: Ergebnis der Adressprüfung
792
792
  back: Zurück
793
793
  back_end: Backend
794
+ back_to_customer_return: Zurück zur Rücksendung
795
+ back_to_customer_return_list: zurück zu den Rücksendungen
794
796
  back_to_images_list: Zurück zur Bilderliste
795
797
  back_to_payment: Zurück zur Zahlung
796
798
  back_to_resource_list: Zurück zur Bestellliste
@@ -817,7 +819,7 @@ de:
817
819
  calculator: Rechner
818
820
  calculator_settings_warning: Wenn Sie den Berechnungs-Typ ändern, müssen Sie erst speichern, bevor Sie die Berechnungs-Einstellungen bearbeiten können
819
821
  cancel: abbrechen
820
- cancel_inventory: Inventar löschen
822
+ cancel_inventory: Artikel Stornieren
821
823
  canceled: Storniert
822
824
  canceled_at: Abgebrochen am
823
825
  canceler: Abgebrochen von
@@ -826,7 +828,7 @@ de:
826
828
  cannot_create_payment_without_payment_methods: Sie können keine Zahlung für eine Bestellung anlegen, ohne vorher eine Zahlungsmethode definiert
827
829
  zu haben.
828
830
  cannot_create_returns: Sie können diese Bestellung nicht zurückgeben, da sie noch nicht versendet wurde.
829
- cannot_destroy_if_attached_to_line_items: Kann nicht gelöscht werden wenn es zu einem Einzelposten gehört
831
+ cannot_destroy_if_attached_to_line_items: Kann nicht gelöscht werden wenn es zu einem Artikel einer Bestellung gehört
830
832
  cannot_perform_operation: Kann diese Operation nicht durchführen.
831
833
  cannot_set_shipping_method_without_address: Die Versandart kann erst geändert werden, wenn die Kundendaten ausgefüllt sind.
832
834
  capture: erfassen
@@ -849,7 +851,7 @@ de:
849
851
  choose_a_taxon_to_sort_products_for: Sortierungsklassifizierung wählen
850
852
  choose_currency: Währung auswählen
851
853
  choose_dashboard_locale: Dashboard-Sprache wählen
852
- choose_location: Lagerstätte wählen
854
+ choose_location: Versandlager wählen
853
855
  city: Ort
854
856
  clear_cache: Zwischenspeicher leeren
855
857
  clear_cache_ok: Zwischenspeicher erfolgreich geleert
@@ -897,7 +899,7 @@ de:
897
899
  coupon_code_unknown_error: Der Gutschein-Code verursachte ein unbekanntes Problem
898
900
  create: Erstellen
899
901
  create_a_new_account: Neues Konto erstellen
900
- create_one: Eine(s) anlegen
902
+ create_one: Anlegen
901
903
  create_new_order: Neuer Bestellung
902
904
  create_reimbursement: Vergütung beantragen
903
905
  created_at: Erstellt am
@@ -1140,7 +1142,7 @@ de:
1140
1142
  iso_name: ISO-Name
1141
1143
  item: Artikel
1142
1144
  item_description: Artikelbeschreibung
1143
- item_total: Artikel gesamt
1145
+ item_total: Zwischensumme
1144
1146
  item_total_rule:
1145
1147
  operators:
1146
1148
  gt: größer als
@@ -1150,6 +1152,11 @@ de:
1150
1152
  items_cannot_be_shipped: Wir können die ausgewählten Artikel nicht an Ihre Lieferadresse schicken. Bitte wählen Sie eine andere Lieferadresse.
1151
1153
  items_in_rmas: Artikel im Umtausch
1152
1154
  items_reimbursed: Vergütete Artikel
1155
+ items_selected:
1156
+ all: alle Artikel ausgewählt
1157
+ none: keine Artikel ausgewählt
1158
+ one: ein Artikel ausgewählt
1159
+ custom: einige Artikel ausgewählt
1153
1160
  items_to_be_reimbursed: Zu vergütende Artikel
1154
1161
  jirafe: Jirafe
1155
1162
  landing_page_rule:
@@ -1158,7 +1165,7 @@ de:
1158
1165
  last_name_begins_with: Nachname beginnt mit
1159
1166
  learn_more: Mehr dazu
1160
1167
  lifetime_stats: 'Statistiken: Lebenszyklus'
1161
- line_item_adjustments: Anpassungen Bestellposten
1168
+ line_item_adjustments: Artikelanpassungen
1162
1169
  list: Liste
1163
1170
  loading: Laden
1164
1171
  loading_tree: Loading tree. Please wait…
@@ -1198,7 +1205,7 @@ de:
1198
1205
  minimal_amount: Mindestanzahl
1199
1206
  minimize_menu: Menü minimieren
1200
1207
  modify_stock_count: Modifizieren (+/-)
1201
- missing_return_authorization: Fehlende Rückerstattungserlaubnis %{item_name}.
1208
+ missing_return_authorization: Fehlende Rückgabebewilligung %{item_name}.
1202
1209
  month: Monat
1203
1210
  more: Mehr
1204
1211
  move_stock_between_locations: Lager zwischen Standorten bewegen
@@ -1206,6 +1213,7 @@ de:
1206
1213
  my_account: Mein Konto
1207
1214
  my_orders: Meine Bestellungen
1208
1215
  name: Name
1216
+ name_contains: Name enthält
1209
1217
  name_on_card: Name auf der Kreditkarte
1210
1218
  name_or_sku: Name oder Artikelnummer
1211
1219
  new: Neu
@@ -1213,7 +1221,7 @@ de:
1213
1221
  new_adjustment_reason: Neuer Anpassungsgrund
1214
1222
  new_country: Neues Land
1215
1223
  new_customer: Neuer Kunde
1216
- new_customer_return: Neue Kundenrücksendung
1224
+ new_customer_return: Neue Rücksendung
1217
1225
  new_image: Neues Bild
1218
1226
  new_option_type: Neue Option
1219
1227
  new_order: Neue Bestellung
@@ -1305,7 +1313,7 @@ de:
1305
1313
  order_email_resent: Bestellbestätigung erneut versendet
1306
1314
  order_has_no_payments: Bestellung hat keine Bezahlungen
1307
1315
  order_information: Bestellinformationen
1308
- order_line_items: Bestellposten
1316
+ order_line_items: Artikel
1309
1317
  order_mailer:
1310
1318
  cancel_email:
1311
1319
  dear_customer: Sehr geehrte Kundin, geehrter Kunde,
@@ -1381,6 +1389,7 @@ de:
1381
1389
  completed: Abgeschlossen
1382
1390
  credit_owed: Betrag schuldig
1383
1391
  failed: fehlgeschlagen
1392
+ invalid: ungültig
1384
1393
  paid: bezahlt
1385
1394
  pending: noch offen
1386
1395
  processing: in Bearbeitung
@@ -1496,14 +1505,25 @@ de:
1496
1505
  receive: erhalten
1497
1506
  receive_stock: Empfangslager
1498
1507
  received: erhalten
1508
+ reception_states:
1509
+ awaiting: erwartend
1510
+ cancelled: abgebrochen
1511
+ expired: abgelaufen
1512
+ given_to_customer: Kunden übergeben
1513
+ in_transit: In Transfer
1514
+ lost_in_transit: In Transfer verloren
1515
+ received: erhalten
1516
+ shipped_wrong_item: Falsch ausgeliefert
1517
+ short_shipped: Minderlieferung
1518
+ unexchanged: unausgetauscht
1499
1519
  reception_status: Empfangsstatus
1500
1520
  reference: Referenz
1501
1521
  reference_contains: Referenz beinhaltet
1502
- refund: Rückerstattung
1503
- refund_amount_must_be_greater_than_zero: Rückerstattung muss größer 0 sein
1504
- refund_reasons: Rückerstattungsgründe
1505
- refunded_amount: Rückerstattungsbetrag
1506
- refunds: Rückerstattungen
1522
+ refund: Erstattung
1523
+ refund_amount_must_be_greater_than_zero: Erstattung muss größer 0 sein
1524
+ refund_reasons: Erstattungsgründe
1525
+ refunded_amount: Erstattungsbetrag
1526
+ refunds: Erstattungen
1507
1527
  register: Als Neukunde registrieren
1508
1528
  registration: Registrierung
1509
1529
  reimburse: Vergüten
@@ -1520,6 +1540,10 @@ de:
1520
1540
  subject: Betreff
1521
1541
  total_refunded: Gesamtwert Gutschriften %{total}
1522
1542
  reimbursement_perform_failed: Vergütung fehlgeschlagen
1543
+ reimbursement_states:
1544
+ errored: fehlerhaft
1545
+ pending: ausstehend
1546
+ reimbursed: vergütet
1523
1547
  reimbursement_status: Vergütungsstatus
1524
1548
  reimbursement_type: Vergütungstyp
1525
1549
  reimbursement_type_override: Vergütungstyp überschreiben
@@ -1541,6 +1565,9 @@ de:
1541
1565
  return: zurückgeben
1542
1566
  return_authorization: Rückgabebewilligung
1543
1567
  return_authorization_reasons: Gründe der Rückgabebewilligung
1568
+ return_authorization_states:
1569
+ authorized: authorisiert
1570
+ canceled: abgebrochen
1544
1571
  return_authorization_updated: Rückgabebewilligung aktualisiert
1545
1572
  return_authorizations: Rückgabebewilligungen
1546
1573
  return_item_inventory_unit_ineligible: Artikelposition des Warenkorbs von der Rückgabe ausgeschlossen
@@ -1579,7 +1606,7 @@ de:
1579
1606
  secure_connection_type: Sicherer Verbindungstyp
1580
1607
  security_settings: Sicherheitseinstellungen
1581
1608
  select: Auswählen
1582
- select_a_return_authorization_reason: Rückgabeberechtigungsgrund wählen
1609
+ select_a_return_authorization_reason: Rückgabebewilligungsgrund wählen
1583
1610
  select_a_stock_location: Lager wählen
1584
1611
  select_from_prototype: Von einem Prototypen
1585
1612
  select_stock: Lager wählen
@@ -1594,8 +1621,10 @@ de:
1594
1621
  ship_total: Versand gesamt
1595
1622
  shipment: Sendung
1596
1623
  shipment_adjustments: Sendung anpassen
1624
+ shipment_date: Versanddatum
1597
1625
  shipment_details: "%{shipping_method}"
1598
1626
  shipment_number: Sendungsnummer
1627
+ shipment_numbers: Sendungsnummern
1599
1628
  shipment_mailer:
1600
1629
  shipped_email:
1601
1630
  dear_customer: Sehr geehrte Kundin, geehrter Kunde,
@@ -1819,8 +1848,8 @@ de:
1819
1848
  users: Benutzer
1820
1849
  validation:
1821
1850
  cannot_be_less_than_shipped_units: kann nicht weniger als die gelieferten Einheiten sein.
1822
- cannot_destroy_line_item_as_inventory_units_have_shipped: Kann Artikelposition nicht löschen, da bereits geliefert wurde.
1823
- exceeds_available_stock: übersteigt die verfügbaren Vorräte. Bitte sicherstellen, dass die Einzelposten eine gültige Menge haben.
1851
+ cannot_destroy_line_item_as_inventory_units_have_shipped: Kann Artikel nicht löschen, da bereits geliefert wurde.
1852
+ exceeds_available_stock: übersteigt die verfügbaren Vorräte. Bitte sicherstellen, dass die Artikel eine gültige Menge haben.
1824
1853
  is_too_large: ist zu hoch. Der Lagerbestand kann die angefragte Menge nicht abdecken.
1825
1854
  must_be_int: muss eine Ganzzahl sein
1826
1855
  must_be_non_negative: darf keinen negativen Wert haben
@@ -466,11 +466,6 @@ en-AU:
466
466
  country: Country
467
467
  country_based: Country Based
468
468
  country_name:
469
- country_names:
470
- CA:
471
- FRA:
472
- ITA:
473
- US:
474
469
  coupon: Coupon
475
470
  coupon_code: Coupon code
476
471
  coupon_code_already_applied:
@@ -383,7 +383,7 @@ en-GB:
383
383
  approve:
384
384
  approved_at:
385
385
  approver:
386
- are_you_sure: Are you sure
386
+ are_you_sure: Are you sure?
387
387
  are_you_sure_delete: Are you sure you want to delete this record?
388
388
  associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
389
389
  at_symbol: '@'
@@ -468,11 +468,6 @@ en-GB:
468
468
  country: Country
469
469
  country_based: Country Based
470
470
  country_name: Name
471
- country_names:
472
- CA:
473
- FRA:
474
- ITA:
475
- US:
476
471
  coupon: Coupon
477
472
  coupon_code: Coupon code
478
473
  coupon_code_already_applied: The coupon code has already been applied to this order
@@ -381,7 +381,7 @@ en-IN:
381
381
  approve:
382
382
  approved_at:
383
383
  approver:
384
- are_you_sure: Are you sure
384
+ are_you_sure: Are you sure?
385
385
  are_you_sure_delete: Are you sure you want to delete this record?
386
386
  associated_adjustment_closed: The associated adjustment is closed, and will not be recalculated. Do you want to open it?
387
387
  at_symbol: '@'
@@ -466,11 +466,6 @@ en-IN:
466
466
  country: Country
467
467
  country_based: Country Based
468
468
  country_name: Name
469
- country_names:
470
- CA:
471
- FRA:
472
- ITA:
473
- US:
474
469
  coupon: Coupon
475
470
  coupon_code: Coupon code
476
471
  coupon_code_already_applied: The coupon code has already been applied to this order
@@ -381,7 +381,7 @@ en-NZ:
381
381
  approve:
382
382
  approved_at:
383
383
  approver:
384
- are_you_sure: Are you sure
384
+ are_you_sure: Are you sure?
385
385
  are_you_sure_delete: Are you sure you want to delete this record?
386
386
  associated_adjustment_closed:
387
387
  at_symbol: '@'
@@ -466,11 +466,6 @@ en-NZ:
466
466
  country: Country
467
467
  country_based: Country Based
468
468
  country_name:
469
- country_names:
470
- CA:
471
- FRA:
472
- ITA:
473
- US:
474
469
  coupon: Coupon
475
470
  coupon_code: Coupon code
476
471
  coupon_code_already_applied:
@@ -468,11 +468,6 @@ es-EC:
468
468
  country: País
469
469
  country_based: País base
470
470
  country_name: Nombre
471
- country_names:
472
- CA:
473
- FRA:
474
- ITA:
475
- US:
476
471
  coupon: Cupón
477
472
  coupon_code: Código Cupón
478
473
  coupon_code_already_applied: El código del cupón ya ha sido aplicado a este pedido
@@ -448,11 +448,6 @@ et:
448
448
  country: Riik
449
449
  country_based: Riigipõhine
450
450
  country_name: Nimi
451
- country_names:
452
- CA:
453
- FRA:
454
- ITA:
455
- US:
456
451
  coupon:
457
452
  coupon_code:
458
453
  coupon_code_already_applied:
@@ -478,11 +478,6 @@ fi:
478
478
  country: Maa
479
479
  country_based: Sijaintimaa
480
480
  country_name: Nimi
481
- country_names:
482
- CA:
483
- FRA:
484
- ITA:
485
- US:
486
481
  coupon: Kuponki
487
482
  coupon_code: Tarjouskoodi
488
483
  coupon_code_already_applied: Kampanjakoodi on jo käytössä tällä tilauksella
@@ -886,6 +886,7 @@ fr:
886
886
  option_types: Types d'option
887
887
  orders: Commandes
888
888
  overview: Vue d'ensemble
889
+ payments: Paiements
889
890
  products: Produits
890
891
  promotions: Promotions
891
892
  promotion_categories: Catégories de réductions
@@ -940,6 +941,7 @@ fr:
940
941
  pricing: Prix
941
942
  pricing_hint: Ces valeurs sont remplies grâce à la page produit et peuvent être modifiées ci-dessous
942
943
  administration: Administration
944
+ admin_login: Connexion administrateur
943
945
  advertise: Publiciser
944
946
  agree_to_privacy_policy: Accepter l'Engagement de Confidentialité
945
947
  agree_to_terms_of_service: Accepter les termes du contrat.
@@ -1403,12 +1405,14 @@ fr:
1403
1405
  meta_title: Titre du site
1404
1406
  metadata: Données (Meta)
1405
1407
  minimal_amount: Montant minimal
1408
+ minimize_menu: Réduire Menu
1406
1409
  month: Mois
1407
1410
  more: Plus
1408
1411
  move_stock_between_locations: Déplacer le Stock entre sites
1409
1412
  my_account: Mon compte
1410
1413
  my_orders: Mes commandes
1411
1414
  name: Nom
1415
+ name_contains: Nom contenant
1412
1416
  name_on_card: Nom sur la carte
1413
1417
  name_or_sku: Nom ou référence
1414
1418
  new: Nouveau
@@ -1805,6 +1809,7 @@ fr:
1805
1809
  shipping_flat_rate_per_order: Taux fixe
1806
1810
  shipping_flexible_rate: Taux variable par article
1807
1811
  shipping_instructions: Instructions de livraison
1812
+ shipment_number: Numéro de livraison
1808
1813
  shipping_method: Méthode de livraison
1809
1814
  shipping_methods: Méthodes de livraison
1810
1815
  shipping_price_sack: Prix groupé
@@ -465,11 +465,6 @@ id:
465
465
  country: Negara
466
466
  country_based: Berdasarkan negara
467
467
  country_name: Nama Negara
468
- country_names:
469
- CA:
470
- FRA:
471
- ITA:
472
- US:
473
468
  coupon: Kupon
474
469
  coupon_code: Kode kupon
475
470
  coupon_code_already_applied: Kode kupon suda diaplikasikan ke pemesanan ini sebelumnya.