eric6/i18n/eric6_ru.ts

branch
maintenance
changeset 8178
c35091ef4de6
parent 8176
31965986ecd1
parent 8175
9b7131cb3407
child 8179
1b119093ed4d
--- 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&apos;s background client disconnected because of an unknown reason.</source>
         <translation>Фоновый клиент Eric&apos;а прервал соединение по неизвестной причине.</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>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Фоновый клиент &lt;b&gt;{0}&lt;/b&gt; прекратил выполнение из-за ошибки. Этот клиент необходим для работы различных плагинов.&lt;/p&gt;&lt;p&gt;Выберите &lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Да&apos;&lt;/b&gt; чтобы перезапустить его и отменить последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Повторить&apos;&lt;/b&gt; чтобы перезапустить его и последнее задание &lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Нет&apos;&lt;/b&gt; чтобы не перезапускать клиента.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Заметьте: Клиента можно перезапустить, открыв и сохранив диалог предпочтений или закрыв и снова открыв текущий проект.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="451"/>
+        <location filename="../Utilities/BackgroundService.py" line="454"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>Соединение фонового клиента &lt;b&gt;{0}&lt;/b&gt; прервано по неизвестной причине.&lt;br&gt;Перезапустить клиента?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="216"/>
+        <location filename="../Utilities/BackgroundService.py" line="219"/>
         <source>An error in Eric&apos;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(&apos;foo&apos;, 0o444) should be replaced by foo_path.chmod(0o444)</source>
-        <translation>os.chmod(&apos;foo&apos;, 0o444) следует заменить на foo_path.chmod(0o444)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="18"/>
-        <source>os.mkdir(&apos;foo&apos;) should be replaced by foo_path.mkdir()</source>
-        <translation>os.mkdir(&apos;foo&apos;) следует заменить на foo_path.mkdir()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="21"/>
-        <source>os.makedirs(&apos;foo/bar&apos;) should be replaced by bar_path.mkdir(parents=True)</source>
-        <translation>os.makedirs(&apos;foo/bar&apos;) следует заменить на bar_path.mkdir(parents=True)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="25"/>
-        <source>os.rename(&apos;foo&apos;, &apos;bar&apos;) should be replaced by foo_path.rename(Path(&apos;bar&apos;))</source>
-        <translation>os.rename(&apos;foo&apos;, &apos;bar&apos;) следует заменить на foo_path.rename(Path(&apos;bar&apos;))</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="29"/>
-        <source>os.replace(&apos;foo&apos;, &apos;bar&apos;) should be replaced by foo_path.replace(Path(&apos;bar&apos;))</source>
-        <translation>os.replace(&apos;foo&apos;, &apos;bar&apos;) следует заменить на foo_path.replace(Path(&apos;bar&apos;))</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="33"/>
-        <source>os.rmdir(&apos;foo&apos;) should be replaced by foo_path.rmdir()</source>
-        <translation>os.rmdir(&apos;foo&apos;) следует заменить на foo_path.rmdir()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="36"/>
-        <source>os.remove(&apos;foo&apos;) should be replaced by foo_path.unlink()</source>
-        <translation>os.remove(&apos;foo&apos;) следует заменить на foo_path.unlink()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="39"/>
-        <source>os.unlink(&apos;foo&apos;&apos;) should be replaced by foo_path.unlink()</source>
-        <translation>os.unlink(&apos;foo&apos;&apos;) следует заменить на 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(&apos;foo&apos;) should be replaced by foo_path.readlink()</source>
-        <translation>os.readlink(&apos;foo&apos;) следует заменить на foo_path.readlink()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="48"/>
-        <source>os.stat(&apos;foo&apos;) should be replaced by foo_path.stat() or foo_path.owner() or foo_path.group()</source>
-        <translation>os.stat(&apos;foo&apos;) следует заменить на 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(&apos;foo&apos;) should be replaced by foo_path.resolve()</source>
-        <translation>os.path.abspath(&apos;foo&apos;) следует заменить на foo_path.resolve()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="56"/>
-        <source>os.path.exists(&apos;foo&apos;) should be replaced by foo_path.exists()</source>
-        <translation>os.path.exists(&apos;foo&apos;) следует заменить на foo_path.exists()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="59"/>
-        <source>os.path.expanduser(&apos;~/foo&apos;) should be replaced by foo_path.expanduser()</source>
-        <translation>os.path.expanduser(&apos;~/foo&apos;) следует заменить на foo_path.expanduser()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="63"/>
-        <source>os.path.isdir(&apos;foo&apos;) should be replaced by foo_path.is_dir()</source>
-        <translation>os.path.isdir(&apos;foo&apos;) следует заменить на foo_path.is_dir()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="66"/>
-        <source>os.path.isfile(&apos;foo&apos;) should be replaced by foo_path.is_file()</source>
-        <translation>os.path.isfile(&apos;foo&apos;) следует заменить на foo_path.is_file()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="69"/>
-        <source>os.path.islink(&apos;foo&apos;) should be replaced by foo_path.is_symlink()</source>
-        <translation>os.path.islink(&apos;foo&apos;) следует заменить на foo_path.is_symlink()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="72"/>
-        <source>os.path.isabs(&apos;foo&apos;) should be replaced by foo_path.is_absolute()</source>
-        <translation>os.path.isabs(&apos;foo&apos;) следует заменить на foo_path.is_absolute()</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="75"/>
-        <source>os.path.join(&apos;foo&apos;, &apos;bar&apos;) should be replaced by foo_path / &apos;bar&apos;</source>
-        <translation>os.path.join(&apos;foo&apos;, &apos;bar&apos;) следует заменить на foo_path / &apos;bar&apos;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="79"/>
-        <source>os.path.basename(&apos;foo/bar&apos;) should be replaced by bar_path.name</source>
-        <translation>os.path.basename(&apos;foo/bar&apos;) следует заменить на bar_path.name</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="82"/>
-        <source>os.path.dirname(&apos;foo/bar&apos;) should be replaced by bar_path.parent</source>
-        <translation>os.path.basename(&apos;foo/bar&apos;) следует заменить на bar_path.name</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="85"/>
-        <source>os.path.samefile(&apos;foo&apos;, &apos;bar&apos;) should be replaced by foo_path.samefile(bar_path)</source>
-        <translation>os.path.samefile(&apos;foo&apos;, &apos;bar&apos;) следует заменить на foo_path.samefile(bar_path)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="89"/>
-        <source>os.path.splitext(&apos;foo.bar&apos;) should be replaced by foo_path.suffix</source>
-        <translation>os.path.splitext(&apos;foo.bar&apos;) следует заменить на foo_path.suffix</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/PathLib/translations.py" line="93"/>
-        <source>open(&apos;foo&apos;) should be replaced by Path(&apos;foo&apos;).open()</source>
-        <translation>open(&apos;foo&apos;) следует заменить на Path(&apos;foo&apos;).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>

eric ide

mercurial