forked from view-design/ViewUIPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
88a856f
commit 0e1337f
Showing
1 changed file
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
import setLang from '../lang'; | ||
|
||
const lang = { | ||
i: { | ||
locale: 'tg-TJ', | ||
select: { | ||
placeholder: 'Интихоб кунед', | ||
noMatch: 'Маълумоти мувофиқ нест', | ||
loading: 'Дар ҳоли боркунӣ' | ||
}, | ||
table: { | ||
noDataText: 'Маълумот нест', | ||
noFilteredDataText: 'Маълумот бо филтр ёфт нашуд', | ||
confirmFilter: 'Тасдиқ', | ||
resetFilter: 'Тоза кардан', | ||
clearFilter: 'Ҳама', | ||
sumText: 'Ҷамъ' | ||
}, | ||
datepicker: { | ||
selectDate: 'Интихоби сана', | ||
selectTime: 'Интихоби вақт', | ||
startTime: 'Вақти оғоз', | ||
endTime: 'Вақти анҷом', | ||
clear: 'Тоза кардан', | ||
ok: 'OK', | ||
datePanelLabel: '[Mmmm] [yyyy]', | ||
month: '', | ||
month1: 'Январ', | ||
month2: 'Феврал', | ||
month3: 'Март', | ||
month4: 'Апрел', | ||
month5: 'Май', | ||
month6: 'Июн', | ||
month7: 'Июл', | ||
month8: 'Август', | ||
month9: 'Сентябр', | ||
month10: 'Октябр', | ||
month11: 'Ноябр', | ||
month12: 'Декабр', | ||
year: '', | ||
weekStartDay: '1', | ||
weeks: { | ||
sun: 'Як', | ||
mon: 'Ду', | ||
tue: 'Се', | ||
wed: 'Чор', | ||
thu: 'Пан', | ||
fri: 'Ҷум', | ||
sat: 'Шан' | ||
}, | ||
months: { | ||
m1: 'Янв', | ||
m2: 'Фев', | ||
m3: 'Мар', | ||
m4: 'Апр', | ||
m5: 'Май', | ||
m6: 'Июн', | ||
m7: 'Июл', | ||
m8: 'Авг', | ||
m9: 'Сен', | ||
m10: 'Окт', | ||
m11: 'Ноя', | ||
m12: 'Дек' | ||
} | ||
}, | ||
transfer: { | ||
titles: { | ||
source: 'Манбаъ', | ||
target: 'Ҳадаф' | ||
}, | ||
filterPlaceholder: 'Ҷустуҷӯ дар ин ҷо', | ||
notFoundText: 'Пайдо нашуд' | ||
}, | ||
modal: { | ||
okText: 'OK', | ||
cancelText: 'Бекор кардан' | ||
}, | ||
poptip: { | ||
okText: 'OK', | ||
cancelText: 'Бекор кардан' | ||
}, | ||
page: { | ||
prev: 'Саҳифаи пешина', | ||
next: 'Саҳифаи навбатӣ', | ||
total: 'Ҳамагӣ', | ||
item: 'чиз', | ||
items: 'чизҳо', | ||
prev5: '5 саҳифаи пешина', | ||
next5: '5 саҳифаи навбатӣ', | ||
page: ' дар саҳифа', | ||
goto: 'Гузариш ба', | ||
p: '' | ||
}, | ||
rate: { | ||
star: 'Ситора', | ||
stars: 'Ситораҳо' | ||
}, | ||
tree: { | ||
emptyText: 'Маълумот нест' | ||
} | ||
} | ||
}; | ||
|
||
setLang(lang); | ||
|
||
export default lang; |