mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
Slovenian locale added (sl_SI) (#9724)
* Add sl_SI locale (Slovenian) * fix lint issues snapshot tests * add description * bump rc pagination to 1.16.1 which includes sl_SI(Slovenian) locale then include it
This commit is contained in:
parent
f6be27fd4e
commit
b6ce947894
2
components/calendar/locale/sl_SI.tsx
Normal file
2
components/calendar/locale/sl_SI.tsx
Normal file
@ -0,0 +1,2 @@
|
||||
import sl_SI from '../../date-picker/locale/sl_SI';
|
||||
export default sl_SI;
|
43
components/date-picker/locale/sl_SI.tsx
Normal file
43
components/date-picker/locale/sl_SI.tsx
Normal file
@ -0,0 +1,43 @@
|
||||
import TimePickerLocale from '../../time-picker/locale/sl_SI';
|
||||
|
||||
// Merge into a locale object
|
||||
const locale = {
|
||||
lang: {
|
||||
placeholder: 'Izberite datum',
|
||||
rangePlaceholder: ['Začetni datum', 'Končni datum'],
|
||||
today: 'Danes',
|
||||
now: 'Trenutno',
|
||||
backToToday: 'Nazaj na trenutni datum',
|
||||
ok: 'Ok',
|
||||
clear: 'Počisti',
|
||||
month: 'Mesec',
|
||||
year: 'Leto',
|
||||
timeSelect: 'Izberi čas',
|
||||
dateSelect: 'Izberi datum',
|
||||
monthSelect: 'Izberite mesec',
|
||||
yearSelect: 'Izberite leto',
|
||||
decadeSelect: 'Izberite desetletje',
|
||||
yearFormat: 'YYYY',
|
||||
dateFormat: 'D.M.YYYY',
|
||||
dayFormat: 'D',
|
||||
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
||||
monthFormat: 'MMMM',
|
||||
monthBeforeYear: true,
|
||||
previousMonth: 'Prejšnji mesec (PageUp)',
|
||||
nextMonth: 'Naslednji mesec (PageDown)',
|
||||
previousYear: 'Lansko leto (Control + left)',
|
||||
nextYear: 'Naslednje leto (Control + right)',
|
||||
previousDecade: 'Prejšnje desetletje',
|
||||
nextDecade: 'Naslednje desetletje',
|
||||
previousCentury: 'Zadnje stoletje',
|
||||
nextCentury: 'Naslednje stoletje',
|
||||
},
|
||||
timePickerLocale: {
|
||||
...TimePickerLocale,
|
||||
},
|
||||
};
|
||||
|
||||
// All settings at:
|
||||
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||||
|
||||
export default locale;
|
File diff suppressed because it is too large
Load Diff
@ -35,13 +35,14 @@ import faIR from '../fa_IR';
|
||||
import elGR from '../el_GR';
|
||||
import nbNO from '../nb_NO';
|
||||
import srRS from '../sr_RS';
|
||||
import slSI from '../sl_SI';
|
||||
import isIS from '../is_IS';
|
||||
import arEG from '../ar_EG';
|
||||
import ukUA from '../uk_UA';
|
||||
import zhCN from '../zh_CN';
|
||||
import kuIQ from '../ku_IQ';
|
||||
|
||||
const locales = [enUS, ptBR, ptPT, ruRU, esES, svSE, frBE, deDE, nlNL, caES, csCZ, koKR, etEE, skSK, jaJP, trTR, zhTW, fiFI, plPL, bgBG, enGB, frFR, nlBE, itIT, viVN, thTH, faIR, elGR, nbNO, srRS, isIS, arEG, ukUA, zhCN, kuIQ];
|
||||
const locales = [enUS, ptBR, ptPT, ruRU, esES, svSE, frBE, deDE, nlNL, caES, csCZ, koKR, etEE, skSK, jaJP, trTR, zhTW, fiFI, plPL, bgBG, enGB, frFR, nlBE, itIT, viVN, thTH, faIR, elGR, nbNO, srRS, slSI, isIS, arEG, ukUA, zhCN, kuIQ];
|
||||
|
||||
const { Option } = Select;
|
||||
const { RangePicker } = DatePicker;
|
||||
|
44
components/locale-provider/sl_SI.tsx
Normal file
44
components/locale-provider/sl_SI.tsx
Normal file
@ -0,0 +1,44 @@
|
||||
import Pagination from 'rc-pagination/lib/locale/sl_SI';
|
||||
import DatePicker from '../date-picker/locale/sl_SI';
|
||||
import TimePicker from '../time-picker/locale/sl_SI';
|
||||
import Calendar from '../calendar/locale/sl_SI';
|
||||
|
||||
export default {
|
||||
locale: 'sl',
|
||||
Pagination,
|
||||
DatePicker,
|
||||
TimePicker,
|
||||
Calendar,
|
||||
Table: {
|
||||
filterTitle: 'Filter',
|
||||
filterConfirm: 'Filtriraj',
|
||||
filterReset: 'Pobriši filter',
|
||||
emptyText: 'Ni podatkov',
|
||||
selectAll: 'Izberi vse na trenutni strani',
|
||||
selectInvert: 'Obrni izbor na trenutni strani',
|
||||
},
|
||||
Modal: {
|
||||
okText: 'V redu',
|
||||
cancelText: 'Prekliči',
|
||||
justOkText: 'V redu',
|
||||
},
|
||||
Popconfirm: {
|
||||
okText: 'v redu',
|
||||
cancelText: 'Prekliči',
|
||||
},
|
||||
Transfer: {
|
||||
notFoundContent: 'Ni rezultatov iskanja',
|
||||
searchPlaceholder: 'Išči tukaj',
|
||||
itemUnit: 'Objekt',
|
||||
itemsUnit: 'Objektov',
|
||||
},
|
||||
Select: {
|
||||
notFoundContent: 'Ni bilo mogoče najti',
|
||||
},
|
||||
Upload: {
|
||||
uploading: 'Nalaganje...',
|
||||
removeFile: 'Odstrani datoteko',
|
||||
uploadError: 'Napaka pri nalaganju',
|
||||
previewFile: 'Predogled datoteke',
|
||||
},
|
||||
};
|
5
components/time-picker/locale/sl_SI.tsx
Normal file
5
components/time-picker/locale/sl_SI.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
const locale = {
|
||||
placeholder: 'Izberite čas',
|
||||
};
|
||||
|
||||
export default locale;
|
@ -53,6 +53,7 @@ Supported languages:
|
||||
|Portuguese|pt_PT|
|
||||
|Slovak|sk_SK|
|
||||
|Serbian|sr_RS|
|
||||
|Slovenian|sl_SI|
|
||||
|Swedish|sv_SE|
|
||||
|Thai|th_TH|
|
||||
|Turkish|tr_TR|
|
||||
|
@ -51,6 +51,7 @@ return (
|
||||
|葡萄牙语|pt_PT|
|
||||
|斯洛伐克语|sk_SK|
|
||||
|塞尔维亚|sr_RS|
|
||||
|斯洛文尼亚|sl_SI|
|
||||
|瑞典语|sv_SE|
|
||||
|泰语|th_TH|
|
||||
|土耳其语|tr_TR|
|
||||
|
@ -62,7 +62,7 @@
|
||||
"rc-input-number": "~4.0.0",
|
||||
"rc-menu": "~6.2.0",
|
||||
"rc-notification": "~3.0.0",
|
||||
"rc-pagination": "~1.16.0",
|
||||
"rc-pagination": "~1.16.1",
|
||||
"rc-progress": "~2.2.2",
|
||||
"rc-rate": "~2.4.0",
|
||||
"rc-select": "~7.7.0",
|
||||
|
Loading…
Reference in New Issue
Block a user