vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
import type { Locale } from '../interface'; |
|
|
|
const locale: Locale = { |
|
locale: 'el_GR', |
|
today: 'Σήμερα', |
|
now: 'Τώρα', |
|
backToToday: 'Πίσω στη σημερινή μέρα', |
|
ok: 'Ok', |
|
clear: 'Καθαρισμός', |
|
month: 'Μήνας', |
|
year: 'Έτος', |
|
timeSelect: 'Επιλογή ώρας', |
|
dateSelect: 'Επιλογή ημερομηνίας', |
|
monthSelect: 'Επιλογή μήνα', |
|
yearSelect: 'Επιλογή έτους', |
|
decadeSelect: 'Επιλογή δεκαετίας', |
|
yearFormat: 'YYYY', |
|
dateFormat: 'D/M/YYYY', |
|
dayFormat: 'D', |
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss', |
|
monthBeforeYear: true, |
|
previousMonth: 'Προηγούμενος μήνας (PageUp)', |
|
nextMonth: 'Επόμενος μήνας (PageDown)', |
|
previousYear: 'Προηγούμενο έτος (Control + αριστερά)', |
|
nextYear: 'Επόμενο έτος (Control + δεξιά)', |
|
previousDecade: 'Προηγούμενη δεκαετία', |
|
nextDecade: 'Επόμενη δεκαετία', |
|
previousCentury: 'Προηγούμενος αιώνας', |
|
nextCentury: 'Επόμενος αιώνας', |
|
}; |
|
|
|
export default locale;
|
|
|