@ikas/storefront-assets 5.0.0-beta.8 → 5.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.
- package/checkout/de.js +33 -0
- package/checkout/en.js +32 -0
- package/checkout/fr.js +250 -0
- package/checkout/tr.js +33 -0
- package/index.js +2 -0
- package/package.json +2 -2
package/checkout/de.js
CHANGED
|
@@ -18,6 +18,7 @@ module.exports = {
|
|
|
18
18
|
backToCart: "Zurück zum Warenkorb",
|
|
19
19
|
addToCart: "Zum Warenkorb hinzufügen",
|
|
20
20
|
updateCart: "Meinen Warenkorb Aktualisieren",
|
|
21
|
+
download: "Download",
|
|
21
22
|
},
|
|
22
23
|
securePayment: "Sichere Bezahlung",
|
|
23
24
|
alreadyHaveAnAccount: "Du hast bereits ein Konto?",
|
|
@@ -48,6 +49,8 @@ module.exports = {
|
|
|
48
49
|
cityError: "Stadt eingeben",
|
|
49
50
|
district: "Bezirk",
|
|
50
51
|
districtError: "Bezirk eingeben",
|
|
52
|
+
region: "Bereich",
|
|
53
|
+
regionError: "Bereich eingebenh",
|
|
51
54
|
phone: "Telefonnummer",
|
|
52
55
|
phoneError: "Eine gültige Telefonnummer eingeben",
|
|
53
56
|
companyName: "Name des Unternehmens",
|
|
@@ -70,6 +73,11 @@ module.exports = {
|
|
|
70
73
|
WITHIN_PLUS_FIVE_DAYS: "Gewöhnlich in +5 Tagen fertig",
|
|
71
74
|
},
|
|
72
75
|
},
|
|
76
|
+
estimatedDeliveryTime: {
|
|
77
|
+
day: "Estimated Delivery Time: {{ value }} Tage",
|
|
78
|
+
hour: "Estimated Delivery Time: {{ value }} Stunden",
|
|
79
|
+
minute: "Voraussichtliche Lieferzeit: {{ value }} Minuten",
|
|
80
|
+
},
|
|
73
81
|
recipientsInfo: "Empfänger Details",
|
|
74
82
|
pickUpLocation: "Abholort",
|
|
75
83
|
receiver: "Empfänger",
|
|
@@ -99,7 +107,21 @@ module.exports = {
|
|
|
99
107
|
installmentOptions: "Ratenzahlungsoptionen",
|
|
100
108
|
singleInstallment: "Einmalige Zahlung",
|
|
101
109
|
installments: "Ratenzahlungen",
|
|
110
|
+
|
|
111
|
+
appPayment: "App-Zahlung",
|
|
112
|
+
bankRedirect: "Bankumleitungen",
|
|
113
|
+
buyOnlinePayAtStore: "Im Geschäft bezahlen",
|
|
114
|
+
cash: "Bar",
|
|
115
|
+
cashOnDelivery: "Bar bei Lieferung",
|
|
102
116
|
creditCard: "Kreditkarte",
|
|
117
|
+
creditCardOnDelivery: "Kreditkarte bei Lieferung",
|
|
118
|
+
directDebit: "Banklastschriften",
|
|
119
|
+
giftCard: "Geschenkkarte",
|
|
120
|
+
moneyOrder: "Überweisung",
|
|
121
|
+
other: "Andere",
|
|
122
|
+
payLater: "Später zahlen",
|
|
123
|
+
sliceIt: "Ratenkauf",
|
|
124
|
+
wallet: "Wallet",
|
|
103
125
|
|
|
104
126
|
ackPrivacyPolicy: "Datenschutzerklärung",
|
|
105
127
|
ackTermsOfService: "Geschäftsbedingungen",
|
|
@@ -120,6 +142,8 @@ module.exports = {
|
|
|
120
142
|
"Hallo {{ customerName }}, wir haben Deine Bestellung erhalten. Wir benachrichtigen Dich, wenn die Bestellung versandt wird.",
|
|
121
143
|
orderSuccessInStoreDeliveryDescription:
|
|
122
144
|
"Hallo {{ customerName }}, wir haben Deine Bestellung erhalten. Wir werden Dich per E-Mail benachrichtigen, wenn die Bestellung in der Filiale eingetroffen ist.",
|
|
145
|
+
orderSuccessDigitalOnlyDescription:
|
|
146
|
+
"Hallo {{ customerName }}, wir haben Deine Bestellung erhalten. Sobald Dein digitales Produkt bereitsteht, werden wir Dich per E-Mail benachrichtigen.",
|
|
123
147
|
orderNoAndDate: "Bestellnummer/Datum",
|
|
124
148
|
paymentSummary: "Zahlungsübersicht",
|
|
125
149
|
shippingSummary: "Versand Übersicht",
|
|
@@ -132,12 +156,16 @@ module.exports = {
|
|
|
132
156
|
"Wir werden so schnell wie möglich auf Deine Nachricht antworten.",
|
|
133
157
|
contactFormCta: "Gebe Deine Nachricht ein",
|
|
134
158
|
|
|
159
|
+
freeOrderDescription:
|
|
160
|
+
"Es gibt nichts zu bezahlen. Mit diesem Schritt kannst du die Bestellung abschließen.",
|
|
161
|
+
|
|
135
162
|
orderPackageStatus: {
|
|
136
163
|
unfulfilled: "Nicht ausgeführt",
|
|
137
164
|
readyForShipment: "Versandbereit",
|
|
138
165
|
fulfilled: "Verschickt",
|
|
139
166
|
partiallyFulfilled: "Teilweise verschickt",
|
|
140
167
|
delivered: "Zugestellt",
|
|
168
|
+
partiallyDelivered: "Teilweise Zugestellt",
|
|
141
169
|
unableToDeliver: "Zugestellt fehlgeschlagen",
|
|
142
170
|
cancelled: "Storniert",
|
|
143
171
|
cancelRejected: "Storno abgeleht",
|
|
@@ -226,8 +254,12 @@ module.exports = {
|
|
|
226
254
|
|
|
227
255
|
timeRemaining: "Verbleibende Zeit {{value}}",
|
|
228
256
|
|
|
257
|
+
filesReadyToDownload: "Dateien zum Download bereit",
|
|
258
|
+
|
|
229
259
|
errorCustomerRequired:
|
|
230
260
|
"Diese E-Mail-Adresse gehört einem registrierten Benutzer. Bitte logge Dich ein.",
|
|
261
|
+
errorCustomerAccountDisabled:
|
|
262
|
+
"Um dieses Konto zu nutzen, kontaktieren Sie uns.",
|
|
231
263
|
errorNoShipping: "Keine Versandoptionen für deine Region gefunden.",
|
|
232
264
|
errorPayment:
|
|
233
265
|
"Deine Zahlung konnte nicht empfangen werden. Bitte überprüfe Deine Angaben und versuche es erneut.",
|
|
@@ -239,6 +271,7 @@ module.exports = {
|
|
|
239
271
|
errorPickupLocationRequired: "Abholort wählen",
|
|
240
272
|
|
|
241
273
|
customizedProduct: "Individualisiertes Produkt",
|
|
274
|
+
bundleProductsQuantity: "{{value}} Produkt",
|
|
242
275
|
yes: "Ja",
|
|
243
276
|
no: "Nein",
|
|
244
277
|
};
|
package/checkout/en.js
CHANGED
|
@@ -18,6 +18,7 @@ module.exports = {
|
|
|
18
18
|
backToCart: "Back to Cart",
|
|
19
19
|
addToCart: "Add to Cart",
|
|
20
20
|
updateCart: "Update My Cart",
|
|
21
|
+
download: "Download",
|
|
21
22
|
},
|
|
22
23
|
securePayment: "Secure Payment",
|
|
23
24
|
alreadyHaveAnAccount: "Already have an account?",
|
|
@@ -49,6 +50,8 @@ module.exports = {
|
|
|
49
50
|
cityError: "Select city",
|
|
50
51
|
district: "District",
|
|
51
52
|
districtError: "Select district",
|
|
53
|
+
region: "Region",
|
|
54
|
+
regionError: "Select region",
|
|
52
55
|
phone: "Phone",
|
|
53
56
|
phoneError: "Enter a valid phone number",
|
|
54
57
|
companyName: "Company Name",
|
|
@@ -71,6 +74,11 @@ module.exports = {
|
|
|
71
74
|
WITHIN_PLUS_FIVE_DAYS: "Usually ready in +5 days",
|
|
72
75
|
},
|
|
73
76
|
},
|
|
77
|
+
estimatedDeliveryTime: {
|
|
78
|
+
day: "Estimated Delivery Time: {{ value }} Days",
|
|
79
|
+
hour: "Estimated Delivery Time: {{ value }} Hours",
|
|
80
|
+
minute: "Estimated Delivery Time: {{ value }} Minutes",
|
|
81
|
+
},
|
|
74
82
|
recipientsInfo: "Recipient Information",
|
|
75
83
|
pickUpLocation: "Pick Up Location",
|
|
76
84
|
receiver: "Receiver",
|
|
@@ -100,7 +108,21 @@ module.exports = {
|
|
|
100
108
|
installmentOptions: "Installment Options",
|
|
101
109
|
singleInstallment: "Single Payment",
|
|
102
110
|
installments: "Installments",
|
|
111
|
+
|
|
112
|
+
appPayment: "App Payment",
|
|
113
|
+
bankRedirect: "Bank Redirect",
|
|
114
|
+
buyOnlinePayAtStore: "Pay at Store",
|
|
115
|
+
cash: "Cash",
|
|
116
|
+
cashOnDelivery: "Cash On Delivery",
|
|
103
117
|
creditCard: "Credit Card",
|
|
118
|
+
creditCardOnDelivery: "Credit Card On Delivery",
|
|
119
|
+
directDebit: "Bank Debit",
|
|
120
|
+
giftCard: "Gift Card",
|
|
121
|
+
moneyOrder: "Money Order",
|
|
122
|
+
other: "Other",
|
|
123
|
+
payLater: "Pay Later",
|
|
124
|
+
sliceIt: "Slice It",
|
|
125
|
+
wallet: "Wallet",
|
|
104
126
|
|
|
105
127
|
ackPrivacyPolicy: "Privacy Policy",
|
|
106
128
|
ackTermsOfService: "Terms of Service",
|
|
@@ -121,6 +143,8 @@ module.exports = {
|
|
|
121
143
|
"Dear {{ customerName }}, we have received your order. We will notify you when your order is shipped.",
|
|
122
144
|
orderSuccessInStoreDeliveryDescription:
|
|
123
145
|
"Dear {{ customerName }}, we have received your order. We will notify you by e-mail when your order is delivered to the store.",
|
|
146
|
+
orderSuccessDigitalOnlyDescription:
|
|
147
|
+
"Dear {{ customerName }}, we have received your order. We will notify you when your products are ready to use.",
|
|
124
148
|
orderNoAndDate: "Order Number / Date",
|
|
125
149
|
paymentSummary: "Payment Summary",
|
|
126
150
|
shippingSummary: "Shipping Summary",
|
|
@@ -132,12 +156,16 @@ module.exports = {
|
|
|
132
156
|
contactFormDescription: "We will respond to your message as soon as possible",
|
|
133
157
|
contactFormCta: "Type your message",
|
|
134
158
|
|
|
159
|
+
freeOrderDescription:
|
|
160
|
+
"There is no amount to pay. You can place an order by completing this step.",
|
|
161
|
+
|
|
135
162
|
orderPackageStatus: {
|
|
136
163
|
unfulfilled: "Unfulfilled",
|
|
137
164
|
readyForShipment: "Ready For Shipment",
|
|
138
165
|
fulfilled: "Fulfilled",
|
|
139
166
|
partiallyFulfilled: "Partially Fulfilled",
|
|
140
167
|
delivered: "Delivered",
|
|
168
|
+
partiallyDelivered: "Partially Delivered",
|
|
141
169
|
unableToDeliver: "Unable to Deliver",
|
|
142
170
|
cancelled: "Cancelled",
|
|
143
171
|
cancelRejected: "Cancel Rejected",
|
|
@@ -225,8 +253,11 @@ module.exports = {
|
|
|
225
253
|
|
|
226
254
|
timeRemaining: "Time Remaining {{value}}",
|
|
227
255
|
|
|
256
|
+
filesReadyToDownload: "Files Ready to Download",
|
|
257
|
+
|
|
228
258
|
errorCustomerRequired:
|
|
229
259
|
"This e-mail address belongs to a registered user. Please login to your account.",
|
|
260
|
+
errorCustomerAccountDisabled: "To use this account, contact us.",
|
|
230
261
|
errorNoShipping: "Your region is not available for shipping.",
|
|
231
262
|
errorPayment:
|
|
232
263
|
"Your payment could not be received. Please check your information and try again.",
|
|
@@ -237,6 +268,7 @@ module.exports = {
|
|
|
237
268
|
errorPickupLocationRequired: "Choose pickup location",
|
|
238
269
|
|
|
239
270
|
customizedProduct: "Customized Product",
|
|
271
|
+
bundleProductsQuantity: "{{value}} Product",
|
|
240
272
|
yes: "Yes",
|
|
241
273
|
no: "No",
|
|
242
274
|
};
|
package/checkout/fr.js
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
actions: {
|
|
3
|
+
login: "Connexion",
|
|
4
|
+
signup: "Créer un compte",
|
|
5
|
+
edit: "Modifier ",
|
|
6
|
+
apply: "Appliquer",
|
|
7
|
+
close: "Fermer",
|
|
8
|
+
cancel: "Annuler",
|
|
9
|
+
save: "Sauvegarder",
|
|
10
|
+
continue: "Continuer",
|
|
11
|
+
show: "Montrer",
|
|
12
|
+
hide: "Cacher",
|
|
13
|
+
sendMessage: "Envoyer le message",
|
|
14
|
+
continueWithShipping: "Continuer avec l'expédition",
|
|
15
|
+
continueWithPayment: "Continuer avec le paiement",
|
|
16
|
+
completeOrder: "Compléter la commande",
|
|
17
|
+
backToShopping: "Retour aux achats",
|
|
18
|
+
backToCart: "Retour au panier",
|
|
19
|
+
addToCart: "Ajouter au panier",
|
|
20
|
+
updateCart: "Mettre à jour le panier",
|
|
21
|
+
download: "Télécharger",
|
|
22
|
+
},
|
|
23
|
+
securePayment: "Paiement Sécurisé",
|
|
24
|
+
alreadyHaveAnAccount: "Vous avez déjà un compte?",
|
|
25
|
+
address: "Adresse",
|
|
26
|
+
addressError: "Entrer l'adresse",
|
|
27
|
+
missingAddressFields: "Champs d'adresse manquants",
|
|
28
|
+
editAddress: "Modifier l'adresse",
|
|
29
|
+
deleteAddress: "Supprimer l'adresse",
|
|
30
|
+
saveAddressCta: "Enregistrer cette adresse pour les actions futures",
|
|
31
|
+
firstName: "Prénom",
|
|
32
|
+
firstNameError: "Entrer le prénom",
|
|
33
|
+
lastName: "Nom ",
|
|
34
|
+
lastNameError: "Entrer le nom",
|
|
35
|
+
identityNumber: "Numéro d'identité",
|
|
36
|
+
identityNumberError: "Entrer le numéro d'identité",
|
|
37
|
+
addressTitle: "Titre de l'adresse",
|
|
38
|
+
adressTitleError: "Entrer le titre de l'adresse",
|
|
39
|
+
addressLine1: "Adresse",
|
|
40
|
+
addressLine2: "Numéro ",
|
|
41
|
+
postalCode: "Code Postal",
|
|
42
|
+
postalCodeError: "Entrer le code postal",
|
|
43
|
+
country: "Pays",
|
|
44
|
+
countryError: "Choisir le pays",
|
|
45
|
+
state: "État",
|
|
46
|
+
stateError: "Choisir l'État",
|
|
47
|
+
city: "Ville",
|
|
48
|
+
cityError: "Choisir la ville",
|
|
49
|
+
district: "District/commune",
|
|
50
|
+
districtError: "Choisir le district/commune",
|
|
51
|
+
phone: "Téléphone",
|
|
52
|
+
phoneError: "Entrer un numéro de téléphone valide",
|
|
53
|
+
companyName: "Nom de l'entreprise",
|
|
54
|
+
taxOffice: "Administration des impôts ",
|
|
55
|
+
taxNumber: "Numéro d'identification fiscale",
|
|
56
|
+
password: "Mot de passe",
|
|
57
|
+
passwordRequiredError: "Entrer le mot de passe",
|
|
58
|
+
passwordMinError: "{{value}} doit etre plus grand que le caractère!",
|
|
59
|
+
deliveryMethod: "Méthode de livraison",
|
|
60
|
+
deliveryToAddress: "Livraison à l'adresse",
|
|
61
|
+
inStoreDelivery: "Livraison en magasin",
|
|
62
|
+
stockLocation: {
|
|
63
|
+
deliveryTime: {
|
|
64
|
+
WITHIN_ONE_HOUR: "\nGénéralement prêt en 1 heure",
|
|
65
|
+
WITHIN_TWO_HOURS: "\nGénéralement prêt en 2 heures",
|
|
66
|
+
WITHIN_FOUR_HOURS: "\nGénéralement prêt en 4 heures",
|
|
67
|
+
WITHIN_TWENTY_FOUR_HOURS: "\nGénéralement prêt en 24 heures",
|
|
68
|
+
TWO_IN_FOUR_DAYS: "\nGénéralement prêt en 2-4 jours",
|
|
69
|
+
WITHIN_PLUS_FIVE_DAYS: "\nGénéralement prêt en +5 jours",
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
recipientsInfo: "Informations sur le destinataire",
|
|
73
|
+
pickUpLocation: "Lieu de ramassage",
|
|
74
|
+
receiver: "Destinataire",
|
|
75
|
+
shipping: "Expédition",
|
|
76
|
+
payment: "Paiement",
|
|
77
|
+
summary: "Résumé",
|
|
78
|
+
free: "Gratuit",
|
|
79
|
+
standartShipping: "Livraison standard",
|
|
80
|
+
returnPolicy: "Politique de retour",
|
|
81
|
+
privacyPolicy: "Politique de confidentialité",
|
|
82
|
+
termsOfService: "Conditions d'utilisation",
|
|
83
|
+
imprint: "Etiquette",
|
|
84
|
+
shippingPolicy: "Politique d'expédition",
|
|
85
|
+
newAddress: "Nouvelle adresse",
|
|
86
|
+
billingAddress: "Adresse de facturation",
|
|
87
|
+
shippingAddress: "Adresse de livraison",
|
|
88
|
+
corporateInvoice: "Facture d'entreprise",
|
|
89
|
+
contactInfo: "Informations de contact",
|
|
90
|
+
email: "E-mail",
|
|
91
|
+
emailError: "Entrez une adresse e-mail valide",
|
|
92
|
+
guestEmailTooltip:
|
|
93
|
+
"Les information de la commande seront envoyée à cette adresse e-mail",
|
|
94
|
+
customerConsentCta:
|
|
95
|
+
"Tenez-moi au courant des nouveautés et d'offres exclusives",
|
|
96
|
+
useShippingForBilling:
|
|
97
|
+
"Mon adresse de facturation est la meme que mon adresse de livraison",
|
|
98
|
+
installmentOptions: "Options de versement",
|
|
99
|
+
singleInstallment: "Versement unique",
|
|
100
|
+
installments: "Versements",
|
|
101
|
+
appPayment: "App Payment",
|
|
102
|
+
bankRedirect: "Bank Redirect",
|
|
103
|
+
buyOnlinePayAtStore: "Paiement en magasin",
|
|
104
|
+
cash: "Cash",
|
|
105
|
+
cashOnDelivery: "Paiement à la livraison",
|
|
106
|
+
creditCard: "Carte de crédit",
|
|
107
|
+
creditCardOnDelivery: "Paiement par carte de crédit lors de la livraison",
|
|
108
|
+
directDebit: "Bank Debit",
|
|
109
|
+
giftCard: "Chèque Cadeau",
|
|
110
|
+
moneyOrder: "Transfert",
|
|
111
|
+
other: "Autre",
|
|
112
|
+
payLater: "Pay Later",
|
|
113
|
+
sliceIt: "Slice It",
|
|
114
|
+
wallet: "Wallet",
|
|
115
|
+
ackPrivacyPolicy: "Politique de confidentialité",
|
|
116
|
+
ackTermsOfService: "Politique de vente",
|
|
117
|
+
ackPoliciesSentence:
|
|
118
|
+
"J'ai lu {{ ackPrivacyPolicy }} et {{ ackTermsOfService }} et je donne mon accord",
|
|
119
|
+
securePaymentTooltip: "Les paiements sont sécurisés et cryptés",
|
|
120
|
+
giftPackage: "Paquet cadeau",
|
|
121
|
+
giftPackageCta: "Je veux un paquet cadeau",
|
|
122
|
+
giftPackageCtaPlaceholder: "Entrer votre message de cadeau",
|
|
123
|
+
paymentMethod: "Mode de paiement",
|
|
124
|
+
paymentMethodDiscount: "Réduction",
|
|
125
|
+
paymentMethodAdditionalPrice: "Frais de transaction",
|
|
126
|
+
orderSuccessTitle: "Nous vous remercions de votre commande!",
|
|
127
|
+
orderSuccessDescription:
|
|
128
|
+
"Che(è)r(e) {{ customerName }}, nous avons recu votre commande. Nous allons vous informer par e-mail dès que votre commande sera expédiée.",
|
|
129
|
+
orderSuccessInStoreDeliveryDescription:
|
|
130
|
+
"Che(è)r(e) {{ customerName }}, nous avons recu votre commande. Nous allons vous informer par e-mail dès que votre commande sera arrivée au magasin.",
|
|
131
|
+
orderSuccessDigitalOnlyDescription:
|
|
132
|
+
"Che(è)r(e) {{ customerName }}, nous avons recu votre commande. Nous vous informerons lorsque vos produits seront prêts à être utilisés.",
|
|
133
|
+
orderNoAndDate: "Numéro de commande / Date",
|
|
134
|
+
paymentSummary: "Résumé de paiement",
|
|
135
|
+
shippingSummary: "Résumé de l'expédition",
|
|
136
|
+
helpCtaQuestion: "Avez-vous besoin d'aide?",
|
|
137
|
+
helpCta: "Contactez-nous",
|
|
138
|
+
contactForm: "Formulaire de contact",
|
|
139
|
+
contactFormSent: "Le message a été envoyé avec succès",
|
|
140
|
+
contactFormDescription:
|
|
141
|
+
"Nous allons vous contacter dans les plus brefs délais concernant votre message par e-mail ou par téléphone.",
|
|
142
|
+
contactFormCta: "écrivez votre message",
|
|
143
|
+
freeOrderDescription:
|
|
144
|
+
"Il n’y a rien à payer. Avec cette étape, vous pouvez terminer la commande.",
|
|
145
|
+
orderPackageStatus: {
|
|
146
|
+
unfulfilled: "Créé",
|
|
147
|
+
readyForShipment: "Prêt pour l'expédition",
|
|
148
|
+
fulfilled: "Envoyé",
|
|
149
|
+
partiallyFulfilled: "Envoyé partiellement",
|
|
150
|
+
delivered: "Livré",
|
|
151
|
+
partiallyDelivered: "Partiellement Livré",
|
|
152
|
+
unableToDeliver: "N'a pas été livré",
|
|
153
|
+
cancelled: "Annulé",
|
|
154
|
+
cancelRejected: "La demande d'annulation a été refusée",
|
|
155
|
+
cancelRequested: "L'annulation a été demandée",
|
|
156
|
+
refunded: "Remboursé",
|
|
157
|
+
refundRequestAccepted: "La demande de retour a été accepté",
|
|
158
|
+
refundRejected: "La demande de retour a été refusé",
|
|
159
|
+
refundRequested: "Un retour est demandé",
|
|
160
|
+
},
|
|
161
|
+
quantity: "Quantité",
|
|
162
|
+
cartItemProduct: "Produit",
|
|
163
|
+
giftCodeErrorTitle: "Erreur dans le code de réduction",
|
|
164
|
+
giftCodeErrorDescription:
|
|
165
|
+
"Votre code de réduction est invalide ou non applicable aux articles de votre panier. Veuillez vérifier votre code et réessayer.",
|
|
166
|
+
mustBeSignInToApplyCampaign:
|
|
167
|
+
"Vous devez être membre pour profiter de l'offre.",
|
|
168
|
+
subtotal: "Sous-total",
|
|
169
|
+
total: "Total",
|
|
170
|
+
subtotalTooltip:
|
|
171
|
+
"Le sous-total reflète le prix total de votre commande avant toute remise applicable. n'inclut pas les frais d'expédition.",
|
|
172
|
+
cartShippingTitle: "Expédition",
|
|
173
|
+
cartTaxTitle: "Taxe",
|
|
174
|
+
cartInterest: "intérêts de retard",
|
|
175
|
+
couponCode: "bon de réduction",
|
|
176
|
+
addCouponCode: "ajouter un code promo",
|
|
177
|
+
addOrderNote: "ajouter une note de commande",
|
|
178
|
+
editOrderNote: "modifier la note de commande",
|
|
179
|
+
orderNote: "Note sur la commande",
|
|
180
|
+
enterPhoneNumber: "entrer le numéro de téléphone",
|
|
181
|
+
cardNumber: "numéro de carte",
|
|
182
|
+
cardNumberError: "Entrer un numéro de carte valide",
|
|
183
|
+
cardHolderName: "Nom sur la carte",
|
|
184
|
+
cardHolderError: "Entrer le nom et le prénom",
|
|
185
|
+
cardExpiry: "Mois / Année",
|
|
186
|
+
cardExpiryError: "Entrer une date valide",
|
|
187
|
+
cardCVC: "CVC",
|
|
188
|
+
cardCVCError: "Entrer un code de sécurité valide",
|
|
189
|
+
cardCVCTooltip: "Code de sécurité à 3 chiffres au dos de votre carte",
|
|
190
|
+
masterPass: {
|
|
191
|
+
paymentGatewaySelectBox: {
|
|
192
|
+
delete: "Effacer",
|
|
193
|
+
},
|
|
194
|
+
creditCardForm: {
|
|
195
|
+
checkboxLabel:
|
|
196
|
+
"Conserver ma carte sous l'infrastructure {{ masterPassLogo }} {{ link }}",
|
|
197
|
+
checkboxLabelLink: "Je veux.",
|
|
198
|
+
moreInformation: "Information détaillée",
|
|
199
|
+
cardName: "Nom de la carte",
|
|
200
|
+
phoneNumber: "Téléphone",
|
|
201
|
+
button: "Envoyer un code de vérification",
|
|
202
|
+
},
|
|
203
|
+
linkCardToClient: {
|
|
204
|
+
text: "Vous avez une carte enregistrée auprès de MasterPass. Cliquez sur OK pour utiliser votre carte pour vos achats.",
|
|
205
|
+
buttonText: "Ok",
|
|
206
|
+
subInfoText: "A ce stade, votre carte ne sera pas débitée.",
|
|
207
|
+
},
|
|
208
|
+
otpModal: {
|
|
209
|
+
otpTextBank:
|
|
210
|
+
"Entrez le code de vérification envoyé au titulaire de la carte par votre banque.",
|
|
211
|
+
otpTextMasterPass:
|
|
212
|
+
"Entrez le code de vérification SMS envoyé par Masterpass.",
|
|
213
|
+
countdownText: "Temps restant :",
|
|
214
|
+
resendText: "Envoyer un nouveau code",
|
|
215
|
+
inputLabel: "Entrer le code de vérification",
|
|
216
|
+
buttonText: "Vérifier",
|
|
217
|
+
},
|
|
218
|
+
successModal: {
|
|
219
|
+
otpSuccessText: "Votre carte a été identifiée avec succès.",
|
|
220
|
+
linkCardToClientSuccessText:
|
|
221
|
+
"Votre compte Masterpass a été vérifié avec succès.",
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
quickRegistration: {
|
|
225
|
+
title: "Créer un compte",
|
|
226
|
+
subtitle:
|
|
227
|
+
"En tant que membre, vous pouvez suivre votre commande et être informé des dernières campagnes.",
|
|
228
|
+
completedTitle: "Votre compte a été créé avec succès!",
|
|
229
|
+
completedSubtitle:
|
|
230
|
+
"Désormais, vous pouvez facilement suivre votre commande et être informé des dernières campagnes.",
|
|
231
|
+
accountEmail: "Votre adresse e-mail de membre",
|
|
232
|
+
},
|
|
233
|
+
timeRemaining: "Temps restant : {{value}}",
|
|
234
|
+
filesReadyToDownload: "Fichiers prêts à être téléchargés",
|
|
235
|
+
errorCustomerRequired:
|
|
236
|
+
"Il existe un compte enregistré pour cette adresse e-mail. Veuillez vous connecter à votre compte.",
|
|
237
|
+
errorCustomerAccountDisabled: "Pour utiliser ce compte, contactez-nous.",
|
|
238
|
+
errorNoShipping: "Il n'y a pas de livraison à votre emplacement.",
|
|
239
|
+
errorPayment:
|
|
240
|
+
"Votre paiement n'a pas pu être reçu. Veuillez vérifier vos informations et réessayer.",
|
|
241
|
+
errorStockTitle: "Stocks mis à jour !",
|
|
242
|
+
errorStockDescription:
|
|
243
|
+
"Certains articles de votre panier sont en rupture de stock. Souhaitez-vous continuer en supprimant ces produits de votre panier ?",
|
|
244
|
+
errorUnknown: "Une erreur imprévue s'est produite. Veuillez réessayer.",
|
|
245
|
+
errorPickupLocationRequired: "Choisissez le lieu d'expédition",
|
|
246
|
+
customizedProduct: "Produit personnalisé",
|
|
247
|
+
bundleProductsQuantity: "{{value}} Produits",
|
|
248
|
+
yes: "Oui",
|
|
249
|
+
no: "Non",
|
|
250
|
+
};
|
package/checkout/tr.js
CHANGED
|
@@ -18,6 +18,7 @@ module.exports = {
|
|
|
18
18
|
backToCart: "Sepete Dön",
|
|
19
19
|
addToCart: "Sepete Ekle",
|
|
20
20
|
updateCart: "Sepetimi Güncelle",
|
|
21
|
+
download: "İndir",
|
|
21
22
|
},
|
|
22
23
|
securePayment: "Güvenli Ödeme",
|
|
23
24
|
alreadyHaveAnAccount: "Zaten hesabınız var mı?",
|
|
@@ -48,6 +49,8 @@ module.exports = {
|
|
|
48
49
|
cityError: "İl seçin",
|
|
49
50
|
district: "İlçe",
|
|
50
51
|
districtError: "İlçe seçin",
|
|
52
|
+
region: "Bölge",
|
|
53
|
+
regionError: "Bölge seçin",
|
|
51
54
|
phone: "Telefon",
|
|
52
55
|
phoneError: "Geçerli bir telefon girin",
|
|
53
56
|
companyName: "Firma Adı",
|
|
@@ -70,6 +73,11 @@ module.exports = {
|
|
|
70
73
|
WITHIN_PLUS_FIVE_DAYS: "Genelde +5 gün içinde hazır olur",
|
|
71
74
|
},
|
|
72
75
|
},
|
|
76
|
+
estimatedDeliveryTime: {
|
|
77
|
+
day: "Tahmini Teslimat Süresi: {{ value }} Gün",
|
|
78
|
+
hour: "Tahmini Teslimat Süresi: {{ value }} Saat",
|
|
79
|
+
minute: "Tahmini Teslimat Süresi: {{ value }} Dakika",
|
|
80
|
+
},
|
|
73
81
|
recipientsInfo: "Teslim Alacak Kişi Bilgileri",
|
|
74
82
|
pickUpLocation: "Teslim Alınacak Konum",
|
|
75
83
|
receiver: "Teslim Alacak Kişi",
|
|
@@ -98,7 +106,21 @@ module.exports = {
|
|
|
98
106
|
installmentOptions: "Taksit Seçenekleri",
|
|
99
107
|
singleInstallment: "Tek Çekim",
|
|
100
108
|
installments: "Taksit",
|
|
109
|
+
|
|
110
|
+
appPayment: "Uygulama Ödemesi",
|
|
111
|
+
bankRedirect: "Banka Yönlendirmesi",
|
|
112
|
+
buyOnlinePayAtStore: "Mağazada Ödeme",
|
|
113
|
+
cash: "Nakit",
|
|
114
|
+
cashOnDelivery: "Kapıda Ödeme",
|
|
101
115
|
creditCard: "Kredi Kartı",
|
|
116
|
+
creditCardOnDelivery: "Kapıda Ödeme Kredi Kartı",
|
|
117
|
+
directDebit: "Banka Hesabından Ödeme",
|
|
118
|
+
giftCard: "Hediye Çeki",
|
|
119
|
+
moneyOrder: "Havale",
|
|
120
|
+
other: "Diğer",
|
|
121
|
+
payLater: "Sonra Öde",
|
|
122
|
+
sliceIt: "Taksitle Öde",
|
|
123
|
+
wallet: "Cüzdan",
|
|
102
124
|
|
|
103
125
|
ackPrivacyPolicy: "Gizlilik Sözleşmesini",
|
|
104
126
|
ackTermsOfService: "Satış Sözleşmesini",
|
|
@@ -119,6 +141,8 @@ module.exports = {
|
|
|
119
141
|
"Sevgili {{ customerName }}, siparişiniz bize ulaşmıştır. Siparişiniz kargoya verildiğinde sizi e-posta ile bilgilendireceğiz.",
|
|
120
142
|
orderSuccessInStoreDeliveryDescription:
|
|
121
143
|
"Sevgili {{ customerName }}, siparişiniz bize ulaşmıştır. Siparişiniz mağazaya teslim edildiğinde sizi e-posta ile bilgilendireceğiz.",
|
|
144
|
+
orderSuccessDigitalOnlyDescription:
|
|
145
|
+
"Sevgili {{ customerName }}, siparişiniz bize ulaşmıştır. Ürünleriniz kullanıma hazır olduğunda sizi e-posta ile bilgilendireceğiz.",
|
|
122
146
|
orderNoAndDate: "Sipariş No / Tarih",
|
|
123
147
|
paymentSummary: "Ödeme Özeti",
|
|
124
148
|
shippingSummary: "Teslimat Özeti",
|
|
@@ -131,12 +155,16 @@ module.exports = {
|
|
|
131
155
|
"Mesajınızla ilgili olarak size en kısa zamanda e-posta veya telefon aracılığıyla geri dönüş yapılacaktır.",
|
|
132
156
|
contactFormCta: "Mesajınızı yazın",
|
|
133
157
|
|
|
158
|
+
freeOrderDescription:
|
|
159
|
+
"Ödenecek tutar bulunmamaktadır. Bu adımı tamamlayarak sipariş verebilirsiniz.",
|
|
160
|
+
|
|
134
161
|
orderPackageStatus: {
|
|
135
162
|
unfulfilled: "Oluşturuldu",
|
|
136
163
|
readyForShipment: "Kargoya Hazır",
|
|
137
164
|
fulfilled: "Gönderildi",
|
|
138
165
|
partiallyFulfilled: "Kısmi Gönderildi",
|
|
139
166
|
delivered: "Teslim Edildi",
|
|
167
|
+
partiallyDelivered: "Kısmi Teslim Edildi",
|
|
140
168
|
unableToDeliver: "Teslim Edilemedi",
|
|
141
169
|
cancelled: "İptal Edildi",
|
|
142
170
|
cancelRejected: "İptal Talebi Reddedildi",
|
|
@@ -225,8 +253,12 @@ module.exports = {
|
|
|
225
253
|
|
|
226
254
|
timeRemaining: "Kalan Süre {{value}}",
|
|
227
255
|
|
|
256
|
+
filesReadyToDownload: "Dosyalar İndirilmeye Hazır",
|
|
257
|
+
|
|
228
258
|
errorCustomerRequired:
|
|
229
259
|
"Bu e-posta adresine ait kayıtlı bir hesap bulunuyor. Lütfen hesabınıza giriş yapınız.",
|
|
260
|
+
errorCustomerAccountDisabled:
|
|
261
|
+
"Bu hesabı kullanmak için bizimle iletişime geçin.",
|
|
230
262
|
errorNoShipping: "Bulunduğunuz konuma gönderim yapılmamaktadır.",
|
|
231
263
|
errorPayment:
|
|
232
264
|
"Ödemeniz alınamadı. Lütfen bilgilerinizi kontrol edip tekrar deneyin.",
|
|
@@ -237,6 +269,7 @@ module.exports = {
|
|
|
237
269
|
errorPickupLocationRequired: "Teslim alınacak konumu seçin",
|
|
238
270
|
|
|
239
271
|
customizedProduct: "Kişiselleştirilmiş Ürün",
|
|
272
|
+
bundleProductsQuantity: "{{value}} Ürün",
|
|
240
273
|
yes: "Evet",
|
|
241
274
|
no: "Hayır",
|
|
242
275
|
};
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikas/storefront-assets",
|
|
3
|
-
"version": "5.0.0
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"author": "ikas",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "Assets for ikas storefront themes.",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"rollup-plugin-terser": "^7.0.2",
|
|
19
19
|
"rollup-plugin-typescript2": "^0.32.1",
|
|
20
20
|
"typescript": "^4.7.2",
|
|
21
|
-
"ttypescript": "^1.5.
|
|
21
|
+
"ttypescript": "^1.5.15",
|
|
22
22
|
"typescript-transform-paths": "^2.2.2"
|
|
23
23
|
}
|
|
24
24
|
}
|