Refactor project for i18n support: Rename project to "i18n-translator" and update package.json and package-lock.json accordingly. Enhance localization by integrating translation functions across various components, including AddToCartButton, Content, GoogleLoginButton, and others, to provide dynamic text rendering based on user language preferences. Update localization files for multiple languages, ensuring comprehensive support for internationalization.
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
export default {
|
||||
"locale": {
|
||||
"code": "de-DE"
|
||||
},
|
||||
"navigation": {
|
||||
"home": "Startseite",
|
||||
"aktionen": "Aktionen",
|
||||
"filiale": "Filiale",
|
||||
"categories": "Kategorien",
|
||||
"categoriesOpen": "Kategorien öffnen",
|
||||
"categoriesClose": "Kategorien schließen"
|
||||
"categoriesClose": "Kategorien schließen",
|
||||
"otherCategories": "Andere Kategorien"
|
||||
},
|
||||
"auth": {
|
||||
"login": "Anmelden",
|
||||
@@ -38,6 +42,11 @@ export default {
|
||||
"preorderCutting": "Als Steckling vorbestellen",
|
||||
"continueShopping": "Weiter einkaufen",
|
||||
"proceedToCheckout": "Weiter zur Kasse",
|
||||
"productCount": "{{count}} {{count, plural, one {Produkt} other {Produkte}}}",
|
||||
"removeFromCart": "Aus dem Warenkorb entfernen",
|
||||
"openCart": "Warenkorb öffnen",
|
||||
"availableFrom": "Ab {{date}}",
|
||||
"backToOrder": "← Zurück zur Bestellung",
|
||||
"sync": {
|
||||
"title": "Warenkorb-Synchronisierung",
|
||||
"description": "Sie haben einen gespeicherten Warenkorb in ihrem Account. Bitte wählen Sie, wie Sie verfahren möchten:",
|
||||
@@ -66,11 +75,28 @@ export default {
|
||||
"comingSoon": "Bald verfügbar",
|
||||
"deliveryTime": "Lieferzeit",
|
||||
"inclShort": "inkl.",
|
||||
"vatShort": "MwSt."
|
||||
"vatShort": "MwSt.",
|
||||
"countDisplay": {
|
||||
"noProducts": "0 Produkte",
|
||||
"oneProduct": "1 Produkt",
|
||||
"multipleProducts": "{{count}} Produkte",
|
||||
"filteredProducts": "{{filtered}} von {{total}} Produkten",
|
||||
"filteredOneProduct": "{{filtered}} von 1 Produkt"
|
||||
},
|
||||
"removeFiltersToSee": "Entferne Filter um Produkte zu sehen",
|
||||
"outOfStock": "Out of Stock",
|
||||
"fromXProducts": "ab {{count}} Produkten"
|
||||
},
|
||||
"search": {
|
||||
"placeholder": "Du kannst mich nach Cannabissorten fragen...",
|
||||
"recording": "Aufnahme läuft..."
|
||||
"recording": "Aufnahme läuft...",
|
||||
"searchProducts": "Produkte suchen..."
|
||||
},
|
||||
"sorting": {
|
||||
"name": "Name",
|
||||
"searchField": "Suchbegriff",
|
||||
"priceLowHigh": "Preis: Niedrig zu Hoch",
|
||||
"priceHighLow": "Preis: Hoch zu Niedrig"
|
||||
},
|
||||
"chat": {
|
||||
"privacyRead": "Gelesen & Akzeptiert"
|
||||
@@ -90,6 +116,7 @@ export default {
|
||||
},
|
||||
"prices": {
|
||||
"free": "kostenlos",
|
||||
"freeFrom100": "(kostenlos ab 100€)",
|
||||
"dhl": "6,99 €",
|
||||
"dpd": "4,90 €",
|
||||
"sperrgut": "28,99 €"
|
||||
@@ -146,11 +173,11 @@ export default {
|
||||
"batteriegesetzhinweise": "Batteriegesetzhinweise",
|
||||
"widerrufsrecht": "Widerrufsrecht"
|
||||
}
|
||||
},
|
||||
},
|
||||
"titles": {
|
||||
"home": "ine annabis eeds & uttings",
|
||||
"aktionen": "tuelle ktionen & gebote",
|
||||
"filiale": "nsere iliale in resden"
|
||||
"home": "ine annabis eeds & uttings", // Fine Cannabis Seeds & Cuttings (the text in the string has special characters, translate using the comment)
|
||||
"aktionen": "tuelle ktionen & gebote", // Aktuelle Aktionen & Angebote (the text in the string has special characters, translate using the comment)
|
||||
"filiale": "nsere iliale in resden" // Unsere Filiale in Dresden (the text in the string has special characters, translate using the comment)
|
||||
},
|
||||
"sections": {
|
||||
"seeds": "Seeds",
|
||||
|
||||
Reference in New Issue
Block a user