el.js 4.32 KB
Newer Older
huahua committed
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
(function (global, factory) {
  if (typeof define === "function" && define.amd) {
    define('element/locale/el', ['module', 'exports'], factory);
  } else if (typeof exports !== "undefined") {
    factory(module, exports);
  } else {
    var mod = {
      exports: {}
    };
    factory(mod, mod.exports);
    global.ELEMENT.lang = global.ELEMENT.lang || {}; 
    global.ELEMENT.lang.el = mod.exports;
  }
})(this, function (module, exports) {
  'use strict';

  exports.__esModule = true;
  exports.default = {
    el: {
      colorpicker: {
        confirm: 'Εντάξει',
        clear: 'Καθαρισμός'
      },
      datepicker: {
        now: 'Τώρα',
        today: 'Σήμερα',
        cancel: 'Ακύρωση',
        clear: 'Καθαρισμός',
        confirm: 'Εντάξει',
        selectDate: 'Επιλέξτε ημέρα',
        selectTime: 'Επιλέξτε ώρα',
        startDate: 'Ημερομηνία Έναρξης',
        startTime: 'Ωρα Έναρξης',
        endDate: 'Ημερομηνία Λήξης',
        endTime: 'Ωρα Λήξης',
        prevYear: 'Προηγούμενο Έτος',
        nextYear: 'Επόμενο Έτος',
        prevMonth: 'Προηγούμενος Μήνας',
        nextMonth: 'Επόμενος Μήνας',
        year: 'Έτος',
        month1: 'Ιανουάριος',
        month2: 'Φεβρουάριος',
        month3: 'Μάρτιος',
        month4: 'Απρίλιος',
        month5: 'Μάιος',
        month6: 'Ιούνιος',
        month7: 'Ιούλιος',
        month8: 'Αύγουστος',
        month9: 'Σεπτέμβριος',
        month10: 'Οκτώβριος',
        month11: 'Νοέμβριος',
        month12: 'Δεκέμβριος',
        // week: 'εβδομάδα',
        weeks: {
          sun: 'Κυρ',
          mon: 'Δευ',
          tue: 'Τρι',
          wed: 'Τετ',
          thu: 'Πεμ',
          fri: 'Παρ',
          sat: 'Σαβ'
        },
        months: {
          jan: 'Ιαν',
          feb: 'Φεβ',
          mar: 'Μαρ',
          apr: 'Απρ',
          may: 'Μαϊ',
          jun: 'Ιουν',
          jul: 'Ιουλ',
          aug: 'Αυγ',
          sep: 'Σεπ',
          oct: 'Οκτ',
          nov: 'Νοε',
          dec: 'Δεκ'
        }
      },
      select: {
        loading: 'Φόρτωση',
        noMatch: 'Δεν βρέθηκαν αποτελέσματα',
        noData: 'Χωρίς δεδομένα',
        placeholder: 'Επιλογή'
      },
      cascader: {
        noMatch: 'Δεν βρέθηκαν αποτελέσματα',
        loading: 'Φόρτωση',
        placeholder: 'Επιλογή',
        noData: 'Χωρίς δεδομένα'
      },
      pagination: {
        goto: 'Μετάβαση σε',
        pagesize: '/σελίδα',
        total: 'Σύνολο {total}',
        pageClassifier: ''
      },
      messagebox: {
        title: 'Μήνυμα',
        confirm: 'Εντάξει',
        cancel: 'Ακύρωση',
        error: 'Άκυρη εισαγωγή'
      },
      upload: {
        deleteTip: 'Πάτησε Διαγραφή για αφαίρεση',
        delete: 'Διαγραφή',
        preview: 'Προεπισκόπηση',
        continue: 'Συνέχεια'
      },
      table: {
        emptyText: 'Χωρίς Δεδομένα',
        confirmFilter: 'Επιβεβαίωση',
        resetFilter: 'Επαναφορά',
        clearFilter: 'Όλα',
        sumText: 'Σύνολο'
      },
      tree: {
        emptyText: 'Χωρίς Δεδομένα'
      },
      transfer: {
        noMatch: 'Δεν βρέθηκαν αποτελέσματα',
        noData: 'Χωρίς δεδομένα',
        titles: ['Λίστα 1', 'Λίστα 2'],
        filterPlaceholder: 'Αναζήτηση',
        noCheckedFormat: '{total} Αντικείμενα',
        hasCheckedFormat: '{checked}/{total} επιλεγμένα'
      },
      image: {
        error: 'FAILED' // to be translated
      },
      pageHeader: {
        title: 'Back' // to be translated
      },
      popconfirm: {
        confirmButtonText: 'Yes', // to be translated
        cancelButtonText: 'No' // to be translated
      },
      empty: {
        description: 'Χωρίς Δεδομένα'
      }
    }
  };
  module.exports = exports['default'];
});