1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
| "use strict";
|
| exports.__esModule = true;
| exports.default = void 0;
| var _default = {
| name: 'Name',
| tel: 'Telefon',
| save: 'Speichern',
| confirm: 'Bestätigen',
| cancel: 'Abbrechen',
| delete: 'Löschen',
| complete: 'Complete',
| loading: 'Laden...',
| telEmpty: 'Bitte füllen Sie das Telefon aus',
| nameEmpty: 'Bitte geben Sie den Name an',
| nameInvalid: 'Ungültiger Name',
| 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: function monthTitle(year, month) {
| return year + "/" + month;
| },
| rangePrompt: function rangePrompt(maxRange) {
| return "W\xE4hle 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: function discount(_discount) {
| return _discount * 10 + "% Rabatt";
| },
| condition: function condition(_condition) {
| return "Mindestens " + _condition;
| }
| },
| vanCouponCell: {
| title: 'Coupon',
| tips: 'Keine Coupons',
| count: function count(_count) {
| return "Sie haben " + _count + " Coupons";
| }
| },
| vanCouponList: {
| empty: 'Keine Coupons',
| 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',
| telPlaceholder: 'Telefon',
| namePlaceholder: 'Name',
| areaPlaceholder: 'Ort'
| },
| vanAddressEditDetail: {
| label: 'Adresse',
| placeholder: 'Adresse'
| },
| vanAddressList: {
| add: 'Neue Adresse hinzufügen'
| }
| };
| exports.default = _default;
|
|