forked from tonyarnold/symphony-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 24
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 #24 from alexbirukov/master
Update Russian language
- Loading branch information
Showing
1 changed file
with
51 additions
and
48 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 |
---|---|---|
@@ -1,48 +1,51 @@ | ||
<?php | ||
|
||
$about = array( | ||
'name' => 'Русский', | ||
'author' => array( | ||
'name' => 'Александр Бирюков', | ||
'email' => 'info@alexbirukov.ru', | ||
'website' => 'http://alexbirukov.ru' | ||
), | ||
'release-date' => '2012-06-18' | ||
); | ||
|
||
/** | ||
* CKEditor | ||
*/ | ||
$dictionary = array( | ||
|
||
'CKEditor File Browser' => | ||
'Браузер файлов CKEditor', | ||
|
||
'Permitted sections for the file browser:' => | ||
'Разделы доступные для браузера файлов:', | ||
|
||
'Link templates:' => | ||
'Шаблоны ссылок:', | ||
|
||
'Link template' => | ||
'Шаблон ссылки', | ||
|
||
'Use {$id} for the entry ID, and {$fieldname} for field-placeholders. If the field has a handle, this is automatically used.' => | ||
'Используйте переменную {$id} для вывода ID записи и {$fieldname} для подстановки значения поля.', | ||
|
||
'Section to get the entries from' => | ||
'Раздел из которого производить выбор записей', | ||
|
||
'Field to display as name' => | ||
'Поле для отображения в качестве имени', | ||
|
||
'Section' => | ||
'Раздел', | ||
|
||
'There are no sections available. Please select which sections are permitted to use the CKEditor file upload feature in the Symphony System Preferences.' => | ||
'Не указаны доступные разделы. Пожалуйста, укажите в настройках системы разделы, которые доступны для загрузки файлов через CKEditor.', | ||
|
||
'create new' => | ||
'добавить', | ||
|
||
); | ||
<?php | ||
|
||
$about = array( | ||
'name' => 'Русский', | ||
'author' => array( | ||
'name' => 'Александр Бирюков', | ||
'email' => 'info@alexbirukov.ru', | ||
'website' => 'http://alexbirukov.ru' | ||
), | ||
'release-date' => '2012-12-11' | ||
); | ||
|
||
/** | ||
* CKEditor | ||
*/ | ||
$dictionary = array( | ||
|
||
'CKEditor File Browser' => | ||
'Браузер файлов CKEditor', | ||
|
||
'Field to display as name' => | ||
'Поле для отображения в качестве имени', | ||
|
||
'Link template' => | ||
'Шаблон ссылки', | ||
|
||
'Link templates:' => | ||
'Шаблоны ссылок:', | ||
|
||
'Permitted sections for the file browser:' => | ||
'Разделы доступные для браузера файлов:', | ||
|
||
'Section' => | ||
'Раздел', | ||
|
||
'Section to get the entries from' => | ||
'Раздел из которого производить выбор записей', | ||
|
||
'There are no sections available. Please select which sections are permitted to use the CKEditor file upload feature in the Symphony System Preferences.' => | ||
'Не указаны доступные разделы. Пожалуйста, укажите в настройках системы разделы, которые доступны для загрузки файлов через CKEditor.', | ||
|
||
'Use {$id} for the entry ID, and {$fieldname} for field-placeholders. If the field has a handle, this is automatically used.' => | ||
'Используйте переменную {$id} для вывода ID записи и {$fieldname} для подстановки значения поля.', | ||
|
||
'create new' => | ||
'добавить', | ||
|
||
'Styles: (one style per line: <code>h3.example { color: #f00; background: #0f0; }</code>) Class name is converted to name (h3.hello-world = Hello World).' => | ||
'Стили: (один стиль в строке: <code>h3.example { color: #f00; background: #0f0; }</code>) имя класса ковертируется в имя (h3.hello-world = Hello World).', | ||
|
||
); |