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.
58 lines
1.3 KiB
58 lines
1.3 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/fi_FI';
|
||
|
import Calendar from '../calendar/locale/fi_FI';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/fi_FI';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/fi_FI';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'fi',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
Table: {
|
||
|
filterTitle: 'Suodatus valikko',
|
||
|
filterConfirm: 'OK',
|
||
|
filterReset: 'Tyhjennä',
|
||
|
selectAll: 'Valitse kaikki',
|
||
|
selectInvert: 'Valitse päinvastoin',
|
||
|
sortTitle: 'Lajittele',
|
||
3 years ago
|
triggerDesc: 'Lajittele laskevasti',
|
||
|
triggerAsc: 'Lajittele nousevasti',
|
||
|
cancelSort: 'Peruuta lajittelu',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Peruuta',
|
||
|
justOkText: 'OK',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Peruuta',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'Etsi täältä',
|
||
|
itemUnit: 'kohde',
|
||
|
itemsUnit: 'kohdetta',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Lähetetään...',
|
||
|
removeFile: 'Poista tiedosto',
|
||
|
uploadError: 'Virhe lähetyksessä',
|
||
|
previewFile: 'Esikatsele tiedostoa',
|
||
5 years ago
|
downloadFile: 'Lataa tiedosto',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'Ei kohteita',
|
||
|
},
|
||
5 years ago
|
Text: {
|
||
|
edit: 'Muokkaa',
|
||
|
copy: 'Kopioi',
|
||
|
copied: 'Kopioitu',
|
||
|
expand: 'Näytä lisää',
|
||
|
},
|
||
5 years ago
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|