mirror of
https://gitee.com/vant-contrib/vant.git
synced 2026-06-04 17:38:12 +08:00
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
export default {
|
||
name: 'Name',
|
||
tel: 'Telefon',
|
||
save: 'Speichern',
|
||
confirm: 'Bestätigen',
|
||
cancel: 'Abbrechen',
|
||
delete: 'Löschen',
|
||
loading: 'Laden...',
|
||
noCoupon: 'Keine Coupons',
|
||
nameEmpty: 'Bitte geben Sie den Name an',
|
||
confirmDelete: 'Sind Sie sicher, dass Sie löschen möchten?',
|
||
telInvalid: 'Ungültige Telefonnummer',
|
||
vanCalendar: {
|
||
end: 'Ende',
|
||
start: 'Start',
|
||
title: 'Kalender',
|
||
startEnd: 'Start/Ende',
|
||
weekdays: ['So', 'Mo', 'Di', 'Mo', 'Do', 'Fr', 'Sa'],
|
||
monthTitle: (year: number, month: number) => `${year}/${month}`,
|
||
rangePrompt: (maxRange: number) => `Wähle nicht mehr als ${maxRange} Tage`,
|
||
},
|
||
vanCascader: {
|
||
select: 'Wählen',
|
||
},
|
||
vanContactCard: {
|
||
addText: 'Kontaktinformationen hinzufügen',
|
||
},
|
||
vanContactList: {
|
||
addText: 'Neuen Kontakt hinzufügen',
|
||
},
|
||
vanPagination: {
|
||
prev: 'Vorherige',
|
||
next: 'Nächste',
|
||
},
|
||
vanPullRefresh: {
|
||
pulling: 'Zum Aktualisieren herunterziehen...',
|
||
loosing: 'Loslassen zum Aktualisieren...',
|
||
},
|
||
vanSubmitBar: {
|
||
label: 'Total:',
|
||
},
|
||
vanCoupon: {
|
||
unlimited: 'Unbegrenzt',
|
||
discount: (discount: number) => `${discount * 10}% Rabatt`,
|
||
condition: (condition: number) => `Mindestens ${condition}`,
|
||
},
|
||
vanCouponCell: {
|
||
title: 'Coupon',
|
||
count: (count: number) => `Sie haben ${count} Coupons`,
|
||
},
|
||
vanCouponList: {
|
||
exchange: 'Austauschen',
|
||
close: 'Schließen',
|
||
enable: 'Verfügbar',
|
||
disabled: 'Nicht verfügbar',
|
||
placeholder: 'Couponcode',
|
||
},
|
||
vanAddressEdit: {
|
||
area: 'Standort',
|
||
postal: 'PLZ',
|
||
areaEmpty: 'Bitte geben Sie Ihren Standort an',
|
||
addressEmpty: 'Adresse darf nicht leer sein',
|
||
postalEmpty: 'Falsche Postleitzahl',
|
||
defaultAddress: 'Als Standardadresse festgelegen',
|
||
},
|
||
vanAddressEditDetail: {
|
||
label: 'Adresse',
|
||
placeholder: 'Adresse',
|
||
},
|
||
vanAddressList: {
|
||
add: 'Neue Adresse hinzufügen',
|
||
},
|
||
};
|