trasnlsater
This commit is contained in:
@@ -66,6 +66,7 @@ class PrerenderKonfigurator extends Component {
|
||||
15%
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
{/* Note: This is a prerender file - translation key would be: product.discount.from3Products */}
|
||||
ab 3 Produkten
|
||||
</Typography>
|
||||
</Box>
|
||||
@@ -74,6 +75,7 @@ class PrerenderKonfigurator extends Component {
|
||||
24%
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
{/* Note: This is a prerender file - translation key would be: product.discount.from5Products */}
|
||||
ab 5 Produkten
|
||||
</Typography>
|
||||
</Box>
|
||||
@@ -82,11 +84,13 @@ class PrerenderKonfigurator extends Component {
|
||||
36%
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
{/* Note: This is a prerender file - translation key would be: product.discount.from7Products */}
|
||||
ab 7 Produkten
|
||||
</Typography>
|
||||
</Box>
|
||||
</Box>
|
||||
<Typography variant="caption" sx={{ color: '#666', mt: 1, display: 'block' }}>
|
||||
{/* Note: This is a prerender file - translation key would be: product.discount.moreProductsMoreSavings */}
|
||||
Je mehr Produkte du auswählst, desto mehr sparst du!
|
||||
</Typography>
|
||||
</Paper>
|
||||
|
||||
@@ -64,7 +64,7 @@ class CartDropdown extends Component {
|
||||
<>
|
||||
<Box sx={{ bgcolor: 'primary.main', color: 'white', p: 2 }}>
|
||||
<Typography variant="h6">
|
||||
{cartItems.length} {cartItems.length === 1 ? 'Produkt' : 'Produkte'}
|
||||
{cartItems.length} {cartItems.length === 1 ? (this.props.t ? this.props.t('cart.itemCount.singular') : 'Produkt') : (this.props.t ? this.props.t('cart.itemCount.plural') : 'Produkte')}
|
||||
</Typography>
|
||||
</Box>
|
||||
|
||||
@@ -84,7 +84,7 @@ class CartDropdown extends Component {
|
||||
{/* Display total weight if greater than 0 */}
|
||||
{totalWeight > 0 && (
|
||||
<Typography variant="subtitle2" sx={{ px: 2, mb: 1 }}>
|
||||
Gesamtgewicht: {totalWeight.toFixed(2)} kg
|
||||
{this.props.t ? this.props.t('cart.summary.totalWeight', { weight: totalWeight.toFixed(2) }) : `Gesamtgewicht: ${totalWeight.toFixed(2)} kg`}
|
||||
</Typography>
|
||||
)}
|
||||
|
||||
@@ -95,7 +95,7 @@ class CartDropdown extends Component {
|
||||
// Detailed summary with shipping costs
|
||||
<>
|
||||
<Typography variant="h6" gutterBottom sx={{ mt: 2 }}>
|
||||
Bestellübersicht
|
||||
{this.props.t ? this.props.t('cart.summary.title') : 'Bestellübersicht'}
|
||||
</Typography>
|
||||
{deliveryMethod && (
|
||||
<Typography variant="body2" sx={{ mb: 1, color: 'text.secondary' }}>
|
||||
@@ -105,14 +105,14 @@ class CartDropdown extends Component {
|
||||
<Table size="small">
|
||||
<TableBody>
|
||||
<TableRow>
|
||||
<TableCell>Waren (netto):</TableCell>
|
||||
<TableCell>{this.props.t ? this.props.t('cart.summary.goodsNet') : 'Waren (netto):'}</TableCell>
|
||||
<TableCell align="right">
|
||||
{currencyFormatter.format(priceCalculations.totalNet)}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
{deliveryCost > 0 && (
|
||||
<TableRow>
|
||||
<TableCell>Versandkosten (netto):</TableCell>
|
||||
<TableCell>{this.props.t ? this.props.t('cart.summary.shippingNet') : 'Versandkosten (netto):'}</TableCell>
|
||||
<TableCell align="right">
|
||||
{currencyFormatter.format(shippingNetPrice)}
|
||||
</TableCell>
|
||||
@@ -135,30 +135,30 @@ class CartDropdown extends Component {
|
||||
</TableRow>
|
||||
)}
|
||||
<TableRow>
|
||||
<TableCell sx={{ fontWeight: 'bold' }}>Gesamtsumme Waren:</TableCell>
|
||||
<TableCell sx={{ fontWeight: 'bold' }}>{this.props.t ? this.props.t('cart.summary.totalGoods') : 'Gesamtsumme Waren:'}</TableCell>
|
||||
<TableCell align="right" sx={{ fontWeight: 'bold' }}>
|
||||
{currencyFormatter.format(priceCalculations.totalGross)}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
<TableRow>
|
||||
<TableCell sx={{ fontWeight: 'bold' }}>
|
||||
Versandkosten:
|
||||
{this.props.t ? this.props.t('cart.summary.shippingCosts') : 'Versandkosten:'}
|
||||
{deliveryCost === 0 && priceCalculations.totalGross < 100 && (
|
||||
<span style={{ color: '#2e7d32', fontSize: '0.8em', marginLeft: '4px' }}>
|
||||
(kostenlos ab 100€)
|
||||
{this.props.t ? this.props.t('cart.summary.freeFrom100') : '(kostenlos ab 100€)'}
|
||||
</span>
|
||||
)}
|
||||
</TableCell>
|
||||
<TableCell align="right" sx={{ fontWeight: 'bold' }}>
|
||||
{deliveryCost === 0 ? (
|
||||
<span style={{ color: '#2e7d32' }}>kostenlos</span>
|
||||
<span style={{ color: '#2e7d32' }}>{this.props.t ? this.props.t('cart.summary.free') : 'kostenlos'}</span>
|
||||
) : (
|
||||
currencyFormatter.format(deliveryCost)
|
||||
)}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
<TableRow sx={{ borderTop: '1px solid #e0e0e0' }}>
|
||||
<TableCell sx={{ fontWeight: 'bold', pt: 2 }}>Gesamtsumme:</TableCell>
|
||||
<TableCell sx={{ fontWeight: 'bold', pt: 2 }}>{this.props.t ? this.props.t('cart.summary.total') : 'Gesamtsumme:'}</TableCell>
|
||||
<TableCell align="right" sx={{ fontWeight: 'bold', pt: 2 }}>
|
||||
{currencyFormatter.format(totalGross)}
|
||||
</TableCell>
|
||||
|
||||
@@ -201,14 +201,14 @@ class ProductList extends Component {
|
||||
|
||||
if (!isFiltered) {
|
||||
// No filters applied
|
||||
if (filteredCount === 0) return "0 Produkte";
|
||||
if (filteredCount === 1) return "1 Produkt";
|
||||
return `${filteredCount} Produkte`;
|
||||
if (filteredCount === 0) return this.props.t ? this.props.t('product.countDisplay.noProducts') : "0 Produkte";
|
||||
if (filteredCount === 1) return this.props.t ? this.props.t('product.countDisplay.oneProduct') : "1 Produkt";
|
||||
return this.props.t ? this.props.t('product.countDisplay.multipleProducts', { count: filteredCount }) : `${filteredCount} Produkte`;
|
||||
} else {
|
||||
// Filters applied
|
||||
if (totalCount === 0) return "0 Produkte";
|
||||
if (totalCount === 1) return `${filteredCount} von 1 Produkt`;
|
||||
return `${filteredCount} von ${totalCount} Produkten`;
|
||||
if (totalCount === 0) return this.props.t ? this.props.t('product.countDisplay.noProducts') : "0 Produkte";
|
||||
if (totalCount === 1) return this.props.t ? this.props.t('product.countDisplay.filteredOneProduct', { filtered: filteredCount }) : `${filteredCount} von 1 Produkt`;
|
||||
return this.props.t ? this.props.t('product.countDisplay.filteredProducts', { filtered: filteredCount, total: totalCount }) : `${filteredCount} von ${totalCount} Produkten`;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -3,8 +3,9 @@ import Box from '@mui/material/Box';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import Radio from '@mui/material/Radio';
|
||||
import Checkbox from '@mui/material/Checkbox';
|
||||
import { withI18n } from '../../i18n/withTranslation.js';
|
||||
|
||||
const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartItems = [] }) => {
|
||||
const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartItems = [], t }) => {
|
||||
// Calculate cart value for free shipping threshold
|
||||
const cartValue = cartItems.reduce((total, item) => total + item.price * item.quantity, 0);
|
||||
const isFreeShipping = cartValue >= 100;
|
||||
@@ -14,30 +15,30 @@ const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartIt
|
||||
{
|
||||
id: 'DHL',
|
||||
name: 'DHL',
|
||||
description: isPickupOnly ? "nicht auswählbar weil ein oder mehrere Artikel nur abgeholt werden können" :
|
||||
isFreeShipping ? 'Standardversand - KOSTENLOS ab 100€ Warenwert!' : 'Standardversand',
|
||||
price: isFreeShipping ? 'kostenlos' : '6,99 €',
|
||||
description: isPickupOnly ? (t ? t('delivery.descriptions.notAvailable') : "nicht auswählbar weil ein oder mehrere Artikel nur abgeholt werden können") :
|
||||
isFreeShipping ? (t ? t('delivery.descriptions.standardFree') : 'Standardversand - KOSTENLOS ab 100€ Warenwert!') : (t ? t('delivery.descriptions.standard') : 'Standardversand'),
|
||||
price: isFreeShipping ? (t ? t('delivery.prices.free') : 'kostenlos') : (t ? t('delivery.prices.dhl') : '6,99 €'),
|
||||
disabled: isPickupOnly
|
||||
},
|
||||
{
|
||||
id: 'DPD',
|
||||
name: 'DPD',
|
||||
description: isPickupOnly ? "nicht auswählbar weil ein oder mehrere Artikel nur abgeholt werden können" :
|
||||
isFreeShipping ? 'Standardversand - KOSTENLOS ab 100€ Warenwert!' : 'Standardversand',
|
||||
price: isFreeShipping ? 'kostenlos' : '4,90 €',
|
||||
description: isPickupOnly ? (t ? t('delivery.descriptions.notAvailable') : "nicht auswählbar weil ein oder mehrere Artikel nur abgeholt werden können") :
|
||||
isFreeShipping ? (t ? t('delivery.descriptions.standardFree') : 'Standardversand - KOSTENLOS ab 100€ Warenwert!') : (t ? t('delivery.descriptions.standard') : 'Standardversand'),
|
||||
price: isFreeShipping ? (t ? t('delivery.prices.free') : 'kostenlos') : (t ? t('delivery.prices.dpd') : '4,90 €'),
|
||||
disabled: isPickupOnly
|
||||
},
|
||||
{
|
||||
id: 'Sperrgut',
|
||||
name: 'Sperrgut',
|
||||
description: 'Für große und schwere Artikel',
|
||||
price: '28,99 €',
|
||||
description: t ? t('delivery.descriptions.bulky') : 'Für große und schwere Artikel',
|
||||
price: t ? t('delivery.prices.sperrgut') : '28,99 €',
|
||||
disabled: true,
|
||||
isCheckbox: true
|
||||
},
|
||||
{
|
||||
id: 'Abholung',
|
||||
name: 'Abholung in der Filiale',
|
||||
name: t ? t('delivery.methods.pickup') : 'Abholung in der Filiale',
|
||||
description: '',
|
||||
price: ''
|
||||
}
|
||||
@@ -46,7 +47,7 @@ const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartIt
|
||||
return (
|
||||
<>
|
||||
<Typography variant="h6" gutterBottom>
|
||||
Versandart wählen
|
||||
{t ? t('delivery.selector.title') : 'Versandart wählen'}
|
||||
</Typography>
|
||||
|
||||
<Box sx={{ mb: 3 }}>
|
||||
@@ -132,10 +133,10 @@ const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartIt
|
||||
border: '1px solid #2196f3'
|
||||
}}>
|
||||
<Typography variant="body2" color="primary" sx={{ fontWeight: 'medium' }}>
|
||||
💡 Versandkostenfrei ab 100€ Warenwert!
|
||||
{t ? t('delivery.selector.freeShippingInfo') : '💡 Versandkostenfrei ab 100€ Warenwert!'}
|
||||
</Typography>
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
Noch {remainingForFreeShipping.toFixed(2).replace('.', ',')}€ für kostenlosen Versand hinzufügen.
|
||||
{t ? t('delivery.selector.remainingForFree', { amount: remainingForFreeShipping.toFixed(2).replace('.', ',') }) : `Noch ${remainingForFreeShipping.toFixed(2).replace('.', ',')}€ für kostenlosen Versand hinzufügen.`}
|
||||
</Typography>
|
||||
</Box>
|
||||
)}
|
||||
@@ -149,10 +150,10 @@ const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartIt
|
||||
border: '1px solid #2e7d32'
|
||||
}}>
|
||||
<Typography variant="body2" color="success.main" sx={{ fontWeight: 'medium' }}>
|
||||
🎉 Glückwunsch! Sie erhalten kostenlosen Versand!
|
||||
{t ? t('delivery.selector.congratsFreeShipping') : '🎉 Glückwunsch! Sie erhalten kostenlosen Versand!'}
|
||||
</Typography>
|
||||
<Typography variant="body2" color="text.secondary">
|
||||
Ihr Warenkorb von {cartValue.toFixed(2).replace('.', ',')}€ qualifiziert sich für kostenlosen Versand.
|
||||
{t ? t('delivery.selector.cartQualifiesFree', { amount: cartValue.toFixed(2).replace('.', ',') }) : `Ihr Warenkorb von ${cartValue.toFixed(2).replace('.', ',')}€ qualifiziert sich für kostenlosen Versand.`}
|
||||
</Typography>
|
||||
</Box>
|
||||
)}
|
||||
@@ -161,4 +162,4 @@ const DeliveryMethodSelector = ({ deliveryMethod, onChange, isPickupOnly, cartIt
|
||||
);
|
||||
};
|
||||
|
||||
export default DeliveryMethodSelector;
|
||||
export default withI18n()(DeliveryMethodSelector);
|
||||
@@ -148,7 +148,7 @@ const OrderDetailsDialog = ({ open, onClose, order }) => {
|
||||
<TableRow>
|
||||
<TableCell colSpan={2} />
|
||||
<TableCell align="right">
|
||||
<Typography fontWeight="bold">Gesamtsumme</Typography>
|
||||
<Typography fontWeight="bold">{this.props.t ? this.props.t('cart.summary.total') : 'Gesamtsumme'}</Typography>
|
||||
</TableCell>
|
||||
<TableCell align="right">
|
||||
<Typography fontWeight="bold">{currencyFormatter.format(total)}</Typography>
|
||||
|
||||
@@ -44,20 +44,20 @@ const OrderSummary = ({ deliveryCost, cartItems = [] }) => {
|
||||
return (
|
||||
<Box sx={{ my: 3, p: 2, bgcolor: '#f5f5f5', borderRadius: 1 }}>
|
||||
<Typography variant="h6" gutterBottom>
|
||||
Bestellübersicht
|
||||
{t ? t('cart.summary.title') : 'Bestellübersicht'}
|
||||
</Typography>
|
||||
|
||||
<Table size="small">
|
||||
<TableBody>
|
||||
<TableRow>
|
||||
<TableCell>Waren (netto):</TableCell>
|
||||
<TableCell>{t ? t('cart.summary.goodsNet') : 'Waren (netto):'}</TableCell>
|
||||
<TableCell align="right">
|
||||
{currencyFormatter.format(cartVatCalculations.totalNet)}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
{deliveryCost > 0 && (
|
||||
<TableRow>
|
||||
<TableCell>Versandkosten (netto):</TableCell>
|
||||
<TableCell>{t ? t('cart.summary.shippingNet') : 'Versandkosten (netto):'}</TableCell>
|
||||
<TableCell align="right">
|
||||
{currencyFormatter.format(shippingNetPrice)}
|
||||
</TableCell>
|
||||
@@ -80,30 +80,30 @@ const OrderSummary = ({ deliveryCost, cartItems = [] }) => {
|
||||
</TableRow>
|
||||
)}
|
||||
<TableRow>
|
||||
<TableCell sx={{ fontWeight: 'bold' }}>Gesamtsumme Waren:</TableCell>
|
||||
<TableCell sx={{ fontWeight: 'bold' }}>{t ? t('cart.summary.totalGoods') : 'Gesamtsumme Waren:'}</TableCell>
|
||||
<TableCell align="right" sx={{ fontWeight: 'bold' }}>
|
||||
{currencyFormatter.format(cartVatCalculations.totalGross)}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
<TableRow>
|
||||
<TableCell sx={{ fontWeight: 'bold' }}>
|
||||
Versandkosten:
|
||||
{t ? t('cart.summary.shippingCosts') : 'Versandkosten:'}
|
||||
{deliveryCost === 0 && cartVatCalculations.totalGross < 100 && (
|
||||
<span style={{ color: '#2e7d32', fontSize: '0.8em', marginLeft: '4px' }}>
|
||||
(kostenlos ab 100€)
|
||||
{t ? t('cart.summary.freeFrom100') : '(kostenlos ab 100€)'}
|
||||
</span>
|
||||
)}
|
||||
</TableCell>
|
||||
<TableCell align="right" sx={{ fontWeight: 'bold' }}>
|
||||
{deliveryCost === 0 ? (
|
||||
<span style={{ color: '#2e7d32' }}>kostenlos</span>
|
||||
<span style={{ color: '#2e7d32' }}>{t ? t('cart.summary.free') : 'kostenlos'}</span>
|
||||
) : (
|
||||
currencyFormatter.format(deliveryCost)
|
||||
)}
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
<TableRow sx={{ borderTop: '1px solid #e0e0e0' }}>
|
||||
<TableCell sx={{ fontWeight: 'bold', pt: 2 }}>Gesamtsumme:</TableCell>
|
||||
<TableCell sx={{ fontWeight: 'bold', pt: 2 }}>{t ? t('cart.summary.total') : 'Gesamtsumme:'}</TableCell>
|
||||
<TableCell align="right" sx={{ fontWeight: 'bold', pt: 2 }}>
|
||||
{currencyFormatter.format(totalGross)}
|
||||
</TableCell>
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
export default {
|
||||
"login": "Вход", // Anmelden
|
||||
"register": "Регистрация", // Registrieren
|
||||
"logout": "Изход", // Abmelden
|
||||
"profile": "Профил", // Profil
|
||||
"email": "Имейл", // E-Mail
|
||||
"password": "Парола", // Passwort
|
||||
"confirmPassword": "Потвърдете паролата", // Passwort bestätigen
|
||||
"forgotPassword": "Забравена парола?", // Passwort vergessen?
|
||||
"loginWithGoogle": "Вход с Google", // Mit Google anmelden
|
||||
"or": "ИЛИ", // ODER
|
||||
"privacyAccept": "С натискането на „Вход с Google“ приемам", // Mit dem Click auf "Mit Google anmelden" akzeptiere ich die
|
||||
"privacyPolicy": "Политиката за поверителност", // Datenschutzbestimmungen
|
||||
"passwordMinLength": "Паролата трябва да е поне 8 символа", // Das Passwort muss mindestens 8 Zeichen lang sein
|
||||
"newPasswordMinLength": "Новата парола трябва да е поне 8 символа", // Das neue Passwort muss mindestens 8 Zeichen lang sein
|
||||
"login": "Вход",
|
||||
"register": "Регистрация",
|
||||
"logout": "Изход",
|
||||
"profile": "Профил",
|
||||
"email": "Имейл",
|
||||
"password": "Парола",
|
||||
"confirmPassword": "Потвърдете паролата",
|
||||
"forgotPassword": "Забравена парола?",
|
||||
"loginWithGoogle": "Вход с Google",
|
||||
"or": "ИЛИ",
|
||||
"privacyAccept": "С натискане на \"Вход с Google\" приемам",
|
||||
"privacyPolicy": "Политиката за поверителност",
|
||||
"passwordMinLength": "Паролата трябва да е поне 8 символа",
|
||||
"newPasswordMinLength": "Новата парола трябва да е поне 8 символа",
|
||||
"menu": {
|
||||
"profile": "Профил", // Profil
|
||||
"myProfile": "Моят профил", // Mein Profil
|
||||
"checkout": "Плащане", // Bestellabschluss
|
||||
"orders": "Поръчки", // Bestellungen
|
||||
"settings": "Настройки", // Einstellungen
|
||||
"adminDashboard": "Админ панел", // Admin Dashboard
|
||||
"adminUsers": "Админ потребители" // Admin Users
|
||||
"profile": "Профил",
|
||||
"myProfile": "Моят профил",
|
||||
"checkout": "Плащане",
|
||||
"orders": "Поръчки",
|
||||
"settings": "Настройки",
|
||||
"adminDashboard": "Админ табло",
|
||||
"adminUsers": "Админ потребители"
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,24 +1,39 @@
|
||||
export default {
|
||||
"title": "Количка", // Warenkorb
|
||||
"empty": "празна", // leer
|
||||
"addToCart": "Добави в количката", // In den Korb
|
||||
"preorderCutting": "Предварителна поръчка като резник", // Als Steckling vorbestellen
|
||||
"continueShopping": "Продължи пазаруването", // Weiter einkaufen
|
||||
"proceedToCheckout": "Продължи към плащане", // Weiter zur Kasse
|
||||
"productCount": "{{count}} {{count, plural, one {продукт} other {продукта}}}", // {{count}} {{count, plural, one {Produkt} other {Produkte}}}
|
||||
"productSingular": "продукт", // Produkt
|
||||
"productPlural": "продукта", // Produkte
|
||||
"removeFromCart": "Премахни от количката", // Aus dem Warenkorb entfernen
|
||||
"openCart": "Отвори количката", // Warenkorb öffnen
|
||||
"availableFrom": "Наличен от {{date}}", // Ab {{date}}
|
||||
"backToOrder": "← Обратно към поръчката", // ← Zurück zur Bestellung
|
||||
"title": "Количка",
|
||||
"empty": "празна",
|
||||
"addToCart": "Добави в количката",
|
||||
"preorderCutting": "Предварителна поръчка като резник",
|
||||
"continueShopping": "Продължи пазаруването",
|
||||
"proceedToCheckout": "Продължи към плащане",
|
||||
"productCount": "{{count}} {{count, plural, one {продукт} other {продукта}}}",
|
||||
"productSingular": "продукт",
|
||||
"productPlural": "продукта",
|
||||
"removeFromCart": "Премахни от количката",
|
||||
"openCart": "Отвори количката",
|
||||
"availableFrom": "Наличен от {{date}}",
|
||||
"backToOrder": "← Обратно към поръчката",
|
||||
"summary": {
|
||||
"title": "Обобщение на поръчката",
|
||||
"goodsNet": "Стоки (нето):",
|
||||
"shippingNet": "Доставка (нето):",
|
||||
"totalGoods": "Общо стоки:",
|
||||
"shippingCosts": "Разходи за доставка:",
|
||||
"total": "Общо:",
|
||||
"totalWeight": "Общо тегло: {{weight}} кг",
|
||||
"freeFrom100": "(безплатно над 100€)",
|
||||
"free": "безплатно"
|
||||
},
|
||||
"itemCount": {
|
||||
"singular": "продукт",
|
||||
"plural": "продукта"
|
||||
},
|
||||
"sync": {
|
||||
"title": "Синхронизация на количката", // Warenkorb-Synchronisierung
|
||||
"description": "Имате запазена количка във вашия акаунт. Моля, изберете как искате да продължите:", // Sie haben einen gespeicherten Warenkorb in ihrem Account. Bitte wählen Sie, wie Sie verfahren möchten:
|
||||
"deleteServer": "Изтрий количката на сървъра", // Server-Warenkorb löschen
|
||||
"useServer": "Използвай количката от сървъра", // Server-Warenkorb übernehmen
|
||||
"merge": "Обедини количките", // Warenkörbe zusammenführen
|
||||
"currentCart": "Вашата текуща количка", // Ihr aktueller Warenkorb
|
||||
"serverCart": "Количка, запазена във вашия профил" // In Ihrem Profil gespeicherter Warenkorb
|
||||
"title": "Синхронизация на количката",
|
||||
"description": "Имате запазена количка в профила си. Моля, изберете как искате да продължите:",
|
||||
"deleteServer": "Изтрий количката на сървъра",
|
||||
"useServer": "Използвай количката от сървъра",
|
||||
"merge": "Обедини количките",
|
||||
"currentCart": "Вашата текуща количка",
|
||||
"serverCart": "Количка, запазена във вашия профил"
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
export default {
|
||||
"code": "bg-BG" // de-DE
|
||||
"code": "bg-BG"
|
||||
};
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
export default {
|
||||
"home": "Начало", // Startseite
|
||||
"aktionen": "Промоции", // Aktionen
|
||||
"filiale": "Клон", // Filiale
|
||||
"categories": "Категории", // Kategorien
|
||||
"categoriesOpen": "Отвори категории", // Kategorien öffnen
|
||||
"categoriesClose": "Затвори категории", // Kategorien schließen
|
||||
"otherCategories": "Други категории" // Andere Kategorien
|
||||
"home": "Начало",
|
||||
"aktionen": "Промоции",
|
||||
"filiale": "Клон",
|
||||
"categories": "Категории",
|
||||
"categoriesOpen": "Отвори категории",
|
||||
"categoriesClose": "Затвори категории",
|
||||
"otherCategories": "Други категории"
|
||||
};
|
||||
|
||||
@@ -12,6 +12,21 @@ export default {
|
||||
"openCart": "Warenkorb öffnen",
|
||||
"availableFrom": "Ab {{date}}",
|
||||
"backToOrder": "← Zurück zur Bestellung",
|
||||
"summary": {
|
||||
"title": "Bestellübersicht",
|
||||
"goodsNet": "Waren (netto):",
|
||||
"shippingNet": "Versandkosten (netto):",
|
||||
"totalGoods": "Gesamtsumme Waren:",
|
||||
"shippingCosts": "Versandkosten:",
|
||||
"total": "Gesamtsumme:",
|
||||
"totalWeight": "Gesamtgewicht: {{weight}} kg",
|
||||
"freeFrom100": "(kostenlos ab 100€)",
|
||||
"free": "kostenlos"
|
||||
},
|
||||
"itemCount": {
|
||||
"singular": "Produkt",
|
||||
"plural": "Produkte"
|
||||
},
|
||||
"sync": {
|
||||
"title": "Warenkorb-Synchronisierung",
|
||||
"description": "Sie haben einen gespeicherten Warenkorb in ihrem Account. Bitte wählen Sie, wie Sie verfahren möchten:",
|
||||
|
||||
@@ -23,5 +23,12 @@ export default {
|
||||
"cutting14Days": "Lieferzeit: 14 Tage",
|
||||
"standard2to3Days": "Lieferzeit: 2-3 Tage",
|
||||
"supplier7to9Days": "Lieferzeit: 7-9 Tage"
|
||||
},
|
||||
"selector": {
|
||||
"title": "Versandart wählen",
|
||||
"freeShippingInfo": "💡 Versandkostenfrei ab 100€ Warenwert!",
|
||||
"remainingForFree": "Noch {{amount}}€ für kostenlosen Versand hinzufügen.",
|
||||
"congratsFreeShipping": "🎉 Glückwunsch! Sie erhalten kostenlosen Versand!",
|
||||
"cartQualifiesFree": "Ihr Warenkorb von {{amount}}€ qualifiziert sich für kostenlosen Versand."
|
||||
}
|
||||
};
|
||||
@@ -28,5 +28,11 @@ export default {
|
||||
},
|
||||
"removeFiltersToSee": "Entferne Filter um Produkte zu sehen",
|
||||
"outOfStock": "Out of Stock",
|
||||
"fromXProducts": "ab {{count}} Produkten"
|
||||
"fromXProducts": "ab {{count}} Produkten",
|
||||
"discount": {
|
||||
"from3Products": "ab 3 Produkten",
|
||||
"from5Products": "ab 5 Produkten",
|
||||
"from7Products": "ab 7 Produkten",
|
||||
"moreProductsMoreSavings": "Je mehr Produkte du auswählst, desto mehr sparst du!"
|
||||
}
|
||||
};
|
||||
@@ -12,6 +12,21 @@ export default {
|
||||
"openCart": "Open cart", // Warenkorb öffnen
|
||||
"availableFrom": "Available from {{date}}", // Ab {{date}}
|
||||
"backToOrder": "← Back to order", // ← Zurück zur Bestellung
|
||||
"summary": {
|
||||
"title": "Order summary", // Bestellübersicht
|
||||
"goodsNet": "Goods (net):", // Waren (netto):
|
||||
"shippingNet": "Shipping (net):", // Versandkosten (netto):
|
||||
"totalGoods": "Total goods:", // Gesamtsumme Waren:
|
||||
"shippingCosts": "Shipping costs:", // Versandkosten:
|
||||
"total": "Total:", // Gesamtsumme:
|
||||
"totalWeight": "Total weight: {{weight}} kg", // Gesamtgewicht: {{weight}} kg
|
||||
"freeFrom100": "(free from €100)", // (kostenlos ab 100€)
|
||||
"free": "free" // kostenlos
|
||||
},
|
||||
"itemCount": {
|
||||
"singular": "product", // Produkt
|
||||
"plural": "products" // Produkte
|
||||
},
|
||||
"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:
|
||||
|
||||
@@ -7,21 +7,28 @@ export default {
|
||||
},
|
||||
"descriptions": {
|
||||
"standard": "Standard shipping", // Standardversand
|
||||
"standardFree": "Standard shipping - FREE from 100€ order value!", // Standardversand - KOSTENLOS ab 100€ Warenwert!
|
||||
"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 €
|
||||
"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
|
||||
},
|
||||
"selector": {
|
||||
"title": "Choose shipping method", // Versandart wählen
|
||||
"freeShippingInfo": "💡 Free shipping from €100 order value!", // 💡 Versandkostenfrei ab 100€ Warenwert!
|
||||
"remainingForFree": "Add {{amount}}€ more for free shipping.", // Noch {{amount}}€ für kostenlosen Versand hinzufügen.
|
||||
"congratsFreeShipping": "🎉 Congratulations! You get free shipping!", // 🎉 Glückwunsch! Sie erhalten kostenlosen Versand!
|
||||
"cartQualifiesFree": "Your cart of {{amount}}€ qualifies for free shipping." // Ihr Warenkorb von {{amount}}€ qualifiziert sich für kostenlosen Versand.
|
||||
}
|
||||
};
|
||||
|
||||
@@ -3,5 +3,5 @@ export default {
|
||||
"perPage": "per page", // pro Seite
|
||||
"availability": "Availability", // Verfügbarkeit
|
||||
"manufacturer": "Manufacturer", // Hersteller
|
||||
"all": "All", // Alle
|
||||
"all": "All" // Alle
|
||||
};
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
export default {
|
||||
"oilPress": {
|
||||
"title": "Borrow oil press", // Ölpresse ausleihen
|
||||
"comingSoon": "Content coming soon...", // Inhalt kommt bald...
|
||||
"comingSoon": "Content coming soon..." // Inhalt kommt bald...
|
||||
},
|
||||
"thcTest": {
|
||||
"title": "THC test", // THC Test
|
||||
"comingSoon": "Content coming soon...", // Inhalt kommt bald...
|
||||
"comingSoon": "Content coming soon..." // Inhalt kommt bald...
|
||||
}
|
||||
};
|
||||
|
||||
@@ -4,5 +4,5 @@ export default {
|
||||
"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
|
||||
"viewOrders": "View my orders" // Zu meinen Bestellungen
|
||||
};
|
||||
|
||||
@@ -2,7 +2,7 @@ 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
|
||||
"backToHome": "Back to homepage", // Zurück zur Startseite
|
||||
"error": "Error", // Fehler
|
||||
"articleNumber": "Article number", // Artikelnummer
|
||||
"manufacturer": "Manufacturer", // Hersteller
|
||||
@@ -28,5 +28,11 @@ export default {
|
||||
},
|
||||
"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
|
||||
"fromXProducts": "from {{count}} products", // ab {{count}} Produkten
|
||||
"discount": {
|
||||
"from3Products": "from 3 products", // ab 3 Produkten
|
||||
"from5Products": "from 5 products", // ab 5 Produkten
|
||||
"from7Products": "from 7 products", // ab 7 Produkten
|
||||
"moreProductsMoreSavings": "The more products you select, the more you save!" // Je mehr Produkte du auswählst, desto mehr sparst du!
|
||||
}
|
||||
};
|
||||
|
||||
@@ -4,7 +4,7 @@ export default {
|
||||
"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
|
||||
"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.,*)
|
||||
|
||||
@@ -547,6 +547,7 @@ class GrowTentKonfigurator extends Component {
|
||||
15%
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
{/* Note: Translation key would be: product.discount.from3Products */}
|
||||
ab 3 Produkten
|
||||
</Typography>
|
||||
</Box>
|
||||
@@ -555,6 +556,7 @@ class GrowTentKonfigurator extends Component {
|
||||
24%
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
{/* Note: Translation key would be: product.discount.from5Products */}
|
||||
ab 5 Produkten
|
||||
</Typography>
|
||||
</Box>
|
||||
@@ -563,11 +565,13 @@ class GrowTentKonfigurator extends Component {
|
||||
36%
|
||||
</Typography>
|
||||
<Typography variant="body2">
|
||||
{/* Note: Translation key would be: product.discount.from7Products */}
|
||||
ab 7 Produkten
|
||||
</Typography>
|
||||
</Box>
|
||||
</Box>
|
||||
<Typography variant="caption" sx={{ color: '#666', mt: 1, display: 'block' }}>
|
||||
{/* Note: Translation key would be: product.discount.moreProductsMoreSavings */}
|
||||
Je mehr Produkte du auswählst, desto mehr sparst du!
|
||||
</Typography>
|
||||
</Paper>
|
||||
|
||||
Reference in New Issue
Block a user