translate
This commit is contained in:
25
src/i18n/locales/en/auth.js
Normal file
25
src/i18n/locales/en/auth.js
Normal file
@@ -0,0 +1,25 @@
|
||||
export default {
|
||||
"login": "Login", // Anmelden
|
||||
"register": "Register", // Registrieren
|
||||
"logout": "Logout", // Abmelden
|
||||
"profile": "Profile", // Profil
|
||||
"email": "Email", // E-Mail
|
||||
"password": "Password", // Passwort
|
||||
"confirmPassword": "Confirm password", // Passwort bestätigen
|
||||
"forgotPassword": "Forgot password?", // Passwort vergessen?
|
||||
"loginWithGoogle": "Sign in with Google", // Mit Google anmelden
|
||||
"or": "OR", // ODER
|
||||
"privacyAccept": "By clicking \"Sign in with Google\" I accept the", // Mit dem Click auf "Mit Google anmelden" akzeptiere ich die
|
||||
"privacyPolicy": "Privacy Policy", // Datenschutzbestimmungen
|
||||
"passwordMinLength": "The password must be at least 8 characters long", // Das Passwort muss mindestens 8 Zeichen lang sein
|
||||
"newPasswordMinLength": "The new password must be at least 8 characters long", // Das neue Passwort muss mindestens 8 Zeichen lang sein
|
||||
"menu": {
|
||||
"profile": "Profile", // Profil
|
||||
"myProfile": "My profile", // Mein Profil
|
||||
"checkout": "Checkout", // Bestellabschluss
|
||||
"orders": "Orders", // Bestellungen
|
||||
"settings": "Settings", // Einstellungen
|
||||
"adminDashboard": "Admin Dashboard", // Admin Dashboard
|
||||
"adminUsers": "Admin Users" // Admin Users
|
||||
}
|
||||
};
|
||||
24
src/i18n/locales/en/cart.js
Normal file
24
src/i18n/locales/en/cart.js
Normal file
@@ -0,0 +1,24 @@
|
||||
export default {
|
||||
"title": "Cart", // Warenkorb
|
||||
"empty": "empty", // leer
|
||||
"addToCart": "Add to cart", // In den Korb
|
||||
"preorderCutting": "Preorder as cutting", // Als Steckling vorbestellen
|
||||
"continueShopping": "Continue shopping", // Weiter einkaufen
|
||||
"proceedToCheckout": "Proceed to checkout", // Weiter zur Kasse
|
||||
"productCount": "{{count}} {{count, plural, one {product} other {products}}}", // {{count}} {{count, plural, one {Produkt} other {Produkte}}}
|
||||
"productSingular": "product", // Produkt
|
||||
"productPlural": "products", // Produkte
|
||||
"removeFromCart": "Remove from cart", // Aus dem Warenkorb entfernen
|
||||
"openCart": "Open cart", // Warenkorb öffnen
|
||||
"availableFrom": "Available from {{date}}", // Ab {{date}}
|
||||
"backToOrder": "← Back to order", // ← Zurück zur Bestellung
|
||||
"sync": {
|
||||
"title": "Cart synchronization", // Warenkorb-Synchronisierung
|
||||
"description": "You have a saved cart in your account. Please choose how you want to proceed:", // Sie haben einen gespeicherten Warenkorb in ihrem Account. Bitte wählen Sie, wie Sie verfahren möchten:
|
||||
"deleteServer": "Delete server cart", // Server-Warenkorb löschen
|
||||
"useServer": "Use server cart", // Server-Warenkorb übernehmen
|
||||
"merge": "Merge carts", // Warenkörbe zusammenführen
|
||||
"currentCart": "Your current cart", // Ihr aktueller Warenkorb
|
||||
"serverCart": "Cart saved in your profile" // In Ihrem Profil gespeicherter Warenkorb
|
||||
}
|
||||
};
|
||||
3
src/i18n/locales/en/chat.js
Normal file
3
src/i18n/locales/en/chat.js
Normal file
@@ -0,0 +1,3 @@
|
||||
export default {
|
||||
"privacyRead": "Read & Accepted", // Gelesen & Akzeptiert
|
||||
};
|
||||
13
src/i18n/locales/en/checkout.js
Normal file
13
src/i18n/locales/en/checkout.js
Normal file
@@ -0,0 +1,13 @@
|
||||
export default {
|
||||
"invoiceAddress": "Invoice address", // Rechnungsadresse
|
||||
"deliveryAddress": "Delivery address", // Lieferadresse
|
||||
"saveForFuture": "Save for future orders", // Für zukünftige Bestellungen speichern
|
||||
"pickupDate": "For which date is the pickup of the cuttings desired?", // Für welchen Termin ist die Abholung der Stecklinge gewünscht?
|
||||
"note": "Note", // Anmerkung
|
||||
"sameAddress": "Delivery address is identical to invoice address", // Lieferadresse ist identisch mit Rechnungsadresse
|
||||
"termsAccept": "I have read the terms and conditions, the privacy policy, and the provisions on the right of withdrawal", // Ich habe die AGBs, die Datenschutzerklärung und die Bestimmungen zum Widerrufsrecht gelesen
|
||||
"selectDeliveryMethod": "Select shipping method", // Versandart wählen
|
||||
"selectPaymentMethod": "Select payment method", // Zahlungsart wählen
|
||||
"orderSummary": "Order summary", // Bestellübersicht
|
||||
"addressValidationError": "Please check your entries in the address fields." // Bitte überprüfen Sie Ihre Eingaben in den Adressfeldern.
|
||||
};
|
||||
19
src/i18n/locales/en/common.js
Normal file
19
src/i18n/locales/en/common.js
Normal file
@@ -0,0 +1,19 @@
|
||||
export default {
|
||||
"loading": "Loading...", // Lädt...
|
||||
"error": "Error", // Fehler
|
||||
"close": "Close", // Schließen
|
||||
"save": "Save", // Speichern
|
||||
"cancel": "Cancel", // Abbrechen
|
||||
"ok": "OK", // OK
|
||||
"yes": "Yes", // Ja
|
||||
"no": "No", // Nein
|
||||
"next": "Next", // Weiter
|
||||
"back": "Back", // Zurück
|
||||
"edit": "Edit", // Bearbeiten
|
||||
"delete": "Delete", // Löschen
|
||||
"add": "Add", // Hinzufügen
|
||||
"remove": "Remove", // Entfernen
|
||||
"products": "Products", // Produkte
|
||||
"product": "Product", // Produkt
|
||||
"days": "Days" // Tage
|
||||
};
|
||||
27
src/i18n/locales/en/delivery.js
Normal file
27
src/i18n/locales/en/delivery.js
Normal file
@@ -0,0 +1,27 @@
|
||||
export default {
|
||||
"methods": {
|
||||
"dhl": "DHL", // DHL
|
||||
"dpd": "DPD", // DPD
|
||||
"sperrgut": "Bulky goods", // Sperrgut
|
||||
"pickup": "Pickup in store" // Abholung in der Filiale
|
||||
},
|
||||
"descriptions": {
|
||||
"standard": "Standard shipping", // Standardversand
|
||||
"standardFree": "Standard shipping - FREE from 100€ order value!", // Standardversand - KOSTENLOS ab 100€ Warenwert!
|
||||
"notAvailable": "Not selectable because one or more items can only be picked up", // nicht auswählbar weil ein oder mehrere Artikel nur abgeholt werden können
|
||||
"bulky": "For large and heavy items", // Für große und schwere Artikel
|
||||
"pickupOnly": "Pickup only" // nur Abholung
|
||||
},
|
||||
"prices": {
|
||||
"free": "free", // kostenlos
|
||||
"freeFrom100": "(free from 100€)", // (kostenlos ab 100€)
|
||||
"dhl": "6.99 €", // 6,99 €
|
||||
"dpd": "4.90 €", // 4,90 €
|
||||
"sperrgut": "28.99 €" // 28,99 €
|
||||
},
|
||||
"times": {
|
||||
"cutting14Days": "Delivery time: 14 days", // Lieferzeit: 14 Tage
|
||||
"standard2to3Days": "Delivery time: 2-3 days", // Lieferzeit: 2-3 Tage
|
||||
"supplier7to9Days": "Delivery time: 7-9 days" // Lieferzeit: 7-9 Tage
|
||||
}
|
||||
};
|
||||
7
src/i18n/locales/en/filters.js
Normal file
7
src/i18n/locales/en/filters.js
Normal file
@@ -0,0 +1,7 @@
|
||||
export default {
|
||||
"sorting": "Sorting", // Sortierung
|
||||
"perPage": "per page", // pro Seite
|
||||
"availability": "Availability", // Verfügbarkeit
|
||||
"manufacturer": "Manufacturer", // Hersteller
|
||||
"all": "All", // Alle
|
||||
};
|
||||
15
src/i18n/locales/en/footer.js
Normal file
15
src/i18n/locales/en/footer.js
Normal file
@@ -0,0 +1,15 @@
|
||||
export default {
|
||||
"hours": "Sat 11am-7pm", // Sa 11-19
|
||||
"address": "Trachenberger Straße 14 - Dresden", // Trachenberger Straße 14 - Dresden
|
||||
"location": "Between Pieschen stop and Trachenberger Platz", // Zwischen Haltepunkt Pieschen und Trachenberger Platz
|
||||
"allPricesIncl": "* All prices incl. statutory VAT, plus shipping", // * Alle Preise inkl. gesetzlicher USt., zzgl. Versand
|
||||
"copyright": "© {{year}} GrowHeads.de", // © {{year}} GrowHeads.de
|
||||
"legal": {
|
||||
"datenschutz": "Privacy Policy", // Datenschutz
|
||||
"agb": "Terms and Conditions", // AGB
|
||||
"sitemap": "Sitemap", // Sitemap
|
||||
"impressum": "Legal Notice", // Impressum
|
||||
"batteriegesetzhinweise": "Battery Law Information", // Batteriegesetzhinweise
|
||||
"widerrufsrecht": "Right of Withdrawal" // Widerrufsrecht
|
||||
}
|
||||
};
|
||||
43
src/i18n/locales/en/index.js
Normal file
43
src/i18n/locales/en/index.js
Normal file
@@ -0,0 +1,43 @@
|
||||
import locale from './locale.js';
|
||||
import navigation from './navigation.js';
|
||||
import auth from './auth.js';
|
||||
import cart from './cart.js';
|
||||
import product from './product.js';
|
||||
import search from './search.js';
|
||||
import sorting from './sorting.js';
|
||||
import chat from './chat.js';
|
||||
import delivery from './delivery.js';
|
||||
import checkout from './checkout.js';
|
||||
import payment from './payment.js';
|
||||
import filters from './filters.js';
|
||||
import tax from './tax.js';
|
||||
import footer from './footer.js';
|
||||
import titles from './titles.js';
|
||||
import sections from './sections.js';
|
||||
import pages from './pages.js';
|
||||
import orders from './orders.js';
|
||||
import settings from './settings.js';
|
||||
import common from './common.js';
|
||||
|
||||
export default {
|
||||
"locale": locale,
|
||||
"navigation": navigation,
|
||||
"auth": auth,
|
||||
"cart": cart,
|
||||
"product": product,
|
||||
"search": search,
|
||||
"sorting": sorting,
|
||||
"chat": chat,
|
||||
"delivery": delivery,
|
||||
"checkout": checkout,
|
||||
"payment": payment,
|
||||
"filters": filters,
|
||||
"tax": tax,
|
||||
"footer": footer,
|
||||
"titles": titles,
|
||||
"sections": sections,
|
||||
"pages": pages,
|
||||
"orders": orders,
|
||||
"settings": settings,
|
||||
"common": common
|
||||
};
|
||||
3
src/i18n/locales/en/locale.js
Normal file
3
src/i18n/locales/en/locale.js
Normal file
@@ -0,0 +1,3 @@
|
||||
export default {
|
||||
"code": "en-US" // de-DE
|
||||
};
|
||||
9
src/i18n/locales/en/navigation.js
Normal file
9
src/i18n/locales/en/navigation.js
Normal file
@@ -0,0 +1,9 @@
|
||||
export default {
|
||||
"home": "Home", // Startseite
|
||||
"aktionen": "Promotions", // Aktionen
|
||||
"filiale": "Branch", // Filiale
|
||||
"categories": "Categories", // Kategorien
|
||||
"categoriesOpen": "Open categories", // Kategorien öffnen
|
||||
"categoriesClose": "Close categories", // Kategorien schließen
|
||||
"otherCategories": "Other categories" // Andere Kategorien
|
||||
};
|
||||
23
src/i18n/locales/en/orders.js
Normal file
23
src/i18n/locales/en/orders.js
Normal file
@@ -0,0 +1,23 @@
|
||||
export default {
|
||||
"status": {
|
||||
"new": "In progress", // in Bearbeitung
|
||||
"pending": "New", // Neu
|
||||
"processing": "In progress", // in Bearbeitung
|
||||
"cancelled": "Cancelled", // Storniert
|
||||
"shipped": "Shipped", // Verschickt
|
||||
"delivered": "Delivered", // Geliefert
|
||||
"return": "Return", // Retoure
|
||||
"partialReturn": "Partial return", // Teil Retoure
|
||||
"partialDelivered": "Partially delivered" // Teil geliefert
|
||||
},
|
||||
"table": {
|
||||
"orderNumber": "Order number", // Bestellnummer
|
||||
"date": "Date", // Datum
|
||||
"status": "Status", // Status
|
||||
"items": "Items", // Artikel
|
||||
"total": "Total", // Summe
|
||||
"actions": "Actions", // Aktionen
|
||||
"viewDetails": "View details" // Details anzeigen
|
||||
},
|
||||
"noOrders": "You have not placed any orders yet." // Sie haben noch keine Bestellungen aufgegeben.
|
||||
};
|
||||
10
src/i18n/locales/en/pages.js
Normal file
10
src/i18n/locales/en/pages.js
Normal file
@@ -0,0 +1,10 @@
|
||||
export default {
|
||||
"oilPress": {
|
||||
"title": "Borrow oil press", // Ölpresse ausleihen
|
||||
"comingSoon": "Content coming soon...", // Inhalt kommt bald...
|
||||
},
|
||||
"thcTest": {
|
||||
"title": "THC test", // THC Test
|
||||
"comingSoon": "Content coming soon...", // Inhalt kommt bald...
|
||||
}
|
||||
};
|
||||
8
src/i18n/locales/en/payment.js
Normal file
8
src/i18n/locales/en/payment.js
Normal file
@@ -0,0 +1,8 @@
|
||||
export default {
|
||||
"successful": "Payment successful!", // Zahlung erfolgreich!
|
||||
"failed": "Payment failed", // Zahlung fehlgeschlagen
|
||||
"orderCompleted": "🎉 Your order was completed successfully! You can now view your orders.", // 🎉 Ihre Bestellung wurde erfolgreich abgeschlossen! Sie können jetzt Ihre Bestellungen einsehen.
|
||||
"orderProcessing": "Your payment was processed successfully. The order will be completed automatically.", // Ihre Zahlung wurde erfolgreich verarbeitet. Die Bestellung wird automatisch abgeschlossen.
|
||||
"paymentError": "Your payment could not be processed. Please try again or choose another payment method.", // Ihre Zahlung konnte nicht verarbeitet werden. Bitte versuchen Sie es erneut oder wählen Sie eine andere Zahlungsmethode.
|
||||
"viewOrders": "Go to my orders" // Zu meinen Bestellungen
|
||||
};
|
||||
32
src/i18n/locales/en/product.js
Normal file
32
src/i18n/locales/en/product.js
Normal file
@@ -0,0 +1,32 @@
|
||||
export default {
|
||||
"loading": "Loading product...", // Produkt wird geladen...
|
||||
"notFound": "Product not found", // Produkt nicht gefunden
|
||||
"notFoundDescription": "The product you are looking for does not exist or has been removed.", // Das gesuchte Produkt existiert nicht oder wurde entfernt.
|
||||
"backToHome": "Back to home page", // Zurück zur Startseite
|
||||
"error": "Error", // Fehler
|
||||
"articleNumber": "Article number", // Artikelnummer
|
||||
"manufacturer": "Manufacturer", // Hersteller
|
||||
"inclVat": "incl. {{vat}}% VAT", // inkl. {{vat}}% MwSt.
|
||||
"priceUnit": "{{price}}/{{unit}}", // {{price}}/{{unit}}
|
||||
"new": "New", // Neu
|
||||
"weeks": "weeks", // Wochen
|
||||
"arriving": "Arrival:", // Ankunft:
|
||||
"inclVatFooter": "incl. {{vat}}% VAT,*", // inkl. {{vat}}% MwSt.,*
|
||||
"availability": "Availability", // Verfügbarkeit
|
||||
"inStock": "in stock", // auf Lager
|
||||
"comingSoon": "Coming soon", // Bald verfügbar
|
||||
"deliveryTime": "Delivery time", // Lieferzeit
|
||||
"inclShort": "incl.", // inkl.
|
||||
"vatShort": "VAT", // MwSt.
|
||||
"countDisplay": {
|
||||
"noProducts": "0 products", // 0 Produkte
|
||||
"oneProduct": "1 product", // 1 Produkt
|
||||
"multipleProducts": "{{count}} products", // {{count}} Produkte
|
||||
"filteredProducts": "{{filtered}} of {{total}} products", // {{filtered}} von {{total}} Produkten
|
||||
"filteredOneProduct": "{{filtered}} of 1 product", // {{filtered}} von 1 Produkt
|
||||
"xOfYProducts": "{{x}} of {{y}} products" // {{x}} von {{y}} Produkten
|
||||
},
|
||||
"removeFiltersToSee": "Remove filters to see products", // Entferne Filter um Produkte zu sehen
|
||||
"outOfStock": "Out of stock", // Out of Stock
|
||||
"fromXProducts": "from {{count}} products" // ab {{count}} Produkten
|
||||
};
|
||||
5
src/i18n/locales/en/search.js
Normal file
5
src/i18n/locales/en/search.js
Normal file
@@ -0,0 +1,5 @@
|
||||
export default {
|
||||
"placeholder": "You can ask me about cannabis strains...", // Du kannst mich nach Cannabissorten fragen...
|
||||
"recording": "Recording in progress...", // Aufnahme läuft...
|
||||
"searchProducts": "Search products...", // Produkte suchen...
|
||||
};
|
||||
8
src/i18n/locales/en/sections.js
Normal file
8
src/i18n/locales/en/sections.js
Normal file
@@ -0,0 +1,8 @@
|
||||
export default {
|
||||
"seeds": "Seeds", // Seeds
|
||||
"stecklinge": "Cuttings", // Stecklinge
|
||||
"oilPress": "Borrow oil press", // Ölpresse ausleihen
|
||||
"thcTest": "THC test", // THC Test
|
||||
"address1": "Trachenberger Straße 14", // Trachenberger Straße 14
|
||||
"address2": "01129 Dresden" // 01129 Dresden
|
||||
};
|
||||
34
src/i18n/locales/en/settings.js
Normal file
34
src/i18n/locales/en/settings.js
Normal file
@@ -0,0 +1,34 @@
|
||||
export default {
|
||||
"changePassword": "Change password", // Passwort ändern
|
||||
"currentPassword": "Current password", // Aktuelles Passwort
|
||||
"newPassword": "New password", // Neues Passwort
|
||||
"confirmNewPassword": "Confirm new password", // Neues Passwort bestätigen
|
||||
"updatePassword": "Update password", // Passwort aktualisieren
|
||||
"changeEmail": "Change email address", // E-Mail-Adresse ändern
|
||||
"password": "Password", // Passwort
|
||||
"newEmail": "New email address", // Neue E-Mail-Adresse
|
||||
"updateEmail": "Update email", // E-Mail aktualisieren
|
||||
"apiKey": "API key", // API-Schlüssel
|
||||
"apiKeyDescription": "Use your API key for integration with external applications.", // Verwenden Sie Ihren API-Schlüssel für die Integration mit externen Anwendungen.
|
||||
"apiDocumentation": "API documentation:", // API-Dokumentation:
|
||||
"copyToClipboard": "Copy to clipboard", // In Zwischenablage kopieren
|
||||
"generate": "Generate", // Generieren
|
||||
"regenerate": "Regenerate", // Regenerieren
|
||||
"apiKeyCopied": "API key copied to clipboard", // API-Schlüssel in Zwischenablage kopiert
|
||||
"errors": {
|
||||
"fillAllFields": "Please fill in all fields", // Bitte füllen Sie alle Felder aus
|
||||
"passwordsNotMatch": "The new passwords do not match", // Die neuen Passwörter stimmen nicht überein
|
||||
"passwordTooShort": "The new password must be at least 8 characters long", // Das neue Passwort muss mindestens 8 Zeichen lang sein
|
||||
"passwordUpdateError": "Error updating password", // Fehler beim Aktualisieren des Passworts
|
||||
"invalidEmail": "Please enter a valid email address", // Bitte geben Sie eine gültige E-Mail-Adresse ein
|
||||
"emailUpdateError": "Error updating email address", // Fehler beim Aktualisieren der E-Mail-Adresse
|
||||
"userNotFound": "User not found", // Benutzer nicht gefunden
|
||||
"apiKeyGenerationError": "Error generating API key" // Fehler beim Generieren des API-Schlüssels
|
||||
},
|
||||
"success": {
|
||||
"passwordUpdated": "Password updated successfully", // Passwort erfolgreich aktualisiert
|
||||
"emailUpdated": "Email address updated successfully", // E-Mail-Adresse erfolgreich aktualisiert
|
||||
"apiKeyGenerated": "API key generated successfully", // API-Schlüssel erfolgreich generiert
|
||||
"apiKeyWarning": "Store this key securely. For security reasons, it will be hidden in 10 seconds." // Speichern Sie diesen Schlüssel sicher. Er wird aus Sicherheitsgründen in 10 Sekunden ausgeblendet.
|
||||
}
|
||||
};
|
||||
6
src/i18n/locales/en/sorting.js
Normal file
6
src/i18n/locales/en/sorting.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export default {
|
||||
"name": "Name", // Name
|
||||
"searchField": "Search term", // Suchbegriff
|
||||
"priceLowHigh": "Price: Low to High", // Preis: Niedrig zu Hoch
|
||||
"priceHighLow": "Price: High to Low" // Preis: Hoch zu Niedrig
|
||||
};
|
||||
12
src/i18n/locales/en/tax.js
Normal file
12
src/i18n/locales/en/tax.js
Normal file
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
"vat": "Value Added Tax", // Mehrwertsteuer
|
||||
"vat7": "7% Value Added Tax", // 7% Mehrwertsteuer
|
||||
"vat19": "19% Value Added Tax", // 19% Mehrwertsteuer
|
||||
"vat19WithShipping": "19% Value Added Tax (incl. shipping)", // 19% Mehrwertsteuer (inkl. Versand)
|
||||
"totalNet": "Total net price", // Gesamtnettopreis
|
||||
"totalGross": "Total gross price without shipping", // Gesamtbruttopreis ohne Versand
|
||||
"subtotal": "Subtotal", // Zwischensumme
|
||||
"incl7Vat": "incl. 7% VAT", // inkl. 7% MwSt.
|
||||
"inclVatWithFooter": "(incl. {{vat}}% VAT,*)", // (incl. {{vat}}% USt.,*)
|
||||
"inclVatAmount": "incl. {{amount}} € VAT ({{rate}}%)" // nkl. {{amount}} € MwSt. ({{rate}}%)
|
||||
};
|
||||
5
src/i18n/locales/en/titles.js
Normal file
5
src/i18n/locales/en/titles.js
Normal file
@@ -0,0 +1,5 @@
|
||||
export default {
|
||||
"home": "Fine Cannabis Seeds & Cuttings", // Fine Cannabis Seeds & Cuttings
|
||||
"aktionen": "Current Promotions & Offers", // Aktuelle Aktionen & Angebote
|
||||
"filiale": "Our Store in Dresden" // Unsere Filiale in Dresden
|
||||
};
|
||||
@@ -1,270 +1,3 @@
|
||||
export default {
|
||||
"locale": {
|
||||
"code": "en-US" // de-DE
|
||||
},
|
||||
"navigation": {
|
||||
"home": "Home", // Startseite
|
||||
"aktionen": "Promotions", // Aktionen
|
||||
"filiale": "Branch", // Filiale
|
||||
"categories": "Categories", // Kategorien
|
||||
"categoriesOpen": "Open categories", // Kategorien öffnen
|
||||
"categoriesClose": "Close categories", // Kategorien schließen
|
||||
"otherCategories": "Other categories" // Andere Kategorien
|
||||
},
|
||||
"auth": {
|
||||
"login": "Login", // Anmelden
|
||||
"register": "Register", // Registrieren
|
||||
"logout": "Logout", // Abmelden
|
||||
"profile": "Profile", // Profil
|
||||
"email": "Email", // E-Mail
|
||||
"password": "Password", // Passwort
|
||||
"confirmPassword": "Confirm password", // Passwort bestätigen
|
||||
"forgotPassword": "Forgot password?", // Passwort vergessen?
|
||||
"loginWithGoogle": "Sign in with Google", // Mit Google anmelden
|
||||
"or": "OR", // ODER
|
||||
"privacyAccept": "By clicking \"Sign in with Google\" I accept the", // Mit dem Click auf \"Mit Google anmelden\" akzeptiere ich die
|
||||
"privacyPolicy": "Privacy Policy", // Datenschutzbestimmungen
|
||||
"passwordMinLength": "Password must be at least 8 characters long", // Das Passwort muss mindestens 8 Zeichen lang sein
|
||||
"newPasswordMinLength": "The new password must be at least 8 characters long", // Das neue Passwort muss mindestens 8 Zeichen lang sein
|
||||
"menu": {
|
||||
"profile": "Profile", // Profil
|
||||
"myProfile": "My profile", // Mein Profil
|
||||
"checkout": "Checkout", // Bestellabschluss
|
||||
"orders": "Orders", // Bestellungen
|
||||
"settings": "Settings", // Einstellungen
|
||||
"adminDashboard": "Admin Dashboard", // Admin Dashboard
|
||||
"adminUsers": "Admin Users" // Admin Users
|
||||
}
|
||||
},
|
||||
"cart": {
|
||||
"title": "Cart", // Warenkorb
|
||||
"empty": "empty", // leer
|
||||
"addToCart": "Add to cart", // In den Korb
|
||||
"preorderCutting": "Preorder as cutting", // Als Steckling vorbestellen
|
||||
"continueShopping": "Continue shopping", // Weiter einkaufen
|
||||
"proceedToCheckout": "Proceed to checkout", // Weiter zur Kasse
|
||||
"productCount": "{{count}} {{count, plural, one {product} other {products}}}", // {{count}} {{count, plural, one {Produkt} other {Produkte}}}
|
||||
"productSingular": "Product", // Produkt
|
||||
"productPlural": "Products", // Produkte
|
||||
"removeFromCart": "Remove from cart", // Aus dem Warenkorb entfernen
|
||||
"openCart": "Open cart", // Warenkorb öffnen
|
||||
"availableFrom": "Available from {{date}}", // Ab {{date}}
|
||||
"backToOrder": "← Back to order", // ← Zurück zur Bestellung
|
||||
"sync": {
|
||||
"title": "Cart synchronization", // Warenkorb-Synchronisierung
|
||||
"description": "You have a saved cart in your account. Please choose how you want to proceed:", // Sie haben einen gespeicherten Warenkorb in ihrem Account. Bitte wählen Sie, wie Sie verfahren möchten:
|
||||
"deleteServer": "Delete server cart", // Server-Warenkorb löschen
|
||||
"useServer": "Use server cart", // Server-Warenkorb übernehmen
|
||||
"merge": "Merge carts", // Warenkörbe zusammenführen
|
||||
"currentCart": "Your current cart", // Ihr aktueller Warenkorb
|
||||
"serverCart": "Cart saved in your profile" // In Ihrem Profil gespeicherter Warenkorb
|
||||
}
|
||||
},
|
||||
"product": {
|
||||
"loading": "Loading product...", // Produkt wird geladen...
|
||||
"notFound": "Product not found", // Produkt nicht gefunden
|
||||
"notFoundDescription": "The product you are looking for does not exist or has been removed.", // Das gesuchte Produkt existiert nicht oder wurde entfernt.
|
||||
"backToHome": "Back to home", // Zurück zur Startseite
|
||||
"error": "Error", // Fehler
|
||||
"articleNumber": "Article number", // Artikelnummer
|
||||
"manufacturer": "Manufacturer", // Hersteller
|
||||
"inclVat": "incl. {{vat}}% VAT", // inkl. {{vat}}% MwSt.
|
||||
"priceUnit": "{{price}}/{{unit}}", // {{price}}/{{unit}}
|
||||
"new": "New", // Neu
|
||||
"arriving": "Arriving:", // Ankunft:
|
||||
"inclVatFooter": "incl. {{vat}}% VAT,*", // inkl. {{vat}}% MwSt.,*
|
||||
"availability": "Availability", // Verfügbarkeit
|
||||
"inStock": "In stock", // auf Lager
|
||||
"comingSoon": "Coming soon", // Bald verfügbar
|
||||
"deliveryTime": "Delivery time", // Lieferzeit
|
||||
"inclShort": "incl.", // inkl.
|
||||
"vatShort": "VAT", // MwSt.
|
||||
"countDisplay": {
|
||||
"noProducts": "0 products", // 0 Produkte
|
||||
"oneProduct": "1 product", // 1 Produkt
|
||||
"multipleProducts": "{{count}} products", // {{count}} Produkte
|
||||
"filteredProducts": "{{filtered}} of {{total}} products", // {{filtered}} von {{total}} Produkten
|
||||
"filteredOneProduct": "{{filtered}} of 1 product", // {{filtered}} von 1 Produkt
|
||||
"xOfYProducts": "{{x}} of {{y}} products" // {{x}} von {{y}} Produkten
|
||||
},
|
||||
"removeFiltersToSee": "Remove filters to see products", // Entferne Filter um Produkte zu sehen
|
||||
"outOfStock": "Out of stock", // Out of Stock
|
||||
"fromXProducts": "from {{count}} products" // ab {{count}} Produkten
|
||||
},
|
||||
"search": {
|
||||
"placeholder": "You can ask me about cannabis strains...", // Du kannst mich nach Cannabissorten fragen...
|
||||
"recording": "Recording...", // Aufnahme läuft...
|
||||
"searchProducts": "Search products..." // Produkte suchen...
|
||||
},
|
||||
"sorting": {
|
||||
"name": "Name", // Name
|
||||
"searchField": "Search term", // Suchbegriff
|
||||
"priceLowHigh": "Price: Low to High", // Preis: Niedrig zu Hoch
|
||||
"priceHighLow": "Price: High to Low" // Preis: Hoch zu Niedrig
|
||||
},
|
||||
"chat": {
|
||||
"privacyRead": "Read & Accepted" // Gelesen & Akzeptiert
|
||||
},
|
||||
"delivery": {
|
||||
"methods": {
|
||||
"dhl": "DHL", // DHL
|
||||
"dpd": "DPD", // DPD
|
||||
"sperrgut": "Bulky goods", // Sperrgut
|
||||
"pickup": "Pickup at branch" // Abholung in der Filiale
|
||||
},
|
||||
"descriptions": {
|
||||
"standard": "Standard shipping", // Standardversand
|
||||
"standardFree": "Standard shipping - FREE from €100 order value!", // Standardversand - KOSTENLOS ab 100€ Warenwert!
|
||||
"notAvailable": "Not selectable because one or more items can only be picked up", // nicht auswählbar weil ein oder mehrere Artikel nur abgeholt werden können
|
||||
"bulky": "For large and heavy items", // Für große und schwere Artikel
|
||||
"pickupOnly": "Pickup only" // nur Abholung
|
||||
},
|
||||
"prices": {
|
||||
"free": "free", // kostenlos
|
||||
"freeFrom100": "(free from €100)", // (kostenlos ab 100€)
|
||||
"dhl": "€6.99", // 6,99 €
|
||||
"dpd": "€4.90", // 4,90 €
|
||||
"sperrgut": "€28.99" // 28,99 €
|
||||
},
|
||||
"times": {
|
||||
"cutting14Days": "Delivery time: 14 days", // Lieferzeit: 14 Tage
|
||||
"standard2to3Days": "Delivery time: 2-3 days", // Lieferzeit: 2-3 Tage
|
||||
"supplier7to9Days": "Delivery time: 7-9 days" // Lieferzeit: 7-9 Tage
|
||||
}
|
||||
},
|
||||
"checkout": {
|
||||
"invoiceAddress": "Invoice address", // Rechnungsadresse
|
||||
"deliveryAddress": "Delivery address", // Lieferadresse
|
||||
"saveForFuture": "Save for future orders", // Für zukünftige Bestellungen speichern
|
||||
"pickupDate": "For which date do you want to pick up the cuttings?", // Für welchen Termin ist die Abholung der Stecklinge gewünscht?
|
||||
"note": "Note", // Anmerkung
|
||||
"sameAddress": "Delivery address is the same as invoice address", // Lieferadresse ist identisch mit Rechnungsadresse
|
||||
"termsAccept": "I have read the Terms & Conditions, Privacy Policy, and the Right of Withdrawal information", // Ich habe die AGBs, die Datenschutzerklärung und die Bestimmungen zum Widerrufsrecht gelesen
|
||||
"selectDeliveryMethod": "Select shipping method", // Versandart wählen
|
||||
"selectPaymentMethod": "Select payment method", // Zahlungsart wählen
|
||||
"orderSummary": "Order summary", // Bestellübersicht
|
||||
"addressValidationError": "Please check your entries in the address fields." // Bitte überprüfen Sie Ihre Eingaben in den Adressfeldern.
|
||||
},
|
||||
"payment": {
|
||||
"successful": "Payment successful!", // Zahlung erfolgreich!
|
||||
"failed": "Payment failed", // Zahlung fehlgeschlagen
|
||||
"orderCompleted": "🎉 Your order was completed successfully! You can now view your orders.", // 🎉 Ihre Bestellung wurde erfolgreich abgeschlossen! Sie können jetzt Ihre Bestellungen einsehen.
|
||||
"orderProcessing": "Your payment was processed successfully. The order will be completed automatically.", // Ihre Zahlung wurde erfolgreich verarbeitet. Die Bestellung wird automatisch abgeschlossen.
|
||||
"paymentError": "Your payment could not be processed. Please try again or choose another payment method.", // Ihre Zahlung konnte nicht verarbeitet werden. Bitte versuchen Sie es erneut oder wählen Sie eine andere Zahlungsmethode.
|
||||
"viewOrders": "View my orders" // Zu meinen Bestellungen
|
||||
},
|
||||
"filters": {
|
||||
"sorting": "Sorting", // Sortierung
|
||||
"perPage": "per page", // pro Seite
|
||||
"availability": "Availability", // Verfügbarkeit
|
||||
"manufacturer": "Manufacturer", // Hersteller
|
||||
"all": "All" // Alle
|
||||
},
|
||||
"tax": {
|
||||
"vat": "Value added tax", // Mehrwertsteuer
|
||||
"vat7": "7% value added tax", // 7% Mehrwertsteuer
|
||||
"vat19": "19% value added tax", // 19% Mehrwertsteuer
|
||||
"vat19WithShipping": "19% value added tax (incl. shipping)", // 19% Mehrwertsteuer (inkl. Versand)
|
||||
"totalNet": "Total net price", // Gesamtnettopreis
|
||||
"totalGross": "Total gross price excluding shipping", // Gesamtbruttopreis ohne Versand
|
||||
"subtotal": "Subtotal", // Zwischensumme
|
||||
"incl7Vat": "incl. 7% VAT", // inkl. 7% MwSt.
|
||||
"inclVatWithFooter": "(incl. {{vat}}% VAT,*)", // (incl. {{vat}}% USt.,*)
|
||||
"inclVatAmount": "incl. {{amount}} € VAT ({{rate}}%)" // nkl. {{amount}} € MwSt. ({{rate}}%)
|
||||
},
|
||||
"footer": {
|
||||
"hours": "Sat 11-19", // Sa 11-19
|
||||
"address": "Trachenberger Straße 14 - Dresden", // Trachenberger Straße 14 - Dresden
|
||||
"location": "Between Pieschen stop and Trachenberger Platz", // Zwischen Haltepunkt Pieschen und Trachenberger Platz
|
||||
"allPricesIncl": "* All prices incl. statutory VAT, plus shipping", // * Alle Preise inkl. gesetzlicher USt., zzgl. Versand
|
||||
"copyright": "© {{year}} GrowHeads.de", // © {{year}} GrowHeads.de
|
||||
"legal": {
|
||||
"datenschutz": "Privacy", // Datenschutz
|
||||
"agb": "Terms & Conditions", // AGB
|
||||
"sitemap": "Sitemap", // Sitemap
|
||||
"impressum": "Imprint", // Impressum
|
||||
"batteriegesetzhinweise": "Battery law notes", // Batteriegesetzhinweise
|
||||
"widerrufsrecht": "Right of withdrawal" // Widerrufsrecht
|
||||
}
|
||||
},
|
||||
"titles": {
|
||||
"home": "Fine Cannabis Seeds & Cuttings", // Fine Cannabis Seeds & Cuttings (the text in the string has special characters, translate using the comment)
|
||||
"aktionen": "Current Promotions & Offers", // Aktuelle Aktionen & Angebote (the text in the string has special characters, translate using the comment)
|
||||
"filiale": "Our Branch in Dresden" // Unsere Filiale in Dresden (the text in the string has special characters, translate using the comment)
|
||||
},
|
||||
"sections": {
|
||||
"seeds": "Seeds", // Seeds
|
||||
"stecklinge": "Cuttings", // Stecklinge
|
||||
"oilPress": "Borrow oil press", // Ölpresse ausleihen
|
||||
"thcTest": "THC test", // THC Test
|
||||
"address1": "Trachenberger Straße 14", // Trachenberger Straße 14
|
||||
"address2": "01129 Dresden" // 01129 Dresden
|
||||
},
|
||||
"pages": {
|
||||
"oilPress": {
|
||||
"title": "Borrow oil press", // Ölpresse ausleihen
|
||||
"comingSoon": "Content coming soon..." // Inhalt kommt bald...
|
||||
},
|
||||
"thcTest": {
|
||||
"title": "THC test", // THC Test
|
||||
"comingSoon": "Content coming soon..." // Inhalt kommt bald...
|
||||
}
|
||||
},
|
||||
"orders": {
|
||||
"status": {
|
||||
"new": "Processing", // in Bearbeitung
|
||||
"pending": "New", // Neu
|
||||
"processing": "Processing", // in Bearbeitung
|
||||
"cancelled": "Cancelled", // Storniert
|
||||
"shipped": "Shipped", // Verschickt
|
||||
"delivered": "Delivered", // Geliefert
|
||||
"return": "Return", // Retoure
|
||||
"partialReturn": "Partial return", // Teil Retoure
|
||||
"partialDelivered": "Partially delivered" // Teil geliefert
|
||||
},
|
||||
"table": {
|
||||
"orderNumber": "Order number", // Bestellnummer
|
||||
"date": "Date", // Datum
|
||||
"status": "Status", // Status
|
||||
"items": "Items", // Artikel
|
||||
"total": "Total", // Summe
|
||||
"actions": "Actions", // Aktionen
|
||||
"viewDetails": "View details" // Details anzeigen
|
||||
},
|
||||
"noOrders": "You have not placed any orders yet." // Sie haben noch keine Bestellungen aufgegeben.
|
||||
},
|
||||
"settings": {
|
||||
"changePassword": "Change password", // Passwort ändern
|
||||
"currentPassword": "Current password", // Aktuelles Passwort
|
||||
"newPassword": "New password", // Neues Passwort
|
||||
"confirmNewPassword": "Confirm new password", // Neues Passwort bestätigen
|
||||
"updatePassword": "Update password", // Passwort aktualisieren
|
||||
"changeEmail": "Change email address", // E-Mail-Adresse ändern
|
||||
"password": "Password", // Passwort
|
||||
"newEmail": "New email address", // Neue E-Mail-Adresse
|
||||
"updateEmail": "Update email", // E-Mail aktualisieren
|
||||
"apiKey": "API key", // API-Schlüssel
|
||||
"apiKeyDescription": "Use your API key for integration with external applications.", // Verwenden Sie Ihren API-Schlüssel für die Integration mit externen Anwendungen.
|
||||
"apiDocumentation": "API documentation:", // API-Dokumentation:
|
||||
"copyToClipboard": "Copy to clipboard", // In Zwischenablage kopieren
|
||||
"generate": "Generate", // Generieren
|
||||
"regenerate": "Regenerate", // Regenerieren
|
||||
"apiKeyCopied": "API key copied to clipboard", // API-Schlüssel in Zwischenablage kopiert
|
||||
"errors": {
|
||||
"fillAllFields": "Please fill in all fields", // Bitte füllen Sie alle Felder aus
|
||||
"passwordsNotMatch": "The new passwords do not match", // Die neuen Passwörter stimmen nicht überein
|
||||
"passwordTooShort": "The new password must be at least 8 characters long", // Das neue Passwort muss mindestens 8 Zeichen lang sein
|
||||
"passwordUpdateError": "Error updating password", // Fehler beim Aktualisieren des Passworts
|
||||
"invalidEmail": "Please enter a valid email address", // Bitte geben Sie eine gültige E-Mail-Adresse ein
|
||||
"emailUpdateError": "Error updating email address", // Fehler beim Aktualisieren der E-Mail-Adresse
|
||||
"userNotFound": "User not found", // Benutzer nicht gefunden
|
||||
"apiKeyGenerationError": "Error generating API key" // Fehler beim Generieren des API-Schlüssels
|
||||
},
|
||||
"success": {
|
||||
"passwordUpdated": "Password updated successfully", // Passwort erfolgreich aktualisiert
|
||||
"emailUpdated": "Email address updated successfully", // E-Mail-Adresse erfolgreich aktualisiert
|
||||
"apiKeyGenerated": "API key generated successfully", // API-Schlüssel erfolgreich generiert
|
||||
"apiKeyWarning": "Store this key securely. For security reasons, it will be hidden in 10 seconds." // Speichern Sie diesen Schlüssel sicher. Er wird aus Sicherheitsgründen in 10 Sekunden ausgeblendet.
|
||||
}
|
||||
}
|
||||
}
|
||||
import translations from './index.js';
|
||||
|
||||
export default translations;
|
||||
Reference in New Issue
Block a user