-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from duhast/master
Russian and Ukrainian localizations
- Loading branch information
Showing
2 changed files
with
48 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,24 @@ | ||
/** | ||
* Russian translation for bootstrap-markdown | ||
* by Oleg Vivtash <[email protected]> | ||
*/ | ||
;(function($){ | ||
$.fn.markdown.messages['ru'] = { | ||
'Bold': "Жирный", | ||
'Italic': "Курсив", | ||
'Heading': "Заголовок", | ||
'URL/Link': "Вставьте ссылку", | ||
'Image': "Изображение", | ||
'List': "Список", | ||
'Preview': "Предварительный просмотр", | ||
'strong text': "выделенный текст", | ||
'emphasized text': "наклонный текст", | ||
'heading text': "текст заголовка", | ||
'enter link description here': "введите описание ссылки", | ||
'Insert Hyperlink': "Введите гиперссылку", | ||
'enter image description here': "Введите описание изображения", | ||
'Insert Image Hyperlink': "Вставьте ссылку на изображение", | ||
'enter image title here': "Введите название изображения", | ||
'list text here': "текст списка" | ||
}; | ||
}(jQuery)) |
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,24 @@ | ||
/** | ||
* Ukrainian translation for bootstrap-markdown | ||
* by Oleg Vivtash <[email protected]> | ||
*/ | ||
;(function($){ | ||
$.fn.markdown.messages['ua'] = { | ||
'Bold': "Жирний", | ||
'Italic': "Курсів", | ||
'Heading': "Заголовок", | ||
'URL/Link': "Вставте посилання", | ||
'Image': "Зображення", | ||
'List': "Список", | ||
'Preview': "Попередній перегляд", | ||
'strong text': "виділений текст", | ||
'emphasized text': "нахилений текст", | ||
'heading text': "текст заголовку", | ||
'enter link description here': "введіть опис посилання", | ||
'Insert Hyperlink': "Введіть гіперпосилання", | ||
'enter image description here': "Введіть опис зображення", | ||
'Insert Image Hyperlink': "Вставте посилання на зображення", | ||
'enter image title here': "Введіть назву зображення", | ||
'list text here': "текст списку" | ||
}; | ||
}(jQuery)) |