de-DE.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. export default {
  2. name: 'Name',
  3. tel: 'Telefon',
  4. save: 'Speichern',
  5. confirm: 'Bestätigen',
  6. cancel: 'Abbrechen',
  7. delete: 'Löschen',
  8. complete: 'Complete',
  9. loading: 'Laden...',
  10. telEmpty: 'Bitte das Telefon ausfüllen',
  11. nameEmpty: 'Bitte den Name angeben',
  12. nameInvalid: 'Ungültiger Name',
  13. confirmDelete: 'Bist du sicher, dass du löschen möchtest?',
  14. telInvalid: 'Ungültige Telefonnummer',
  15. vanCalendar: {
  16. end: 'Ende',
  17. start: 'Start',
  18. title: 'Kalender',
  19. startEnd: 'Start/Ende',
  20. weekdays: ['So', 'Mo', 'Di', 'Mo', 'Do', 'Fr', 'Sa'],
  21. monthTitle: function monthTitle(year, month) {
  22. return year + "/" + month;
  23. },
  24. rangePrompt: function rangePrompt(maxRange) {
  25. return "W\xE4hle nicht mehr als " + maxRange + " Tage";
  26. }
  27. },
  28. vanCascader: {
  29. select: 'Wählen'
  30. },
  31. vanContactCard: {
  32. addText: 'Kontaktinformationen hinzufügen'
  33. },
  34. vanContactList: {
  35. addText: 'Neuen Kontakt hinzufügen'
  36. },
  37. vanPagination: {
  38. prev: 'Vorherige',
  39. next: 'Nächste'
  40. },
  41. vanPullRefresh: {
  42. pulling: 'Zum Aktualisieren herunterziehen...',
  43. loosing: 'Loslassen zum Aktualisieren...'
  44. },
  45. vanSubmitBar: {
  46. label: 'Total:'
  47. },
  48. vanCoupon: {
  49. unlimited: 'Unbegrenzt',
  50. discount: function discount(_discount) {
  51. return _discount * 10 + "% Rabatt";
  52. },
  53. condition: function condition(_condition) {
  54. return "Mindestens " + _condition;
  55. }
  56. },
  57. vanCouponCell: {
  58. title: 'Coupon',
  59. tips: 'Keine Coupons',
  60. count: function count(_count) {
  61. return "Du hast " + _count + " Coupons";
  62. }
  63. },
  64. vanCouponList: {
  65. empty: 'Keine Coupons',
  66. exchange: 'Austauschen',
  67. close: 'Schließen',
  68. enable: 'Verfügbar',
  69. disabled: 'Nicht verfügbar',
  70. placeholder: 'Couponcode'
  71. },
  72. vanAddressEdit: {
  73. area: 'Standort',
  74. postal: 'PLZ',
  75. areaEmpty: 'Bitte deinen Ort angeben',
  76. addressEmpty: 'Adresse darf nicht leer sein',
  77. postalEmpty: 'Falsche Postleitzahl',
  78. defaultAddress: 'Als Standardadresse festgelegen',
  79. telPlaceholder: 'Telefon',
  80. namePlaceholder: 'Name',
  81. areaPlaceholder: 'Ort'
  82. },
  83. vanAddressEditDetail: {
  84. label: 'Adresse',
  85. placeholder: 'Adresse'
  86. },
  87. vanAddressList: {
  88. add: 'Neue Adresse hinzufügen'
  89. }
  90. };