-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(module:locale): support russian locale (#853)
- Loading branch information
Showing
5 changed files
with
82 additions
and
1 deletion.
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
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
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,63 @@ | ||
import { NzLocale } from '../nz-locale.class'; | ||
|
||
export const ruRU: NzLocale = { | ||
locale: 'ru-RU', | ||
|
||
Pagination: { | ||
itemsPerPage: '%num% / страниц', | ||
jumpTo: 'Перейти', | ||
page: '', | ||
forwardPage: '%num% страниц вперед', | ||
backwardPage: '%num% страниц назад', | ||
prevPage: 'Предыдущая страница', | ||
nextPage: 'Следующая страница', | ||
firstPage: 'Первая страница', | ||
lastPage: 'Последняя страница: %page%', | ||
totalItems: 'Всего %total%', | ||
}, | ||
|
||
DateTime: { | ||
clear: 'Очистить', | ||
chooseMonth: 'Выберите месяц', | ||
chooseYear: 'Выберите год', | ||
chooseDecade: 'Выберите десятилетие', | ||
nYear: '%num%', | ||
nMonth: '%num%', | ||
nDay: '%num%', | ||
prevYear: 'Предыдущий год', | ||
nextYear: 'Следующий год', | ||
prevMonth: 'Предыдущий месяц', | ||
nextMonth: 'Следующий месяц', | ||
prevDecade: 'Предыдущее десятилетие', | ||
nextDecade: 'Следующее десятилетие', | ||
chooseTime: 'Выберите время', | ||
chooseDate: 'Выберите дату', | ||
chooseTimePlease: 'Выберите время', | ||
chooseDatePlease: 'Выберите дату', | ||
thisMoment: 'Сейчас', | ||
today: 'Сегодня', | ||
ok: 'Ок', | ||
}, | ||
|
||
Modal: { | ||
okText: 'Ок', | ||
cancelText: 'Отмена', | ||
understood: 'Ок', | ||
}, | ||
|
||
Table: { | ||
emptyText: 'Нет данных', | ||
}, | ||
|
||
Select: { | ||
notFoundContent: 'Ничего не найдено', | ||
}, | ||
|
||
Transfer: { | ||
titles: ',', | ||
notFoundContent: 'Нет данных', | ||
searchPlaceholder: 'Поиск', | ||
itemUnit: 'элемент', | ||
itemsUnit: 'элементов', | ||
} | ||
}; |
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
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