-
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Russian localization * Fix some mistypes and grammar * Add description for ASCII & Unicode character escapes
- Loading branch information
Showing
8 changed files
with
144 additions
and
18 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
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,125 @@ | ||
{ | ||
"Home": "Главная", | ||
"Samples": "Примеры", | ||
"Legends": "Справка", | ||
"Edit": "Редактор", | ||
"You have to select nodes first": "Сначала выберите узел на графе", | ||
"Test": "Проверка", | ||
"You can select nodes by dragging or clicking on the graph": "Узлы на графе можно выбрать выделением или по клику", | ||
"Input a regular expression": "Введите регулярное выражение", | ||
"Flags: ": "Флаги: ", | ||
"Characters": "Символы", | ||
"Direct match characters": "Поиск буквального соответствия", | ||
"Character classes": "Символьные классы", | ||
"Distinguish different types of characters": "Поиск различных классов символов", | ||
"Ranges": "Наборы и диапазоны", | ||
"One of": "любой из:", | ||
"Matches any one of the enclosed characters": "Любой из перечисленных в наборе или диапазоне символов", | ||
"None of": "ни один из:", | ||
"Matches anything that is not enclosed in the brackets": "Любой символ, не перечисленный в наборе или диапазоне", | ||
"Choice": "Альтернация", | ||
"Matches either \"x\" or \"y\"": "Альтернативный выбор — либо «x», либо «y»", | ||
"Quantifier": "Квантификатор", | ||
"Indicate numbers of characters or expressions to match": "Указывает количество повторений символа или выражения", | ||
"Group": "Группа", | ||
"Matches x and remembers the match": "Ищет выражение и запоминает совпадение для последующего обращения по номеру", | ||
"Matches \"x\" but does not remember the match": "Ищет выражение, но не запоминает совпадение", | ||
"Matches \"x\" and stores it on the groups property of the returned matches under the name specified by <Name>": "Ищет выражение и запоминает совпадение для последующего обращения по имени", | ||
"Back reference": "Ссылка", | ||
"A back reference to match group #1": "Обращение к содержимому скобочной группы по номеру", | ||
"A back reference to match group #Name": "Обращение к содержимому скобочной группы по имени", | ||
"Assertion": "Проверки", | ||
"Begins with": "Начало строки", | ||
"Ends with": "Конец строки", | ||
"Matches the beginning of input": "Ищет совпадение в начале строки", | ||
"Matches \"x\" only if \"x\" is followed by \"y\"": "Ищет лишь такое выражение «x», после которого следует «y»", | ||
"Followed by:": "после идёт:", | ||
"Not followed by:": "после не идёт:", | ||
"Preceded by:": "идёт перед:", | ||
"Not preceded by:": "не идёт перед:", | ||
"WordBoundary": "Граница слова", | ||
"NonWordBoundary": "Не граница слова", | ||
"Global search": "Глобальный поиск", | ||
"Case-insensitive": "Игнорировать регистр", | ||
"Multi-line": "Многострочный режим", | ||
"Add A Case": "Добавить случай", | ||
"Insert around": "Вставить узел", | ||
"Group selection": "Ссылка на группу", | ||
"Lookaround assertion": "Проверка до/после", | ||
"Before": "Перед", | ||
"Parallel": "Параллельно", | ||
"After": "После", | ||
"show more": "Дополнительно", | ||
"show less": "Скрыть", | ||
"Expression": "Выражение", | ||
"Content": "Содержимое", | ||
"An Empty Range": "Пустой диапазон", | ||
"Capturing group": "Захватывающая группа", | ||
"Non-capturing group": "Незахватывающая группа", | ||
"Named capturing group": "Именованная группа", | ||
"Capturing": "По номеру", | ||
"Non-cap": "Нет", | ||
"Named cap": "По имени", | ||
"Lookahead assertion": "Опережающая", | ||
"Lookbehind assertion": "Ретроспективная", | ||
"Lookahead": "Опережающая", | ||
"Lookbehind": "Ретроспективная", | ||
"Type": "Тип", | ||
"Value": "Значение", | ||
"Simple string": "Cтрока", | ||
"Character class": "Символьный класс", | ||
"Character range": "Диапазон", | ||
"Beginning Assertion": "Начало строки", | ||
"End Assertion": "Конец строки", | ||
"Word Boundary Assertion": "Граница слова", | ||
"The input will be escaped automatically.": "Введённая строка экранируется автоматически", | ||
"Negate": "Отрицание", | ||
"negate": "отрицание", | ||
"Any character": "Любой символ", | ||
"Any digit": "Любая цифра", | ||
"Non-digit": "Любая не цифра", | ||
"Any alphanumeric": "Любой из [a-zA-Z0-9_]", | ||
"Non-alphanumeric": "Любой кроме [a-zA-Z0-9_]", | ||
"White space": "Любой пробельный символ", | ||
"Non-white space": "Любой непробельный символ", | ||
"Horizontal tab": "Табуляция", | ||
"Carriage return": "Возврат каретки", | ||
"Linefeed": "Новая строка", | ||
"Vertical tab": "Вертикальная табуляция", | ||
"Form-feed": "Перевод страницы", | ||
"Backspace": "Возврат назад", | ||
"NUL": "Символ NUL", | ||
"\\b Backspace": "\\b Возврат назад", | ||
"\\t Horizontal Tab": "\\t Табуляция", | ||
"\\n Line Feed": "\\n Новая строка", | ||
"\\v Vertical Tab": "\\v Вертикальная табуляция", | ||
"\\f Form Feed": "\\f Перевод страницы", | ||
"\\r Carriage Return": "\\r Возврат каретки", | ||
"ASCII symbol": "Символ ASCII", | ||
"Unicode symbol": "Символ Unicode", | ||
"Class": "Класс", | ||
"Back Reference": "Ссылка", | ||
"Choose one": "Выбрать", | ||
"UnGroup": "Разгруппировать", | ||
"Cancel assertion": "Удалить проверку", | ||
"times": "Количество повторов", | ||
"custom": "диапазон", | ||
"1 (default)": "1 (по умолчанию)", | ||
"0 or 1": "0 или 1", | ||
"0 or more": "0 или более", | ||
"1 or more": "1 или более", | ||
"greedy": "Жадный поиск", | ||
"1. Whole Numbers": "1. Неотрицательные целые числа", | ||
"2. Decimal Numbers": "2. Неотрицательные действительные числа", | ||
"3. Whole + Decimal Numbers": "3. Неотрицательные целые и действительные числа", | ||
"4. Negative, Positive Whole + Decimal Numbers": "4. Действительные числа", | ||
"6. Date Format YYYY-MM-dd": "6. Дата в формате YYYY-MM-dd", | ||
"Flag: ": "Флаги: ", | ||
"Allows . to match newline": "Считать . символом перевода строки", | ||
"Settings: ": "Настройки: ", | ||
"include escape ": "добавить экранирование ", | ||
"Copy permalink": "Скопировать ссылку", | ||
"Permalink copied.": "Ссылка скопирована", | ||
"Empty": "Пустой узел", | ||
"Group's name": "Имя группы" | ||
} |
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
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