solidus_i18n 2.1.0 → 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 +4 -4
- data/.circleci/config.yml +37 -11
- data/.github/stale.yml +1 -17
- data/CHANGELOG.md +3 -0
- data/Gemfile +7 -1
- data/Rakefile +1 -0
- data/bin/rake +7 -0
- data/config/locales/bg.yml +0 -5
- data/config/locales/ca.yml +0 -5
- data/config/locales/da.yml +0 -5
- data/config/locales/de-CH.yml +0 -5
- data/config/locales/de.yml +68 -35
- data/config/locales/en-AU.yml +0 -5
- data/config/locales/en-GB.yml +1 -6
- data/config/locales/en-IN.yml +6 -11
- data/config/locales/en-NZ.yml +1 -6
- data/config/locales/es-EC.yml +0 -5
- data/config/locales/et.yml +0 -5
- data/config/locales/fi.yml +0 -5
- data/config/locales/fr.yml +9 -0
- data/config/locales/id.yml +0 -5
- data/config/locales/ko.yml +0 -5
- data/config/locales/lv.yml +0 -5
- data/config/locales/nb.yml +0 -5
- data/config/locales/nl.yml +0 -5
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro.yml +0 -5
- data/config/locales/ru.yml +97 -24
- data/config/locales/sl-SI.yml +0 -5
- data/config/locales/th.yml +0 -5
- data/config/locales/tr.yml +0 -5
- data/config/locales/vi.yml +0 -5
- data/config/locales/zh-CN.yml +0 -5
- data/config/locales/zh-TW.yml +0 -5
- data/lib/solidus_i18n/version.rb +1 -1
- data/solidus_i18n.gemspec +3 -2
- metadata +78 -75
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0a546281378460b3fea1aa8a8dbdeb93e9b6f283c96cc7e708c17d3d4008810
|
|
4
|
+
data.tar.gz: 72387a67c8f44af797f57e3fdc6ac3cda4793a6612e053f21646825b8e80e733
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
12
|
-
|
|
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
|
-
-
|
|
15
|
-
|
|
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
|
|
24
|
-
|
|
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
|
|
35
|
-
|
|
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
|
-
|
|
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
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
|
-
|
|
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
data/bin/rake
ADDED
data/config/locales/bg.yml
CHANGED
|
@@ -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: "Този код вече е използван за тази доставка."
|
data/config/locales/ca.yml
CHANGED
data/config/locales/da.yml
CHANGED
|
@@ -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
|
data/config/locales/de-CH.yml
CHANGED
data/config/locales/de.yml
CHANGED
|
@@ -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:
|
|
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:
|
|
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
|
|
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:
|
|
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:
|
|
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:
|
|
394
|
-
other:
|
|
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:
|
|
406
|
-
other:
|
|
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:
|
|
447
|
-
other:
|
|
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:
|
|
483
|
-
other:
|
|
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:
|
|
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:
|
|
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
|
|
@@ -669,6 +669,9 @@ de:
|
|
|
669
669
|
unable_to_update: Guthaben konnte nicht aktualisiert werden
|
|
670
670
|
user_originator: Benutzer - %{email}
|
|
671
671
|
view: Guthaben anschauen
|
|
672
|
+
stores:
|
|
673
|
+
form:
|
|
674
|
+
no_cart_tax_country: Keine Steuern auf Einkaufswagen ohne Adresse
|
|
672
675
|
order:
|
|
673
676
|
events:
|
|
674
677
|
admin:
|
|
@@ -709,7 +712,7 @@ de:
|
|
|
709
712
|
taxonomies: Klassifikationen
|
|
710
713
|
taxons: Klassifikation
|
|
711
714
|
users: Benutzer
|
|
712
|
-
|
|
715
|
+
rma: RMA
|
|
713
716
|
taxons:
|
|
714
717
|
display_order: Darstellungsreihenfolge
|
|
715
718
|
user:
|
|
@@ -745,7 +748,7 @@ de:
|
|
|
745
748
|
all_adjustments_closed: Alle Anpassung wurden erfolgreich geschlossen!
|
|
746
749
|
all_adjustments_opened: Alle Anpassung wurden erfolgreich geöffnet!
|
|
747
750
|
all_departments: Alle Bereiche
|
|
748
|
-
all_items_have_been_returned:
|
|
751
|
+
all_items_have_been_returned: Alle Artikel wurden zurückgegeben
|
|
749
752
|
allow_ssl_in_development_and_test: Erlaube SSL im Vorproduktions- und Testmodus
|
|
750
753
|
allow_ssl_in_production: Erlaube SSL im Produktionsmodus
|
|
751
754
|
allow_ssl_in_staging: Erlaube SSL im Vorproduktionsmodus
|
|
@@ -788,6 +791,8 @@ de:
|
|
|
788
791
|
avs_response: Ergebnis der Adressprüfung
|
|
789
792
|
back: Zurück
|
|
790
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
|
|
791
796
|
back_to_images_list: Zurück zur Bilderliste
|
|
792
797
|
back_to_payment: Zurück zur Zahlung
|
|
793
798
|
back_to_resource_list: Zurück zur Bestellliste
|
|
@@ -814,7 +819,7 @@ de:
|
|
|
814
819
|
calculator: Rechner
|
|
815
820
|
calculator_settings_warning: Wenn Sie den Berechnungs-Typ ändern, müssen Sie erst speichern, bevor Sie die Berechnungs-Einstellungen bearbeiten können
|
|
816
821
|
cancel: abbrechen
|
|
817
|
-
cancel_inventory:
|
|
822
|
+
cancel_inventory: Artikel Stornieren
|
|
818
823
|
canceled: Storniert
|
|
819
824
|
canceled_at: Abgebrochen am
|
|
820
825
|
canceler: Abgebrochen von
|
|
@@ -823,7 +828,7 @@ de:
|
|
|
823
828
|
cannot_create_payment_without_payment_methods: Sie können keine Zahlung für eine Bestellung anlegen, ohne vorher eine Zahlungsmethode definiert
|
|
824
829
|
zu haben.
|
|
825
830
|
cannot_create_returns: Sie können diese Bestellung nicht zurückgeben, da sie noch nicht versendet wurde.
|
|
826
|
-
cannot_destroy_if_attached_to_line_items: Kann nicht gelöscht werden wenn es zu einem
|
|
831
|
+
cannot_destroy_if_attached_to_line_items: Kann nicht gelöscht werden wenn es zu einem Artikel einer Bestellung gehört
|
|
827
832
|
cannot_perform_operation: Kann diese Operation nicht durchführen.
|
|
828
833
|
cannot_set_shipping_method_without_address: Die Versandart kann erst geändert werden, wenn die Kundendaten ausgefüllt sind.
|
|
829
834
|
capture: erfassen
|
|
@@ -846,7 +851,7 @@ de:
|
|
|
846
851
|
choose_a_taxon_to_sort_products_for: Sortierungsklassifizierung wählen
|
|
847
852
|
choose_currency: Währung auswählen
|
|
848
853
|
choose_dashboard_locale: Dashboard-Sprache wählen
|
|
849
|
-
choose_location:
|
|
854
|
+
choose_location: Versandlager wählen
|
|
850
855
|
city: Ort
|
|
851
856
|
clear_cache: Zwischenspeicher leeren
|
|
852
857
|
clear_cache_ok: Zwischenspeicher erfolgreich geleert
|
|
@@ -894,7 +899,7 @@ de:
|
|
|
894
899
|
coupon_code_unknown_error: Der Gutschein-Code verursachte ein unbekanntes Problem
|
|
895
900
|
create: Erstellen
|
|
896
901
|
create_a_new_account: Neues Konto erstellen
|
|
897
|
-
create_one:
|
|
902
|
+
create_one: Anlegen
|
|
898
903
|
create_new_order: Neuer Bestellung
|
|
899
904
|
create_reimbursement: Vergütung beantragen
|
|
900
905
|
created_at: Erstellt am
|
|
@@ -1137,7 +1142,7 @@ de:
|
|
|
1137
1142
|
iso_name: ISO-Name
|
|
1138
1143
|
item: Artikel
|
|
1139
1144
|
item_description: Artikelbeschreibung
|
|
1140
|
-
item_total:
|
|
1145
|
+
item_total: Zwischensumme
|
|
1141
1146
|
item_total_rule:
|
|
1142
1147
|
operators:
|
|
1143
1148
|
gt: größer als
|
|
@@ -1147,6 +1152,11 @@ de:
|
|
|
1147
1152
|
items_cannot_be_shipped: Wir können die ausgewählten Artikel nicht an Ihre Lieferadresse schicken. Bitte wählen Sie eine andere Lieferadresse.
|
|
1148
1153
|
items_in_rmas: Artikel im Umtausch
|
|
1149
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
|
|
1150
1160
|
items_to_be_reimbursed: Zu vergütende Artikel
|
|
1151
1161
|
jirafe: Jirafe
|
|
1152
1162
|
landing_page_rule:
|
|
@@ -1155,7 +1165,7 @@ de:
|
|
|
1155
1165
|
last_name_begins_with: Nachname beginnt mit
|
|
1156
1166
|
learn_more: Mehr dazu
|
|
1157
1167
|
lifetime_stats: 'Statistiken: Lebenszyklus'
|
|
1158
|
-
line_item_adjustments:
|
|
1168
|
+
line_item_adjustments: Artikelanpassungen
|
|
1159
1169
|
list: Liste
|
|
1160
1170
|
loading: Laden
|
|
1161
1171
|
loading_tree: Loading tree. Please wait…
|
|
@@ -1195,7 +1205,7 @@ de:
|
|
|
1195
1205
|
minimal_amount: Mindestanzahl
|
|
1196
1206
|
minimize_menu: Menü minimieren
|
|
1197
1207
|
modify_stock_count: Modifizieren (+/-)
|
|
1198
|
-
missing_return_authorization: Fehlende
|
|
1208
|
+
missing_return_authorization: Fehlende Rückgabebewilligung %{item_name}.
|
|
1199
1209
|
month: Monat
|
|
1200
1210
|
more: Mehr
|
|
1201
1211
|
move_stock_between_locations: Lager zwischen Standorten bewegen
|
|
@@ -1203,6 +1213,7 @@ de:
|
|
|
1203
1213
|
my_account: Mein Konto
|
|
1204
1214
|
my_orders: Meine Bestellungen
|
|
1205
1215
|
name: Name
|
|
1216
|
+
name_contains: Name enthält
|
|
1206
1217
|
name_on_card: Name auf der Kreditkarte
|
|
1207
1218
|
name_or_sku: Name oder Artikelnummer
|
|
1208
1219
|
new: Neu
|
|
@@ -1210,7 +1221,7 @@ de:
|
|
|
1210
1221
|
new_adjustment_reason: Neuer Anpassungsgrund
|
|
1211
1222
|
new_country: Neues Land
|
|
1212
1223
|
new_customer: Neuer Kunde
|
|
1213
|
-
new_customer_return: Neue
|
|
1224
|
+
new_customer_return: Neue Rücksendung
|
|
1214
1225
|
new_image: Neues Bild
|
|
1215
1226
|
new_option_type: Neue Option
|
|
1216
1227
|
new_order: Neue Bestellung
|
|
@@ -1302,7 +1313,7 @@ de:
|
|
|
1302
1313
|
order_email_resent: Bestellbestätigung erneut versendet
|
|
1303
1314
|
order_has_no_payments: Bestellung hat keine Bezahlungen
|
|
1304
1315
|
order_information: Bestellinformationen
|
|
1305
|
-
order_line_items:
|
|
1316
|
+
order_line_items: Artikel
|
|
1306
1317
|
order_mailer:
|
|
1307
1318
|
cancel_email:
|
|
1308
1319
|
dear_customer: Sehr geehrte Kundin, geehrter Kunde,
|
|
@@ -1378,6 +1389,7 @@ de:
|
|
|
1378
1389
|
completed: Abgeschlossen
|
|
1379
1390
|
credit_owed: Betrag schuldig
|
|
1380
1391
|
failed: fehlgeschlagen
|
|
1392
|
+
invalid: ungültig
|
|
1381
1393
|
paid: bezahlt
|
|
1382
1394
|
pending: noch offen
|
|
1383
1395
|
processing: in Bearbeitung
|
|
@@ -1493,14 +1505,25 @@ de:
|
|
|
1493
1505
|
receive: erhalten
|
|
1494
1506
|
receive_stock: Empfangslager
|
|
1495
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
|
|
1496
1519
|
reception_status: Empfangsstatus
|
|
1497
1520
|
reference: Referenz
|
|
1498
1521
|
reference_contains: Referenz beinhaltet
|
|
1499
|
-
refund:
|
|
1500
|
-
refund_amount_must_be_greater_than_zero:
|
|
1501
|
-
refund_reasons:
|
|
1502
|
-
refunded_amount:
|
|
1503
|
-
refunds:
|
|
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
|
|
1504
1527
|
register: Als Neukunde registrieren
|
|
1505
1528
|
registration: Registrierung
|
|
1506
1529
|
reimburse: Vergüten
|
|
@@ -1515,8 +1538,12 @@ de:
|
|
|
1515
1538
|
instructions: Anweisungen
|
|
1516
1539
|
refund_summary: Kurzfassung Gutschrift
|
|
1517
1540
|
subject: Betreff
|
|
1518
|
-
total_refunded: Gesamtwert Gutschriften
|
|
1541
|
+
total_refunded: Gesamtwert Gutschriften %{total}
|
|
1519
1542
|
reimbursement_perform_failed: Vergütung fehlgeschlagen
|
|
1543
|
+
reimbursement_states:
|
|
1544
|
+
errored: fehlerhaft
|
|
1545
|
+
pending: ausstehend
|
|
1546
|
+
reimbursed: vergütet
|
|
1520
1547
|
reimbursement_status: Vergütungsstatus
|
|
1521
1548
|
reimbursement_type: Vergütungstyp
|
|
1522
1549
|
reimbursement_type_override: Vergütungstyp überschreiben
|
|
@@ -1538,6 +1565,9 @@ de:
|
|
|
1538
1565
|
return: zurückgeben
|
|
1539
1566
|
return_authorization: Rückgabebewilligung
|
|
1540
1567
|
return_authorization_reasons: Gründe der Rückgabebewilligung
|
|
1568
|
+
return_authorization_states:
|
|
1569
|
+
authorized: authorisiert
|
|
1570
|
+
canceled: abgebrochen
|
|
1541
1571
|
return_authorization_updated: Rückgabebewilligung aktualisiert
|
|
1542
1572
|
return_authorizations: Rückgabebewilligungen
|
|
1543
1573
|
return_item_inventory_unit_ineligible: Artikelposition des Warenkorbs von der Rückgabe ausgeschlossen
|
|
@@ -1576,7 +1606,7 @@ de:
|
|
|
1576
1606
|
secure_connection_type: Sicherer Verbindungstyp
|
|
1577
1607
|
security_settings: Sicherheitseinstellungen
|
|
1578
1608
|
select: Auswählen
|
|
1579
|
-
select_a_return_authorization_reason:
|
|
1609
|
+
select_a_return_authorization_reason: Rückgabebewilligungsgrund wählen
|
|
1580
1610
|
select_a_stock_location: Lager wählen
|
|
1581
1611
|
select_from_prototype: Von einem Prototypen
|
|
1582
1612
|
select_stock: Lager wählen
|
|
@@ -1591,8 +1621,10 @@ de:
|
|
|
1591
1621
|
ship_total: Versand gesamt
|
|
1592
1622
|
shipment: Sendung
|
|
1593
1623
|
shipment_adjustments: Sendung anpassen
|
|
1624
|
+
shipment_date: Versanddatum
|
|
1594
1625
|
shipment_details: "%{shipping_method}"
|
|
1595
1626
|
shipment_number: Sendungsnummer
|
|
1627
|
+
shipment_numbers: Sendungsnummern
|
|
1596
1628
|
shipment_mailer:
|
|
1597
1629
|
shipped_email:
|
|
1598
1630
|
dear_customer: Sehr geehrte Kundin, geehrter Kunde,
|
|
@@ -1724,6 +1756,7 @@ de:
|
|
|
1724
1756
|
credit: Guthaben
|
|
1725
1757
|
invalidate: ungültig gemacht
|
|
1726
1758
|
void: Guthaben
|
|
1759
|
+
store_credit: Guthaben
|
|
1727
1760
|
store_credit_category:
|
|
1728
1761
|
default: Standard
|
|
1729
1762
|
street_address: Straße
|
|
@@ -1815,8 +1848,8 @@ de:
|
|
|
1815
1848
|
users: Benutzer
|
|
1816
1849
|
validation:
|
|
1817
1850
|
cannot_be_less_than_shipped_units: kann nicht weniger als die gelieferten Einheiten sein.
|
|
1818
|
-
cannot_destroy_line_item_as_inventory_units_have_shipped: Kann
|
|
1819
|
-
exceeds_available_stock: übersteigt die verfügbaren Vorräte. Bitte sicherstellen, dass die
|
|
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.
|
|
1820
1853
|
is_too_large: ist zu hoch. Der Lagerbestand kann die angefragte Menge nicht abdecken.
|
|
1821
1854
|
must_be_int: muss eine Ganzzahl sein
|
|
1822
1855
|
must_be_non_negative: darf keinen negativen Wert haben
|
data/config/locales/en-AU.yml
CHANGED
data/config/locales/en-GB.yml
CHANGED
|
@@ -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
|
data/config/locales/en-IN.yml
CHANGED
|
@@ -10,7 +10,7 @@ en-IN:
|
|
|
10
10
|
lastname: Last Name
|
|
11
11
|
phone: Phone
|
|
12
12
|
state: State
|
|
13
|
-
zipcode:
|
|
13
|
+
zipcode: Pin Code
|
|
14
14
|
spree/calculator/tiered_flat_rate:
|
|
15
15
|
preferred_base_amount:
|
|
16
16
|
preferred_tiers:
|
|
@@ -61,7 +61,7 @@ en-IN:
|
|
|
61
61
|
lastname: Billing address last name
|
|
62
62
|
phone: Billing address phone
|
|
63
63
|
state: Billing address state
|
|
64
|
-
zipcode: Billing address
|
|
64
|
+
zipcode: Billing address pincode
|
|
65
65
|
spree/order/ship_address:
|
|
66
66
|
address1: Shipping address street
|
|
67
67
|
city: Shipping address city
|
|
@@ -69,7 +69,7 @@ en-IN:
|
|
|
69
69
|
lastname: Shipping address last name
|
|
70
70
|
phone: Shipping address phone
|
|
71
71
|
state: Shipping address state
|
|
72
|
-
zipcode: Shipping address
|
|
72
|
+
zipcode: Shipping address pincode
|
|
73
73
|
spree/payment:
|
|
74
74
|
amount: Amount
|
|
75
75
|
spree/payment_method:
|
|
@@ -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
|
|
@@ -1284,7 +1279,7 @@ en-IN:
|
|
|
1284
1279
|
you_have_no_orders_yet: You have no orders yet.
|
|
1285
1280
|
your_cart_is_empty: Your basket is empty
|
|
1286
1281
|
your_order_is_empty_add_product: Your order is empty, please search for and add a product above
|
|
1287
|
-
zip:
|
|
1288
|
-
zipcode:
|
|
1282
|
+
zip: Pin Code
|
|
1283
|
+
zipcode: Pin Code
|
|
1289
1284
|
zone: Zone
|
|
1290
1285
|
zones: Zones
|
data/config/locales/en-NZ.yml
CHANGED
|
@@ -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:
|
data/config/locales/es-EC.yml
CHANGED
|
@@ -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
|
data/config/locales/et.yml
CHANGED
data/config/locales/fi.yml
CHANGED
|
@@ -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
|