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.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.hound.yml +25 -0
- data/.rubocop.yml +7 -0
- data/.travis.yml +12 -0
- data/CONTRIBUTING.md +70 -0
- data/Gemfile +13 -0
- data/Guardfile +11 -0
- data/LICENSE.md +26 -0
- data/README.md +74 -0
- data/Rakefile +85 -0
- data/app/assets/javascripts/spree/backend/solidus_i18n.js +2 -0
- data/app/assets/javascripts/spree/backend/translations.js.coffee +5 -0
- data/app/assets/javascripts/spree/frontend/cart_decorator.js.coffee +5 -0
- data/app/assets/javascripts/spree/frontend/locale.js.coffee +3 -0
- data/app/assets/javascripts/spree/frontend/solidus_i18n.js +2 -0
- data/app/assets/stylesheets/spree/backend/solidus_i18n.css +8 -0
- data/app/assets/stylesheets/spree/frontend/solidus_i18n.css +8 -0
- data/app/controllers/spree/admin/general_settings_controller_decorator.rb +12 -0
- data/app/controllers/spree/api/base_controller_decorator.rb +3 -0
- data/app/controllers/spree/base_controller_decorator.rb +3 -0
- data/app/controllers/spree/locale_controller_decorator.rb +6 -0
- data/app/helpers/solidus_i18n/locale_helper.rb +31 -0
- data/app/overrides/spree/admin/general_settings/edit/localization_settings.html.erb.deface +20 -0
- data/app/overrides/spree/shared/_main_nav_bar/cart_link.html.erb.deface +9 -0
- data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +16 -0
- data/bin/rails +7 -0
- data/config/initializers/country_names.rb +51 -0
- data/config/initializers/routing_filter.rb +2 -0
- data/config/locales/bg.yml +1330 -0
- data/config/locales/ca.yml +1334 -0
- data/config/locales/cs.yml +1363 -0
- data/config/locales/da.yml +1336 -0
- data/config/locales/de-CH.yml +1288 -0
- data/config/locales/de.yml +1477 -0
- data/config/locales/en-AU.yml +1334 -0
- data/config/locales/en-GB.yml +1338 -0
- data/config/locales/en-IN.yml +1336 -0
- data/config/locales/en-NZ.yml +1334 -0
- data/config/locales/es-CL.yml +1398 -0
- data/config/locales/es-EC.yml +1338 -0
- data/config/locales/es-MX.yml +1337 -0
- data/config/locales/es.yml +1338 -0
- data/config/locales/et.yml +1316 -0
- data/config/locales/fa.yml +1163 -0
- data/config/locales/fi.yml +1352 -0
- data/config/locales/fr.yml +1588 -0
- data/config/locales/id.yml +1335 -0
- data/config/locales/it.yml +1395 -0
- data/config/locales/ja.yml +1336 -0
- data/config/locales/ko.yml +1294 -0
- data/config/locales/lv.yml +1328 -0
- data/config/locales/nb.yml +1339 -0
- data/config/locales/nl.yml +1338 -0
- data/config/locales/pl.yml +1345 -0
- data/config/locales/pt-BR.yml +1364 -0
- data/config/locales/pt.yml +1290 -0
- data/config/locales/ro.yml +1335 -0
- data/config/locales/ru.yml +1400 -0
- data/config/locales/sk.yml +1345 -0
- data/config/locales/sl-SI.yml +1288 -0
- data/config/locales/sv.yml +1372 -0
- data/config/locales/th.yml +1330 -0
- data/config/locales/tr.yml +1291 -0
- data/config/locales/uk.yml +1447 -0
- data/config/locales/vi.yml +1290 -0
- data/config/locales/zh-CN.yml +1345 -0
- data/config/locales/zh-TW.yml +1293 -0
- data/config/routes.rb +6 -0
- data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +65 -0
- data/lib/generators/solidus_i18n/install/install_generator.rb +27 -0
- data/lib/solidus_i18n/configuration.rb +9 -0
- data/lib/solidus_i18n/controller_locale_helper.rb +29 -0
- data/lib/solidus_i18n/engine.rb +45 -0
- data/lib/solidus_i18n/locale.rb +13 -0
- data/lib/solidus_i18n/utils.rb +56 -0
- data/lib/solidus_i18n/version.rb +18 -0
- data/lib/solidus_i18n.rb +8 -0
- data/lib/tasks/solidus_i18n/upgrade.rake +43 -0
- data/solidus_i18n.gemspec +46 -0
- data/spec/controllers/locales_controller_spec.rb +24 -0
- data/spec/features/admin/translations_spec.rb +33 -0
- data/spec/features/russian_errors_translation_spec.rb +17 -0
- data/spec/features/translation_spec.rb +31 -0
- data/spec/features/translations_spec.rb +28 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/support/capybara.rb +11 -0
- data/spec/support/database_cleaner.rb +23 -0
- data/spec/support/factory_girl.rb +5 -0
- data/spec/support/i18n.rb +5 -0
- data/spec/support/spree.rb +12 -0
- metadata +411 -0
@@ -0,0 +1,1338 @@
|
|
1
|
+
nl:
|
2
|
+
activerecord:
|
3
|
+
attributes:
|
4
|
+
spree/address:
|
5
|
+
address1: Adres
|
6
|
+
address2: Adres 2
|
7
|
+
city: Woonplaats
|
8
|
+
country: Land
|
9
|
+
firstname: Voornaam
|
10
|
+
lastname: Achternaam
|
11
|
+
phone: Telefoon
|
12
|
+
state: Provincie
|
13
|
+
zipcode: Postcode
|
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: ISO Naam
|
24
|
+
name: Naam
|
25
|
+
numcode: ISO Code
|
26
|
+
spree/credit_card:
|
27
|
+
base:
|
28
|
+
cc_type: Type
|
29
|
+
month: Maand
|
30
|
+
name:
|
31
|
+
number: Nummer
|
32
|
+
verification_value: Veiligheidscode
|
33
|
+
year: Jaar
|
34
|
+
spree/inventory_unit:
|
35
|
+
state: Status
|
36
|
+
spree/line_item:
|
37
|
+
price: Prijs
|
38
|
+
quantity: Aantal
|
39
|
+
spree/option_type:
|
40
|
+
name: Naam
|
41
|
+
presentation: Presentatie
|
42
|
+
spree/order:
|
43
|
+
checkout_complete: Bestelling afgerond
|
44
|
+
completed_at: Voltooid op
|
45
|
+
considered_risky:
|
46
|
+
coupon_code: Kortingscode
|
47
|
+
created_at: Besteldatum
|
48
|
+
email: Klant e-mail
|
49
|
+
ip_address: IP adres
|
50
|
+
item_total: Product totaal
|
51
|
+
number: Nummer
|
52
|
+
payment_state: Betaalstatus
|
53
|
+
shipment_state: Verzendstatus
|
54
|
+
special_instructions: Speciale instructies
|
55
|
+
state: Status
|
56
|
+
total: Totaal
|
57
|
+
spree/order/bill_address:
|
58
|
+
address1: Factuuradres
|
59
|
+
city: Woonplaats
|
60
|
+
firstname: Voornaam
|
61
|
+
lastname: Achternaam
|
62
|
+
phone: Telefoon
|
63
|
+
state: Provincie
|
64
|
+
zipcode: Postcode
|
65
|
+
spree/order/ship_address:
|
66
|
+
address1: Verzendadres
|
67
|
+
city: Woonplaats
|
68
|
+
firstname: Voornaam
|
69
|
+
lastname: Achternaam
|
70
|
+
phone: Telefoon
|
71
|
+
state: Provincie
|
72
|
+
zipcode: Postcode
|
73
|
+
spree/payment:
|
74
|
+
amount: Bedrag
|
75
|
+
spree/payment_method:
|
76
|
+
name: Naam
|
77
|
+
spree/product:
|
78
|
+
available_on: Beschikbaar op
|
79
|
+
cost_currency: Kosten valuta
|
80
|
+
cost_price: Kostprijs
|
81
|
+
description: Omschrijving
|
82
|
+
master_price: Prijs
|
83
|
+
name: Naam
|
84
|
+
on_hand: Op voorraad
|
85
|
+
shipping_category: Verzendcategorie
|
86
|
+
tax_category: Belastingscategorie
|
87
|
+
spree/promotion:
|
88
|
+
advertise: Adverteren
|
89
|
+
code: Code
|
90
|
+
description: Omschrijving
|
91
|
+
event_name: Evenementnaam
|
92
|
+
expires_at: Verloopt op
|
93
|
+
name: Naam
|
94
|
+
path: Pad
|
95
|
+
starts_at: Begint op
|
96
|
+
usage_limit: Gebruikslimiet
|
97
|
+
spree/promotion_category:
|
98
|
+
name:
|
99
|
+
spree/property:
|
100
|
+
name: Naam
|
101
|
+
presentation: Presentatie
|
102
|
+
spree/prototype:
|
103
|
+
name: Naam
|
104
|
+
spree/return_authorization:
|
105
|
+
amount: Aantal
|
106
|
+
spree/role:
|
107
|
+
name: Naam
|
108
|
+
spree/state:
|
109
|
+
abbr: Afkorting
|
110
|
+
name: Naam
|
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: Omschrijving
|
128
|
+
name: Naam
|
129
|
+
spree/tax_rate:
|
130
|
+
amount: Bedrag
|
131
|
+
included_in_price: Inbegrepen in prijs
|
132
|
+
show_rate_in_label: Toon percentage naast naam
|
133
|
+
spree/taxon:
|
134
|
+
name: Naam
|
135
|
+
permalink: Permalink
|
136
|
+
position: Positie
|
137
|
+
spree/taxonomy:
|
138
|
+
name: Naam
|
139
|
+
spree/user:
|
140
|
+
email: E-mail
|
141
|
+
password: Wachtwoord
|
142
|
+
password_confirmation: Wachtwoord bevestiging
|
143
|
+
spree/variant:
|
144
|
+
cost_currency: Inkoop valuta
|
145
|
+
cost_price: Kostprijs
|
146
|
+
depth: Diepte
|
147
|
+
height: Hoogte
|
148
|
+
price: Prijs
|
149
|
+
sku: Sku
|
150
|
+
weight: Gewicht
|
151
|
+
width: Breedte
|
152
|
+
spree/zone:
|
153
|
+
description: Omschrijving
|
154
|
+
name: Naam
|
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: Kaart is verlopen
|
178
|
+
expiry_invalid:
|
179
|
+
spree/line_item:
|
180
|
+
attributes:
|
181
|
+
currency:
|
182
|
+
must_match_order_currency:
|
183
|
+
spree/refund:
|
184
|
+
attributes:
|
185
|
+
amount:
|
186
|
+
greater_than_allowed:
|
187
|
+
spree/reimbursement:
|
188
|
+
attributes:
|
189
|
+
base:
|
190
|
+
return_items_order_id_does_not_match:
|
191
|
+
spree/return_item:
|
192
|
+
attributes:
|
193
|
+
inventory_unit:
|
194
|
+
other_completed_return_item_exists:
|
195
|
+
reimbursement:
|
196
|
+
cannot_be_associated_unless_accepted:
|
197
|
+
spree/store:
|
198
|
+
attributes:
|
199
|
+
base:
|
200
|
+
cannot_destroy_default_store:
|
201
|
+
models:
|
202
|
+
spree/address:
|
203
|
+
one: Adres
|
204
|
+
other: Adressen
|
205
|
+
spree/country:
|
206
|
+
one: Land
|
207
|
+
other: Landen
|
208
|
+
spree/credit_card:
|
209
|
+
one: Kredietkaart
|
210
|
+
other: Kredietkaarten
|
211
|
+
spree/customer_return:
|
212
|
+
spree/inventory_unit:
|
213
|
+
one: Voorraadeenheid
|
214
|
+
other: Voorraadeenheden
|
215
|
+
spree/line_item:
|
216
|
+
one: Regel
|
217
|
+
other: Regels
|
218
|
+
spree/option_type:
|
219
|
+
spree/option_value:
|
220
|
+
spree/order:
|
221
|
+
one: Bestelling
|
222
|
+
other: Bestellingen
|
223
|
+
spree/payment:
|
224
|
+
one: Betaling
|
225
|
+
other: Betalingen
|
226
|
+
spree/payment_method:
|
227
|
+
spree/product:
|
228
|
+
one: Product
|
229
|
+
other: Producten
|
230
|
+
spree/promotion:
|
231
|
+
one: Promotie
|
232
|
+
other: Promoties
|
233
|
+
spree/promotion_category:
|
234
|
+
spree/property:
|
235
|
+
one: Eigenschap
|
236
|
+
other: Eigenschappen
|
237
|
+
spree/prototype:
|
238
|
+
one: Prototype
|
239
|
+
other: Prototypes
|
240
|
+
spree/refund_reason:
|
241
|
+
spree/reimbursement:
|
242
|
+
spree/reimbursement_type:
|
243
|
+
spree/return_authorization:
|
244
|
+
one: Retour
|
245
|
+
other: Retouren
|
246
|
+
spree/return_authorization_reason:
|
247
|
+
spree/role:
|
248
|
+
one: Rol
|
249
|
+
other: Rollen
|
250
|
+
spree/shipment:
|
251
|
+
one: Verzending
|
252
|
+
other: Verzendingen
|
253
|
+
spree/shipping_category:
|
254
|
+
one: Verzendcategorie
|
255
|
+
other: Verzendcategorieën
|
256
|
+
spree/shipping_method:
|
257
|
+
spree/state:
|
258
|
+
one: Provincie
|
259
|
+
other: Provincies
|
260
|
+
spree/state_change:
|
261
|
+
spree/stock_location:
|
262
|
+
spree/stock_movement:
|
263
|
+
spree/stock_transfer:
|
264
|
+
spree/tax_category:
|
265
|
+
one: Belastingscategorie
|
266
|
+
other: Belastingscategorieën
|
267
|
+
spree/tax_rate:
|
268
|
+
one: Belastingstarief
|
269
|
+
other: Belastingstarieven
|
270
|
+
spree/taxon:
|
271
|
+
one: Taxon
|
272
|
+
other: Taxa
|
273
|
+
spree/taxonomy:
|
274
|
+
one: Taxonomie
|
275
|
+
other: Taxonomieën
|
276
|
+
spree/tracker:
|
277
|
+
spree/user:
|
278
|
+
one: Gebruiker
|
279
|
+
other: Gebruikers
|
280
|
+
spree/variant:
|
281
|
+
one: Variant
|
282
|
+
other: Varianten
|
283
|
+
spree/zone:
|
284
|
+
one: Zone
|
285
|
+
other: Zones
|
286
|
+
devise:
|
287
|
+
confirmations:
|
288
|
+
confirmed: Je account is succesvol bevestigd. Je bent nu aangemeld.
|
289
|
+
send_instructions: Binnen enkele minuten ontvang je instructies voor het bevestigen van je account.
|
290
|
+
failure:
|
291
|
+
inactive: Je account is nog niet geactiveerd.
|
292
|
+
invalid: Ongeldig email adres of wachtwoord
|
293
|
+
invalid_token: Ongeldige authenticatietoken.
|
294
|
+
locked: Je token is geblokkeerd
|
295
|
+
timeout: Je sessie is verlopen, log opnieuw in om verder te gaan.
|
296
|
+
unauthenticated: Je dient een account aan te maken of in te loggen om verder te gaan.
|
297
|
+
unconfirmed: Je moet je account bevestigen alvorens je verder gaat.
|
298
|
+
mailer:
|
299
|
+
confirmation_instructions:
|
300
|
+
subject: Bevestigingsinstructies
|
301
|
+
reset_password_instructions:
|
302
|
+
subject: Reset wachtwoord instructies
|
303
|
+
unlock_instructions:
|
304
|
+
subject: Ontgrendel instructies
|
305
|
+
oauth_callbacks:
|
306
|
+
failure: Kon je niet authoriseren via %{kind} omdat %{reason}.
|
307
|
+
success: Succesvol geautoriseerd via %{kind} account.
|
308
|
+
unlocks:
|
309
|
+
send_instructions: Je ontvangt binnen enkele minuten instructies over hoe je je account kunt ontgrendelen.
|
310
|
+
unlocked: Je account is succesvol ontgrendeld. Je bent nu aangemeld.
|
311
|
+
user_passwords:
|
312
|
+
user:
|
313
|
+
cannot_be_blank: Je wachtwoord kan niet leeg zijn.
|
314
|
+
send_instructions: Binnen enkele minuten ontvang je instructies voor het wijzigen van je wachtwoord.
|
315
|
+
updated: Je wachtwoord is succesvol gewijzigd. Je bent nu aangemeld.
|
316
|
+
user_registrations:
|
317
|
+
destroyed: Tot ziens! Je account is succesvol geannuleerd. We hopen je binnenkort weert te verwelkomen.
|
318
|
+
inactive_signed_up: Je bent succesvol geregistreerd. We konden je echter niet inloggen omdat je account %{reason} is.
|
319
|
+
signed_up: Welkom! Je bent succesvol aangemeld.
|
320
|
+
updated: Je hebt je account succesvol bijgewerkt.
|
321
|
+
user_sessions:
|
322
|
+
signed_in: Succesvol aangemeld.
|
323
|
+
signed_out: Succesvol afgemeld.
|
324
|
+
errors:
|
325
|
+
messages:
|
326
|
+
already_confirmed: was reeds bevestigd
|
327
|
+
not_found: niet gevonden
|
328
|
+
not_locked: was niet vergendeld
|
329
|
+
not_saved:
|
330
|
+
one: '1 fout voorkwam dat deze %{resource} werd opgeslagen:'
|
331
|
+
other: "%{count} fouten voorkwamen dat deze %{resource} werd opgeslagen:"
|
332
|
+
spree:
|
333
|
+
abbreviation: Afkorting
|
334
|
+
accept:
|
335
|
+
acceptance_errors:
|
336
|
+
acceptance_status:
|
337
|
+
accepted:
|
338
|
+
account: Account
|
339
|
+
account_updated: Account bijgewerkt!
|
340
|
+
action: Actie
|
341
|
+
actions:
|
342
|
+
cancel: Annuleer
|
343
|
+
continue: Ga verder
|
344
|
+
create: Aanmaken
|
345
|
+
destroy: Verwijder
|
346
|
+
edit: Bewerk
|
347
|
+
list: Lijst
|
348
|
+
listing: Opsomming
|
349
|
+
new: Nieuw
|
350
|
+
refund:
|
351
|
+
save: Opslaan
|
352
|
+
update: Bijwerken
|
353
|
+
activate: Activeer
|
354
|
+
active: Actief
|
355
|
+
add: Toevoegen
|
356
|
+
add_action_of_type: Voeg actie toe van type
|
357
|
+
add_country: Land toevoegen
|
358
|
+
add_coupon_code:
|
359
|
+
add_new_header: Voeg nieuwe header toe
|
360
|
+
add_new_style: Voeg nieuwe stijl toe
|
361
|
+
add_one: Voeg één toe
|
362
|
+
add_option_value: Optiewaarde toevoegen
|
363
|
+
add_product: Product toevoegen
|
364
|
+
add_product_properties: Producteigenschap toevoegen
|
365
|
+
add_rule_of_type: Regeltype toevoegen
|
366
|
+
add_state: Status toevoegen
|
367
|
+
add_stock: Voorraad toevoegen
|
368
|
+
add_stock_management: Voorraadbeheer toevoegen
|
369
|
+
add_to_cart: Toevoegen aan winkelwagen
|
370
|
+
add_variant: Variant toevoegen
|
371
|
+
additional_item: Toegevoegde artikel kosten
|
372
|
+
address1: Adres
|
373
|
+
address2: Adres (vervolg)
|
374
|
+
adjustable:
|
375
|
+
adjustment: Aanpassing
|
376
|
+
adjustment_amount: Hoeveelheid
|
377
|
+
adjustment_successfully_closed: Aanpassing is met succes afgesloten!
|
378
|
+
adjustment_successfully_opened: Aanpassing is met succes geopend!
|
379
|
+
adjustment_total: Totaal toevoegingen
|
380
|
+
adjustments: Toevoegingen
|
381
|
+
admin:
|
382
|
+
tab:
|
383
|
+
configuration: Configuratie
|
384
|
+
option_types: Types opties
|
385
|
+
orders: Bestellingen
|
386
|
+
overview: Overzicht
|
387
|
+
products: Producten
|
388
|
+
promotions: Promoties
|
389
|
+
promotion_categories:
|
390
|
+
properties: Eigenschappen
|
391
|
+
prototypes:
|
392
|
+
reports: Rapportages
|
393
|
+
taxonomies:
|
394
|
+
taxons:
|
395
|
+
users: Gebruikers
|
396
|
+
user:
|
397
|
+
account:
|
398
|
+
addresses:
|
399
|
+
items:
|
400
|
+
items_purchased:
|
401
|
+
order_history:
|
402
|
+
order_num:
|
403
|
+
orders:
|
404
|
+
user_information:
|
405
|
+
administration: Administratie
|
406
|
+
advertise:
|
407
|
+
agree_to_privacy_policy: Akkoord met privacy beleid
|
408
|
+
agree_to_terms_of_service: Akkoord met algemene voorwaarden
|
409
|
+
all: Alle
|
410
|
+
all_adjustments_closed: Alle aanpassingen succesvol gesloten!
|
411
|
+
all_adjustments_opened: Alle aanpassingen succesvol geopend
|
412
|
+
all_departments: Alle afdelingen
|
413
|
+
all_items_have_been_returned:
|
414
|
+
allow_ssl_in_development_and_test: Sta toe SSL te gebruiken in ontwikkel en test modus
|
415
|
+
allow_ssl_in_production: Sta toe SSL te gebruiken in productie modus
|
416
|
+
allow_ssl_in_staging: Sta toe SSL te gebruikten in staging modus
|
417
|
+
already_signed_up_for_analytics: Je bent al geregistreerd voor Spree Analytics
|
418
|
+
alt_text: Alternatieve tekst
|
419
|
+
alternative_phone: Alternatief telefoonnummer
|
420
|
+
amount: Bedrag
|
421
|
+
analytics_desc_header_1: Spree Analytics
|
422
|
+
analytics_desc_header_2: Live analytics geïntegreerd in je Spree dashboard
|
423
|
+
analytics_desc_list_1: Krijg live verkoop informatie
|
424
|
+
analytics_desc_list_2: Enkel een gratis Spree account nodig ter activatie
|
425
|
+
analytics_desc_list_3: Geen code nodig voor installatie
|
426
|
+
analytics_desc_list_4: Het is volledig gratis
|
427
|
+
analytics_trackers: Analytics trackers
|
428
|
+
and: en
|
429
|
+
approve:
|
430
|
+
approved_at: Goedgekeurd op
|
431
|
+
approver: Door
|
432
|
+
are_you_sure: Weet je het zeker
|
433
|
+
are_you_sure_delete: Wilt je dit record echt verwijderen?
|
434
|
+
associated_adjustment_closed: De bijbehorende aanpassing is gesloten, en wordt niet herberekend. Wil je de aanpassing openen?
|
435
|
+
at_symbol: '@'
|
436
|
+
authorization_failure: Autorisatie mislukt
|
437
|
+
authorized:
|
438
|
+
auto_capture:
|
439
|
+
available_on: Beschikbaar op
|
440
|
+
average_order_value:
|
441
|
+
avs_response:
|
442
|
+
back: Terug
|
443
|
+
back_end: Backend
|
444
|
+
back_to_payment:
|
445
|
+
back_to_resource_list:
|
446
|
+
back_to_rma_reason_list:
|
447
|
+
back_to_store: Verder winkelen
|
448
|
+
back_to_users_list: Terug naar gebruikers lijst
|
449
|
+
backorderable: Nabestelbaar
|
450
|
+
backorderable_default:
|
451
|
+
backordered: Nabestelling
|
452
|
+
backorders_allowed: Nabestellingen toegestaan
|
453
|
+
balance_due: Te betalen
|
454
|
+
base_amount:
|
455
|
+
base_percent:
|
456
|
+
bill_address: Factuuradres
|
457
|
+
billing: Factuur
|
458
|
+
billing_address: Factuuradres
|
459
|
+
both: Beide
|
460
|
+
calculated_reimbursements:
|
461
|
+
calculator: Calculator
|
462
|
+
calculator_settings_warning: Als je de calculator verandert, dien je eerst op te slaan voordat je de calculator instellingen kan wijzigen
|
463
|
+
cancel: Annuleer
|
464
|
+
canceled_at:
|
465
|
+
canceler:
|
466
|
+
cannot_create_customer_returns:
|
467
|
+
cannot_create_payment_without_payment_methods: Je kunt geen betaling aanmaken voor een bestelling als er geen betaalmethodes gedefinieerd zijn.
|
468
|
+
cannot_create_returns: Kan geen retour aanmaken aangezien de bestelling nog niet is verstuurd
|
469
|
+
cannot_perform_operation: Kan deze opdracht niet uitvoeren
|
470
|
+
cannot_set_shipping_method_without_address: Kan geen verzendmethode kiezen totdat klant details bekend zijn.
|
471
|
+
capture: betaling vastleggen
|
472
|
+
capture_events:
|
473
|
+
card_code: Kaartcode
|
474
|
+
card_number: Kaartnummer
|
475
|
+
card_type:
|
476
|
+
card_type_is: Kaarttype is
|
477
|
+
cart: Winkelwagen
|
478
|
+
cart_subtotal:
|
479
|
+
categories: Categorieën
|
480
|
+
category: Categorie
|
481
|
+
charged:
|
482
|
+
check_for_spree_alerts: Controleer op Spree Alerts
|
483
|
+
checkout: Afrekenen
|
484
|
+
choose_a_customer: Kies een klant
|
485
|
+
choose_a_taxon_to_sort_products_for: Kies een taxon om de producten voor te sorteren
|
486
|
+
choose_currency: Kies een valuta
|
487
|
+
choose_dashboard_locale: Kies dashboard regio-instelling
|
488
|
+
choose_location: Kies locatie
|
489
|
+
city: Stad
|
490
|
+
clear_cache:
|
491
|
+
clear_cache_ok:
|
492
|
+
clear_cache_warning:
|
493
|
+
click_and_drag_on_the_products_to_sort_them:
|
494
|
+
clone: Dupliceren
|
495
|
+
close: Sluiten
|
496
|
+
close_all_adjustments: Sluit alle aanpassingen
|
497
|
+
code: Code
|
498
|
+
company: Bedrijf
|
499
|
+
complete: Voltooid
|
500
|
+
configuration: Configuratie
|
501
|
+
configurations: Configuraties
|
502
|
+
confirm: Bevestig
|
503
|
+
confirm_delete: Bevestig verwijderen
|
504
|
+
confirm_password: Wachtwoord bevestigen
|
505
|
+
continue: Ga verder
|
506
|
+
continue_shopping: Verder winkelen
|
507
|
+
cost_currency: Kosten valuta
|
508
|
+
cost_price: Kostprijs
|
509
|
+
could_not_connect_to_jirafe: Kon geen verbinding maken met Jirafe. Dit wordt later automatisch nogmaals geprobeerd.
|
510
|
+
could_not_create_customer_return:
|
511
|
+
could_not_create_stock_movement: Er is een fout opgetreden bij het bewaren van deze voorraad verplaatsing. Probeer het nogmaals.
|
512
|
+
count_on_hand: Aantal in voorraad
|
513
|
+
countries: Landen
|
514
|
+
country: Land
|
515
|
+
country_based: Gebaseerd op land
|
516
|
+
country_name: Naam
|
517
|
+
country_names:
|
518
|
+
CA:
|
519
|
+
FRA:
|
520
|
+
ITA:
|
521
|
+
US:
|
522
|
+
coupon: Kortingscode
|
523
|
+
coupon_code: Kortingscode
|
524
|
+
coupon_code_already_applied: Deze kortingscode is al toegepast op deze bestelling
|
525
|
+
coupon_code_applied: De kortingscode is toegepast op je winkelwagen
|
526
|
+
coupon_code_better_exists: De voorgaande kortingscode geeft een betere deal
|
527
|
+
coupon_code_expired: Kortingscode is vervallen
|
528
|
+
coupon_code_max_usage: Kortingscode is te vaak gebruikt
|
529
|
+
coupon_code_not_eligible: Kortingscode is niet geldig voor deze bestelling
|
530
|
+
coupon_code_not_found: Deze kortingscode bestaat niet. Probeer het nogmaals.
|
531
|
+
coupon_code_unknown_error:
|
532
|
+
create: Aanmaken
|
533
|
+
create_a_new_account: Maak een nieuwe account aan
|
534
|
+
create_new_order:
|
535
|
+
create_reimbursement:
|
536
|
+
created_at: Aangemaakt op
|
537
|
+
credit: Krediet
|
538
|
+
credit_card: Kredietkaart
|
539
|
+
credit_cards: Kredietkaart
|
540
|
+
credit_owed: Credits ontvangen
|
541
|
+
credits:
|
542
|
+
currency: Valuta
|
543
|
+
currency_decimal_mark: Scheidingsteken voor decimalen
|
544
|
+
currency_settings: Valuta instellingen
|
545
|
+
currency_symbol_position: Zet valuta symbool voor of achter het bedrag?
|
546
|
+
currency_thousands_separator: Scheidingsteken voor duizendtallen
|
547
|
+
current: Huidige
|
548
|
+
current_promotion_usage: 'Huidig gebruik: %{count}'
|
549
|
+
customer: Klant
|
550
|
+
customer_details: Klant details
|
551
|
+
customer_details_updated: Klant details bijgewerkt
|
552
|
+
customer_return:
|
553
|
+
customer_returns:
|
554
|
+
customer_search: Klant zoeken
|
555
|
+
cut: Knippen
|
556
|
+
cvv_response:
|
557
|
+
dash:
|
558
|
+
jirafe:
|
559
|
+
app_id: App ID
|
560
|
+
app_token: App Token
|
561
|
+
currently_unavailable:
|
562
|
+
explanation: De onderstaande velden kunnen al ingevuld zijn als je via het dashboard hebt gekozen om te registreren met Jirafe.
|
563
|
+
header: Jirafe Analytics instellingen
|
564
|
+
site_id:
|
565
|
+
token:
|
566
|
+
jirafe_settings_updated: Jirafe instellingen bijgewerkt.
|
567
|
+
date: Datum
|
568
|
+
date_completed: Datum voluit
|
569
|
+
date_picker:
|
570
|
+
first_day:
|
571
|
+
format: "%d/%m/%Y"
|
572
|
+
js_format: dd/mm/yy
|
573
|
+
date_range: Datumbereik
|
574
|
+
default: Standaard
|
575
|
+
default_refund_amount:
|
576
|
+
default_tax: Standaardbelasting
|
577
|
+
default_tax_zone: Standaardbelastingszone
|
578
|
+
delete: Verwijder
|
579
|
+
deleted_variants_present:
|
580
|
+
delivery: Bezorging
|
581
|
+
depth: Diepte
|
582
|
+
description: Omschrijving
|
583
|
+
destination: Bestemming
|
584
|
+
destroy: Verwijder
|
585
|
+
details:
|
586
|
+
discount_amount: Kortingsbedrag
|
587
|
+
dismiss_banner: Nee. Bedankt! Ik heb geen interesse. Laat dit bericht niet meer zien.
|
588
|
+
display: Weergeven
|
589
|
+
display_currency: Weergave valuta
|
590
|
+
doesnt_track_inventory:
|
591
|
+
edit: Wijzig
|
592
|
+
editing_resource:
|
593
|
+
editing_rma_reason:
|
594
|
+
editing_user: Bewerk gebruikers
|
595
|
+
eligibility_errors:
|
596
|
+
messages:
|
597
|
+
has_excluded_product:
|
598
|
+
item_total_less_than:
|
599
|
+
item_total_less_than_or_equal:
|
600
|
+
item_total_more_than:
|
601
|
+
item_total_more_than_or_equal:
|
602
|
+
limit_once_per_user:
|
603
|
+
missing_product:
|
604
|
+
missing_taxon:
|
605
|
+
no_applicable_products:
|
606
|
+
no_matching_taxons:
|
607
|
+
no_user_or_email_specified:
|
608
|
+
no_user_specified:
|
609
|
+
not_first_order:
|
610
|
+
email: E-mail
|
611
|
+
empty: Leeg
|
612
|
+
empty_cart: Winkelwagen legen
|
613
|
+
enable_mail_delivery: E-mail aflevering aanzetten
|
614
|
+
end: Einde
|
615
|
+
ending_in: Eindigend op
|
616
|
+
environment: Omgeving
|
617
|
+
error: fout
|
618
|
+
errors:
|
619
|
+
messages:
|
620
|
+
could_not_create_taxon: Niet gelukt om taxon aan te maken
|
621
|
+
no_payment_methods_available: Er zijn geen betaalmethodes geconfigureerd voor deze omgeving
|
622
|
+
no_shipping_methods_available: Voor dit adres zijn geen verzendmethodes beschikbaar, verander je adres en probeer het opnieuw.
|
623
|
+
errors_prohibited_this_record_from_being_saved:
|
624
|
+
one: Corrigeer de fout voordat je het formulier kunt bewaren
|
625
|
+
other: Corrigeer de %{count} fouten voordat je het formulier kunt bewaren
|
626
|
+
event: Gebeurtenis
|
627
|
+
events:
|
628
|
+
spree:
|
629
|
+
cart:
|
630
|
+
add: Voeg toe aan winkelwagen
|
631
|
+
checkout:
|
632
|
+
coupon_code_added: Kortingscode toegevoegd
|
633
|
+
content:
|
634
|
+
visited: Bezoek statische pagina
|
635
|
+
order:
|
636
|
+
contents_changed: Inhoud bestelling veranderd
|
637
|
+
page_view: Statische pagina bekeken
|
638
|
+
user:
|
639
|
+
signup: Gebruiker registratie
|
640
|
+
exceptions:
|
641
|
+
count_on_hand_setter: 'Kan count_on_hand niet handmatig instellen, omdat het automatisch wordt ingesteld door de recalculate_count_on_hand callback. Gebruik `update_column (: count_on_hand, waarde)` in plaats hier van.'
|
642
|
+
exchange_for:
|
643
|
+
excl:
|
644
|
+
existing_shipments: Bestaande verzendingen
|
645
|
+
expedited_exchanges_warning:
|
646
|
+
expiration: Verval
|
647
|
+
extension: Extensie
|
648
|
+
failed_payment_attempts:
|
649
|
+
filename: Bestandsnaam
|
650
|
+
fill_in_customer_info: Vul klant informatie in aub.
|
651
|
+
filter_results: Filter resultaten
|
652
|
+
finalize: Afronden
|
653
|
+
finalized:
|
654
|
+
find_a_taxon: Zoek een taxon
|
655
|
+
first_item: Kosten eerste item
|
656
|
+
first_name: Voornaam
|
657
|
+
first_name_begins_with: Voornaam begint met
|
658
|
+
flat_percent: Vast percentage
|
659
|
+
flat_rate_per_order: Vast bedrag (per bestelling)
|
660
|
+
flexible_rate: Flexibel bedrag
|
661
|
+
forgot_password: Wachtwoord vergeten
|
662
|
+
free_shipping: Gratis verzending
|
663
|
+
free_shipping_amount:
|
664
|
+
front_end: Frontend
|
665
|
+
gateway: Gateway
|
666
|
+
gateway_config_unavailable: Gateway niet beschikbaar voor configuratie
|
667
|
+
gateway_error: Gateway fout
|
668
|
+
general: Algemeen
|
669
|
+
general_settings: Algemene instellingen
|
670
|
+
google_analytics: Google Analytics
|
671
|
+
google_analytics_id: Analytics ID
|
672
|
+
guest_checkout: Afrekenen als gast
|
673
|
+
guest_user_account: Afrekenen als gast
|
674
|
+
has_no_shipped_units: heeft geen verzonden items
|
675
|
+
height: Hoogte
|
676
|
+
hide_cents: Verberg centen
|
677
|
+
home: Home
|
678
|
+
i18n:
|
679
|
+
available_locales: Beschikbare regio-instellingen
|
680
|
+
language: Taal
|
681
|
+
localization_settings: Regio-instellingen
|
682
|
+
this_file_language: Nederlands (NL)
|
683
|
+
icon: Icoon
|
684
|
+
identifier:
|
685
|
+
image: Afbeelding
|
686
|
+
images: Afbeeldingen
|
687
|
+
implement_eligible_for_return:
|
688
|
+
implement_requires_manual_intervention:
|
689
|
+
inactive:
|
690
|
+
incl:
|
691
|
+
included_in_price: Inbegrepen in prijs
|
692
|
+
included_price_validation: kan niet worden gekozen tenzij je een standaardbelastingszone hebt ingesteld.
|
693
|
+
incomplete:
|
694
|
+
info_number_of_skus_not_shown:
|
695
|
+
info_product_has_multiple_skus:
|
696
|
+
instructions_to_reset_password: 'Vul je e-mailadres in. De instructies om je wachtwoord te resetten worden naar je verstuurd:'
|
697
|
+
insufficient_stock: Onvoldoende voorraad beschikbaar, enkel %{on_hand} beschikbaar
|
698
|
+
insufficient_stock_lines_present:
|
699
|
+
intercept_email_address: E-mailadres opvangen
|
700
|
+
intercept_email_instructions: Ontvanger van de e-mail overschrijven met dit e-mail adres.
|
701
|
+
internal_name: Interne naam
|
702
|
+
invalid_credit_card:
|
703
|
+
invalid_exchange_variant:
|
704
|
+
invalid_payment_provider: Ongeldige betaalprovider.
|
705
|
+
invalid_promotion_action: Ongeldige promotieactie.
|
706
|
+
invalid_promotion_rule: Ongeldige promotieregel.
|
707
|
+
inventory: Voorraad
|
708
|
+
inventory_adjustment: Voorraadaanpassing
|
709
|
+
inventory_error_flash_for_insufficient_quantity: Een item in uw winkelwagen is niet meer beschikbaar zijn.
|
710
|
+
inventory_state:
|
711
|
+
is_not_available_to_shipment_address: is niet beschikbaar voor afleveradres
|
712
|
+
iso_name: ISO Naam
|
713
|
+
item: Product
|
714
|
+
item_description: Productomschrijving
|
715
|
+
item_total: Producttotaal
|
716
|
+
item_total_rule:
|
717
|
+
operators:
|
718
|
+
gt: groter dan
|
719
|
+
gte: groter dan of gelijk aan
|
720
|
+
lt:
|
721
|
+
lte:
|
722
|
+
items_cannot_be_shipped: Items kunnen niet worden verstuurd
|
723
|
+
items_in_rmas:
|
724
|
+
items_reimbursed:
|
725
|
+
items_to_be_reimbursed:
|
726
|
+
jirafe: Jirafe
|
727
|
+
landing_page_rule:
|
728
|
+
path: Pad
|
729
|
+
last_name: Achternaam
|
730
|
+
last_name_begins_with: Achternaam begint met
|
731
|
+
learn_more: Lees meer
|
732
|
+
lifetime_stats:
|
733
|
+
line_item_adjustments: Regel-aanpassingen
|
734
|
+
list: Lijst
|
735
|
+
loading: Bezig met laden
|
736
|
+
locale_changed: Regio-instelling gewijzigd
|
737
|
+
location: Locatie
|
738
|
+
lock: Vergrendel
|
739
|
+
log_entries:
|
740
|
+
logged_in_as: aangemeld als
|
741
|
+
logged_in_succesfully: Je bent aangemeld
|
742
|
+
logged_out: Je bent nu afgemeld.
|
743
|
+
login: Aanmelden
|
744
|
+
login_as_existing: Meld aan als bestaande klant
|
745
|
+
login_failed: Aanmelden mislukt.
|
746
|
+
login_name: Gebruikersnaam
|
747
|
+
logout: Afmelden
|
748
|
+
logs:
|
749
|
+
look_for_similar_items: Zoek naar dezelfde items
|
750
|
+
make_refund: Terugboeking aanmaken
|
751
|
+
make_sure_the_above_reimbursement_amount_is_correct:
|
752
|
+
manage_promotion_categories:
|
753
|
+
manage_variants:
|
754
|
+
manual_intervention_required:
|
755
|
+
master_price: Prijs
|
756
|
+
match_choices:
|
757
|
+
all: Alles
|
758
|
+
none: Geen
|
759
|
+
max_items: Maximaal aantal items
|
760
|
+
member_since:
|
761
|
+
memo:
|
762
|
+
meta_description: Meta beschrijving
|
763
|
+
meta_keywords: Meta sleutelwoorden
|
764
|
+
meta_title:
|
765
|
+
metadata: Metadata
|
766
|
+
minimal_amount: Minimum afname
|
767
|
+
month: Maand
|
768
|
+
more: Geen
|
769
|
+
move_stock_between_locations: Verplaats voorraad tussen locaties
|
770
|
+
my_account: Mijn profiel
|
771
|
+
my_orders: Mijn bestellingen
|
772
|
+
name: Naam
|
773
|
+
name_on_card:
|
774
|
+
name_or_sku: Naam of SKU
|
775
|
+
new: Nieuw
|
776
|
+
new_adjustment: Nieuwe toevoeging
|
777
|
+
new_country: Land toevoegen
|
778
|
+
new_customer: Nieuwe klant
|
779
|
+
new_customer_return:
|
780
|
+
new_image: Nieuwe afbeelding
|
781
|
+
new_option_type: Nieuw optietype
|
782
|
+
new_order: Nieuwe bestelling
|
783
|
+
new_order_completed: Nieuwe bestelling voltooien
|
784
|
+
new_payment: Nieuwe betaling
|
785
|
+
new_payment_method: Nieuwe betaalmethode
|
786
|
+
new_product: Nieuw product
|
787
|
+
new_promotion: Nieuwe promotie
|
788
|
+
new_promotion_category:
|
789
|
+
new_property: Nieuwe eigenschap
|
790
|
+
new_prototype: Nieuw prototype
|
791
|
+
new_refund:
|
792
|
+
new_refund_reason:
|
793
|
+
new_return_authorization: Nieuwe retour-autorisatie
|
794
|
+
new_rma_reason:
|
795
|
+
new_shipment_at_location: Nieuwe verzending vanaf locatie
|
796
|
+
new_shipping_category: Nieuwe verzend categorie
|
797
|
+
new_shipping_method: Nieuwe verzendwijze
|
798
|
+
new_state: Nieuwe staat/provincie
|
799
|
+
new_stock_location: Nieuwe voorraadlocatie
|
800
|
+
new_stock_movement: Nieuwe voorraadverplaatsing
|
801
|
+
new_stock_transfer: Nieuwe voorraadoverdracht
|
802
|
+
new_tax_category: Nieuwe belastingscategorie
|
803
|
+
new_tax_rate: Nieuw belastingstarief
|
804
|
+
new_taxon: Nieuw taxon
|
805
|
+
new_taxonomy: Nieuwe taxonomie
|
806
|
+
new_tracker: Nieuwe tracker
|
807
|
+
new_user: Nieuwe gebruiker
|
808
|
+
new_variant: Nieuwe variant
|
809
|
+
new_zone: Nieuwe zone
|
810
|
+
next: Volgende
|
811
|
+
no_actions_added: Geen acties toegevoegd
|
812
|
+
no_payment_found:
|
813
|
+
no_pending_payments:
|
814
|
+
no_products_found: Geen producten gevonden
|
815
|
+
no_resource_found:
|
816
|
+
no_results: Geen resultaten
|
817
|
+
no_returns_found:
|
818
|
+
no_rules_added: Geen regels toegevoegd
|
819
|
+
no_shipping_method_selected:
|
820
|
+
no_state_changes:
|
821
|
+
no_tracking_present: Geen tracking details opgegeven.
|
822
|
+
none: Geen
|
823
|
+
none_selected:
|
824
|
+
normal_amount: Normaal aantal
|
825
|
+
not: Niet
|
826
|
+
not_available: Niet beschikbaar
|
827
|
+
not_enough_stock: Er is niet voldoende voorraad op de locatie van afkomst om deze overdracht te voltooien.
|
828
|
+
not_found: "%{resource} is niet gevonden"
|
829
|
+
note:
|
830
|
+
notice_messages:
|
831
|
+
product_cloned: Product is gedupliceerd
|
832
|
+
product_deleted: Product is verwijderd
|
833
|
+
product_not_cloned: Product kon niet worden gedupliceerd
|
834
|
+
product_not_deleted: Product kon niet worden verwijderd
|
835
|
+
variant_deleted: Variant is verwijderd
|
836
|
+
variant_not_deleted: Variant kon niet worden verwijderd
|
837
|
+
num_orders:
|
838
|
+
on_hand: Op voorraad
|
839
|
+
open: Open
|
840
|
+
open_all_adjustments: Open alle aanpassingen
|
841
|
+
option_type: Option type
|
842
|
+
option_type_placeholder: Optietype toevoegen
|
843
|
+
option_types: Optietypes
|
844
|
+
option_value: Optiewaarde
|
845
|
+
option_values: Optieswaardes
|
846
|
+
optional: Optioneel
|
847
|
+
options: Opties
|
848
|
+
or: of
|
849
|
+
or_over_price: Of meer dan %{price}
|
850
|
+
order: Bestelling
|
851
|
+
order_adjustments: Bestellingstoevoegingen
|
852
|
+
order_already_updated:
|
853
|
+
order_approved:
|
854
|
+
order_canceled:
|
855
|
+
order_details: Bestellingsdetails
|
856
|
+
order_email_resent: Verstuur bevestigings e-mail opnieuw
|
857
|
+
order_information: Bestellingsinformatie
|
858
|
+
order_mailer:
|
859
|
+
cancel_email:
|
860
|
+
dear_customer: Beste klant
|
861
|
+
instructions: Je order is GEANNULEERD. Bewaar deze annulering voor je administratie.
|
862
|
+
order_summary_canceled: Besteloverzicht [GEANNULEERD]
|
863
|
+
subject: Bestelling is geannuleerd
|
864
|
+
subtotal:
|
865
|
+
total:
|
866
|
+
confirm_email:
|
867
|
+
dear_customer: Beste klant,
|
868
|
+
instructions: Controleer je bestelling en bewaar deze mail.
|
869
|
+
order_summary: Besteloverzicht
|
870
|
+
subject: Bestelling is bevestigd
|
871
|
+
subtotal:
|
872
|
+
thanks: Bedankt voor je bestelling.
|
873
|
+
total:
|
874
|
+
order_not_found: We konden je bestelling niet vinden. Probeer het nogmaals.
|
875
|
+
order_number: Bestelling %{number}
|
876
|
+
order_processed_successfully: Je bestelling is succesvol verwerkt
|
877
|
+
order_resumed:
|
878
|
+
order_state:
|
879
|
+
address: adres
|
880
|
+
awaiting_return: wachten op retour
|
881
|
+
canceled: geannuleerd
|
882
|
+
cart: winkelwagen
|
883
|
+
complete: voltooid
|
884
|
+
confirm: bevestigen
|
885
|
+
considered_risky:
|
886
|
+
delivery: verzendmethode
|
887
|
+
payment: betalen
|
888
|
+
resumed: hervatten
|
889
|
+
returned: geretourneerd
|
890
|
+
order_summary: Samenvatting van je bestelling
|
891
|
+
order_sure_want_to: Weet je zeker dat je deze bestelling wilt %{event}?
|
892
|
+
order_total: Bestelling totaal
|
893
|
+
order_updated: Bestelling gewijzigd
|
894
|
+
orders: Bestellingen
|
895
|
+
other_items_in_other:
|
896
|
+
out_of_stock: Niet op voorraad
|
897
|
+
overview: Overzicht
|
898
|
+
package_from: pakketje van
|
899
|
+
pagination:
|
900
|
+
next_page: volgende pagina »
|
901
|
+
previous_page: "« vorige pagina"
|
902
|
+
truncate: "…"
|
903
|
+
password: Wachtwoord
|
904
|
+
paste: Plakken
|
905
|
+
path: Pad
|
906
|
+
pay: Betalen
|
907
|
+
payment: Betaling
|
908
|
+
payment_could_not_be_created:
|
909
|
+
payment_identifier:
|
910
|
+
payment_information: Betaalmethode
|
911
|
+
payment_method: Betaalmethode
|
912
|
+
payment_method_not_supported: Betaalmethode wordt niet ondersteund
|
913
|
+
payment_methods: Betaalmethoden
|
914
|
+
payment_processing_failed: De betaling kan niet worden verwerkt, controleer de informatie die je hebt ingevuld
|
915
|
+
payment_processor_choose_banner_text: Als je hulp nodig hebt bij het kiezen van een betaalprovider, bezoek
|
916
|
+
payment_processor_choose_link: onze betalingspagina
|
917
|
+
payment_state: Betaalstatus
|
918
|
+
payment_states:
|
919
|
+
balance_due: In afwachting
|
920
|
+
checkout: Afrekenen
|
921
|
+
completed: Voltooid
|
922
|
+
credit_owed: Bedrag verschuldigd
|
923
|
+
failed: Mislukt
|
924
|
+
paid: Betaald
|
925
|
+
pending: In afwachting
|
926
|
+
processing: In verwerking
|
927
|
+
void: Ongeldig
|
928
|
+
payment_updated: Betaling bijgewerkt
|
929
|
+
payments: Betalingen
|
930
|
+
pending:
|
931
|
+
percent: Procent
|
932
|
+
percent_per_item: Procent per item
|
933
|
+
permalink: Permalink
|
934
|
+
phone: Telefoon
|
935
|
+
place_order: Bestellen
|
936
|
+
please_define_payment_methods: Definieer eerst een betaalmethode.
|
937
|
+
populate_get_error: Er ging iets mis. Probeer het nogmaals.
|
938
|
+
powered_by: Mede mogelijk gemaakt door
|
939
|
+
pre_tax_amount:
|
940
|
+
pre_tax_refund_amount:
|
941
|
+
pre_tax_total:
|
942
|
+
preferred_reimbursement_type:
|
943
|
+
presentation: Presentatie
|
944
|
+
previous: vorige
|
945
|
+
previous_state_missing:
|
946
|
+
price: Prijs
|
947
|
+
price_range: Prijsklasse
|
948
|
+
price_sack: Prijsvork
|
949
|
+
process: Verwerking
|
950
|
+
product: Product
|
951
|
+
product_details: Product details
|
952
|
+
product_has_no_description: Product heeft geen omschrijving
|
953
|
+
product_not_available_in_this_currency: Dit product is niet beschikbaar in de geselecteerd valuta.
|
954
|
+
product_properties: Producteigenschappen
|
955
|
+
product_rule:
|
956
|
+
choose_products: Kies producten
|
957
|
+
label:
|
958
|
+
match_all: alle
|
959
|
+
match_any: op zijn minst één
|
960
|
+
match_none:
|
961
|
+
product_source:
|
962
|
+
group: Van productgroep
|
963
|
+
manual: Handmatige keuze
|
964
|
+
products: Producten
|
965
|
+
promotion: Actie
|
966
|
+
promotion_action: Promotieactie
|
967
|
+
promotion_action_types:
|
968
|
+
create_adjustment:
|
969
|
+
description: Past de prijs van een order aan gebaseerd op een promotie.
|
970
|
+
name: Maak aanpassing
|
971
|
+
create_item_adjustments:
|
972
|
+
description:
|
973
|
+
name:
|
974
|
+
create_line_items:
|
975
|
+
description: Vult de kar met de aangegeven hoeveelheid van variant
|
976
|
+
name: Maak regel
|
977
|
+
free_shipping:
|
978
|
+
description:
|
979
|
+
name:
|
980
|
+
promotion_actions: Acties
|
981
|
+
promotion_form:
|
982
|
+
match_policies:
|
983
|
+
all: Moet overeenkomen met één van deze regels
|
984
|
+
any: Moet overeenkomen met alle regels
|
985
|
+
promotion_rule: Promotieregel
|
986
|
+
promotion_rule_types:
|
987
|
+
first_order:
|
988
|
+
description: Moet de klant zijn eerste bestelling zijn
|
989
|
+
name: Eerste bestelling
|
990
|
+
item_total:
|
991
|
+
description: Bestelbedrag (totaal) komt overeen met de volgende criteria
|
992
|
+
name: Bedrag totaal
|
993
|
+
landing_page:
|
994
|
+
description: Klant moet een specifieke pagina bezocht hebben
|
995
|
+
name: Landings Pagina
|
996
|
+
one_use_per_user:
|
997
|
+
description:
|
998
|
+
name:
|
999
|
+
option_value:
|
1000
|
+
description:
|
1001
|
+
name:
|
1002
|
+
product:
|
1003
|
+
description: Bestelling bevat de volgende producten
|
1004
|
+
name: Product(en)
|
1005
|
+
taxon:
|
1006
|
+
description:
|
1007
|
+
name:
|
1008
|
+
user:
|
1009
|
+
description: Alleen beschikbaar voor de volgende gebruikers
|
1010
|
+
name: Gebruiker
|
1011
|
+
user_logged_in:
|
1012
|
+
description: Alleen beschikbaar voor aangemelde gebruikers
|
1013
|
+
name: Gebruik aangemeld
|
1014
|
+
promotion_uses:
|
1015
|
+
promotionable:
|
1016
|
+
promotions: Acties
|
1017
|
+
propagate_all_variants:
|
1018
|
+
properties: Eigenschappen
|
1019
|
+
property: Eigenschap
|
1020
|
+
prototype: Prototype
|
1021
|
+
prototypes: Prototypes
|
1022
|
+
provider: Provider
|
1023
|
+
provider_settings_warning: Als je het providertype verandert, dien je eerst op te slaan voordat je de provider instelling kan wijzigen
|
1024
|
+
qty: Aantal
|
1025
|
+
quantity: Hoeveelheid
|
1026
|
+
quantity_returned: Aantal geretourneerd
|
1027
|
+
quantity_shipped: Aantal verzonden
|
1028
|
+
quick_search:
|
1029
|
+
rate: Tarief
|
1030
|
+
reason: Reden
|
1031
|
+
receive: ontvangen
|
1032
|
+
receive_stock: Ontvang voorraad
|
1033
|
+
received: Ontvangen
|
1034
|
+
reception_status:
|
1035
|
+
reference: Verwijzing
|
1036
|
+
refund: Terugbetaling
|
1037
|
+
refund_amount_must_be_greater_than_zero:
|
1038
|
+
refund_reasons:
|
1039
|
+
refunded_amount:
|
1040
|
+
refunds:
|
1041
|
+
register: Registreer als een nieuwe gebruiker
|
1042
|
+
registration: Registratie
|
1043
|
+
reimburse:
|
1044
|
+
reimbursed:
|
1045
|
+
reimbursement:
|
1046
|
+
reimbursement_mailer:
|
1047
|
+
reimbursement_email:
|
1048
|
+
days_to_send:
|
1049
|
+
dear_customer:
|
1050
|
+
exchange_summary:
|
1051
|
+
for:
|
1052
|
+
instructions:
|
1053
|
+
refund_summary:
|
1054
|
+
subject:
|
1055
|
+
total_refunded:
|
1056
|
+
reimbursement_perform_failed:
|
1057
|
+
reimbursement_status:
|
1058
|
+
reimbursement_type:
|
1059
|
+
reimbursement_type_override:
|
1060
|
+
reimbursement_types:
|
1061
|
+
reimbursements:
|
1062
|
+
reject:
|
1063
|
+
rejected:
|
1064
|
+
remember_me: Onthouden
|
1065
|
+
remove: Verwijderen
|
1066
|
+
rename: Hernoemen
|
1067
|
+
report:
|
1068
|
+
reports: Rapporten
|
1069
|
+
resend: Opnieuw verzenden
|
1070
|
+
reset_password: Reset mijn wachtwoord
|
1071
|
+
response_code: Antwoordcode
|
1072
|
+
resume: Hervatten
|
1073
|
+
resumed: Hervat
|
1074
|
+
return: Terugzenden
|
1075
|
+
return_authorization: Retour
|
1076
|
+
return_authorization_reasons:
|
1077
|
+
return_authorization_updated: Retour bijgewerkt
|
1078
|
+
return_authorizations: Retouren
|
1079
|
+
return_item_inventory_unit_ineligible:
|
1080
|
+
return_item_inventory_unit_reimbursed:
|
1081
|
+
return_item_rma_ineligible:
|
1082
|
+
return_item_time_period_ineligible:
|
1083
|
+
return_items:
|
1084
|
+
return_items_cannot_be_associated_with_multiple_orders:
|
1085
|
+
return_number:
|
1086
|
+
return_quantity: Retour aantal
|
1087
|
+
returned: Teruggezonden
|
1088
|
+
returns:
|
1089
|
+
review: Beoordeel
|
1090
|
+
risk: Risico
|
1091
|
+
risk_analysis: Risicoanalyse
|
1092
|
+
risky:
|
1093
|
+
rma_credit: RMA krediet
|
1094
|
+
rma_number: RMA nummer
|
1095
|
+
rma_value: RMA waarde
|
1096
|
+
roles: Rollen
|
1097
|
+
rules: Regels
|
1098
|
+
safe:
|
1099
|
+
sales_total: Omzet
|
1100
|
+
sales_total_description: Totaalbedrag van alle verkopen
|
1101
|
+
sales_totals: Verkoopstotaal
|
1102
|
+
save_and_continue: Bewaren en doorgaan
|
1103
|
+
save_my_address: Onthoud mijn adres
|
1104
|
+
say_no: Nee
|
1105
|
+
say_yes: Ja
|
1106
|
+
scope: Scope
|
1107
|
+
search: Zoek
|
1108
|
+
search_results: Zoekresultaten voor '%{keywords}'
|
1109
|
+
searching: Bezig met zoeken
|
1110
|
+
secure_connection_type: Type beveiligde verbinding
|
1111
|
+
security_settings: Beveiligingsinstellingen
|
1112
|
+
select: Selecteer
|
1113
|
+
select_a_return_authorization_reason:
|
1114
|
+
select_a_stock_location:
|
1115
|
+
select_from_prototype: Selecteer vanuit prototype
|
1116
|
+
select_stock: Kies voorraad
|
1117
|
+
send_copy_of_all_mails_to: Verstuur kopie van alle e-mails naar
|
1118
|
+
send_mails_as: Verstuur e-mail als
|
1119
|
+
server: Server
|
1120
|
+
server_error: De server geeft een foutmelding
|
1121
|
+
settings: Instellingen
|
1122
|
+
ship: Verzenden
|
1123
|
+
ship_address: Afleveradres
|
1124
|
+
ship_total: Verzend totaal
|
1125
|
+
shipment: Verzending
|
1126
|
+
shipment_adjustments: Verzending aanpassingen
|
1127
|
+
shipment_details:
|
1128
|
+
shipment_mailer:
|
1129
|
+
shipped_email:
|
1130
|
+
dear_customer: Beste klant
|
1131
|
+
instructions: Je bestelling is verzonden
|
1132
|
+
shipment_summary: Verzendoverzicht
|
1133
|
+
subject: Verzend notificatie
|
1134
|
+
thanks: Bedankt voor je bestelling.
|
1135
|
+
track_information: 'Tracking Informatie: %{tracking}'
|
1136
|
+
track_link: 'Tracking URL: %{url}'
|
1137
|
+
shipment_state: Verzendstatus
|
1138
|
+
shipment_states:
|
1139
|
+
backorder: nabestelling
|
1140
|
+
canceled:
|
1141
|
+
partial: gedeeltelijk
|
1142
|
+
pending: in afwachting
|
1143
|
+
ready: voltooid
|
1144
|
+
shipped: verzonden
|
1145
|
+
shipment_transfer_error:
|
1146
|
+
shipment_transfer_success:
|
1147
|
+
shipments: Verzendingen
|
1148
|
+
shipped: verzonden
|
1149
|
+
shipping: Verzenden
|
1150
|
+
shipping_address: Afleveradres
|
1151
|
+
shipping_categories: Verzendcategorieën
|
1152
|
+
shipping_category: Verzendcategorie
|
1153
|
+
shipping_flat_rate_per_item: Vast tarief per verpakt item
|
1154
|
+
shipping_flat_rate_per_order: Vast tarief
|
1155
|
+
shipping_flexible_rate: Flexibel tarief per verpakt item
|
1156
|
+
shipping_instructions: Verzend instructies
|
1157
|
+
shipping_method: Verzendwijze
|
1158
|
+
shipping_methods: Verzendwijzen
|
1159
|
+
shipping_price_sack: Prijsvork
|
1160
|
+
shipping_total:
|
1161
|
+
shop_by_taxonomy: Winkelen per %{taxonomy}
|
1162
|
+
shopping_cart: Winkelwagen
|
1163
|
+
show: Toon
|
1164
|
+
show_active: Toon actieve
|
1165
|
+
show_deleted: Toon verwijderde items
|
1166
|
+
show_only_complete_orders: Toon enkel afgewerkte bestellingen
|
1167
|
+
show_only_considered_risky:
|
1168
|
+
show_rate_in_label: Toon tarief naast naam
|
1169
|
+
sku: Sku
|
1170
|
+
skus:
|
1171
|
+
slug: Verkorte URL
|
1172
|
+
source: Bron
|
1173
|
+
special_instructions: Speciale instructies
|
1174
|
+
split: Splits
|
1175
|
+
spree_gateway_error_flash_for_checkout: Er was een probleem met je betaal gegevens. Controleer je gegevens en probeer het opnieuw.
|
1176
|
+
ssl:
|
1177
|
+
change_protocol:
|
1178
|
+
start: Start
|
1179
|
+
state: Status
|
1180
|
+
state_based: Status gebaseerd
|
1181
|
+
state_machine_states:
|
1182
|
+
accepted:
|
1183
|
+
address:
|
1184
|
+
authorized:
|
1185
|
+
awaiting:
|
1186
|
+
awaiting_return:
|
1187
|
+
backordered:
|
1188
|
+
canceled:
|
1189
|
+
cart:
|
1190
|
+
checkout:
|
1191
|
+
closed:
|
1192
|
+
complete:
|
1193
|
+
completed:
|
1194
|
+
confirm:
|
1195
|
+
delivery:
|
1196
|
+
errored:
|
1197
|
+
failed:
|
1198
|
+
given_to_customer:
|
1199
|
+
invalid:
|
1200
|
+
manual_intervention_required:
|
1201
|
+
on_hand:
|
1202
|
+
open:
|
1203
|
+
order:
|
1204
|
+
payment:
|
1205
|
+
pending:
|
1206
|
+
processing:
|
1207
|
+
ready:
|
1208
|
+
reimbursed:
|
1209
|
+
resumed:
|
1210
|
+
returned:
|
1211
|
+
shipped:
|
1212
|
+
void:
|
1213
|
+
states: Statussen
|
1214
|
+
states_required: Vereiste statussen
|
1215
|
+
status: Status
|
1216
|
+
stock:
|
1217
|
+
stock_location: Voorraadlocatie
|
1218
|
+
stock_location_info: Voorraadlocatie info
|
1219
|
+
stock_locations: Voorraadlocaties
|
1220
|
+
stock_locations_need_a_default_country:
|
1221
|
+
stock_management: Voorraadbeheer
|
1222
|
+
stock_management_requires_a_stock_location: Voorraadbeheer vereist een voorraadlocatie
|
1223
|
+
stock_movements: Voorraadverplaatsing
|
1224
|
+
stock_movements_for_stock_location: Voorraadverplaatsing voor %{stock_location_name}
|
1225
|
+
stock_successfully_transferred: Voorraad is succesvol overgedragen tussen locaties.
|
1226
|
+
stock_transfer: Voorraadoverdracht
|
1227
|
+
stock_transfers: Voorraadoverdrachten
|
1228
|
+
stop: Stop
|
1229
|
+
store: Winkel
|
1230
|
+
street_address: Adres
|
1231
|
+
street_address_2: Adres 2
|
1232
|
+
subtotal: Subtotaal
|
1233
|
+
subtract: Verreken
|
1234
|
+
success:
|
1235
|
+
successfully_created: "%{resource} is succesvol aangemaakt!"
|
1236
|
+
successfully_refunded:
|
1237
|
+
successfully_removed: "%{resource} is succesvol verwijderd!"
|
1238
|
+
successfully_signed_up_for_analytics: Succesvol aangemeld voor Spree Analytics
|
1239
|
+
successfully_updated: "%{resource} is succesvol bijgewerkt!"
|
1240
|
+
summary:
|
1241
|
+
tax: Belasting
|
1242
|
+
tax_categories: Belastingcategorieën
|
1243
|
+
tax_category: Belastingcategorie
|
1244
|
+
tax_code:
|
1245
|
+
tax_included: Inclusief belasting
|
1246
|
+
tax_rate_amount_explanation: 'Belastingtarieven zijn een decimaal getal. (bijvoorbeeld: als het tarief 21% is vul je 0.21 in)'
|
1247
|
+
tax_rates: Belastingtarieven
|
1248
|
+
taxon: Taxon
|
1249
|
+
taxon_edit: Bewerk taxon
|
1250
|
+
taxon_placeholder: Taxonomie toevoegen
|
1251
|
+
taxon_rule:
|
1252
|
+
choose_taxons:
|
1253
|
+
label:
|
1254
|
+
match_all:
|
1255
|
+
match_any:
|
1256
|
+
taxonomies: Taxonomieën
|
1257
|
+
taxonomy: Taxonomie
|
1258
|
+
taxonomy_edit: Bewerk taxonomie
|
1259
|
+
taxonomy_tree_error: De aangevraagde aanpassing is niet verwerkt en de volgorde is teruggezet naar de vorige staat, probeer het opnieuw.
|
1260
|
+
taxonomy_tree_instruction: "* Gebruik de rechtermuisknop om te bewerken, verwijderen of te sorteren."
|
1261
|
+
taxons: Taxa
|
1262
|
+
test: Test
|
1263
|
+
test_mailer:
|
1264
|
+
test_email:
|
1265
|
+
greeting: Gefeliciteerd!
|
1266
|
+
message: Als je deze mail ontvangt, zijn je instellingen correct.
|
1267
|
+
subject: Testmail
|
1268
|
+
test_mode: Test modus
|
1269
|
+
thank_you_for_your_order: Hartelijk dank voor je bestelling. Je kan deze pagina afdrukken als bewijs van bestelling.
|
1270
|
+
there_are_no_items_for_this_order: Er zijn geen items voor deze bestelling
|
1271
|
+
there_were_problems_with_the_following_fields: Er zijn problemen met de volgende velden
|
1272
|
+
this_order_has_already_received_a_refund:
|
1273
|
+
thumbnail: Thumbnail
|
1274
|
+
tiered_flat_rate:
|
1275
|
+
tiered_percent:
|
1276
|
+
tiers:
|
1277
|
+
time: Tijd
|
1278
|
+
to_add_variants_you_must_first_define: Om varianten toe te voegen dien je er eerst te definiëren
|
1279
|
+
total: Totaal
|
1280
|
+
total_per_item:
|
1281
|
+
total_pre_tax_refund:
|
1282
|
+
total_price:
|
1283
|
+
total_sales:
|
1284
|
+
track_inventory: Voorraadbeheer
|
1285
|
+
tracking: Tracking
|
1286
|
+
tracking_number: Tracking nummer
|
1287
|
+
tracking_url: Tracking URL
|
1288
|
+
tracking_url_placeholder: bv. http://quickship.com/package?num=:tracking
|
1289
|
+
transaction_id:
|
1290
|
+
transfer_from_location: Overdracht van
|
1291
|
+
transfer_stock: Voorraadoverdracht
|
1292
|
+
transfer_to_location: Overdracht naar
|
1293
|
+
tree: Structuur
|
1294
|
+
type: Type
|
1295
|
+
type_to_search: Typ om te zoeken
|
1296
|
+
unable_to_connect_to_gateway: Kon geen verbinding maken met de betaalserver.
|
1297
|
+
unable_to_create_reimbursements:
|
1298
|
+
under_price: Minder dan %{price}
|
1299
|
+
unlock: Ontgrendel
|
1300
|
+
unrecognized_card_type: Niet herkend kaart type
|
1301
|
+
unshippable_items: Onverzendbare Items
|
1302
|
+
update: Aanpassen
|
1303
|
+
updating: Aan het bijwerken
|
1304
|
+
usage_limit: Gebruikslimiet
|
1305
|
+
use_app_default:
|
1306
|
+
use_billing_address: Gebruik factuuradres
|
1307
|
+
use_new_cc: Gebruik een nieuwe kaart
|
1308
|
+
use_s3: Gebruik Amazon S3 Voor Afbeeldingen
|
1309
|
+
user: Gebruiker
|
1310
|
+
user_rule:
|
1311
|
+
choose_users: Kies gebruikers
|
1312
|
+
users: Gebruikers
|
1313
|
+
validation:
|
1314
|
+
cannot_be_less_than_shipped_units: kan niet minder zijn dan het aantal verzonden producten.
|
1315
|
+
cannot_destroy_line_item_as_inventory_units_have_shipped:
|
1316
|
+
exceeds_available_stock: overschrijdt beschikbare voorraad. Zorg dat je een juiste hoeveelheid hebt ingevuld per bestelregel.
|
1317
|
+
is_too_large: is te veel - voorraad kan de aanvraag niet aan!
|
1318
|
+
must_be_int: moet een getal zijn
|
1319
|
+
must_be_non_negative: moet een positief getal zijn
|
1320
|
+
unpaid_amount_not_zero:
|
1321
|
+
value: Waarde
|
1322
|
+
variant: Variant
|
1323
|
+
variant_placeholder: Kies een variant
|
1324
|
+
variants: Varianten
|
1325
|
+
version: Versie
|
1326
|
+
void: Ongeldig
|
1327
|
+
weight: Gewicht
|
1328
|
+
what_is_a_cvv: Wat is een (CVV) kredietkaart code?
|
1329
|
+
what_is_this: Wat is dit?
|
1330
|
+
width: Breedte
|
1331
|
+
year: Jaar
|
1332
|
+
you_have_no_orders_yet: Je hebt nog geen bestellingen.
|
1333
|
+
your_cart_is_empty: Je winkelwagen is leeg
|
1334
|
+
your_order_is_empty_add_product: Je bestelling is leeg, voeg eerst producten toe
|
1335
|
+
zip: Postcode
|
1336
|
+
zipcode: Postcode
|
1337
|
+
zone: Gebied
|
1338
|
+
zones: Gebieden
|