--- a/eric6/i18n/eric6_ru.ts Sun Mar 28 15:08:28 2021 +0200 +++ b/eric6/i18n/eric6_ru.ts Sun Mar 28 15:12:16 2021 +0200 @@ -1596,37 +1596,37 @@ <context> <name>BackgroundService</name> <message> - <location filename="../Utilities/BackgroundService.py" line="135"/> + <location filename="../Utilities/BackgroundService.py" line="138"/> <source>{0} not configured.</source> <translation>{0} не сконфигурирован.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source>Restart background client?</source> <translation>Перезапустить клиента в фоновом режиме?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="445"/> + <location filename="../Utilities/BackgroundService.py" line="448"/> <source>Eric's background client disconnected because of an unknown reason.</source> <translation>Фоновый клиент Eric'а прервал соединение по неизвестной причине.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>Background client disconnected.</source> <translation>Соединение фонового клиента прервано.</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="190"/> + <location filename="../Utilities/BackgroundService.py" line="193"/> <source><p>The background client for <b>{0}</b> has stopped due to an exception. It's used by various plug-ins like the different checkers.</p><p>Select<ul><li><b>'Yes'</b> to restart the client, but abort the last job</li><li><b>'Retry'</b> to restart the client and the last job</li><li><b>'No'</b> to leave the client off.</li></ul></p><p>Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.</p></source> <translation><p>Фоновый клиент <b>{0}</b> прекратил выполнение из-за ошибки. Этот клиент необходим для работы различных плагинов.</p><p>Выберите <ul><li><b>'Да'</b> чтобы перезапустить его и отменить последнее задание </li><li><b>'Повторить'</b> чтобы перезапустить его и последнее задание </li><li><b>'Нет'</b> чтобы не перезапускать клиента.</li></ul></p><p>Заметьте: Клиента можно перезапустить, открыв и сохранив диалог предпочтений или закрыв и снова открыв текущий проект.</p></translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="451"/> + <location filename="../Utilities/BackgroundService.py" line="454"/> <source>The background client for <b>{0}</b> disconnected because of an unknown reason.<br>Should it be restarted?</source> <translation>Соединение фонового клиента <b>{0}</b> прервано по неизвестной причине.<br>Перезапустить клиента?</translation> </message> <message> - <location filename="../Utilities/BackgroundService.py" line="216"/> + <location filename="../Utilities/BackgroundService.py" line="219"/> <source>An error in Eric's background client stopped the service.</source> <translation>Ошибка фонового клиента остановила сервис.</translation> </message> @@ -48031,134 +48031,6 @@ </message> </context> <context> - <name>PathlibChecker</name> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="15"/> - <source>os.chmod('foo', 0o444) should be replaced by foo_path.chmod(0o444)</source> - <translation>os.chmod('foo', 0o444) следует заменить на foo_path.chmod(0o444)</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="18"/> - <source>os.mkdir('foo') should be replaced by foo_path.mkdir()</source> - <translation>os.mkdir('foo') следует заменить на foo_path.mkdir()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="21"/> - <source>os.makedirs('foo/bar') should be replaced by bar_path.mkdir(parents=True)</source> - <translation>os.makedirs('foo/bar') следует заменить на bar_path.mkdir(parents=True)</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="25"/> - <source>os.rename('foo', 'bar') should be replaced by foo_path.rename(Path('bar'))</source> - <translation>os.rename('foo', 'bar') следует заменить на foo_path.rename(Path('bar'))</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="29"/> - <source>os.replace('foo', 'bar') should be replaced by foo_path.replace(Path('bar'))</source> - <translation>os.replace('foo', 'bar') следует заменить на foo_path.replace(Path('bar'))</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="33"/> - <source>os.rmdir('foo') should be replaced by foo_path.rmdir()</source> - <translation>os.rmdir('foo') следует заменить на foo_path.rmdir()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="36"/> - <source>os.remove('foo') should be replaced by foo_path.unlink()</source> - <translation>os.remove('foo') следует заменить на foo_path.unlink()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="39"/> - <source>os.unlink('foo'') should be replaced by foo_path.unlink()</source> - <translation>os.unlink('foo'') следует заменить на foo_path.unlink()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="42"/> - <source>os.getcwd() should be replaced by Path.cwd()</source> - <translation>os.getcwd() следует заменить на Path.cwd()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="45"/> - <source>os.readlink('foo') should be replaced by foo_path.readlink()</source> - <translation>os.readlink('foo') следует заменить на foo_path.readlink()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="48"/> - <source>os.stat('foo') should be replaced by foo_path.stat() or foo_path.owner() or foo_path.group()</source> - <translation>os.stat('foo') следует заменить на foo_path.stat() или foo_path.owner() или foo_path.group()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="53"/> - <source>os.path.abspath('foo') should be replaced by foo_path.resolve()</source> - <translation>os.path.abspath('foo') следует заменить на foo_path.resolve()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="56"/> - <source>os.path.exists('foo') should be replaced by foo_path.exists()</source> - <translation>os.path.exists('foo') следует заменить на foo_path.exists()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="59"/> - <source>os.path.expanduser('~/foo') should be replaced by foo_path.expanduser()</source> - <translation>os.path.expanduser('~/foo') следует заменить на foo_path.expanduser()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="63"/> - <source>os.path.isdir('foo') should be replaced by foo_path.is_dir()</source> - <translation>os.path.isdir('foo') следует заменить на foo_path.is_dir()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="66"/> - <source>os.path.isfile('foo') should be replaced by foo_path.is_file()</source> - <translation>os.path.isfile('foo') следует заменить на foo_path.is_file()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="69"/> - <source>os.path.islink('foo') should be replaced by foo_path.is_symlink()</source> - <translation>os.path.islink('foo') следует заменить на foo_path.is_symlink()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="72"/> - <source>os.path.isabs('foo') should be replaced by foo_path.is_absolute()</source> - <translation>os.path.isabs('foo') следует заменить на foo_path.is_absolute()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="75"/> - <source>os.path.join('foo', 'bar') should be replaced by foo_path / 'bar'</source> - <translation>os.path.join('foo', 'bar') следует заменить на foo_path / 'bar'</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="79"/> - <source>os.path.basename('foo/bar') should be replaced by bar_path.name</source> - <translation>os.path.basename('foo/bar') следует заменить на bar_path.name</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="82"/> - <source>os.path.dirname('foo/bar') should be replaced by bar_path.parent</source> - <translation>os.path.basename('foo/bar') следует заменить на bar_path.name</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="85"/> - <source>os.path.samefile('foo', 'bar') should be replaced by foo_path.samefile(bar_path)</source> - <translation>os.path.samefile('foo', 'bar') следует заменить на foo_path.samefile(bar_path)</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="89"/> - <source>os.path.splitext('foo.bar') should be replaced by foo_path.suffix</source> - <translation>os.path.splitext('foo.bar') следует заменить на foo_path.suffix</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="93"/> - <source>open('foo') should be replaced by Path('foo').open()</source> - <translation>open('foo') следует заменить на Path('foo').open()</translation> - </message> - <message> - <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="97"/> - <source>py.path.local is in maintenance mode, use pathlib instead</source> - <translation>py.path.local находится в режиме обслуживания, вместо этого используйте pathlib</translation> - </message> -</context> -<context> <name>PersonalDataDialog</name> <message> <location filename="../WebBrowser/PersonalInformationManager/PersonalDataDialog.ui" line="14"/> @@ -75215,17 +75087,17 @@ <translation>Инициализация строки состояния...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="655"/> + <location filename="../UI/UserInterface.py" line="656"/> <source>Initializing Single Application Server...</source> <translation>Инициализация сервера уникального приложения...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="665"/> + <location filename="../UI/UserInterface.py" line="666"/> <source>Activating Plugins...</source> <translation>Активация плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="681"/> + <location filename="../UI/UserInterface.py" line="682"/> <source>Restoring Toolbarmanager...</source> <translation>Восстановление менеджера панелей инструментов...</translation> </message> @@ -76511,22 +76383,22 @@ <translation>Невозможно загрузить информацию о версии в течении последних 7 дней. Пожалуйста попробуйте ещё раз.</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="690"/> + <location filename="../UI/UserInterface.py" line="691"/> <source>Setting View Profile...</source> <translation>Установка профилей...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="703"/> + <location filename="../UI/UserInterface.py" line="704"/> <source>Reading Tasks...</source> <translation>Чтение задач...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="708"/> + <location filename="../UI/UserInterface.py" line="709"/> <source>Reading Templates...</source> <translation>Чтение шаблонов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="713"/> + <location filename="../UI/UserInterface.py" line="714"/> <source>Starting Debugger...</source> <translation>Запуск отладчика...</translation> </message> @@ -76977,7 +76849,7 @@ <translation>Проверка версии</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="667"/> + <location filename="../UI/UserInterface.py" line="668"/> <source>Generating Plugins Toolbars...</source> <translation>Генерация панели инструментов...</translation> </message> @@ -77047,12 +76919,12 @@ <translation>Найден файл crashed-сессии. Должна ли эта сессия быть восстановлена?</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="670"/> + <location filename="../UI/UserInterface.py" line="671"/> <source>Cleaning Plugins Download Area...</source> <translation>Очистка области загрузки плагинов...</translation> </message> <message> - <location filename="../UI/UserInterface.py" line="662"/> + <location filename="../UI/UserInterface.py" line="663"/> <source>Initializing Plugins...</source> <translation>Инициализация плагинов...</translation> </message>