| 715 | } |
| 716 | |
| 717 | Russian::Russian() // русский |
| 718 | // build the translation vector in the Translation base class |
| 719 | { |
| 720 | addPair("Formatted %s\n", L"Форматированный %s\n"); // should align with unchanged |
| 721 | addPair("Unchanged %s\n", L"без изменений %s\n"); // should align with formatted |
| 722 | addPair("Directory %s\n", L"каталог %s\n"); |
| 723 | addPair("Exclude %s\n", L"исключать %s\n"); |
| 724 | addPair("Exclude (unmatched) %s\n", L"Исключить (непревзойденный) %s\n"); |
| 725 | addPair(" %s formatted %s unchanged ", L" %s Форматированный %s без изменений "); |
| 726 | addPair(" seconds ", L" секунды "); |
| 727 | addPair("%d min %d sec ", L"%d мин %d сек "); |
| 728 | addPair("%s lines\n", L"%s линий\n"); |
| 729 | addPair("Using default options file %s\n", L"Использование опции по умолчанию файл %s\n"); |
| 730 | addPair("Invalid option file options:", L"Недопустимый файл опций опцию:"); |
| 731 | addPair("Invalid command line options:", L"Недопустимые параметры командной строки:"); |
| 732 | addPair("For help on options type 'astyle -h'", L"Для получения справки по 'astyle -h' опций типа"); |
| 733 | addPair("Cannot open options file", L"Не удается открыть файл параметров"); |
| 734 | addPair("Cannot open directory", L"Не могу открыть каталог"); |
| 735 | addPair("Missing filename in %s\n", L"Отсутствует имя файла в %s\n"); |
| 736 | addPair("Recursive option with no wildcard", L"Рекурсивный вариант без каких-либо шаблона"); |
| 737 | addPair("Did you intend quote the filename", L"Вы намерены цитатой файла"); |
| 738 | addPair("No file to process %s\n", L"Нет файлов для обработки %s\n"); |
| 739 | addPair("Did you intend to use --recursive", L"Неужели вы собираетесь использовать --recursive"); |
| 740 | addPair("Cannot process UTF-32 encoding", L"Не удается обработать UTF-32 кодировке"); |
| 741 | addPair("\nArtistic Style has terminated", L"\nArtistic Style прекратил"); |
| 742 | } |
| 743 | |
| 744 | Spanish::Spanish() // Español |
| 745 | // build the translation vector in the Translation base class |
nothing calls this directly
no outgoing calls
no test coverage detected