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.
33 lines
907 B
33 lines
907 B
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'fi_FI',
|
|
today: 'Tänään',
|
|
now: 'Nyt',
|
|
backToToday: 'Tämä päivä',
|
|
ok: 'Ok',
|
|
clear: 'Tyhjennä',
|
|
month: 'Kuukausi',
|
|
year: 'Vuosi',
|
|
timeSelect: 'Valise aika',
|
|
dateSelect: 'Valitse päivä',
|
|
monthSelect: 'Valitse kuukausi',
|
|
yearSelect: 'Valitse vuosi',
|
|
decadeSelect: 'Valitse vuosikymmen',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D.M.YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Edellinen kuukausi (PageUp)',
|
|
nextMonth: 'Seuraava kuukausi (PageDown)',
|
|
previousYear: 'Edellinen vuosi (Control + left)',
|
|
nextYear: 'Seuraava vuosi (Control + right)',
|
|
previousDecade: 'Edellinen vuosikymmen',
|
|
nextDecade: 'Seuraava vuosikymmen',
|
|
previousCentury: 'Edellinen vuosisata',
|
|
nextCentury: 'Seuraava vuosisata',
|
|
};
|
|
|
|
export default locale;
|