Sat, 18 Sep 2010 15:58:16 +0200
Added configuration options for the web browser cache policy.
--- a/Helpviewer/HTMLResources.py Sat Sep 18 12:34:38 2010 +0200 +++ b/Helpviewer/HTMLResources.py Sat Sep 18 15:58:16 2010 +0200 @@ -57,6 +57,7 @@ <li>{3}</li> <li>{4}</li> <li>{5}</li> + <li>{6}</li> </ul> </div> </body>
--- a/Helpviewer/HelpBrowserWV.py Sat Sep 18 12:34:38 2010 +0200 +++ b/Helpviewer/HelpBrowserWV.py Sat Sep 18 15:58:16 2010 +0200 @@ -241,7 +241,9 @@ "connection."), self.trUtf8("If your computer or network is protected by a firewall " "or proxy, make sure that the browser is permitted to " - "access the network.") + "access the network."), + self.trUtf8("If your cache policy is set to offline browsing," + "only pages in the local cache are available.") ).encode("utf8")) return True except AttributeError: @@ -1147,7 +1149,9 @@ "connection."), self.trUtf8("If your computer or network is protected by a firewall or " "proxy, make sure that the browser is permitted to access " - "the network.") + "the network."), + self.trUtf8("If your cache policy is set to offline browsing," + "only pages in the local cache are available.") ) self.setHtml(html, replyUrl) self.mw.historyManager().removeHistoryEntry(replyUrl, self.title()) @@ -1246,4 +1250,4 @@ """ Public method to indicate a change of the settings. """ - self.reload() \ No newline at end of file + self.reload()
--- a/Helpviewer/Network/NetworkAccessManager.py Sat Sep 18 12:34:38 2010 +0200 +++ b/Helpviewer/Network/NetworkAccessManager.py Sat Sep 18 15:58:16 2010 +0200 @@ -133,6 +133,10 @@ if not self.__acceptLanguage.isEmpty(): req.setRawHeader("Accept-Language", self.__acceptLanguage) + # set cache policy + req.setAttribute(QNetworkRequest.CacheLoadControlAttribute, + Preferences.getHelp("CachePolicy")) + # AdBlock code if op == QNetworkAccessManager.GetOperation: if self.__adblockNetwork is None: @@ -296,4 +300,4 @@ diskCache.setMaximumCacheSize(size) else: diskCache = None - self.setCache(diskCache) \ No newline at end of file + self.setCache(diskCache)
--- a/Preferences/ConfigurationPages/HelpWebBrowserPage.py Sat Sep 18 12:34:38 2010 +0200 +++ b/Preferences/ConfigurationPages/HelpWebBrowserPage.py Sat Sep 18 15:58:16 2010 +0200 @@ -9,6 +9,7 @@ from PyQt4.QtCore import pyqtSlot from PyQt4.QtWebKit import QWebSettings +from PyQt4.QtNetwork import QNetworkRequest from .ConfigurationPageBase import ConfigurationPageBase from .Ui_HelpWebBrowserPage import Ui_HelpWebBrowserPage @@ -72,6 +73,14 @@ Preferences.getHelp("DiskCacheEnabled")) self.cacheSizeSpinBox.setValue( Preferences.getHelp("DiskCacheSize")) + cachePolicy = Preferences.getHelp("CachePolicy") + if cachePolicy == QNetworkRequest.PreferNetwork: + self.cacheKeepButton.setChecked(True) + elif cachePolicy == QNetworkRequest.PreferCache: + self.cachePreferButton.setChecked(True) + elif cachePolicy == QNetworkRequest.AlwaysCache: + self.cacheOfflineButton.setChecked(True) + self.printBackgroundsCheckBox.setChecked( Preferences.getHelp("PrintBackgrounds")) @@ -135,6 +144,16 @@ self.diskCacheCheckBox.isChecked()) Preferences.setHelp("DiskCacheSize", self.cacheSizeSpinBox.value()) + if self.cacheKeepButton.isChecked(): + Preferences.setHelp("CachePolicy", + QNetworkRequest.PreferNetwork) + elif self.cachePreferButton.isChecked(): + Preferences.setHelp("CachePolicy", + QNetworkRequest.PreferCache) + elif self.cacheOfflineButton.isChecked(): + Preferences.setHelp("CachePolicy", + QNetworkRequest.AlwaysCache) + Preferences.setHelp("PrintBackgrounds", self.printBackgroundsCheckBox.isChecked())
--- a/Preferences/ConfigurationPages/HelpWebBrowserPage.ui Sat Sep 18 12:34:38 2010 +0200 +++ b/Preferences/ConfigurationPages/HelpWebBrowserPage.ui Sat Sep 18 15:58:16 2010 +0200 @@ -7,10 +7,10 @@ <x>0</x> <y>0</y> <width>613</width> - <height>818</height> + <height>904</height> </rect> </property> - <layout class="QVBoxLayout" name="verticalLayout_3"> + <layout class="QVBoxLayout" name="verticalLayout_4"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> @@ -341,14 +341,53 @@ </property> </widget> </item> - <item row="1" column="0"> + <item row="1" column="0" colspan="3"> + <widget class="QGroupBox" name="groupBox_4"> + <property name="title"> + <string>Policy</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_3"> + <item> + <widget class="QRadioButton" name="cacheKeepButton"> + <property name="toolTip"> + <string>Select to prefer the network</string> + </property> + <property name="text"> + <string>Keep cache in sync</string> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="cachePreferButton"> + <property name="toolTip"> + <string>Select to prefer cached data</string> + </property> + <property name="text"> + <string>Use cache whenever possible</string> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="cacheOfflineButton"> + <property name="toolTip"> + <string>Select to use cached data only</string> + </property> + <property name="text"> + <string>Offline browsing mode</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item row="2" column="0"> <widget class="QLabel" name="label_7"> <property name="text"> <string>Cache size:</string> </property> </widget> </item> - <item row="1" column="1"> + <item row="2" column="1"> <widget class="QSpinBox" name="cacheSizeSpinBox"> <property name="toolTip"> <string>Enter the maximum size of the disk cache</string> @@ -367,7 +406,7 @@ </property> </widget> </item> - <item row="1" column="2"> + <item row="2" column="2"> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> @@ -435,6 +474,9 @@ <tabstop>dnsPrefetchCheckBox</tabstop> <tabstop>expireHistory</tabstop> <tabstop>diskCacheCheckBox</tabstop> + <tabstop>cacheKeepButton</tabstop> + <tabstop>cachePreferButton</tabstop> + <tabstop>cacheOfflineButton</tabstop> <tabstop>cacheSizeSpinBox</tabstop> <tabstop>printBackgroundsCheckBox</tabstop> </tabstops>
--- a/Preferences/__init__.py Sat Sep 18 12:34:38 2010 +0200 +++ b/Preferences/__init__.py Sat Sep 18 15:58:16 2010 +0200 @@ -21,7 +21,7 @@ import fnmatch import shutil -from PyQt4 import QtCore, QtGui +from PyQt4 import QtCore, QtGui, QtNetwork from PyQt4 import Qsci from PyQt4.QtWebKit import QWebSettings @@ -569,6 +569,7 @@ "WebSearchKeywords" : [], # array of two tuples (keyword, search engine name) "DiskCacheEnabled" : True, "DiskCacheSize" : 50, # 50 MB + "CachePolicy" : QtNetwork.QNetworkRequest.PreferNetwork, "AcceptCookies" : 2, # CookieJar.AcceptOnlyFromSitesNavigatedTo "KeepCookiesUntil" : 0, # CookieJar.KeepUntilExpire "FilterTrackingCookies" : True, @@ -1778,7 +1779,8 @@ return keywords elif key in ["HelpViewerType", "DiskCacheSize", "AcceptCookies", "KeepCookiesUntil", "StartupBehavior", "HistoryLimit", - "OfflineStorageDatabaseQuota", "OfflineWebApplicationCacheQuota"]: + "OfflineStorageDatabaseQuota", "OfflineWebApplicationCacheQuota", + "CachePolicy"]: return int(prefClass.settings.value("Help/" + key, prefClass.helpDefaults[key])) elif key in ["SingleHelpWindow", "SaveGeometry", "WebSearchSuggestions",
--- a/changelog Sat Sep 18 12:34:38 2010 +0200 +++ b/changelog Sat Sep 18 15:58:16 2010 +0200 @@ -1,5 +1,9 @@ Change Log ---------- +Version 5.1-snapshot-2010mmdd: +- bug fixes +- added configuration options for the web browser cache policy + Version 5.1-snapshot-20100918: - bug fixes - converted all signal/slot code to use the new API
--- a/i18n/eric5_cs.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_cs.ts Sat Sep 18 15:58:16 2010 +0200 @@ -11575,185 +11575,190 @@ <context> <name>HelpBrowser</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>Otevřít odkaz v novém tab okně<byte value="x9"/>Ctrl+LMB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Okno nápovědy</b><p>Toto okno zobrazí vybranou informaci nápovědy.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>Web inspektor...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Zkontrolujte adresu na chyby jako je <b>ww</b>.example.org místo <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation>Je-li adresa vpořádku, prověřte síťové spojení.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Je-li vaše šíť chráněna firewallem nebo proxy, ujistěte se, že váš prohlížeč má na tuto síť povolen přístup.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation>Záložka na tuto stranu</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation>Uložit lin&k</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation>Záložka na tento link</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation>Kopírovat link do schránky</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation>Otevřít obrázek v novém tabu</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation>Uložit obrázek</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation>Kopíroavt obrázek do schránky</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation>Uložit obrázek</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation>Kopíroavt obrázek do schránky</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation>Kopírovat cestu obrázku do schránky</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation>Web prohlížeč</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation>Blokovat obrázek</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation>Hledat s...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation><p>Soubor <b>{}</b> neexistuje.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation><p>Nelze spustit prohlížeč se souborem <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation><p>Nelze spustit aplikaci pro URL <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation>Chyba při načítání strany: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation>Při připojení na: {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation type="unfinished">kB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation type="unfinished">MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -12250,32 +12255,32 @@ <translation>Zapnout disk cache</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation>Velikost cache:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation>Zadejte maximální velikost diskové cache</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation> MB</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation>Tisk</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation>Vybrat pro tisk barev pozadí a obrázků</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation>Tisknout barvy pozadí a obrázky</translation> </message> @@ -12429,6 +12434,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -12457,6 +12497,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Je-li vaše šíť chráněna firewallem nebo proxy, ujistěte se, že váš prohlížeč má na tuto síť povolen přístup.</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -17278,102 +17323,102 @@ <context> <name>IconEditorGrid</name> <message> - <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> <source>Set Pixel</source> <translation>Nastavit pixel</translation> </message> <message> + <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <source>Erase Pixel</source> + <translation>Vymazat pixel</translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation>Vymazat pixel</translation> + <source>Draw Line</source> + <translation>Nakreslit linku</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation>Nakreslit linku</translation> + <source>Draw Rectangle</source> + <translation>Nakreslit obdélník</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> - <translation>Nakreslit obdélník</translation> + <source>Draw Filled Rectangle</source> + <translation>Nakreslit vyplněný obdélník</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> - <translation>Nakreslit vyplněný obdélník</translation> + <source>Draw Circle</source> + <translation>Nakreslit kruh</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> - <translation>Nakreslit kruh</translation> + <source>Draw Filled Circle</source> + <translation>Nakreslit vyplněný kruh</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> - <translation>Nakreslit vyplněný kruh</translation> + <source>Draw Ellipse</source> + <translation>Nakreslit elipsu</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> - <translation>Nakreslit elipsu</translation> + <source>Draw Filled Ellipse</source> + <translation>Nakreslit vyplněnou elipsu</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation>Nakreslit vyplněnou elipsu</translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation>Vyplnit oblast</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation>Odebrat výběr</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation><p>Obrázek ze schránky je větší než aktuální obrázek.<br/>Vložit jako nový obrázek?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation>Vložit ze schránky</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation>Vkládání obrázku</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation>Neplatná data obrázku ve schránce.</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation>Vložit ze schránky jako nový obrázek</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation>Vyčistit obrázek</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation>Změnit velikost obrázku</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation>Převést do šedi</translation> </message> @@ -17439,984 +17484,984 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation>Windows Bitmap soubor (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Graphic Interchange Format soubor (*.gif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> - <translation>Windows Icon soubor (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Graphic Interchange Format soubor (*.gif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation>Windows Icon soubor (*.ico)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation>JPEG soubor (*.jpg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation>Portable Bitmap soubor (*.pbm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Portable Graymap soubor (*.pgm)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Portable Network Graphics soubor (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Portable Graymap soubor (*.pgm)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation>Portable Network Graphics soubor (*.png)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation>Portable Pixmap soubor (*.ppm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation>Scalable Vector Graphics soubor (*.svg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation>TIFF soubor (*.tif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>X11 Bitmap soubor (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation>TIFF soubor (*.tif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>X11 Bitmap soubor (*.xbm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap soubor (*.xpm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation>Všechny soubory (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation>Nový</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation>&Nový</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> - <source>Create a new icon</source> - <translation>Vytvořit novou ikonu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <source>Create a new icon</source> + <translation>Vytvořit novou ikonu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation><b>Nová</b><p>Vytvoří se nová ikona.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation>Nové okno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation>&Nové okno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation>Otevřít nové editační okno s ikonou</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation>Otevřít nové editační okno s ikonou</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation><b>Nové okno</b><p>Otevřít nové editační okno s ikonou.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation>Otevřít</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation>&Otevřít...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> - <source>Open an icon file for editing</source> - <translation>Otevřít soubor s ikonou pro editaci</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <source>Open an icon file for editing</source> + <translation>Otevřít soubor s ikonou pro editaci</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation><b>Otevřít soubor</b><p>Otevře soubor s ikonou pro editaci. Spustí se přes dialog pro výběr souboru.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation>&Uložit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> - <source>Save the current icon</source> - <translation>Uložit aktuální ikonu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <source>Save the current icon</source> + <translation>Uložit aktuální ikonu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation><b>Uložit soubor</b><p>Uložit obsah aktuálního editačního okna s ikonou.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation>Uložit jako</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation>Uložit j&ako...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation>Uložit aktuální ikonu do nového souboru</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation><b>Uložit jako</b><p>Uloží aktuální ikonu do nového souboru.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> - <source>Close the current icon editor window</source> - <translation>Zavřít aktuální okno editoru ikon</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <source>Close the current icon editor window</source> + <translation>Zavřít aktuální okno editoru ikon</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation><b>Zavřít</b><p>Zavře aktuální okno editoru ikon.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation>Zavřít vše</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation>Z&avřít vše</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation>Zavřít všechny editační okna ikon</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation>Zavřít všechny editační okna ikon</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation><b>Zavřít vše</b><p>Zavřít všechna okna editorů ikon kromě prvního.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation>Konec</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation>&Konec</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> - <source>Quit the icon editor</source> - <translation>Ukončit editor ikon</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <source>Quit the icon editor</source> + <translation>Ukončit editor ikon</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation><b>Konec</b><p>Ukončit editor ikon.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation>Vrátit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation>&Vrátit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> - <source>Undo the last change</source> - <translation>Vrátit poslední změnu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <source>Undo the last change</source> + <translation>Vrátit poslední změnu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Vrátit</b><p>Vrátit poslední změnu.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation>Znovu použít</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation>&Znovu použít</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> - <source>Redo the last change</source> - <translation>Znovu použít poslední změnu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <source>Redo the last change</source> + <translation>Znovu použít poslední změnu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Znovu použít</b><p>Znovu použít poslední změnu.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation>Vyjmout</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation>Vyjmou&t</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation>Vyjmout výběr</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation>Vyjmout výběr</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation><b>Vyjmout</b><p>Vyjme vybranou oblast obrázku a vloží jej do schránky.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation>&Kopírovat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> - <source>Copy the selection</source> - <translation>Kopírovat výběr</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <source>Copy the selection</source> + <translation>Kopírovat výběr</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation><b>Kopírovat</b><p>Kopíruje vybranou oblast obrázku a vloží ji do schránky.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation>Vložit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation>V&ložit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> - <source>Paste the clipboard image</source> - <translation>Vložit obrázek ze schránky</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <source>Paste the clipboard image</source> + <translation>Vložit obrázek ze schránky</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation><b>Vložit</b><p>Vložit obrázek ze schránky.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation>Vložit jako nový</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation>Vložit jako &nový</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation>Nahradit aktuální obrázek tím ze schránky</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation><b>Vložit jako nový</b><p>Obrázek ze schránky nahradí aktuální obrázek.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation>Vyčistit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation>Vyči&stit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> - <source>Clear the icon image</source> - <translation>Vymazat obrázek ikony</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <source>Clear the icon image</source> + <translation>Vymazat obrázek ikony</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation><b>Vymazat</b><p>Vymaže obrázek ikony a nastaví jej jako zcela průhledný.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation>Vybrat vše</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation>Vybrat vš&e</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> - <source>Select the complete icon image</source> - <translation>Vybrat celý obrázek ikony</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <source>Select the complete icon image</source> + <translation>Vybrat celý obrázek ikony</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation><b>Vybrat celý</b><p>Vybere kopletně celý obrázek ikony.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation>Změnit velikost</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation>&Změnit velikost...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation>Změnit velikost ikony</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation>Změnit velikost ikony</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation><b>Změnit velikost......</b><p>Změnit velikost ikony.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation>Stupnice šedi</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation>&Stupnice šedi</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation>Převést ikonu do šedi</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation>Převést ikonu do šedi</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation><b>Stupnice šedi</b><p>Převést ikonu do šedi.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation>Přiblížit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation>Př&iblížit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> - <source>Zoom in on the icon</source> - <translation>Přiblížit ikonu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <source>Zoom in on the icon</source> + <translation>Přiblížit ikonu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation><b>Přiblížit</b><p>Přiblížit ikonu. Pomocná síť bude větší.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation>Oddálit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation>&Oddálit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation>Oddálit ikonu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation>Oddálit ikonu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation><b>Oddálit</b><p>Lupa na oddálení ikony. Pomocná síť bude menší.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation>Resetovat lupu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation>&Resetovat lupu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation>Lupa</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation>&Lupa...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> - <source>Zoom the icon</source> - <translation>Přiblížit ikonu</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <source>Zoom the icon</source> + <translation>Přiblížit ikonu</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation><b>Lupa</b><p>Lupa na ikonu. Otevře se dialogové okno kde se zadá požadovaná hodnota zvětšení/zmenšení.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation>Zobrazit pomocnou síť</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation>Zobrazit pomocnou &síť</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation>Přepnout zobrazování pomocné sítě</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation>Přepnout zobrazování pomocné sítě</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation><b>Zobrazit pomocnou síť</b><p>Přepíná zobrazování pomocné sítě.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation>Od ruky</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation>Od &ruky</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation><b>Od ruky</b><p>Kreslí čáry od ruky.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation>Barvítko</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation>&Barvítko</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation><b>Barvítko</b><p>Barva pixelu, na kterou se klikne, se změní na aktuálně nastavenou barvu.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation>Obdélník</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation>&Obdélník</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation><b>Obdélník</b><p>Kreslit obdélník.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation>Vyplněný obdélník</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation>Vyplněný o&bdélník</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation><b>vyplněný obdélník</b><p>Kreslit obdélník vyplněný barvou.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation>Kruh</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation><b>Kruh</b><p>Nakreslit kruh.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation>Vyplněný kruh</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation>Vyplněný k&ruh</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation><b>Vyplněný kruh</b><p>Nakreslit kruh vypněný barvou.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation>Elipsa</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation>&Elipsa</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation><b>Elipsa</b><p>Nakreslit elipsu.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation>Vyplněná elipsa</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation>Vyplněná e&lipsa</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation><b>Vyplněná elipsa</b><p>Nakreslit elipsu vypněnou barvou.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation>Vyplnit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation>&Vyplnit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation><b>Vyplit</b><p>Vyplní barvou celou ohraničenou plochu, ve které se nachází počáteční pixel (semínkové vyplňování).</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation>Linka</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation>&Linka</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation><b>Linka</b><p>Nakreslit linku.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation>Guma (průhlednost)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation>Guma (průhlednos&t)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation><b>Guma (průhlednost)</b><p>Vymaže pixely tak, že budou průhledné.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation>Obdélníkový výběr</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation>&Obdélníkový výběr</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation><b>Obdélníkový výběr</b><p>Vybrat obdélníkovou oblast v ikoně pomocí myši.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation>Kruhový výběr</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation><b>Kruhový výběr</b><p>Vybrat kruhovou oblast v ikoně pomocí myši.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation>O aplikaci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation>O &aplikaci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation>Zobrazit informace a tomto software</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation>Zobrazit informace a tomto software</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>O aplikaci</b><p>Zobrazí se informace o tomto software.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation>O Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation>O &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation>Zobrazit informace o Qt toolkitu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>O Qt</b><p>Zobrazit informace o Qt toolkitu.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation>Co je to?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation>&Co je to?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation>Kontextově senzitivní nápověda</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation>Kontextově senzitivní nápověda</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation>S&oubor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation>&Edit</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation>Poh&led</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation>&Nástroje</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation>Editovat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation>Pohled</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation>Nástroje</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation><p>Tato část status baru zobrazuje aktuální velikost lupy.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation><p>Tato část status baru zobrazuje velikost ikony.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation><p>Tato část status baru zobrazuje pozici kurzoru.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation>Otevřít soubor s ikonou</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation>Uložit ikonu do souboru</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation>Ikona uložena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation>Beze jména</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation>Editor ikon</translation> </message> @@ -18428,32 +18473,32 @@ Chcete uložit změny?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation>Multiple-Image Network Graphics soubor (*.mng)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation>Resetovat lupu ikony</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation>Resetovat lupu ikony</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation><b>Reset lupy</b><p>Reset lupy pro ikonu. Nastaví se lupa na hodnotu 100%.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation>Paintbrush Bitmap soubor (*.pcx)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation>Silicon Graphics Image soubor (*.sgi)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation>Targa Graphic soubor (*.tga)</translation> </message> @@ -18463,50 +18508,50 @@ <translation type="obsolete"><p>Soubor <b>{0}</b> již existuje.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation>eric5 editor ikon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation>Soubor '{0}' neexistuje.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation>Nelze číst soubor '{0}:{1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation>Nelze zapsat do souboru '{0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation>O eric5 editoru ikon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation>Eric5 editor ikon je jednoduchý editor pro kreslení ikon.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -21567,47 +21612,47 @@ <context> <name>NetworkAccessManager</name> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation>SSL chyby</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation>Certifikáty</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Zadejte uživatelské jméno a heslo pro '{0}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Zadejte uživatelské jméno a heslo pro {0}', realm '{1}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation><p>SSL chyby pro <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Chcete tyto chyby ignorovat?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation><p>Certifikáty:<br/>{0}<br/>Chcete akceptovat všechny certifikáty?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation><br/>Vydatavel: {0}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation><br/>Neplatný před: {0}<br/>Platný do: {1}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation><br/>Alternativní jména:<ul><li>{0}</li></ul></translation> </message> @@ -23105,12 +23150,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Předvolby exportu</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Předvolby importu</translation> </message>
--- a/i18n/eric5_de.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_de.ts Sat Sep 18 15:58:16 2010 +0200 @@ -11559,185 +11559,190 @@ <context> <name>HelpBrowser</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation><p>Es konnte kein Betrachter für die Datei <b>{0}</b> gestartet werden.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab Ctrl+LMB</source> <translation>Link in neuem Fenster öffnen\tStrg+LMK</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation><p>Die Datei <b>{0}</b> existiert nicht.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Hilfe Fenster</b><p>Dieses Fenster zeigt die ausgewählte Hilfe an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>Web Inspektor...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation>Fehler beim Laden von: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation>Beim Verbinden zu: {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Überprüfen Sie die Adresse auf Fehler wie <b>ww</b>.example.org statt <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation>Falls die Adresse stimmt, versuchen Sie, die Netzwerkverbindung zu überprüfen.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation><p>Es konnte keine Anwendung für die URL <b>{0}</b> gestartet werden.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation>Lesezeichen für diese Seite hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation>Lin&k speichern</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation>Lesezeichen für diesen Link hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation>Link in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation>Bild in neuem Register öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation>Bild speichern</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation>Bild in die Zwischenablage kopieren</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation>Bild speichern</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation>Bild in die Zwischenablage kopieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation>Bildadresse in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation>Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation>Bild blockieren</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation>Suchen mit...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation>Webdatenbankquota</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation><p>Das Datenbankquota von <strong>{0}</strong> wurde beim Zugriff auf die Datenbank <strong>{1}</strong> überschritten.</p><p>Soll es geändert werden?</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation>Neues Datenbankquota</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation>Bytes</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation>kB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation>MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation>Gib das neue Quota in MB ein (aktuell = {0}, verbraucht = {1}; Schrittweite = 5 MB):</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation>Zur Websuchleiste hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation>Methode nicht unterstützt</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation>{0} Methode wird nicht unterstützt.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation>Suchmaschine</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation>Wähle die gewünschte Suchmaschine aus</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation>Suchmaschinenname</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation>Gib einen Namen für die Suchmaschine ein</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation>Wenn die Zwischenspeicher-Regelung auf Offline-Browsing steht, sind nur Seiten im lokalen Zwischenspeicher verfügbar.</translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -12234,32 +12239,32 @@ <translation>Offline-Speicher aktivieren</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation>Speichergröße:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation>Gib die Maximalgröße des Offline-Speichers ein</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation>MB</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation>Drucken</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation>Auswählen, um Hintergrundfarben und -bilder zu drucken</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation>Hintergrundfarben und -bilder drucken</translation> </message> @@ -12413,6 +12418,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation>DNS-Vorabruf zur Verbesserung der Seitenladeleistung verwenden</translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation>Regelung</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation>Auswählen, um zuerst im Netzwerk zu suchen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation>Zwischenspeicher aktuell halten</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation>Auswählen, um Daten im Zwischenspeicher zu bevorzugen</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation>Zwischenspeicher verwenden, wenn möglich</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation>Auswählen, um nur Daten aus dem Zwischenspeicher zu verwenden</translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation>Offline-Browsing Modus</translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -12441,6 +12481,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation>Wenn die Zwischenspeicher-Regelung auf Offline-Browsing steht, sind nur Seiten im lokalen Zwischenspeicher verfügbar.</translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -17276,102 +17321,102 @@ <context> <name>IconEditorGrid</name> <message> - <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> <source>Set Pixel</source> <translation>Pixel setzen</translation> </message> <message> + <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <source>Erase Pixel</source> + <translation>Pixel löschen</translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation>Pixel löschen</translation> + <source>Draw Line</source> + <translation>Linie zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation>Linie zeichnen</translation> + <source>Draw Rectangle</source> + <translation>Rechteck zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> - <translation>Rechteck zeichnen</translation> + <source>Draw Filled Rectangle</source> + <translation>Gefülltes Rechteck zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> - <translation>Gefülltes Rechteck zeichnen</translation> + <source>Draw Circle</source> + <translation>Kreis zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> - <translation>Kreis zeichnen</translation> + <source>Draw Filled Circle</source> + <translation>Gefüllten Kreis zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> - <translation>Gefüllten Kreis zeichnen</translation> + <source>Draw Ellipse</source> + <translation>Ellipse zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> - <translation>Ellipse zeichnen</translation> + <source>Draw Filled Ellipse</source> + <translation>Gefüllte Ellipse zeichnen</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation>Gefüllte Ellipse zeichnen</translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation>Bereich füllen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation>Auswahl ausschneiden</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation><p>Das Bild der zwischenablage ist größer als das aktuelle Bild.<br/>Als neues Bild einfügen?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation>Zwischenablage einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation>Einfügen des Bildes</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation>Die Zwischenablage enthält ungültige Bilddaten.</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation>Zwischenablage als neues Bild einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation>Bild löschen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation>Bildgröße ändern</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation>In Grauwerte umwandeln</translation> </message> @@ -17437,1063 +17482,1063 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation>Windows Bitmap Datei (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Graphic Interchange Format Datei (*.gif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> - <translation>Windows Icon Datei (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Graphic Interchange Format Datei (*.gif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation>Windows Icon Datei (*.ico)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation>JPEG Datei (*.jpg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation>Portable Bitmap Datei (*.pbm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Portable Graymap Datei (*.pgm)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Portable Network Graphics Datei (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Portable Graymap Datei (*.pgm)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation>Portable Network Graphics Datei (*.png)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation>Portable Pixmap Datei (*.ppm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation>Scalable Vector Graphics Datei (*.svg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation>TIFF Datei (*.tif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>X11 Bitmap Datei (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation>TIFF Datei (*.tif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>X11 Bitmap Datei (*.xbm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap Datei (*.xpm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation>&Neu</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation>Erzeuge ein neues Icon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation><b>Neu</b><p>Dies erzeugt ein neues Icon.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation>Neues Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation>Neues &Fenster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation>Öffne ein neues Icon Editor Fenster</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation>Öffne ein neues Icon Editor Fenster</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation><b>Neues fenster</b><p>Dies öffnet ein neues Icon Editor Fenster.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> - <source>Open an icon file for editing</source> - <translation>Öffne eine Icon Datei zum editieren</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <source>Open an icon file for editing</source> + <translation>Öffne eine Icon Datei zum editieren</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation><b>Datei öffnen</b><p>Dies öffnet eine neue Icon Datei zum editieren. Es wird zunächst ein Dateiauswahldialog angezeigt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> + <location filename="IconEditor/IconEditorWindow.py" line="209"/> <source>Save the current icon</source> <translation>Speichert das aktuelle Icon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation><b>Datei speichern</b><p>Dies speichert den Inhalt des Icon Editor Fensters.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation>Speichern unter</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation>Speichert das aktuelle Icon in eine neue Datei</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Icon in eine Datei.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> - <source>Close the current icon editor window</source> - <translation>Schließt das aktuelle Icon Editor Fenster</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <source>Close the current icon editor window</source> + <translation>Schließt das aktuelle Icon Editor Fenster</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation><b>Schließen</b><p>Schließt das aktuelle Icon Editor Fenster.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation>Alle &schließen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation>Schließt alle Icon Editor Fenster</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation>Schließt alle Icon Editor Fenster</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation><b>Alle schließen</b><p>Schließt alle Icon Editor Fenster mit Ausnahme des ersten.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation>B&eenden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> + <location filename="IconEditor/IconEditorWindow.py" line="260"/> <source>Quit the icon editor</source> <translation>Beendet den Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation><b>Beenden</b><p>Beendet den Icon Editor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation>Rückgängig</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation>&Rückgängig</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> - <source>Undo the last change</source> - <translation>Die letzte Änderung rückgängig machen</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <source>Undo the last change</source> + <translation>Die letzte Änderung rückgängig machen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Rückgängig</b><p>Dies macht die letzte Änderung rückgängig.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation>Wieder&herstellen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Redo the last change</source> <translation>Die letzte Änderung wiederherstellen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Wiederherstellen</b><p>Dies stellt die letzte Änderung wieder her.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation>Ausschneiden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation>&Ausschneiden</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> + <location filename="IconEditor/IconEditorWindow.py" line="308"/> <source>Cut the selection</source> <translation>Schneidet die Auswahl aus</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation><b>Ausschneiden</b><p>Dies schneidet den ausgewählten Bildbereich aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation>&Kopieren</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Einfg</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> + <location filename="IconEditor/IconEditorWindow.py" line="322"/> <source>Copy the selection</source> <translation>Kopiert die Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation><b>Kopieren</b><p>Dies kopiert den ausgewählten Bildbereich in die Zwischenablage.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation>Einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation>Ein&fügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> - <source>Paste the clipboard image</source> - <translation>Fügt das Bild der Zwischenablage ein</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <source>Paste the clipboard image</source> + <translation>Fügt das Bild der Zwischenablage ein</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation><b>Einfügen</b><p>Fügt das Bild der Zwischenablage ein.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation>Als Neu einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation>Als &Neu einfügen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation><b>Als Neu einfügen</b><p>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation>&Löschen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation>Löscht das Icon</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation><b>Löschen</b><p>Löscht das Icon und setzt es auf vollständig transparent.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation>Alles auswählen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation>&Alles auswählen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> + <location filename="IconEditor/IconEditorWindow.py" line="375"/> <source>Select the complete icon image</source> <translation>Wählt das komplette Icon aus</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation><b>Alles auswählen</b><p>Wählt das komplette Icon aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation>Größe ändern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation>&Größe ändern...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation>Ändert die Größe des Icons</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation>Ändert die Größe des Icons</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation><b>Größe ändern...</b><p>Ändert die Größe des Icons.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation>Graustufen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation>Gra&ustufen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation>Konvertiert das Icon in Graustufen</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation>Konvertiert das Icon in Graustufen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation><b>Graustufen</b><p>Konvertiert das Icon in Graustufen.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation>Ver&größern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> + <location filename="IconEditor/IconEditorWindow.py" line="436"/> <source>Zoom in on the icon</source> <translation>Iconansicht vergrößern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation><b>Vergrößern</b><p>Das angezeigte Icon vergrößern. Dies stellt das Gitter größer dar.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> + <location filename="IconEditor/IconEditorWindow.py" line="449"/> <source>Zoom out on the icon</source> <translation>Iconansicht verkleinern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation><b>Verkleinern</b><p>Das angezeigte Icon verkleinern. Dies stellt das Gitter kleiner dar.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation>Vergrößerung zurücksetzen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation>Vergrößerung &zurücksetzen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation>Maßstab</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation>&Maßstab...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation>Den Maßstab des Icons ändern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation><b>Maßstab</b><p>Dies ändert den Iconmaßstab. Es wird ein Dialog eingeblendet, in dem der Maßstab eingegeben werden kann.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation>Gitter anzeigen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation>&Gitter anzeigen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation>Schaltet die Anzeige des Gitters um</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation>Schaltet die Anzeige des Gitters um</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation><b>Gitter anzeigen</b><p>Schaltet die Anzeige des Gitters um.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation>Freihand</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation>&Freihand</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation><b>Freihand</b><p>Zeichnet nichtlineare Linien.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation>Farbauswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation>Far&bauswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation><b>Farbauswahl</b><p>Die farbe des Pixels, auf das geklickt wurde, wird die aktuelle Zeichenfarbe.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation>Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation>&Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation><b>Rechteck</b><p>Zeichnet ein Rechteck.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation>Gefülltes Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation>&Gefülltes Rechteck</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation><b>Gefülltes Rechteck</b><p>Zeichnet ein gefülltes Rechteck.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation>Kreis</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation><b>Kreis</b><p>Zeichnet einen Kreis.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation>Gefüllter Kreis</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation>Gef&üllter Kreis</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation><b>Gefüllter Kreis</b><p>Zeichnet einen gefüllten Kreis.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation>Ellipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation>&Ellipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation><b>Ellipse</b><p>Zeichnet eine Ellipse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation>Gefüllte Ellipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation>Gefüllte Elli&pse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation><b>Gefüllte Ellipse</b><p>Zeichnet eine gefüllte Ellipse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation>Durchgehende Füllung</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation>&Durchgehende Füllung</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation><b>Durchgehende Füllung</b><p>Benchbarte Pixel der selben Farbe werden mit der aktuellen Farbe gefüllt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation>Linie</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation>&Linie</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation><b>Linie</b><p>Zeichnet eine Linie.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation>Radierer (transparent)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation>Radierer (&transparent)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation><b>Radierer (transparent)</b><p>Löscht Pixel indem sie auf transparent gesetzt werden.</b></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation>Rechteck-Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation>Rechteck-&Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation><b>Rechteck-Auswahl</b><p>Wählt einen rechteckigen Bereich des Icons mit der Maus aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation>Kreisförmige Auswahl</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation><b>Kreisförmige Auswahl</b><p>Wählt einen kreisförmigen Bereich des Icons mit der Maus aus.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation>Ü&ber</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation>Zeigt Informationen zu diesem Programm an</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation>Zeigt Informationen zu diesem Programm an</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation>Zeige Informationen über das Qt Toolkit an</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Über Qt</b><p>Zeige Informationen über das Qt Toolkit an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation>&Was ist das?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation>Kontextsensitive Hilfe</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation>Kontextsensitive Hilfe</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation>&Bearbeiten</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation>&Ansicht</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation>Werkzeuge</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt den aktuellen Vergrößerungsfaktor an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die aktuelle Icongröße an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation><p>Dieser Teil der Statusleiste zeigt die Cursorposition an.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation>Icon Datei öffnen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation>Icon Datei speichern</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation>Icon gespeichert</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation>Unbenannt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation>Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation>Die Vergrößerung des Icons zurücksetzen</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation>Die Vergrößerung des Icons zurücksetzen</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung des Icons zurück. Es setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation>Paintbrush Bitmap Datei (*.pcx)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation>Silicon Graphics Bild Datei (*.sgi)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation>Targa Grapfik Datei (*.tga)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation>eric5 Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation>Die Datei '{0}' existiert nicht.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation>Datei {0} kann nicht gelesen werden: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation>Datei {0} kann nicht geschrieben werden: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation>Über den eric5 Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation>Der eric5 Icon Editor ist ein Komponente zur Ausführung einfacher Icon Bearbeitungsfunktionen.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation>Das Icon Bild hat ungesicherte Änderungen.</translation> </message> @@ -21426,47 +21471,47 @@ <context> <name>NetworkAccessManager</name> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Gib Nutzernamen und Passwort für '{0}' ein</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Gib Nutzernamen und Passwort für '{0}' und Realm '{1}' ein</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation><p>SSL Fehler für <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Sollen diese Fehler ignoriert werden?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation>Zertifikate</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation><p>Zertifikate:<br/>{0}<br/>Sollen alle diese Zertifikate akzeptiert werden?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation><br/>Aussteller: {0}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation><br/>Gültig ab: {0}<br/>Gültig bis: {1}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation><br/>Alternative Namen:<ul><li>{0}</li></ul></translation> </message> @@ -22963,12 +23008,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Konfiguration exportieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Konfiguration importieren</translation> </message>
--- a/i18n/eric5_es.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_es.ts Sat Sep 18 15:58:16 2010 +0200 @@ -11598,185 +11598,190 @@ <context> <name>HelpBrowser</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>Abrir enlace en Nueva Pestaña Ctrl+LMB (botón izquierdo del ratón)</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Ventana de Ayuda</b><p>Esta ventana muestra la información de ayuda seleccionada.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>Inspector Web...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Compruebe que la dirección no tenga errores como <b>ww</b>.ejemplo.org en lugar de <b>www</b>.ejemplo.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation>Si la dirección es correcta, intente comprobar la conexión de red.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Si el ordenador o la red están protegidos por un firewall o un proxy, asegúrese de que al navegador se le permite acceder a la red.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation>Marcador a esta Página</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation>Guardar &Enlace</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation>Marcador a este Enlace</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation>Copiar Enlace al Portapapeles</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation>Abrir Imagen en Nueva Pestaña</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation>Guardar imagen</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation>Copiar Imagen al Portapapeles</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation>Guardar imagen</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation>Copiar Imagen al Portapapeles</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation>Copiar Ubicación de la Imagen al Portapapeles</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation>Navegador Web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation>Bloquear Imagen</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation>Buscar con...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation><p>El archivo <b>{0}</b> no existe.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation><p>No se ha podido ejecutar un visor para el archivo <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation><p>No se pudo ejecutar una aplicación para la URL <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation>Error al cargar la página: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation>Al conectar con: {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation>Cuota de base de datos web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation><p>La cuota de base de datos de <strong>{0}</strong> se ha superado mientras se accedía a la base de datos <strong>{1}</strong>.</p><p>¿Debe ser cambiada?</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation>Nueva cuota de base de datos web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation>bytes</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation>kB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation>MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation>Introducir la nueva cuota en MB (actual = {0}, usados = {1}; tamaño de paso = 5MB):</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation>Añadir a la barra de búsqueda web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation>Método no soportado</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation>El método {0} no está soportado.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation>Motor de búsqueda</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation>Elegir el motor de búsqueda deseado</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation>Nombre de motor</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation>Introducir el nombre para el motor</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -12273,32 +12278,32 @@ <translation>Habilitar caché de disco</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation>Tamaño de Caché:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation>Introduzca el tamaño máximo del caché de disco</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation> MB</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation>Imprimiendo</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation>Seleccionar para imprimir los colores de fondo y las imágenes</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation>Imprimir colores de fondo e imágenes</translation> </message> @@ -12452,6 +12457,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation>Utilizar DNS prefetching (pre-búsqueda) para mejorar la carga de páginas</translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -12480,6 +12520,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Si el ordenador o la red están protegidos por un firewall o un proxy, asegúrese de que al navegador se le permite acceder a la red.</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -17326,102 +17371,102 @@ <context> <name>IconEditorGrid</name> <message> - <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> <source>Set Pixel</source> <translation>Establecer Pixel</translation> </message> <message> + <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <source>Erase Pixel</source> + <translation>Borrar Pixel</translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation>Borrar Pixel</translation> + <source>Draw Line</source> + <translation>Dibujar Línea</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation>Dibujar Línea</translation> + <source>Draw Rectangle</source> + <translation>Dibujar Rectángulo</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> - <translation>Dibujar Rectángulo</translation> + <source>Draw Filled Rectangle</source> + <translation>Dibujar Rectángulo Lleno</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> - <translation>Dibujar Rectángulo Lleno</translation> + <source>Draw Circle</source> + <translation>Dibujar Círculo</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> - <translation>Dibujar Círculo</translation> + <source>Draw Filled Circle</source> + <translation>Dibujar Círculo Lleno</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> - <translation>Dibujar Círculo Lleno</translation> + <source>Draw Ellipse</source> + <translation>Dibujar Elipse</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> - <translation>Dibujar Elipse</translation> + <source>Draw Filled Ellipse</source> + <translation>Dibujar Elipse Llena</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation>Dibujar Elipse Llena</translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation>Rellenar Region</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation>Cortar Selección</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation>Pegar</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation><p>La imagen del portapapeles es mayor que la imagen actual.<br/>¿Pegar como nueva imagen?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation>Pegar Contenido del Portapapeles</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation>Pegando Imagen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation>Datos de Imagen en el portapapeles no válidos.</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation>Pegar Contenido del Portapapeles como Nueva Imagen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation>Limpiar Imagen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation>Cambiar Tamaño de Imagen</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation>Convertir a Escala de Grises</translation> </message> @@ -17487,984 +17532,984 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation>Archivo de Bitmap de Windows (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Archivo de Formato Gráfico de Intercambio (*.gif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> - <translation>Archivo de Icono de Windows (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Archivo de Formato Gráfico de Intercambio (*.gif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation>Archivo de Icono de Windows (*.ico)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation>Archivo JPEG (*.jpg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation>Archivo de Bitmap Portable (*.pbm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Archivo de Portable Graymap (*.pgm)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Archivo Portable Network Graphics (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Archivo de Portable Graymap (*.pgm)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation>Archivo Portable Network Graphics (*.png)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation>Archivo de Portable Pixmap (*.ppm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation>Archivo de Scalable Vector Graphics (*.svg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation>Archivo TIFF (*.tif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>Archivo de X11 Bitmap (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation>Archivo TIFF (*.tif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>Archivo de X11 Bitmap (*.xbm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation>Archivo de X11 Pixmap (*.xpm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation>Todos los Archivos</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation>Nuevo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation>&Nuevo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation>Crear nuevo icono</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation><b>Nuevo</b><p>Crea un icono nuevo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation>Nueva Ventana</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation>Nueva &Ventana</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation>Abrir una nueva ventana de editor de iconos</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation>Abrir una nueva ventana de editor de iconos</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation><b>Nueva Ventana</b><p>Abre una nueva ventana de editor de iconos.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> + <location filename="IconEditor/IconEditorWindow.py" line="195"/> <source>Open an icon file for editing</source> <translation>Abre un archivo de icono para editar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation><b>Abrir Archivo</b><p>Abre un nuevo archivo de icono para edictar. Muestra un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation>&Guardar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> - <source>Save the current icon</source> - <translation>Guarda el icono actual</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <source>Save the current icon</source> + <translation>Guarda el icono actual</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation><b>Guardar archivo</b><p>Almacena el contenido de la ventana de edición de iconos.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation>Guardar como</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation>Guardar Co&mo...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation>Guarda el icono actual a un nuevo archivo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation><b>Guardar como</b><p>Guarda el icono actual en un nuevo archivo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation>&Cerrar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="236"/> <source>Close the current icon editor window</source> <translation>Cierra la ventana actual de edición de iconos</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation><b>Cerrar</b><p>Cierra la ventana actual de edición de iconos.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation>Cerrar todo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation>Cerrar &Todo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation>Cerrar todas las ventanas de edición de iconos</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation>Cerrar todas las ventanas de edición de iconos</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation><b>Cerrar Todo</b><p>Cierra todas las ventanas de edición de iconos excepto la primera.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation>Salir</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation>&Salir</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> + <location filename="IconEditor/IconEditorWindow.py" line="260"/> <source>Quit the icon editor</source> <translation>Salir del editor de iconos</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation><b>Salir</b><p>Salir del editor de iconos.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation>Deshacer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation>&Deshacer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> + <location filename="IconEditor/IconEditorWindow.py" line="281"/> <source>Undo the last change</source> <translation>Revierte el último cambio</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Deshacer</b><p>Deshace el último cambio hecho en el editor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation>Rehacer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation>&Rehacer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Redo the last change</source> <translation>Rehacer el último cambio</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Rehacer</b><p>Rehace el último cambio hecho en el editor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation>Cortar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation>Cor&tar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation>Cortar la selección</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation>Cortar la selección</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation><b>Cortar</b><p>Cortar la imagen seleccionada y la envía al portapapeles.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation>&Copiar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> + <location filename="IconEditor/IconEditorWindow.py" line="322"/> <source>Copy the selection</source> <translation>Copia la selección</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation><b>Copiar</b><p>Copiar la imagen seleccionada al portapapeles.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation>Pegar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation>&Pegar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> - <source>Paste the clipboard image</source> - <translation>PEgar la imagen en el portapapeles</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <source>Paste the clipboard image</source> + <translation>PEgar la imagen en el portapapeles</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation><b>Pegar</b><p>Pegar la imagen del portapapeles.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation>Pegar como Nuevo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation>Pegar como &Nuevo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation>Pega la imagen del portapapeles reemplazando la imagen actual</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation><b>Pegar como Nuevo</b><p>Pega la imagen del portapapeles reemplazando la imagen actual.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation>Limpiar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation>&Limpiar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation>Limpiar la imagen de icono</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation><b>Limpiar</b><p>Limpia la imagen del icono y la establece como completamente transparente.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation>Seleccionar todo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation>Seleccionar &todo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> - <source>Select the complete icon image</source> - <translation>Seleccionar imagen de icono completa</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <source>Select the complete icon image</source> + <translation>Seleccionar imagen de icono completa</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation><b>Seleccionar Todo</b><p>Selecciona la imagen de icono completa.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation>Cambiar Tamaño</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation>Cambiar &Tamaño...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation>Cambiar tamaño del icono</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation>Cambiar tamaño del icono</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation><b>Cambiar Tamaño...</b><p>Cambia el tamaño del icono.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation>Escala de grises</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation>Escala de &grises</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation>Cambia el icono a escala de grises</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation>Cambia el icono a escala de grises</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation><b>Escala de Grises</b><p>Cambia el icono a escala de grises.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation>Aumentar zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation>A&umentar Zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> - <source>Zoom in on the icon</source> - <translation>Aumentar zoom en el icono</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <source>Zoom in on the icon</source> + <translation>Aumentar zoom en el icono</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation><b>Aumentar Zoom</b><p>Aumenta el zoom sobre el icono. Esto provoca que el grid sea mayor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation>Disminuir Zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation>Dismi&nuir Zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation>Disminuir zoom en el icono</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation>Disminuir zoom en el icono</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation><b>Disminuir Zoom</b><p>Disminuir el zoom en el icono. Esto provoca que el grid sea menor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation>Restablecer zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation>&Restablecer zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation>Zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation>&Zoom...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation>Zoom sobre el icono</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation><b>Zoom</b><p>Zoom sobre el icono. Abre un diálogo donde se puede introducir el factor de zoom deseado.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation>Mostrar Grid</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation>Mostrar &Grid</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation>Conmutar la visualización del grid</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation>Conmutar la visualización del grid</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation><b>Mostrar Grid</b><p>Conmuta la visualización del grid.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation>Freehand</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation>&Freehand</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation><b>Free hand</b><p>Dibuja formas no lineares.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation>Selector de Color</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation>Selector de &Color</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation><b>Selector de Color</b><p>El color del pixel sobre el que se hace click pasa a ser el color actual de dibujo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation>Rectángulo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation>&Rectángulo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation><b>Rectángulo</b><p>Dibujar un rectángulo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation>Rectángulo Lleno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation>Rectángulo &Lleno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation><b>Rectángulo Lleno</b><p>Dibujar un rectángulo lleno.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation>Círculo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation><b>Círculo</b><p>Dibujar un círculo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation>Círculo Lleno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation>Cí&rculo Lleno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation><b>Círculo Lleno</b><p>Dibujar un círculo lleno.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation>Elipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation>&Elipse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation><b>Elipse</b><p>Dibujar una elipse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation>Elipse Llena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation>Eli&pse Llena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation><b>Elipse Llena</b><p>Dibujar una elipse llena.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation>Flood Fill</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation>Fl&ood Fill</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation><b>Flood Fill</b><p>Llenar píxeles adjuntos del mismo color con el color actual.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation>Línea</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation>&Línea</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation><b>Línea</b><p>Dibujar una línea.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation>Goma de Borrar (Transparente)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation>Goma de Borrar (&Transparente)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation><b>Goma de Borrar (Transparente)</b><p>Borra píxeles estableciéndolos como transparentes.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation>Selección Rectangular</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation>Selección Rect&angular</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation><b>Selección Rectangular</b><p>Seleccionar una sección rectangular del icono utilizando el ratón.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation>Selección Circular</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation><b>Selección Circular</b><p>Seleccionar una sección circular del icono utilizando el ratón.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation>Acerca de</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation>&Acerca de</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation>Muestra información acerca de este software</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation>Muestra información acerca de este software</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>Acerca de</b><p>Muestra información acerca de este software.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation>Acerca de Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation>Acerca de &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation>Muestra información sobre las herramientas Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>Acerca de Qt</b><p>Muestra información sobre las herramientas Qt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation>¿Qué es esto?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation>¿&Qué es esto?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation>Ayuda sensible al contexto</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation>Ayuda sensible al contexto</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostrar ayuda sensible al contexto</b><p>En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation>&Archivo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation>&Editar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation>&Ver</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation>&Herramientas</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation>A&yuda</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation>Archivo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation>Editar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation>Herramientas</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation><p>Esta zona de la barra de estado muestra el factor de zoom actual.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation><p>Esta zona de la barra de estado muestra el tamaño del icono.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation><p>Esta zona de la barra de estado muestra la posición del cursor.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation>Abrir archivo de icono</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation>Guardar archivo de icono</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation>Icono guardado</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation>Sin título</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation>Editor de Iconos</translation> </message> @@ -18476,32 +18521,32 @@ ¿Desea guardar los cambios?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation>Archivo de Multiple-Image Network Graphics (*.mng)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation>Restablecer el zoom aplicado al icono</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation>Restablecer el zoom aplicado al icono</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation><b>Restablecer zoom</b><p>Restablece el zoom aplicado al icono. Establece el factor de zoom a 100%.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation>Archivo de Bitmap de Pincel (*.pcx)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation>Archivo de Silicon Graphics Image (*.sgi)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation>Archivo de Targa Graphic (*.tga)</translation> </message> @@ -18511,51 +18556,51 @@ <translation type="obsolete"><p>El archivo <b>{0}</b> ya existe.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation>Editor de Iconos de eric5</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation>El archivo {0} no existe.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation>No se puede leer el archivo {0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation>No se puede guardar el archivo {0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation>Acerca del Editor de Iconos de eric5</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation>El Editor de Iconos de eric5 es un componente de edición de iconos para llevar a cabo tareas de dibujado de iconos.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -21620,47 +21665,47 @@ <context> <name>NetworkAccessManager</name> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation>Errores de SSL</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation>Certificados</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Introduzca nombre de usuario y contraseña para '{0}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Introduzca nombre de usuario y contraseña para '{0}', reino {1}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation><p>Errores de SSL para <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>¿Desea ignorar estos errores?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation><p>Certificados:<br/>{0}<br/>¿Desea aceptar todos estos certificados?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation><br/>Emisor: {0}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation><br/>No válido antes de: {0}<br/>Válido Hasta: {1}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation><br/>Nombres alternativos:<ul><li>{0}</li></ul></translation> </message> @@ -23161,12 +23206,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Exportar Preferencias</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Importar Preferencias</translation> </message>
--- a/i18n/eric5_fr.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_fr.ts Sat Sep 18 15:58:16 2010 +0200 @@ -12601,17 +12601,17 @@ <translation type="obsolete"><p>Le fichier d'aide <b>%1</b> n'existe pas.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>Ouvrir le lien dans un nouvel onglet<byte value="x9"/>Ctrl+LMB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Fenêtre d'aide</b><p>Cette fenêtre affiche l'aide sélectionnée</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>Inspecteur Web...</translation> </message> @@ -12621,170 +12621,175 @@ <translation type="obsolete"><html><head><title>Fenêtre d'aide</title></head><body><p>Impossible de charger l'URL demandée <b>%1</b></p><p>Raison: %2</p></body></html></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation type="unfinished">Enregistrer l'image</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation type="unfinished">Enregistrer l'image</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation type="unfinished">Navigateur Web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation type="unfinished">octets</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation type="unfinished">kB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation type="unfinished">MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -13449,32 +13454,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation type="unfinished"></translation> </message> @@ -13628,6 +13633,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -13656,6 +13696,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -18628,102 +18673,102 @@ <context> <name>IconEditorGrid</name> <message> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> + <source>Set Pixel</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="191"/> - <source>Set Pixel</source> + <source>Erase Pixel</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation type="unfinished"></translation> + <source>Draw Line</source> + <translation type="unfinished">Ligne verticale</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation type="unfinished">Ligne verticale</translation> + <source>Draw Rectangle</source> + <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> + <source>Draw Filled Rectangle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> + <source>Draw Circle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> + <source>Draw Filled Circle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> + <source>Draw Ellipse</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> + <source>Draw Filled Ellipse</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation type="unfinished">Coller</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation type="unfinished"></translation> </message> @@ -18789,868 +18834,868 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> + <source>Graphic Interchange Format File (*.gif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> + <source>Portable Graymap File (*.pgm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> + <source>TIFF File (*.tif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation type="unfinished">Tous fichiers (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation type="unfinished">Nouveau</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation type="unfinished">Nouvelle fenêtre</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation type="unfinished">Ouvrir</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation type="unfinished">&Ouvrir...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished">Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> + <location filename="IconEditor/IconEditorWindow.py" line="195"/> <source>Open an icon file for editing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation type="unfinished">&Enregistrer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> - <source>Save the current icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <source>Save the current icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation type="unfinished">Enregistrer sous</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished">Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation type="unfinished">Fermer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation type="unfinished">&Fermer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished">Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="236"/> <source>Close the current icon editor window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation type="unfinished">Tout fermer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation type="unfinished">&Tout fermer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation type="unfinished">Quitter</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation type="unfinished">&Quitter</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished">Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> - <source>Quit the icon editor</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <source>Quit the icon editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation type="unfinished">Défaire</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation type="unfinished">&Défaire</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished">Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished">Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> + <location filename="IconEditor/IconEditorWindow.py" line="281"/> <source>Undo the last change</source> <translation type="unfinished">Annule la dernière modification</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation type="unfinished">Refaire</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation type="unfinished">&Refaire</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished">Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> - <source>Redo the last change</source> - <translation type="unfinished">Recharge la dernière modification</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <source>Redo the last change</source> + <translation type="unfinished">Recharge la dernière modification</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation type="unfinished">Couper</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation type="unfinished">Cou&per</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished">Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished">Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation type="unfinished">Coupe la sélection</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation type="unfinished">Coupe la sélection</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation type="unfinished">Copier</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation type="unfinished">&Copier</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> + <location filename="IconEditor/IconEditorWindow.py" line="322"/> <source>Copy the selection</source> <translation type="unfinished">Copie la sélection</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation type="unfinished">Coller</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation type="unfinished">Col&ler</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished">Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished">Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> + <location filename="IconEditor/IconEditorWindow.py" line="336"/> <source>Paste the clipboard image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation type="unfinished">Effacer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation type="unfinished">Ef&facer</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished">Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation type="unfinished">Tout sélectionner</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished">Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> + <location filename="IconEditor/IconEditorWindow.py" line="375"/> <source>Select the complete icon image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation type="unfinished">Zoom avant</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation type="unfinished">Zoom a&vant</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation type="unfinished">Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> + <location filename="IconEditor/IconEditorWindow.py" line="436"/> <source>Zoom in on the icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation type="unfinished">Zoom arrière</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation type="unfinished">Zoom a&rrière</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation type="unfinished">Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished">Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation type="unfinished">Zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation type="unfinished">Ligne</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation type="unfinished">À propos de</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation type="unfinished">&À propos de </translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation type="unfinished">Affiche les informations concernant le logiciel</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation type="unfinished">Affiche les informations concernant le logiciel</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>À propos de</b><p>Affiche certaines informations concernant le logiciel.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation type="unfinished">À propos de Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation type="unfinished">À propos de &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation type="unfinished">Affiche les informations concernant Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"><b>À propos de Qt</b><p>Affiche les informations concernant Qt</p></translation> </message> @@ -19660,103 +19705,103 @@ <translation type="obsolete"><b>À propos de KDE</b><p>Affiche les informations concernant KDE.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation type="unfinished">Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation type="unfinished">&Qu'est-ce que c'est?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished">Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation type="unfinished">Aide contextuelle</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation type="unfinished">Aide contextuelle</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"><b>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation type="unfinished">&Fichier</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation type="unfinished">&Edition</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation type="unfinished">&Affichage</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation type="unfinished">&Outils</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation type="unfinished">A&ide</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation type="unfinished">Fichier</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation type="unfinished">Affichage</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation type="unfinished">Outils</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation type="unfinished"></translation> </message> @@ -19779,12 +19824,12 @@ <translation type="obsolete">Impossible d'écrire le fichier %1:%2.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation type="unfinished">SansTitre</translation> </message> @@ -19794,84 +19839,84 @@ <translation type="obsolete">%1[*] - %2</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -23243,47 +23288,47 @@ <translation type="obsolete"><b>Connexion au proxy '%1' en utilisant:</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation type="unfinished">Erreurs SSL</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation type="unfinished"></translation> </message> @@ -25014,12 +25059,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Export des préférences</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Import des préférences</translation> </message>
--- a/i18n/eric5_it.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_it.ts Sat Sep 18 15:58:16 2010 +0200 @@ -11607,185 +11607,190 @@ <context> <name>HelpBrowser</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>Apri link in una Nuova Scheda<byte value="x9"/>Ctrl+LMB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Finestra di help</b><p>Questa finestra mostra le informazioni di aiuto selezionate.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>Web Inspector...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Controlla l'indirizzo per errori tipo <b>ww</b>.example.org invece di <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation>Se l'indirizzo è corretto, prova a controllare la connessione di rete.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che il browser possa accedere alla rete.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation>Inserisci nei segnalibri questa pagina</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation>Salva lin&k</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation>Insersci nei bookmark questo link</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation>Copia il link nella Clipboard</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation>Apri immagine in una nuova linguetta</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation>Salva immagine</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation>Copia immagine nella Clipboard</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation>Salva immagine</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation>Copia immagine nella Clipboard</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation>Copia la posizione dell'immagine nella Clipboard</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation>Browser Web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation>Blocca immagine</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation>Cerca con...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation><p>Il file <b>{0}</b> non esiste.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation><p>Non posso avviare un visualizzatore per il file <b>{0}</b>.<p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation><p>Non posso lanciare un'applicazione per l'URL <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation>Errore nel caricamento della pagina: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation>Nella connessione a: {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation type="unfinished">bytes</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation type="unfinished">kB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation type="unfinished">MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -12282,32 +12287,32 @@ <translation>Abilita cache su disco</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation>Dimensione cache:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation>Inserisci la dimensione massima della cache su disco</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation>MB</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation>Stampa in corso</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation>Seleziona per stampare i colori di background e le immagini</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation>Stampa colori di background e le immagini</translation> </message> @@ -12461,6 +12466,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -12489,6 +12529,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che il browser possa accedere alla rete.</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -17334,102 +17379,102 @@ <context> <name>IconEditorGrid</name> <message> - <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> <source>Set Pixel</source> <translation>Imposta Pixel</translation> </message> <message> + <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <source>Erase Pixel</source> + <translation>Cancella Pixel</translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation>Cancella Pixel</translation> + <source>Draw Line</source> + <translation>Disegna linea</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation>Disegna linea</translation> + <source>Draw Rectangle</source> + <translation>Disegna rettangolo</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> - <translation>Disegna rettangolo</translation> + <source>Draw Filled Rectangle</source> + <translation>Disegna rettangolo pieno</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> - <translation>Disegna rettangolo pieno</translation> + <source>Draw Circle</source> + <translation>Disegna circonferenza</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> - <translation>Disegna circonferenza</translation> + <source>Draw Filled Circle</source> + <translation>Disegna circonferenza piena</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> - <translation>Disegna circonferenza piena</translation> + <source>Draw Ellipse</source> + <translation>Disegna ellisse</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> - <translation>Disegna ellisse</translation> + <source>Draw Filled Ellipse</source> + <translation>Desegna ellisse piena</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation>Desegna ellisse piena</translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation>Riempi regione</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation>Taglia selezione</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation><p>L'immagine nella clipboard è più grande dell'immagine attuale.<br/>Incolla come nuova immagine?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation>Incolla Clipboard</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation>Incollaggio Immagine</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation>Dati immagine nella clipboard non validi.</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation>Incolla Clipboard come Nuova Immagine</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation>Pulisci Immagine</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation>Ridimensiona immagine</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation>Converti a scala di grigio</translation> </message> @@ -17495,984 +17540,984 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation>Windows Bitmap File (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Graphic Interchange Format File (*.gif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> - <translation>Windows Icon File (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Graphic Interchange Format File (*.gif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation>Windows Icon File (*.ico)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation>JPEG File (*.jpg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation>Portable Bitmap File (*.pbm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Portable Graymap File (*.pgm)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Portable Network Graphics File (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Portable Graymap File (*.pgm)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation>Portable Network Graphics File (*.png)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation>Portable Pixmap File (*.ppm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation>Scalable Vector Graphics File (*.svg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation>TIFF File (*.tif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>X11 Bitmap File (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation>TIFF File (*.tif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>X11 Bitmap File (*.xbm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap File (*.xpm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation>Tutti i file (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation>Nuovo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation>&Nuova</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation>Crea una nuova icona</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation><b>Nuova</b><p>Crea una nuova icona.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation>Nuova finestra</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation>Nuova &Finestra</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation>Apri una nuova finestra dell'editor di icone</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation>Apri una nuova finestra dell'editor di icone</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation><b>Nuova finestra</b><p>Apre una nuova finestra dell'editor di icone.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation>&Apri...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> + <location filename="IconEditor/IconEditorWindow.py" line="195"/> <source>Open an icon file for editing</source> <translation>Apri un file icona per la modifica</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation><b>Apri file</b><p>Apre un nuovo file icona per la modifica. Apre un dialogo per selezionare il fiel.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation>&Salva</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> - <source>Save the current icon</source> - <translation>Salva l'icona corrente</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <source>Save the current icon</source> + <translation>Salva l'icona corrente</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation><b>Save File</b><p>Salva il contenuto della finestra dell'editor di icone.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation>Salva come</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation>S&alva come...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Ctrl+Shift+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation>Salva l'icona corrente in un nuovo file</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation><b>Salva come </b><p>Salva l'icona corrente in un nuovo file.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation>&Chiudi</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="236"/> <source>Close the current icon editor window</source> <translation>Chiudi la finestra corrente dell'editor di icone</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation><b>Chiudi</b><p>Chiudi la finestra corrente dell'editor di icone.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation>Chiudi tutti</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation>Chiudi &tutti</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation>Chiudi tutte le finestre dell'editor di icone</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation>Chiudi tutte le finestre dell'editor di icone</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation><b>Chiudi tutti</b><p>Chiudi tutte le finestre dell'editor di icone esclusa la prima.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation>Esci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation>&Esci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> + <location filename="IconEditor/IconEditorWindow.py" line="260"/> <source>Quit the icon editor</source> <translation>Esci dell'editor di icone</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation><b>Esci</b><p>Esci dall'editor di icone.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation>Undo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation>&Undo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> + <location filename="IconEditor/IconEditorWindow.py" line="281"/> <source>Undo the last change</source> <translation>Annulla l'ultima modifica</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Annulla</b><p>Annulla l'ultima modifica fatta.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation>Rifai</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation>&Rifai</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Redo the last change</source> <translation>Rifai ultima modifica</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Rifai</b><p>Rifai l'ultima modifica fatta.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation>Taglia</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation>&Taglia</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation>Taglia la selezione</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation>Taglia la selezione</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation><b>Taglia</b><p>Taglia l'area selezionata dell'immagine nella clipboard.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation>&Copia</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> + <location filename="IconEditor/IconEditorWindow.py" line="322"/> <source>Copy the selection</source> <translation>Copia la selezione</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation><b>Copia</b><p>Copia l'area selezionata dell'immagine nella clipboard.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation>Incolla</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation>&Incolla</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> - <source>Paste the clipboard image</source> - <translation>Incolla l'immagine nella clipboard</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <source>Paste the clipboard image</source> + <translation>Incolla l'immagine nella clipboard</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation><b>Incolla</b><p>Incolla l'immagine dalla clipboard.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation>Incolla come nuova</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation>Incolla come &Nuova</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation>Incolla l'immagine dalla clipboard sostituendo l'attuale</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation><b>Incolla come nuova</b><p>Incolla l'immagine della clipboard sostituendo l'attuale.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation>Pulisci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation>Pu&lisci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation>Pulisci l'immagine dell'icona</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation><b>Pulisci</b><p>Pulisci l'immagine dell'icona e impostala per essere completamente trasparente.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation>Seleziona tutti</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation>&Seleziona tutto</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> - <source>Select the complete icon image</source> - <translation>Seleziona l'immagine icona completa</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <source>Select the complete icon image</source> + <translation>Seleziona l'immagine icona completa</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation><b>Seleziona tutto</b><p>Selezione l'immagine icona completa.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation>Cambia dimensione</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation>Cambia Dimen&sione...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation>Cambia la dimensione dell'icona</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation>Cambia la dimensione dell'icona</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation><b>Cambia dimensione...</b><p>Cambia la dimensione dell'icona.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation>Scala di grigio</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation>Scala di &grigio</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation>Cambia l'icona a scala di grigio</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation>Cambia l'icona a scala di grigio</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation><b>Scala di grigio</b><p>Cambia l'icona a scala di grigio.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation>Ingrandisci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation>Ingrand&isci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> - <source>Zoom in on the icon</source> - <translation>Ingrandisci l'icona</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <source>Zoom in on the icon</source> + <translation>Ingrandisci l'icona</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation><b>Ingrandisci</b><p>Ingrandisci l'icona. Rende la griglia più grande.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation>Riduci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation>&Riduci</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation>Riduci icona</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation>Riduci icona</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation><b>Riduci</b><p>Riduce l'icona. Rende la griglia più piccola.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation>Reset zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation>&Reset zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation>Zoom</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation>&Zoom...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation>Zoom dell'icona</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation><b>Zoom</b><p>Zoom dell'icona. Apre un dialogo dove è possibile inserire il fattore di zoom desiderato.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation>Mostra griglia</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation>Mostra &Griglia</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation>Inverti la visualizzazione della griglia</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation>Inverti la visualizzazione della griglia</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation><b>Mostra griglia</b><p>Inverte la visualizzazione della griglia.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation>Mano libera</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation>&Mano libera</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation><b>Mano libera</b><p>Disegna linee non rette.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation>Selezionatore colore</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation>Selezionatore &Colore</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation><b>Selezionatore colore</b><p>Il colore del pixel clickato diventerà il colore di disegno corrente.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation>Rettangolo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation>&Rettangolo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation><b>Rettangolo</b><p>Disegna un rettangolo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation>Rettangolo pieno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation>Rettangolo p&ieno</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation><b>Rettangolo pieno</b><p>Disegna un rettangolo pieno.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation>Circonferenza</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation><b>Circonferenza</b><p>Disegna una circonferenza.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation>Circonferenza piena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation>Circonfernza &Piena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation><b>Circonferenza piena</b><p>Disegna una circonferenza piena.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation>Ellisse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation>&Ellisse</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation><b>Ellisse</b><p>Disegna un'ellisse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation>Ellisse piena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation>Ellisse &piena</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation><b>Ellisse piena</b><p>Disegna una ellisse piena.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation>Flood Fill</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation>Fl&ood Fill</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation><b>Flood Fill</b><p>Colora i pixel adiacenti dello stesso colore con il colore corrente.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation>Linea</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation>&Linea</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation><b>Linea</b><p>Disegna una linea.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation>Cancellino (Trasparente)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation>Cancellino (&Trasparente)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation><b>Cancellino (Trasparente)</b><p>Cancella i pixel mettondoli a trasparente.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation>Selezione rettangolare</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation>Selezione rett&angolare</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation><b>Selezione rettangolare</b><p>Seleziona una sezione rettangolare dell'icona usando il mouse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation>Selezione circolare</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation><b>Selezione circolare</b><p>Seleziona una sezione circolare dell'icona usando il mouse.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation>About</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation>&About</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation>Mostra informazioni su questo software</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation>Mostra informazioni su questo software</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>About</b><p>Mostra alcune informazioni su questo software.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation>About Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation>About &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation>Mostra informazioni sulla libreria Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>About Qt</b><p>Mostra delle informazioni sulle librerie Qt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation>Cos'è questo ?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation>C&os'è Questo ?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation>Help sensibile al contesto</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation>Help sensibile al contesto</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostra help sensibile al contesto</b><p>In modalità What's This?, il cursore del mouse mostra una freccia con un punto di domanda ed è possibile premdere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e di come usarli. Nei dialoghi questa funzionalità può essere utilizzata tramite il pulsante di help sensibile al contesto nella barra del titolo.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation>&File</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation>&Edita</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation>&Visualizza</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation>&Tools</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation>File</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation>Modifica</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation>Visualizza</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation>Tools</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation><p>Questa parte della barra di stato mostra il fattore di zoom corrente.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation><p>Questa parte della barra di stato mostra le dimensioni dell'icona.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation><p>Questa parte della barra di stato mostra la posizione del cursore.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation>Apri file icona</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation>Salva file icona</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation>Icona salvata</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation>Senza titolo</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation>Editor di icone</translation> </message> @@ -18484,32 +18529,32 @@ Vuoi salvare le modifiche ?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation>Multiple-Image Network Graphics File (*.mng)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation>Reset dello zoom dell'icona</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation>Reset dello zoom dell'icona</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation><b>Reset zoom</b><p>Resetta lo zoom dell'icona. Imposta il fattore di zoom al 100%.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation>Portable Bitmap File (*.pbm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation>Silicon Graphics Image File (*.sgi)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation>Targa Graphic File (*.tga)</translation> </message> @@ -18519,51 +18564,51 @@ <translation type="obsolete"><p>Il file <b>{0}</b> esiste già.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation>Editor di icone di eric5</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation>Il file {0} non esiste.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation>Impossibile leggere il file {0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation>Impossibile scrivere il file {0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation>About eric5 Icon Editor</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation>L'editor di icone di eric5 è un semplice componente per modificare le icone.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -21628,47 +21673,47 @@ <context> <name>NetworkAccessManager</name> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation>Errori SSL</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation>Certificati</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Inserisci utente e password per '{0}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Inserisci utente e password per '{0}', dominio '{1}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation><p>Errori SSL per <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Vuoi ignorarli ?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation><p>Certificati:<br/>{0}<br/>Vuoi accettare tutti questi certificati?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation><br/>Emettitore: {0}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation><br/>Non valido prima: {0}<br/>Valido Fino: {1}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation><br/>Nomi Alternativi:<ul><li>{0}</li><</ul></translation> </message> @@ -23170,12 +23215,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Esporta Preferenze</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Importa Preferenze</translation> </message>
--- a/i18n/eric5_ru.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_ru.ts Sat Sep 18 15:58:16 2010 +0200 @@ -11643,185 +11643,190 @@ <context> <name>HelpBrowser</name> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation><p>Невозможно запустить просмотрщик для файла <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>Открыть ссылку в новой закладке<byte value="x9"/>Shift+Левая кнопка мыши</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation><p>Файл <b>{0}</b> не существует.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Окно помощи</b><p>В этом окне отображается имеющаяся помощь.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>WEB проводник...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation>Ошибка при загрузке страницы: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation>При соединении с {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Проверьте адрес на ошибки типа <b>ww</b>.example.org вместо <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation>Если адрес правильный, проверьте сетевое соединение.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Если ваш компьютер или локальная сеть находятся за firewall или proxy, убедитесь что браузеру разрешено подсоединяться к сети.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation><p>Невозможно запустить приложение для URL <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation>Создать закладку для этой страницы</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation>Сохранить &ссылку</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation>Сохранить ссылку</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation>Скопировать ссылку</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation>Открыть изображение в новой закладке</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation>Сохранить изображение</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation>Скопировать изображение</translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation>Сохранить изображение</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation>Скопировать изображение</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation>Скопировать адрес изображения</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation>Просмотрщик Web</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation>Заблокировать изображение</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation>Искать с...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation type="unfinished">байты</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -12318,32 +12323,32 @@ <translation>Запретить кэш на диске</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation>Размер кэша:</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation>Максимальный размер кэша на диске</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation>MB</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation>Печать</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation>Печатать фон и изображения</translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation>Печатать фон и изображения</translation> </message> @@ -12497,6 +12502,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -12525,6 +12565,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Если ваш компьютер или локальная сеть находятся за firewall или proxy, убедитесь что браузеру разрешено подсоединяться к сети.</translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -17388,102 +17433,102 @@ <context> <name>IconEditorGrid</name> <message> - <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> <source>Set Pixel</source> <translation>Установить пиксель</translation> </message> <message> + <location filename="IconEditor/IconEditorGrid.py" line="191"/> + <source>Erase Pixel</source> + <translation>Удалить пиксель</translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation>Удалить пиксель</translation> + <source>Draw Line</source> + <translation>Рисовать линию</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation>Рисовать линию</translation> + <source>Draw Rectangle</source> + <translation>Рисовать прямоугольник</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> - <translation>Рисовать прямоугольник</translation> + <source>Draw Filled Rectangle</source> + <translation>Рисовать закрашенный прямоугольник</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> - <translation>Рисовать закрашенный прямоугольник</translation> + <source>Draw Circle</source> + <translation>Рисовать окружность</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> - <translation>Рисовать окружность</translation> + <source>Draw Filled Circle</source> + <translation>Рисовать закрашенную окружность</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> - <translation>Рисовать закрашенную окружность</translation> + <source>Draw Ellipse</source> + <translation>Рисовать эллипс</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> - <translation>Рисовать эллипс</translation> + <source>Draw Filled Ellipse</source> + <translation>Рисовать закрашенный эллипс</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation>Рисовать закрашенный эллипс</translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation>Закрасить область</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation>Вырезать выделение</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation><p>Рпзмер изображения в буфере обмена больше текущего.<br/>Вставить как новое изображение?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation>Вставить из буфера обмена</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation>Вставка изображения</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation>В буфере обмена испорченное изображение.</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation>Вставить из буфера обмена как новое изображение</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation>Очистить изображение</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation>Изменить размер изображения</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation>Преобразовать в чёрно-белый</translation> </message> @@ -17549,970 +17594,970 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation>Windows Bitmap файл (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>GIF файл (*.gif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> - <translation>Файлы иконок (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>GIF файл (*.gif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation>Файлы иконок (*.ico)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation>JPEG файлы (*.jpg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation>Bitmap файл (*.bmp)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Graymap файл (*.pgm)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>PNG файл (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Graymap файл (*.pgm)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation>PNG файл (*.png)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation>Pixmap файл (*.ppm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation>SVG файл (*.svg)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation>TIFF файл (*.tif)</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>X11 Bitmap файл (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation>TIFF файл (*.tif)</translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>X11 Bitmap файл (*.xbm)</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap файл (*.xpm)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation>Все файлы (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation>Новый</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation>&Новый</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation>Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation>Создать новую иконку</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation><b>Новый</b><p>Создать новую иконку.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation>Новое окно</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation>&Новое окно</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation>Открыть новый редактор иконок</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation>Открыть новый редактор иконок</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation><b>Новое окно</b><p>Открыть новый редактор иконок.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation>&Открыть...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation>Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> + <location filename="IconEditor/IconEditorWindow.py" line="195"/> <source>Open an icon file for editing</source> <translation>Открыть файл иконки для редактирования</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation><b>Открыть файл</b><p>Открыть файл иконки для редактирования.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation>&Сохранить</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation>Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> - <source>Save the current icon</source> - <translation>Сохранить текущую иконку</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <source>Save the current icon</source> + <translation>Сохранить текущую иконку</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation><b>Сохранить файл</b><p>Сохранить текущую иконку.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation>Сохранить как</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation>Сохранить &как...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation>Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation>Сохранить текущую иконку в новый файл</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation><b>Сохранить как...</b><p>Сохранить текущую иконку в новый файл.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation>Закрыть</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="236"/> <source>Close the current icon editor window</source> <translation>Закрыть текущий редактор иконок</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation><b>Закрыть</b><p>Закрыть текущий редактор иконок.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation>Закрыть всё</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation>Закрыть &всё</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation>Закрыть все редакторы иконок</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation>Закрыть все редакторы иконок</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation><b>Закрыть все</b><p>Закрыть все редакторы иконок кроме первого.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation>Выход</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation>&Выход</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> + <location filename="IconEditor/IconEditorWindow.py" line="260"/> <source>Quit the icon editor</source> <translation>Закрыть редактор иконок</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation><b>Закрыть</b><p>Закрыть редактор иконок.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation>Отмена</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation>&Отмена</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation>Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation>Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> + <location filename="IconEditor/IconEditorWindow.py" line="281"/> <source>Undo the last change</source> <translation>Отменить последнее изменение</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation><b>Отменить</b><p>Отменить последнее изменение.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation>Повтор</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation>&Повтор</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation>Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Redo the last change</source> <translation>Восстановить последнее отменённое изменение</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation><b>Восстановить</b><p>Восстановить последнее отменённое изменение.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation>Вырезать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation>В&ырезать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation>Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation>Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation>Вырезать выделение</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation>Вырезать выделение</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation><b>Вырезать</b><p>Переместить выделенное изображение в буфер обмена.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation>&Копировать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation>Ctrl+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> + <location filename="IconEditor/IconEditorWindow.py" line="322"/> <source>Copy the selection</source> <translation>Копировать выделение</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation><b>Копировать</b><p>Копировать выделенное изображение в буфер обмена.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation>Вставить</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation>Вс&тавить</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation>Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation>Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> + <location filename="IconEditor/IconEditorWindow.py" line="336"/> <source>Paste the clipboard image</source> <translation>Вставить изображение из буфера обмена</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation><b>Вставить</b><p>Вставить изображение из буфера обмена.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation>Вставить как новое</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation>Вставить как &новое</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation>Вставить изображение из буфера обмена вместо текущего</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation><b>Вставить как новое</b><p>Вставить изображение из буфера обмена вместо текущего.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation>Очистить</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation>О&чистить</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation>Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation>Очистить изображение иконки</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation><b>Очистить</b><p>Очистить изображение иконки и сдерать его прозрачным.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation>Выбрать всё</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation>Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> + <location filename="IconEditor/IconEditorWindow.py" line="375"/> <source>Select the complete icon image</source> <translation>Выберите завершённую иконку</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation><b>Выбрать всё</b><p>Выберите завершённую иконку.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation>Изменить размер</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation>Изменить ра&змер...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation>Изменить размер иконки</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation>Изменить размер иконки</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation><b>Изменить размер...</b><p>Изменить размер иконки.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation>Оттенки серого</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation>Оттенки &серого</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation>Изменить цвет иконки на серый</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation>Изменить цвет иконки на серый</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation><b>Оттенки серого</b><p>Изменить цвет иконки на серый.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation>Увеличить масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation>У&величить масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> - <source>Zoom in on the icon</source> - <translation>Увеличить масштаб</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <source>Zoom in on the icon</source> + <translation>Увеличить масштаб</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation><b>Увеличить масштаб</b><p>Укрупнить сетку.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation>Уменьшить масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation>У&меньшить масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation>Уменьшить масштаб</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation>Уменьшить масштаб</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation><b>Уменьшить масштаб</b><p>Сделать сетку мельче.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation>Сбросить масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation>&Сбросить масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation>Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation>Масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation>&Масштаб...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation>Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation>Масштаб</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation><b>Масштаб</b><p>Открыть диалог изменения масштаба.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation>Показать сетку</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation>Показать &сетку</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation>Переключить изображение сетки</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation>Переключить изображение сетки</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation><b>Показать сетку</b><p>Переключить изображение сетки.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation>Произвольный рисунок</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation>&Произвольный рисунок</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation><b>Произвольный рисунок</b><p>Рисовать произвольные линии.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation>Выбрать цвет</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation>&Выбрать цвет</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation><b>Выбрать цвет</b><p>Этот диалог поможет выбрать цвет для рисования.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation>Прямоугольник</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation>&Прямоугольник</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation><b>Прямоугольник</b><p>Рисовать прямоугольник.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation>Закрашенный прямоугольник</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation>З&акрашенный прямоугольник</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation><b>Закрашенный прямоугольник</b><p>Рисовать закрашенный прямоугольник.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation>Окружность</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation><b>Окружность</b><p>Рисовать окружность.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation>Закрашенная окружность</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation>Закраше&нная окружность</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation><b>Закрашенная окружность</b><p>Рисовать закрашенную окружность.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation>Эллипс</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation>&Эллипс</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation><b>Эллипс</b><p>Рисовать эллипс.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation>Закрашенный Эллипс</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation>Закраш&енный Эллипс</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation><b>Закрашенный Эллипс</b><p>Рисовать закрашенный эллипс.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation>Закрашивать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation>Закра&шивать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation><b>Закрашивать</b><p>Закрашивать текущим цветом.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation>Линия</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation>&Линия</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation><b>Линия</b><p>Рисовать линию.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation>Ластик</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation>Ласти&к</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation><b>Ластик</b><p>Очистить пикселы.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation>Прямоугольное выделение</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation>Прям&оугольное выделение</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation><b>Прямоугольное выделение</b><p>Выбрать прямоугольную область с помощью мышки.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation>Выделение окружности</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation><b>Выделение окружности</b><p>Выбрать круглую область с помощью мышки.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation>О</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation>&О</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation>Информация о ПО</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation>Информация о ПО</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation><b>О...</b><p>Информация об этом программном продукте.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation>О Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation>О &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation>Информация о библиотеке Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation><b>О Qt</b><p>Информация о библиотеке Qt.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation>Что это?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation>&Что это?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> + <location filename="IconEditor/IconEditorWindow.py" line="730"/> <source>Context sensitive help</source> <translation>Контекстная помощь</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Показать контекстную помощь</b> <p>В режиме контекстной помощи курсор мыши выглядит как стрелка со знаком вопроса, и, щёлкнув по элементу интерфейса, Вы можете просмотреть краткую помощь о его роли и его использовании. В диалогах можно воспользоваться кнопкой контекстной помощи в заголовке окна.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation>&Файл</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation>&Правка</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation>&Вид</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation>&Помощь</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation>Редактировать</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation>Инструменты</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation>Помощь</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation><p>Эта часть строки статуса показывает текущий масштаб.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation><p>Эта часть строки статуса показывает размер иконки.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation><p>Эта часть строки статуса показывает текущую позицию курсора в редакторе.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation>Открыть файл иконки</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation>Сохранить иконку в файл</translation> </message> @@ -18522,22 +18567,22 @@ <translation type="obsolete"><p>Файл <b>{0}</b> уже существует.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation>Иконка сохранена</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation>Без имени</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation>{0}[*] - {1}</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation>Редактор иконок</translation> </message> @@ -18549,76 +18594,76 @@ Сохранить изменения?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation>Сбросить масштаб</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation>Сбросить масштаб</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation><b>Сбросить масштаб</b><p>Установить масштаб 1:1.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation>Paintbrush Bitmap файл (*.pcx)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation>Silicon Graphics Image файл (*.sgi)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation>Targa Graphic файл (*.tga)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation>Eric5 редактор иконок</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation>Файл {0} не существует.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation>Невозможно прочитать файл {0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation>Невозможно записать файл {0}: {1}.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation>О редакторе иконок Eric5</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation>Редакторе иконок Eric5 это простой редактор для рисования иконок.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Файл <b>{0}</b> уже сущеструет. Переписать?</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -21696,47 +21741,47 @@ <context> <name>NetworkAccessManager</name> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation><b>Введите имя пользователя и пароль для '{0}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation><b>Введите имя пользователя и пароль для '{0}'; realm '{1}'</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation>Ошибки SSL</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation><p>Ошибки SSL для <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Игнорировать?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation>Сертификаты</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation><p>Сертификаты:<br/>{0}<br/>Принять?</p></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation><br/>Эмитент: {0}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation><br/>Не действительны ранее: {0}<br/>Действительны до: {1}</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation><br/>Альтернативные имеа::<ul><li>{0}</li></ul></translation> </message> @@ -23239,12 +23284,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Экспорт предпочтений</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Импорт предпочтений</translation> </message>
--- a/i18n/eric5_tr.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_tr.ts Sat Sep 18 15:58:16 2010 +0200 @@ -12523,17 +12523,17 @@ <translation type="obsolete"><p><b>%1</b> dosyası için bir gösterici başlatılamadı.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>Yeni sekmede bir bağlantı açar<byte value="x9"/>Ctrl+LMB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>Yardım Penceresi</b><p>Bu pencere seçilen yardım bilgilerini gösterir.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>Web Denetleyicisi...</translation> </message> @@ -12543,170 +12543,175 @@ <translation type="obsolete"><html><head><title>Yardım Penceresi</title></head><body><p>Talep edilen URL <b>%1</b> adresi yüklenemedi.</p><p>Sebep: %2</p></body></html></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation type="unfinished">Görüntüyü Kaydet</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation type="unfinished">Görüntüyü Kaydet</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation type="unfinished">Web Gözatıcısı</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation type="unfinished">bitler</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation type="unfinished">kB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation type="unfinished">MB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -13371,32 +13376,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation type="unfinished"></translation> </message> @@ -13550,6 +13555,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -13578,6 +13618,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -18521,102 +18566,102 @@ <context> <name>IconEditorGrid</name> <message> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> + <source>Set Pixel</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="191"/> - <source>Set Pixel</source> + <source>Erase Pixel</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation type="unfinished"></translation> + <source>Draw Line</source> + <translation type="unfinished">Çizgi Çizimi</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation type="unfinished">Çizgi Çizimi</translation> + <source>Draw Rectangle</source> + <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> + <source>Draw Filled Rectangle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> + <source>Draw Circle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> + <source>Draw Filled Circle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> + <source>Draw Ellipse</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> + <source>Draw Filled Ellipse</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation type="unfinished">Yapıştır</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation type="unfinished"></translation> </message> @@ -18682,868 +18727,868 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> + <source>Graphic Interchange Format File (*.gif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> + <source>Portable Graymap File (*.pgm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> + <source>TIFF File (*.tif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation type="unfinished">Tüm Dosyalar (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation type="unfinished">Yeni</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation type="unfinished">Ye&ni</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation type="unfinished">Yeni Pencere</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation type="unfinished">Aç</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation type="unfinished">&Aç...</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished">Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> - <source>Open an icon file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <source>Open an icon file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation type="unfinished">Kaydet</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation type="unfinished">&Kaydet</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> + <location filename="IconEditor/IconEditorWindow.py" line="209"/> <source>Save the current icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation type="unfinished">Farklı Kaydet</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished">Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation type="unfinished">Kapat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation type="unfinished">&Kapat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished">Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="236"/> <source>Close the current icon editor window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation type="unfinished">Hepsini Kapat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation type="unfinished">Hepsini K&apat</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation type="unfinished">Çık</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation type="unfinished">&Çıkış</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished">Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> - <source>Quit the icon editor</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <source>Quit the icon editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation type="unfinished">Geri Al</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation type="unfinished">&Geri al</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished">Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished">Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> - <source>Undo the last change</source> - <translation type="unfinished">Enson değişikliği geri al</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <source>Undo the last change</source> + <translation type="unfinished">Enson değişikliği geri al</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation type="unfinished">İlerial</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation type="unfinished">&İlerial</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished">Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Redo the last change</source> <translation type="unfinished">Son değişikliği ileri al</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation type="unfinished">Kes</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation type="unfinished">Ke&s</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished">Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished">Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation type="unfinished">Seçimi kes</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation type="unfinished">Seçimi kes</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation type="unfinished">Kopyala</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation type="unfinished">&Kopyala</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> - <source>Copy the selection</source> - <translation type="unfinished">Seçimi kopyala</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <source>Copy the selection</source> + <translation type="unfinished">Seçimi kopyala</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation type="unfinished">Yapıştır</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation type="unfinished">Ya&pıştır</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished">Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished">Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> - <source>Paste the clipboard image</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <source>Paste the clipboard image</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation type="unfinished">Temizle</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation type="unfinished">T&emizle</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished">Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation type="unfinished">Hepsini Seç</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished">Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> + <location filename="IconEditor/IconEditorWindow.py" line="375"/> <source>Select the complete icon image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation type="unfinished">Büyüt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation type="unfinished">Bü&yült</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation type="unfinished">Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> + <location filename="IconEditor/IconEditorWindow.py" line="436"/> <source>Zoom in on the icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation type="unfinished">Küçült</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation type="unfinished">Küçü&lt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation type="unfinished">Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation type="unfinished">Büyütmeyi sıfırla</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished">Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation type="unfinished">Büyüt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation type="unfinished">Satır</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation type="unfinished">Hakkında</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation type="unfinished">H&akkında</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>Hakkında</b><p>Bu yazılım hakkındaki çeşitli bilgileri gösterir.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation type="unfinished">Qt Hakkında</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation type="unfinished">&Qt Hakkında</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"><b>Qt Hakkında</b><p>Qt Araçkiti hakkında bazı bilgiler gösterir.</p></translation> </message> @@ -19568,103 +19613,103 @@ <translation type="obsolete"><b>KDE Hakkında</b><p>KDE Hakkında bazı bilgiler gösterir.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation type="unfinished">Bu nedir?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation type="unfinished">Bu &Nedir?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished">Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation type="unfinished">İçeriğe duyarlı yardım</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation type="unfinished">İçeriğe duyarlı yardım</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"><b>Duyarlı yardım içeriğini görüntüle</b><p>Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation type="unfinished">&Dosya</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation type="unfinished">Düz&en</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation type="unfinished">&Görünüm</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation type="unfinished">&Araçlar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation type="unfinished">&Yardım</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation type="unfinished">Dosya</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation type="unfinished">Düzen</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation type="unfinished">Görünüm</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation type="unfinished">Araçlar</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation type="unfinished">Yardım</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation type="unfinished"></translation> </message> @@ -19687,12 +19732,12 @@ %2.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation type="unfinished">Başlıksız</translation> </message> @@ -19702,84 +19747,84 @@ <translation type="obsolete">%1[*] - %2</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -23140,47 +23185,47 @@ <translation type="obsolete"><b> '%1' proxy'sini kullanarak bağlan:</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation type="unfinished">SSL Hataları</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation type="unfinished"></translation> </message> @@ -24850,12 +24895,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>Tercihleri Dışarı Aktar</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>Tercihleri İçe Aktar</translation> </message>
--- a/i18n/eric5_zh_CN.GB2312.ts Sat Sep 18 12:34:38 2010 +0200 +++ b/i18n/eric5_zh_CN.GB2312.ts Sat Sep 18 15:58:16 2010 +0200 @@ -12568,17 +12568,17 @@ <translation type="obsolete"><p>无法为文件 <b>%1</b> 开启浏览器。</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="705"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="707"/> <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> <translation>在新选项卡中打开链接<byte value="x9"/>Ctrl+LMB</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="315"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="317"/> <source><b>Help Window</b><p>This window displays the selected help information.</p></source> <translation><b>帮助窗口</b><p>该窗口显示已选的帮助信息。</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="774"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="776"/> <source>Web Inspector...</source> <translation>网络检查器……</translation> </message> @@ -12588,170 +12588,175 @@ <translation type="obsolete"><html><head><title>帮助窗口</title></head><body><p>请求的 URL <b>%1</b> 无法载入。</p><p>原因: %2</p></body></html></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If the address is correct, try checking the network connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="738"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="740"/> <source>Bookmark this Page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="709"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="711"/> <source>Save Lin&k</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="710"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="712"/> <source>Bookmark this Link</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="713"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="715"/> <source>Copy Link to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="718"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="720"/> <source>Open Image in New Tab</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="722"/> - <source>Save Image</source> - <translation type="unfinished">保存图像</translation> - </message> - <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="723"/> - <source>Copy Image to Clipboard</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpBrowserWV.py" line="724"/> + <source>Save Image</source> + <translation type="unfinished">保存图像</translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="725"/> + <source>Copy Image to Clipboard</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="726"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source>Web Browser</source> <translation type="unfinished">网络浏览器</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="728"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="730"/> <source>Block Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="752"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="754"/> <source>Search with...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="483"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="485"/> <source><p>The file <b>{0}</b> does not exist.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="521"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="523"/> <source><p>Could not start a viewer for file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="503"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="505"/> <source><p>Could not start an application for URL <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1131"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1133"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1140"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source>Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1195"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1199"/> <source><p>The database quota of <strong>{0}</strong> has been exceeded while accessing database <strong>{1}</strong>.</p><p>Shall it be changed?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>New Web Database Quota</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1223"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1227"/> <source>bytes</source> <translation type="unfinished">字节</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1226"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1230"/> <source>kB</source> <translation type="unfinished">千字节</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1229"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1233"/> <source>MB</source> <translation type="unfinished">兆字节</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="1203"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="1207"/> <source>Enter the new quota in MB (current = {0}, used = {1}; step size = 5 MB):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="769"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="771"/> <source>Add to web search toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>Method not supported</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="882"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="884"/> <source>{0} method is not supported.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="924"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="926"/> <source>Choose the desired search engine</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Engine name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="941"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="943"/> <source>Enter a name for the engine</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="1142"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpClearPrivateDataDialog</name> @@ -13421,32 +13426,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="386"/> <source>Cache size:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="354"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="393"/> <source>Enter the maximum size of the disk cache</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="360"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="399"/> <source> MB</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="389"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="428"/> <source>Printing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="395"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="434"/> <source>Select to print background colours and images</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="398"/> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="437"/> <source>Print background colours and images</source> <translation type="unfinished"></translation> </message> @@ -13600,6 +13605,41 @@ <source>Use DNS prefetching to improve page loading</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="347"/> + <source>Policy</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="353"/> + <source>Select to prefer the network</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="356"/> + <source>Keep cache in sync</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="363"/> + <source>Select to prefer cached data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="366"/> + <source>Use cache whenever possible</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="373"/> + <source>Select to use cached data only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ConfigurationPages/HelpWebBrowserPage.ui" line="376"/> + <source>Offline browsing mode</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebPage</name> @@ -13628,6 +13668,11 @@ <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpBrowserWV.py" line="233"/> + <source>If your cache policy is set to offline browsing,only pages in the local cache are available.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>HelpWebSearchWidget</name> @@ -18599,102 +18644,102 @@ <context> <name>IconEditorGrid</name> <message> + <location filename="IconEditor/IconEditorGrid.py" line="190"/> + <source>Set Pixel</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="IconEditor/IconEditorGrid.py" line="191"/> - <source>Set Pixel</source> + <source>Erase Pixel</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="192"/> - <source>Erase Pixel</source> - <translation type="unfinished"></translation> + <source>Draw Line</source> + <translation type="unfinished">显示边界线</translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="193"/> - <source>Draw Line</source> - <translation type="unfinished">显示边界线</translation> + <source>Draw Rectangle</source> + <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="194"/> - <source>Draw Rectangle</source> + <source>Draw Filled Rectangle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="195"/> - <source>Draw Filled Rectangle</source> + <source>Draw Circle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="196"/> - <source>Draw Circle</source> + <source>Draw Filled Circle</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="197"/> - <source>Draw Filled Circle</source> + <source>Draw Ellipse</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="198"/> - <source>Draw Ellipse</source> + <source>Draw Filled Ellipse</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorGrid.py" line="199"/> - <source>Draw Filled Ellipse</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="IconEditor/IconEditorGrid.py" line="200"/> <source>Fill Region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="812"/> + <location filename="IconEditor/IconEditorGrid.py" line="811"/> <source>Cut Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source>Paste</source> <translation type="unfinished">粘贴</translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="864"/> + <location filename="IconEditor/IconEditorGrid.py" line="863"/> <source><p>The clipboard image is larger than the current image.<br/>Paste as new image?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="875"/> + <location filename="IconEditor/IconEditorGrid.py" line="874"/> <source>Paste Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Pasting Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="889"/> + <location filename="IconEditor/IconEditorGrid.py" line="888"/> <source>Invalid image data in clipboard.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="899"/> + <location filename="IconEditor/IconEditorGrid.py" line="898"/> <source>Paste Clipboard as New Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="927"/> + <location filename="IconEditor/IconEditorGrid.py" line="926"/> <source>Clear Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="943"/> + <location filename="IconEditor/IconEditorGrid.py" line="942"/> <source>Resize Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorGrid.py" line="967"/> + <location filename="IconEditor/IconEditorGrid.py" line="966"/> <source>Convert to Grayscale</source> <translation type="unfinished"></translation> </message> @@ -18760,868 +18805,868 @@ <context> <name>IconEditorWindow</name> <message> - <location filename="IconEditor/IconEditorWindow.py" line="106"/> + <location filename="IconEditor/IconEditorWindow.py" line="107"/> <source>Windows Bitmap File (*.bmp)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="107"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="108"/> - <source>Windows Icon File (*.ico)</source> + <source>Graphic Interchange Format File (*.gif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="109"/> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="110"/> <source>JPEG File (*.jpg)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="111"/> + <location filename="IconEditor/IconEditorWindow.py" line="112"/> <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="113"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="114"/> - <source>Portable Network Graphics File (*.png)</source> + <source>Portable Graymap File (*.pgm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="115"/> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="116"/> <source>Portable Pixmap File (*.ppm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="117"/> + <location filename="IconEditor/IconEditorWindow.py" line="118"/> <source>Scalable Vector Graphics File (*.svg)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="119"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="120"/> - <source>X11 Bitmap File (*.xbm)</source> + <source>TIFF File (*.tif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="IconEditor/IconEditorWindow.py" line="121"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="122"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="132"/> + <location filename="IconEditor/IconEditorWindow.py" line="133"/> <source>All Files (*)</source> <translation type="unfinished">所有文件 (*)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>New</source> <translation type="unfinished">新建</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>&New</source> <translation type="unfinished">新建(&N)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="164"/> + <location filename="IconEditor/IconEditorWindow.py" line="165"/> <source>Ctrl+N</source> <comment>File|New</comment> <translation type="unfinished">Ctrl+N</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="169"/> + <location filename="IconEditor/IconEditorWindow.py" line="170"/> <source>Create a new icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="170"/> + <location filename="IconEditor/IconEditorWindow.py" line="171"/> <source><b>New</b><p>This creates a new icon.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New Window</source> <translation type="unfinished">新建窗口</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="177"/> + <location filename="IconEditor/IconEditorWindow.py" line="178"/> <source>New &Window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="181"/> - <source>Open a new icon editor window</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="182"/> + <source>Open a new icon editor window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="183"/> <source><b>New Window</b><p>This opens a new icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Open</source> <translation type="unfinished">打开</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>&Open...</source> <translation type="unfinished">打开(&O)……</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="189"/> + <location filename="IconEditor/IconEditorWindow.py" line="190"/> <source>Ctrl+O</source> <comment>File|Open</comment> <translation type="unfinished">Ctrl+O</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="194"/> - <source>Open an icon file for editing</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="195"/> + <source>Open an icon file for editing</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="196"/> <source><b>Open File</b><p>This opens a new icon file for editing. It pops up a file selection dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Save</source> <translation type="unfinished">保存</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>&Save</source> <translation type="unfinished">保存(&S)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="203"/> + <location filename="IconEditor/IconEditorWindow.py" line="204"/> <source>Ctrl+S</source> <comment>File|Save</comment> <translation type="unfinished">Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="208"/> + <location filename="IconEditor/IconEditorWindow.py" line="209"/> <source>Save the current icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="209"/> + <location filename="IconEditor/IconEditorWindow.py" line="210"/> <source><b>Save File</b><p>Save the contents of the icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save As</source> <translation type="unfinished">另存为</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Save &As...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="216"/> + <location filename="IconEditor/IconEditorWindow.py" line="217"/> <source>Shift+Ctrl+S</source> <comment>File|Save As</comment> <translation type="unfinished">Shift+Ctrl+S</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="221"/> + <location filename="IconEditor/IconEditorWindow.py" line="222"/> <source>Save the current icon to a new file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="223"/> + <location filename="IconEditor/IconEditorWindow.py" line="224"/> <source><b>Save As...</b><p>Saves the current icon to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Close</source> <translation type="unfinished">关闭</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>&Close</source> <translation type="unfinished">关闭(&C)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="230"/> + <location filename="IconEditor/IconEditorWindow.py" line="231"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation type="unfinished">Ctrl+W</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="235"/> + <location filename="IconEditor/IconEditorWindow.py" line="236"/> <source>Close the current icon editor window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="236"/> + <location filename="IconEditor/IconEditorWindow.py" line="237"/> <source><b>Close</b><p>Closes the current icon editor window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close All</source> <translation type="unfinished">全部关闭</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="243"/> + <location filename="IconEditor/IconEditorWindow.py" line="244"/> <source>Close &All</source> <translation type="unfinished">全部关闭(&A)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="246"/> - <source>Close all icon editor windows</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="247"/> + <source>Close all icon editor windows</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="248"/> <source><b>Close All</b><p>Closes all icon editor windows except the first one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Quit</source> <translation type="unfinished">退出</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>&Quit</source> <translation type="unfinished">退出(&Q)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="254"/> + <location filename="IconEditor/IconEditorWindow.py" line="255"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation type="unfinished">Ctrl+Q</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="259"/> - <source>Quit the icon editor</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="260"/> + <source>Quit the icon editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="261"/> <source><b>Quit</b><p>Quit the icon editor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Undo</source> <translation type="unfinished">撤消</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>&Undo</source> <translation type="unfinished">撤消(&U)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Ctrl+Z</source> <comment>Edit|Undo</comment> <translation type="unfinished">Ctrl+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="274"/> + <location filename="IconEditor/IconEditorWindow.py" line="275"/> <source>Alt+Backspace</source> <comment>Edit|Undo</comment> <translation type="unfinished">Alt+Backspace</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="280"/> - <source>Undo the last change</source> - <translation type="unfinished">撤消最后一次更改</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="281"/> + <source>Undo the last change</source> + <translation type="unfinished">撤消最后一次更改</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="282"/> <source><b>Undo</b><p>Undo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Redo</source> <translation type="unfinished">重做</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>&Redo</source> <translation type="unfinished">重做(&R)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="288"/> + <location filename="IconEditor/IconEditorWindow.py" line="289"/> <source>Ctrl+Shift+Z</source> <comment>Edit|Redo</comment> <translation type="unfinished">Ctrl+Shift+Z</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="293"/> + <location filename="IconEditor/IconEditorWindow.py" line="294"/> <source>Redo the last change</source> <translation type="unfinished">重做最后一次更改</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="294"/> + <location filename="IconEditor/IconEditorWindow.py" line="295"/> <source><b>Redo</b><p>Redo the last change done.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cut</source> <translation type="unfinished">剪切</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Cu&t</source> <translation type="unfinished">剪切(&t)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Ctrl+X</source> <comment>Edit|Cut</comment> <translation type="unfinished">Ctrl+X</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="301"/> + <location filename="IconEditor/IconEditorWindow.py" line="302"/> <source>Shift+Del</source> <comment>Edit|Cut</comment> <translation type="unfinished">Shift+Del</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="307"/> - <source>Cut the selection</source> - <translation type="unfinished">剪切所选内容</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="308"/> + <source>Cut the selection</source> + <translation type="unfinished">剪切所选内容</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="309"/> <source><b>Cut</b><p>Cut the selected image area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Copy</source> <translation type="unfinished">复制</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>&Copy</source> <translation type="unfinished">复制(&C)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="315"/> + <location filename="IconEditor/IconEditorWindow.py" line="316"/> <source>Ctrl+Ins</source> <comment>Edit|Copy</comment> <translation type="unfinished">Ctrl+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="321"/> - <source>Copy the selection</source> - <translation type="unfinished">复制所选内容</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="322"/> + <source>Copy the selection</source> + <translation type="unfinished">复制所选内容</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="323"/> <source><b>Copy</b><p>Copy the selected image area to the clipboard.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Paste</source> <translation type="unfinished">粘贴</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>&Paste</source> <translation type="unfinished">粘贴(&P)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Ctrl+V</source> <comment>Edit|Paste</comment> <translation type="unfinished">Ctrl+V</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="329"/> + <location filename="IconEditor/IconEditorWindow.py" line="330"/> <source>Shift+Ins</source> <comment>Edit|Paste</comment> <translation type="unfinished">Shift+Ins</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="335"/> - <source>Paste the clipboard image</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="336"/> + <source>Paste the clipboard image</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="337"/> <source><b>Paste</b><p>Paste the clipboard image.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="343"/> + <location filename="IconEditor/IconEditorWindow.py" line="344"/> <source>Paste as &New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="346"/> + <location filename="IconEditor/IconEditorWindow.py" line="347"/> <source>Paste the clipboard image replacing the current one</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="348"/> + <location filename="IconEditor/IconEditorWindow.py" line="349"/> <source><b>Paste as New</b><p>Paste the clipboard image replacing the current one.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Clear</source> <translation type="unfinished">清除</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Cl&ear</source> <translation type="unfinished">清除(&e)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="355"/> + <location filename="IconEditor/IconEditorWindow.py" line="356"/> <source>Alt+Shift+C</source> <comment>Edit|Clear</comment> <translation type="unfinished">Alt+Shift+C</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="361"/> + <location filename="IconEditor/IconEditorWindow.py" line="362"/> <source>Clear the icon image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="362"/> + <location filename="IconEditor/IconEditorWindow.py" line="363"/> <source><b>Clear</b><p>Clear the icon image and set it to be completely transparent.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Select All</source> <translation type="unfinished">全选</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>&Select All</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="369"/> + <location filename="IconEditor/IconEditorWindow.py" line="370"/> <source>Ctrl+A</source> <comment>Edit|Select All</comment> <translation type="unfinished">Ctrl+A</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="374"/> + <location filename="IconEditor/IconEditorWindow.py" line="375"/> <source>Select the complete icon image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="375"/> + <location filename="IconEditor/IconEditorWindow.py" line="376"/> <source><b>Select All</b><p>Selects the complete icon image.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Size</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="382"/> + <location filename="IconEditor/IconEditorWindow.py" line="383"/> <source>Change Si&ze...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="387"/> - <source>Change the icon size</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="388"/> + <source>Change the icon size</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="389"/> <source><b>Change Size...</b><p>Changes the icon size.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>Grayscale</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="395"/> + <location filename="IconEditor/IconEditorWindow.py" line="396"/> <source>&Grayscale</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="400"/> - <source>Change the icon to grayscale</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="401"/> + <source>Change the icon to grayscale</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="402"/> <source><b>Grayscale</b><p>Changes the icon to grayscale.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom in</source> <translation type="unfinished">放大</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Zoom &in</source> <translation type="unfinished">放大(&i)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="430"/> + <location filename="IconEditor/IconEditorWindow.py" line="431"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation type="unfinished">Ctrl++</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="435"/> + <location filename="IconEditor/IconEditorWindow.py" line="436"/> <source>Zoom in on the icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="436"/> + <location filename="IconEditor/IconEditorWindow.py" line="437"/> <source><b>Zoom in</b><p>Zoom in on the icon. This makes the grid bigger.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom out</source> <translation type="unfinished">缩小</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Zoom &out</source> <translation type="unfinished">缩小(&o)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="443"/> + <location filename="IconEditor/IconEditorWindow.py" line="444"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation type="unfinished">Ctrl+-</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="448"/> - <source>Zoom out on the icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="449"/> + <source>Zoom out on the icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="450"/> <source><b>Zoom out</b><p>Zoom out on the icon. This makes the grid smaller.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom reset</source> <translation type="unfinished">重置缩放</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Zoom &reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="456"/> + <location filename="IconEditor/IconEditorWindow.py" line="457"/> <source>Ctrl+0</source> <comment>View|Zoom reset</comment> <translation type="unfinished">Ctrl+0</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Zoom</source> <translation type="unfinished">缩放</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>&Zoom...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="470"/> + <location filename="IconEditor/IconEditorWindow.py" line="471"/> <source>Ctrl+#</source> <comment>View|Zoom</comment> <translation type="unfinished">Ctrl+#</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="476"/> + <location filename="IconEditor/IconEditorWindow.py" line="477"/> <source>Zoom the icon</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="477"/> + <location filename="IconEditor/IconEditorWindow.py" line="478"/> <source><b>Zoom</b><p>Zoom the icon. This opens a dialog where the desired zoom factor can be entered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show Grid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="485"/> + <location filename="IconEditor/IconEditorWindow.py" line="486"/> <source>Show &Grid</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="490"/> - <source>Toggle the display of the grid</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="491"/> + <source>Toggle the display of the grid</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="492"/> <source><b>Show Grid</b><p>Toggle the display of the grid.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>Freehand</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="510"/> + <location filename="IconEditor/IconEditorWindow.py" line="511"/> <source>&Freehand</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="515"/> + <location filename="IconEditor/IconEditorWindow.py" line="516"/> <source><b>Free hand</b><p>Draws non linear lines.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>Color Picker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="524"/> + <location filename="IconEditor/IconEditorWindow.py" line="525"/> <source>&Color Picker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="529"/> + <location filename="IconEditor/IconEditorWindow.py" line="530"/> <source><b>Color Picker</b><p>The color of the pixel clicked on will become the current draw color.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="539"/> + <location filename="IconEditor/IconEditorWindow.py" line="540"/> <source>&Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="544"/> + <location filename="IconEditor/IconEditorWindow.py" line="545"/> <source><b>Rectangle</b><p>Draw a rectangle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>Filled Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="553"/> + <location filename="IconEditor/IconEditorWindow.py" line="554"/> <source>F&illed Rectangle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="558"/> + <location filename="IconEditor/IconEditorWindow.py" line="559"/> <source><b>Filled Rectangle</b><p>Draw a filled rectangle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="567"/> + <location filename="IconEditor/IconEditorWindow.py" line="568"/> <source>Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="572"/> + <location filename="IconEditor/IconEditorWindow.py" line="573"/> <source><b>Circle</b><p>Draw a circle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Filled Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="581"/> + <location filename="IconEditor/IconEditorWindow.py" line="582"/> <source>Fille&d Circle</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="586"/> + <location filename="IconEditor/IconEditorWindow.py" line="587"/> <source><b>Filled Circle</b><p>Draw a filled circle.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="595"/> + <location filename="IconEditor/IconEditorWindow.py" line="596"/> <source>&Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="600"/> + <location filename="IconEditor/IconEditorWindow.py" line="601"/> <source><b>Ellipse</b><p>Draw an ellipse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Filled Ellipse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="609"/> + <location filename="IconEditor/IconEditorWindow.py" line="610"/> <source>Fille&d Elli&pse</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="614"/> + <location filename="IconEditor/IconEditorWindow.py" line="615"/> <source><b>Filled Ellipse</b><p>Draw a filled ellipse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Flood Fill</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="623"/> + <location filename="IconEditor/IconEditorWindow.py" line="624"/> <source>Fl&ood Fill</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="628"/> + <location filename="IconEditor/IconEditorWindow.py" line="629"/> <source><b>Flood Fill</b><p>Fill adjoining pixels with the same color with the current color.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>Line</source> <translation type="unfinished">行</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="638"/> + <location filename="IconEditor/IconEditorWindow.py" line="639"/> <source>&Line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="643"/> + <location filename="IconEditor/IconEditorWindow.py" line="644"/> <source><b>Line</b><p>Draw a line.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (Transparent)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="652"/> + <location filename="IconEditor/IconEditorWindow.py" line="653"/> <source>Eraser (&Transparent)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="657"/> + <location filename="IconEditor/IconEditorWindow.py" line="658"/> <source><b>Eraser (Transparent)</b><p>Erase pixels by setting them to transparent.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="666"/> + <location filename="IconEditor/IconEditorWindow.py" line="667"/> <source>Rectangular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Rect&angular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="671"/> + <location filename="IconEditor/IconEditorWindow.py" line="672"/> <source><b>Rectangular Selection</b><p>Select a rectangular section of the icon using the mouse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="681"/> + <location filename="IconEditor/IconEditorWindow.py" line="682"/> <source>Circular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="686"/> + <location filename="IconEditor/IconEditorWindow.py" line="687"/> <source><b>Circular Selection</b><p>Select a circular section of the icon using the mouse.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>About</source> <translation type="unfinished">关于</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="702"/> + <location filename="IconEditor/IconEditorWindow.py" line="703"/> <source>&About</source> <translation type="unfinished">关于(&A)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="705"/> - <source>Display information about this software</source> - <translation type="unfinished">显示软件信息</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="706"/> + <source>Display information about this software</source> + <translation type="unfinished">显示软件信息</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="707"/> <source><b>About</b><p>Display some information about this software.</p></source> <translation type="unfinished"><b>关于</b><p>显示与本软件有关的部分信息。</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About Qt</source> <translation type="unfinished">关于 Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="712"/> + <location filename="IconEditor/IconEditorWindow.py" line="713"/> <source>About &Qt</source> <translation type="unfinished">关于 &Qt</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="715"/> + <location filename="IconEditor/IconEditorWindow.py" line="716"/> <source>Display information about the Qt toolkit</source> <translation type="unfinished">显示Qt工具包信息</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="717"/> + <location filename="IconEditor/IconEditorWindow.py" line="718"/> <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> <translation type="unfinished"><b>关于 Qt</b><p>显示Qt工具包的部分相关信息。</p></translation> </message> @@ -19646,103 +19691,103 @@ <translation type="obsolete"><b>关于 KDE</b><p>显示KDE的部分相关信息。</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>What's This?</source> <translation type="unfinished">这是什么?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>&What's This?</source> <translation type="unfinished">这是什么(&W)?</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="724"/> + <location filename="IconEditor/IconEditorWindow.py" line="725"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation type="unfinished">Shift+F1</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="729"/> - <source>Context sensitive help</source> - <translation type="unfinished">背景帮助</translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="730"/> + <source>Context sensitive help</source> + <translation type="unfinished">背景帮助</translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="731"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation type="unfinished"><b>显示背景帮助</b><p>在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。</p></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="747"/> + <location filename="IconEditor/IconEditorWindow.py" line="748"/> <source>&File</source> <translation type="unfinished">文件(&F)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="761"/> + <location filename="IconEditor/IconEditorWindow.py" line="762"/> <source>&Edit</source> <translation type="unfinished">编辑(&E)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="777"/> + <location filename="IconEditor/IconEditorWindow.py" line="778"/> <source>&View</source> <translation type="unfinished">视图(&V)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="786"/> + <location filename="IconEditor/IconEditorWindow.py" line="787"/> <source>&Tools</source> <translation type="unfinished">工具(&T)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="805"/> + <location filename="IconEditor/IconEditorWindow.py" line="806"/> <source>&Help</source> <translation type="unfinished">帮助(&H)</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="815"/> + <location filename="IconEditor/IconEditorWindow.py" line="816"/> <source>File</source> <translation type="unfinished">文件</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="828"/> + <location filename="IconEditor/IconEditorWindow.py" line="829"/> <source>Edit</source> <translation type="unfinished">编辑</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="841"/> + <location filename="IconEditor/IconEditorWindow.py" line="842"/> <source>View</source> <translation type="unfinished">视图</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="851"/> + <location filename="IconEditor/IconEditorWindow.py" line="852"/> <source>Tools</source> <translation type="unfinished">工具</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="869"/> + <location filename="IconEditor/IconEditorWindow.py" line="870"/> <source>Help</source> <translation type="unfinished">帮助</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="883"/> + <location filename="IconEditor/IconEditorWindow.py" line="884"/> <source><p>This part of the status bar displays the current zoom factor.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="890"/> + <location filename="IconEditor/IconEditorWindow.py" line="891"/> <source><p>This part of the status bar displays the icon size.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="897"/> + <location filename="IconEditor/IconEditorWindow.py" line="898"/> <source><p>This part of the status bar displays the cursor position.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="966"/> + <location filename="IconEditor/IconEditorWindow.py" line="967"/> <source>Open icon file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source>Save icon file</source> <translation type="unfinished"></translation> </message> @@ -19766,12 +19811,12 @@ %2.</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1080"/> + <location filename="IconEditor/IconEditorWindow.py" line="1081"/> <source>Icon saved</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1095"/> + <location filename="IconEditor/IconEditorWindow.py" line="1096"/> <source>Untitled</source> <translation type="unfinished">未命名</translation> </message> @@ -19781,84 +19826,84 @@ <translation type="obsolete">%1[*] - %2</translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="110"/> + <location filename="IconEditor/IconEditorWindow.py" line="111"/> <source>Multiple-Image Network Graphics File (*.mng)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="461"/> - <source>Reset the zoom of the icon</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="IconEditor/IconEditorWindow.py" line="462"/> + <source>Reset the zoom of the icon</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="IconEditor/IconEditorWindow.py" line="463"/> <source><b>Zoom reset</b><p>Reset the zoom of the icon. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="112"/> + <location filename="IconEditor/IconEditorWindow.py" line="113"/> <source>Paintbrush Bitmap File (*.pcx)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="116"/> + <location filename="IconEditor/IconEditorWindow.py" line="117"/> <source>Silicon Graphics Image File (*.sgi)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="118"/> + <location filename="IconEditor/IconEditorWindow.py" line="119"/> <source>Targa Graphic File (*.tga)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1031"/> + <location filename="IconEditor/IconEditorWindow.py" line="1032"/> <source>The file '{0}' does not exist.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1037"/> + <location filename="IconEditor/IconEditorWindow.py" line="1038"/> <source>Cannot read file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1069"/> + <location filename="IconEditor/IconEditorWindow.py" line="1070"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1099"/> + <location filename="IconEditor/IconEditorWindow.py" line="1100"/> <source>{0}[*] - {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>About eric5 Icon Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1203"/> + <location filename="IconEditor/IconEditorWindow.py" line="1204"/> <source>The eric5 Icon Editor is a simple editor component to perform icon drawing tasks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1005"/> + <location filename="IconEditor/IconEditorWindow.py" line="1006"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="IconEditor/IconEditorWindow.py" line="1120"/> + <location filename="IconEditor/IconEditorWindow.py" line="1121"/> <source>The icon image has unsaved changes.</source> <translation type="unfinished"></translation> </message> @@ -23221,47 +23266,47 @@ <translation type="obsolete"><b>连接到代理 '%1' ,使用:</b></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source>SSL Errors</source> <translation type="unfinished">SSL 错误</translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source>Certificates</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="160"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="164"/> <source><b>Enter username and password for '{0}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="163"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="167"/> <source><b>Enter username and password for '{0}', realm '{1}'</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="206"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="210"/> <source><p>SSL Errors for <br /><b>{0}</b><ul><li>{1}</li></ul></p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="219"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="223"/> <source><p>Certificates:<br/>{0}<br/>Do you want to accept all these certificates?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="254"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="258"/> <source><br/>Issuer: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="257"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="261"/> <source><br/>Not valid before: {0}<br/>Valid Until: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/NetworkAccessManager.py" line="264"/> + <location filename="Helpviewer/Network/NetworkAccessManager.py" line="268"/> <source><br/>Alternate Names:<ul><li>{0}</li></ul></source> <translation type="unfinished"></translation> </message> @@ -24992,12 +25037,12 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="874"/> + <location filename="Preferences/__init__.py" line="875"/> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="Preferences/__init__.py" line="893"/> + <location filename="Preferences/__init__.py" line="894"/> <source>Import Preferences</source> <translation>导入首选项</translation> </message>