Mon, 31 Dec 2012 12:35:13 +0100
Adjusted some display strings to be independant of the Qt version (Qt4/Qt5).
--- a/DebugClients/Python/DebugClientBase.py Mon Dec 31 11:59:44 2012 +0100 +++ b/DebugClients/Python/DebugClientBase.py Mon Dec 31 12:35:13 2012 +0100 @@ -1474,7 +1474,7 @@ def __formatQt4Variable(self, value, vtype): """ - Private method to produce a formated output of a simple Qt4 type. + Private method to produce a formated output of a simple Qt4/Qt5 type. @param value variable to be formated @param vtype type of the variable to be formatted (string)
--- a/DebugClients/Python3/DebugClientBase.py Mon Dec 31 11:59:44 2012 +0100 +++ b/DebugClients/Python3/DebugClientBase.py Mon Dec 31 12:35:13 2012 +0100 @@ -1497,7 +1497,7 @@ def __formatQt4Variable(self, value, vtype): """ - Private method to produce a formatted output of a simple Qt4 type. + Private method to produce a formatted output of a simple Qt4/Qt5 type. @param value variable to be formatted @param vtype type of the variable to be formatted (string)
--- a/Plugins/PluginEricdoc.py Mon Dec 31 11:59:44 2012 +0100 +++ b/Plugins/PluginEricdoc.py Mon Dec 31 12:35:13 2012 +0100 @@ -73,7 +73,7 @@ dataList.append({ "programEntry": True, "header": QApplication.translate("EricdocPlugin", - "Qt4 Help Tools"), + "Qt Help Tools"), "exe": exe, "versionCommand": '-v', "versionStartsWith": 'Qt', @@ -89,7 +89,7 @@ dataList.append({ "programEntry": True, "header": QApplication.translate("EricdocPlugin", - "Qt4 Help Tools"), + "Qt Help Tools"), "exe": exe, "versionCommand": '-v', "versionStartsWith": 'Qt',
--- a/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py Mon Dec 31 11:59:44 2012 +0100 +++ b/Plugins/WizardPlugins/FileDialogWizard/FileDialogWizardDialog.py Mon Dec 31 12:35:13 2012 +0100 @@ -147,7 +147,7 @@ def __getCode4(self, indLevel, indString): """ - Private method to get the source code for Qt4. + Private method to get the source code for Qt4/Qt5. @param indLevel indentation level (int) @param indString string used for indentation (space or tab) (string)
--- a/Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py Mon Dec 31 11:59:44 2012 +0100 +++ b/Plugins/WizardPlugins/InputDialogWizard/InputDialogWizardDialog.py Mon Dec 31 12:35:13 2012 +0100 @@ -112,7 +112,7 @@ def __getCode4(self, indLevel, indString): """ - Private method to get the source code for Qt4. + Private method to get the source code for Qt4/Qt5. @param indLevel indentation level (int) @param indString string used for indentation (space or tab) (string)
--- a/Preferences/ProgramsDialog.py Mon Dec 31 11:59:44 2012 +0100 +++ b/Preferences/ProgramsDialog.py Mon Dec 31 12:35:13 2012 +0100 @@ -74,49 +74,49 @@ header.setSortIndicator(0, Qt.AscendingOrder) header.setSortIndicatorShown(False) - # 1. do the Qt4 programs + # 1. do the Qt4/Qt5 programs # 1a. Translation Converter exe = Utilities.isWindowsPlatform() and \ "{0}.exe".format(Utilities.generateQtToolName("lrelease")) or \ Utilities.generateQtToolName("lrelease") - version = self.__createProgramEntry(self.trUtf8("Translation Converter (Qt4)"), + version = self.__createProgramEntry(self.trUtf8("Translation Converter (Qt)"), exe, '-version', 'lrelease', -1) - # 1b. Qt4 Designer + # 1b. Qt Designer if Utilities.isWindowsPlatform(): exe = "{0}.exe".format(Utilities.generateQtToolName("designer")) elif Utilities.isMacPlatform(): exe = Utilities.getQtMacBundle("designer") else: exe = Utilities.generateQtToolName("designer") - self.__createProgramEntry(self.trUtf8("Qt4 Designer"), exe, version=version) - # 1c. Qt4 Linguist + self.__createProgramEntry(self.trUtf8("Qt Designer"), exe, version=version) + # 1c. Qt Linguist if Utilities.isWindowsPlatform(): exe = "{0}.exe".format(Utilities.generateQtToolName("linguist")) elif Utilities.isMacPlatform(): exe = Utilities.getQtMacBundle("linguist") else: exe = Utilities.generateQtToolName("linguist") - self.__createProgramEntry(self.trUtf8("Qt4 Linguist"), exe, version=version) - # 1d. Qt4 Assistant + self.__createProgramEntry(self.trUtf8("Qt Linguist"), exe, version=version) + # 1d. Qt Assistant if Utilities.isWindowsPlatform(): exe = "{0}.exe".format(Utilities.generateQtToolName("assistant")) elif Utilities.isMacPlatform(): exe = Utilities.getQtMacBundle("assistant") else: exe = Utilities.generateQtToolName("assistant") - self.__createProgramEntry(self.trUtf8("Qt4 Assistant"), exe, version=version) + self.__createProgramEntry(self.trUtf8("Qt Assistant"), exe, version=version) # 2. do the PyQt programs # 2a. Translation Extractor PyQt4 - self.__createProgramEntry(self.trUtf8("Translation Extractor (Python, Qt4)"), + self.__createProgramEntry(self.trUtf8("Translation Extractor (Python, Qt)"), Utilities.isWindowsPlatform() and "pylupdate4.exe" or "pylupdate4", '-version', 'pylupdate', -1) # 2b. Forms Compiler PyQt4 - self.__createProgramEntry(self.trUtf8("Forms Compiler (Python, Qt4)"), + self.__createProgramEntry(self.trUtf8("Forms Compiler (Python, Qt)"), Utilities.isWindowsPlatform() and "pyuic4.bat" or "pyuic4", '--version', 'Python User', 4) # 2c. Resource Compiler PyQt4 - self.__createProgramEntry(self.trUtf8("Resource Compiler (Python, Qt4)"), + self.__createProgramEntry(self.trUtf8("Resource Compiler (Python, Qt)"), Utilities.isWindowsPlatform() and "pyrcc4.exe" or "pyrcc4", '-version', 'Resource Compiler', -1)
--- a/Project/CreateDialogCodeDialog.py Mon Dec 31 11:59:44 2012 +0100 +++ b/Project/CreateDialogCodeDialog.py Mon Dec 31 12:35:13 2012 +0100 @@ -4,7 +4,7 @@ # """ -Module implementing a dialog to generate code for a Qt4 dialog. +Module implementing a dialog to generate code for a Qt4/Qt5 dialog. """ import os @@ -32,7 +32,7 @@ class CreateDialogCodeDialog(QDialog, Ui_CreateDialogCodeDialog): """ - Class implementing a dialog to generate code for a Qt4 dialog. + Class implementing a dialog to generate code for a Qt4/Qt5 dialog. """ DialogClasses = {"QDialog", "QWidget", "QMainWindow", "QWizardPage"} Separator = 25 * "="
--- a/Project/Project.py Mon Dec 31 11:59:44 2012 +0100 +++ b/Project/Project.py Mon Dec 31 12:35:13 2012 +0100 @@ -258,8 +258,8 @@ self.__lexerAssociationCallbacks = {} self.__binaryTranslationsCallbacks = {} - self.__projectTypes["Qt4"] = self.trUtf8("Qt4 GUI") - self.__projectTypes["Qt4C"] = self.trUtf8("Qt4 Console") + self.__projectTypes["Qt4"] = self.trUtf8("Qt GUI") + self.__projectTypes["Qt4C"] = self.trUtf8("Qt Console") self.__projectTypes["E4Plugin"] = self.trUtf8("Eric Plugin") self.__projectTypes["Console"] = self.trUtf8("Console") self.__projectTypes["Other"] = self.trUtf8("Other")
--- a/UI/UserInterface.py Mon Dec 31 11:59:44 2012 +0100 +++ b/UI/UserInterface.py Mon Dec 31 12:35:13 2012 +0100 @@ -1641,7 +1641,7 @@ self.utProjectAct.setEnabled(False) self.actions.append(self.utProjectAct) - # check for Qt4 designer and linguist + # check for Qt4/Qt5 designer and linguist if Utilities.isWindowsPlatform(): designerExe = "{0}.exe".format(Utilities.generateQtToolName("designer")) elif Utilities.isMacPlatform(): @@ -1649,13 +1649,13 @@ else: designerExe = Utilities.generateQtToolName("designer") if Utilities.isinpath(designerExe): - self.designer4Act = E5Action(self.trUtf8('Qt-Designer 4'), + self.designer4Act = E5Action(self.trUtf8('Qt-Designer'), UI.PixmapCache.getIcon("designer4.png"), - self.trUtf8('&Designer 4...'), 0, 0, self, 'qt_designer4') - self.designer4Act.setStatusTip(self.trUtf8('Start Qt-Designer 4')) + self.trUtf8('Qt-&Designer...'), 0, 0, self, 'qt_designer4') + self.designer4Act.setStatusTip(self.trUtf8('Start Qt-Designer')) self.designer4Act.setWhatsThis(self.trUtf8( - """<b>Qt-Designer 4</b>""" - """<p>Start Qt-Designer 4.</p>""" + """<b>Qt-Designer</b>""" + """<p>Start Qt-Designer.</p>""" )) self.designer4Act.triggered[()].connect(self.__designer4) self.actions.append(self.designer4Act) @@ -1669,13 +1669,13 @@ else: linguistExe = Utilities.generateQtToolName("linguist") if Utilities.isinpath(linguistExe): - self.linguist4Act = E5Action(self.trUtf8('Qt-Linguist 4'), + self.linguist4Act = E5Action(self.trUtf8('Qt-Linguist'), UI.PixmapCache.getIcon("linguist4.png"), - self.trUtf8('&Linguist 4...'), 0, 0, self, 'qt_linguist4') - self.linguist4Act.setStatusTip(self.trUtf8('Start Qt-Linguist 4')) + self.trUtf8('Qt-&Linguist...'), 0, 0, self, 'qt_linguist4') + self.linguist4Act.setStatusTip(self.trUtf8('Start Qt-Linguist')) self.linguist4Act.setWhatsThis(self.trUtf8( - """<b>Qt-Linguist 4</b>""" - """<p>Start Qt-Linguist 4.</p>""" + """<b>Qt-Linguist</b>""" + """<p>Start Qt-Linguist.</p>""" )) self.linguist4Act.triggered[()].connect(self.__linguist4) self.actions.append(self.linguist4Act)
--- a/eric5.e4p Mon Dec 31 11:59:44 2012 +0100 +++ b/eric5.e4p Mon Dec 31 12:35:13 2012 +0100 @@ -1914,7 +1914,7 @@ <string>ExcludeFiles</string> </key> <value> - <string>*/ThirdParty/*, */coverage/*</string> + <string>*/ThirdParty/*, */coverage/*, Ui_*.py</string> </value> </dict> </value>
--- a/i18n/eric5_cs.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_cs.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12619,11 +12619,6 @@ <translation type="obsolete"><b>Generovat dokumentaci</b><p>Generovat API dokumentaci za použití eric5-doc.</p></translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="89"/> - <source>Qt4 Help Tools</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> <source>Generate documentation (eric5_doc)</source> <translation type="unfinished"></translation> @@ -12643,6 +12638,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -27465,273 +27465,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished">SSL chyby</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"><p>SSL chyby:</p><p>{0}</p><p>Chcete tyto chyby ignorovat?</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">Kritický</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -27746,12 +27746,12 @@ <translation type="unfinished">Síť</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -32977,27 +32977,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Předvolby exportu</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Předvolby importu</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -33141,37 +33141,22 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>Konvertor překladů (Qt4)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="91"/> - <source>Qt4 Designer</source> - <translation></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="99"/> - <source>Qt4 Linguist</source> - <translation></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="107"/> - <source>Qt4 Assistant</source> - <translation></translation> + <translation type="obsolete">Konvertor překladů (Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>Extraktor překladů (Python, Qt4)</translation> + <translation type="obsolete">Extraktor překladů (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>Kompilátor formulářů (Python, Qt4)</translation> + <translation type="obsolete">Kompilátor formulářů (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>Kompilátor resource (Python, Qt4)</translation> + <translation type="obsolete">Kompilátor resource (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="139"/> @@ -33243,6 +33228,41 @@ <source>Source Highlighter - Pygments</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt asistent</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -33252,16 +33272,6 @@ <translation>Ruby soubory (*.rb);;</translation> </message> <message> - <location filename="Project/Project.py" line="261"/> - <source>Qt4 GUI</source> - <translation></translation> - </message> - <message> - <location filename="Project/Project.py" line="262"/> - <source>Qt4 Console</source> - <translation></translation> - </message> - <message> <location filename="Project/Project.py" line="264"/> <source>Console</source> <translation>Konzole</translation> @@ -34440,6 +34450,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -41405,17 +41425,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -52412,34 +52432,24 @@ <translation><b>Unittest projekt</b><p>Spustit unittest s aktuálním projektem.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1652"/> - <source>Qt-Designer 4</source> - <translation></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>Spustit Qt-Designer 4</translation> + <translation type="obsolete">Spustit Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Designer 4</b><p>Spustit Qt-Designer 4.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1672"/> - <source>Qt-Linguist 4</source> - <translation></translation> + <translation type="obsolete"><b>Qt-Designer 4</b><p>Spustit Qt-Designer 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>Spustit Qt-Linguist 4</translation> + <translation type="obsolete">Spustit Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Linguist 4</b><p>Spustit Qt-Linguist 4.</p></translation> + <translation type="obsolete"><b>Qt-Linguist 4</b><p>Spustit Qt-Linguist 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1685"/> @@ -53069,12 +53079,12 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>&Designer 4...</translation> + <translation type="obsolete">&Designer 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>&Linguist 4...</translation> + <translation type="obsolete">&Linguist 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1862"/> @@ -54236,6 +54246,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_de.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_de.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12218,11 +12218,6 @@ <translation>Eric5 Dokumentationsgenerator</translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="89"/> - <source>Qt4 Help Tools</source> - <translation>Qt4 Help Werkzeuge</translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> <source>Generate documentation (eric5_doc)</source> <translation>Erzeuge Dokumentation (eric5_doc)</translation> @@ -12242,6 +12237,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation><b>Erzeuge Dokumentation</b><p>Erzeuge die API Dokumentation unter Verwendung von eric5_doc.</p></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation>Qt Help Werkzeuge</translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -26660,273 +26660,273 @@ <translation>Drücken, um den aktuellen Kanal zu verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation>Verbindung zum Server beenden</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation><p>Soll die Verbindung zu <b>{0}</b> wirklich unterbrochen werden?</p><p>Alle Kanäle werden geschlossen.</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation>SSL Verbindung</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation>Eine verschlüsselte Verbindung zum IRC Netzwerk wurde angefragt, SSL steht jedoch nicht zur Verfügung. Bitte ändern sie die Serverkonfiguration.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation>Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation>Suche nach Server {0} (Port {1}) über eine SSL verschlüsselte Verbindung...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation>Suche nach Server {0} (Port {1})...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation>Verbindung zum Server {0} wird unterbrochen...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation>Server gefunden, Verbindung wird hergesteltl...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation>Verbunden, Anmeldung läuft...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation>Serververbindung unterbrochen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation>Nachrichtenfehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation>Unbekannte Nachricht vom Server empfangen:<br/>{0}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation>Notiz</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation>Modus</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation>Sie haben den Kanal {0} verlassen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation>Sie sind jetzt als {0} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation>Nutzer {0} ist nun als {1} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation>Server Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation>Willkommen</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation>Support</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation>Nutzer</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation>MOTD</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation>Abwesend</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation>Info ({0})</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation>Nachricht des Tages</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation>Ende der Nachricht des Tages</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation>Anzahl der Benutzer im Netzwerk: {0}, max. {1}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation>Sie sind nicht länger als "abwesend" gekennzeichnet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation>Sie sind als "abwesend" gekennzeichnet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation>Socker Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation>Der Server wurde nicht gefunden. Bitte prüfen sie den Servernamen und die Porteinstellungen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation>Die Verbindung wurde von der Gegenseite abgelehnt. Bitte prüfen sie den Servernamen und die Porteinstellungen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation>Der folgende Netzwerkfehler trat auf:<br/>{0}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation><p>SSL Fehler</p><p>{0}</p><p>Wollen Sie diese Fehler ignorieren?</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation>Das SSL Zertifikat für den Server {0} (Port {1}) hat die Authentizitätsprüfung nicht bestanden.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation>Es konnte keine SSL verschlüsselte Verbindung zum Server {0} (Port {1}) aufgebaut werden. Entweder unterstütz der Server kein SSL (haben sie den richtigen Port verwendet?) oder sie haben das Zertifikat abgelehnt.<br/>{2}</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation>{0} ({1})</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation>Kritischer Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation>Es ist kein für den Server <b>{0}</b> akzeptabler Spitzname konfiguriert. Verbindungsabbruch...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation>Der übergebene Spitzname wird bereits verwendet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation>CTCP</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation>Versionsanfrage von {0} empfangen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation>Sie habe ihre persönlichen Modi auf <b>[{0}]</b> gesetzt.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation>{0} hat ihre persönlichen Modi auf <b>[{0}]</b> geändert.</translation> </message> @@ -26941,12 +26941,12 @@ <translation>Netzwerk</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation>Der SSL Handshake schlug fehl.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation>Ein Netzwerkfehler trat auf.</translation> </message> @@ -31800,27 +31800,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Einstellungen exportieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Einstellungen importieren</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Properties Dateien (*.ini);;Alle Dateien (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation>Wähle den Python2 Interpreter</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation>Wähle den zu verwendenden Python2 Interpreter aus:</translation> </message> @@ -31957,41 +31957,6 @@ <translation>Drücke, um nach Programmen zu suchen</translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="82"/> - <source>Translation Converter (Qt4)</source> - <translation>Compiler für Übersetzungsdatei (Qt4)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="91"/> - <source>Qt4 Designer</source> - <translation>Qt4 Designer</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="99"/> - <source>Qt4 Linguist</source> - <translation>Qt4 Linguist</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="107"/> - <source>Qt4 Assistant</source> - <translation>Qt4 Assistant</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="111"/> - <source>Translation Extractor (Python, Qt4)</source> - <translation>Übersetzungsextraktor (Python, Qt4)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="115"/> - <source>Forms Compiler (Python, Qt4)</source> - <translation>Formularcompiler (Python, Qt4)</translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="119"/> - <source>Resource Compiler (Python, Qt4)</source> - <translation>Resourcencompiler (Python, Qt4)</translation> - </message> - <message> <location filename="Preferences/ProgramsDialog.py" line="139"/> <source>Forms Compiler (Ruby, Qt4)</source> <translation>Formularcompiler (Ruby, Qt4)</translation> @@ -32056,6 +32021,41 @@ <source>Source Highlighter - Pygments</source> <translation>Quelltextfärber - Pygments</translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation>Compiler für Übersetzungsdatei (Qt)</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation>Qt Designer</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation>Qt Linguist</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation>Qt Assistant</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation>Übersetzungsextraktor (Python, Qt)</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation>Formularcompiler (Python, Qt)</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation>Resourcencompiler (Python, Qt)</translation> + </message> </context> <context> <name>Project</name> @@ -32830,16 +32830,6 @@ <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> </message> <message> - <location filename="Project/Project.py" line="261"/> - <source>Qt4 GUI</source> - <translation>Qt4 Oberfläche</translation> - </message> - <message> - <location filename="Project/Project.py" line="262"/> - <source>Qt4 Console</source> - <translation>Qt4 Kommandozeile</translation> - </message> - <message> <location filename="Project/Project.py" line="1632"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht umbenannt werden.<br />Ursache: {1}</p></translation> @@ -33172,6 +33162,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits für die Programmiersprache <b>{1}</b> registriert.</p></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation>Qt Oberfläche</translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation>Qt Kommandozeile</translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -39935,17 +39935,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation>Fehler beim Laden</translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation>Speichere Schnellwahl Daten</translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation><p>Die Schnellwahl Daten konnten nicht in die Datei <b>{0}</b> gespeichert werden</p></translation> </message> @@ -50966,36 +50966,6 @@ <translation>Alt+Shift+G</translation> </message> <message> - <location filename="UI/UserInterface.py" line="1652"/> - <source>Qt-Designer 4</source> - <translation>Qt-Designer 4</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1655"/> - <source>Start Qt-Designer 4</source> - <translation>Starte Qt-Designer 4</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1656"/> - <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Designer 4</b><p>Starte Qt-Designer 4.</p></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1672"/> - <source>Qt-Linguist 4</source> - <translation>Qt-Linguist 4</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1675"/> - <source>Start Qt-Linguist 4</source> - <translation>Starte Qt-Linguist 4</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1676"/> - <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Linguist 4</b><p>Starte Qt-Linguist 4 (Übersetzungsprogramm).</p></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="2007"/> <source>Qt4 Documentation</source> <translation>Qt4 Dokumentation</translation> @@ -51351,16 +51321,6 @@ <translation><b>Mini Editor</b><p>Öffnet einen Dialog mit einem vereinfachten Editor.</p></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1652"/> - <source>&Designer 4...</source> - <translation>&Designer 4...</translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1672"/> - <source>&Linguist 4...</source> - <translation>&Linguist 4...</translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1862"/> <source>Toolbars</source> <translation>Werkzeugleisten</translation> @@ -52267,6 +52227,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation><b>IRC aktivieren</b><p>Dies schaltet den Eingabefokus auf das IRC-Fenster um.</p></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation>Qt-Designer</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation>Qt-&Designer...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation>Starte Qt-Designer</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation><b>Qt-Designer</b><p>Starte Qt-Designer.</p></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation>Qt-Linguist</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation>Qt-&Linguist...</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation>Starte Qt-Linguist</translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation><b>Qt-Linguist</b><p>Starte Qt-Linguist (Übersetzungsprogramm).</p></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_en.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_en.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12136,11 +12136,6 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="89"/> - <source>Qt4 Help Tools</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> <source>Generate documentation (eric5_doc)</source> <translation type="unfinished"></translation> @@ -12160,6 +12155,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -26512,273 +26512,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -26793,12 +26793,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -31636,27 +31636,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -31798,41 +31798,6 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/ProgramsDialog.py" line="82"/> - <source>Translation Converter (Qt4)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="91"/> - <source>Qt4 Designer</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="99"/> - <source>Qt4 Linguist</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="107"/> - <source>Qt4 Assistant</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="111"/> - <source>Translation Extractor (Python, Qt4)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="115"/> - <source>Forms Compiler (Python, Qt4)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Preferences/ProgramsDialog.py" line="119"/> - <source>Resource Compiler (Python, Qt4)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Preferences/ProgramsDialog.py" line="125"/> <source>Translation Extractor (Python, PySide)</source> <translation type="unfinished"></translation> @@ -31892,6 +31857,41 @@ <source>Source Highlighter - Pygments</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -31906,16 +31906,6 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Project/Project.py" line="261"/> - <source>Qt4 GUI</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Project/Project.py" line="262"/> - <source>Qt4 Console</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Project/Project.py" line="263"/> <source>Eric Plugin</source> <translation type="unfinished"></translation> @@ -33008,6 +32998,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -39600,17 +39600,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -50376,46 +50376,6 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="UI/UserInterface.py" line="1652"/> - <source>Qt-Designer 4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1652"/> - <source>&Designer 4...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1655"/> - <source>Start Qt-Designer 4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1656"/> - <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1672"/> - <source>Qt-Linguist 4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1672"/> - <source>&Linguist 4...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1675"/> - <source>Start Qt-Linguist 4</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="UI/UserInterface.py" line="1676"/> - <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="UI/UserInterface.py" line="1685"/> <source>UI Previewer</source> <translation type="unfinished"></translation> @@ -51798,6 +51758,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_es.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_es.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12363,7 +12363,7 @@ <message> <location filename="Plugins/PluginEricdoc.py" line="89"/> <source>Qt4 Help Tools</source> - <translation>Herramientas de Ayuda de Qt4</translation> + <translation type="obsolete">Herramientas de Ayuda de Qt4</translation> </message> <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> @@ -12385,6 +12385,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation><b>Generar documentación</b><p>Generar documentación de API utilizando eric5_doc.</p></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -26948,273 +26953,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">Información</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">Error</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished">Usuario</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"><p>Errores SSL:</p><p>{0}</p><p>¿Desea ignorar estos errores?</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished">{0} ({1})</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">Aviso Crítico</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -27229,12 +27234,12 @@ <translation type="unfinished">Red</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -32158,27 +32163,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Exportar Preferencias</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Importar Preferencias</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation>Seleccionar Intérprete de Python2</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation>Seleccionar el intérprete de Python2 a utilizar:</translation> </message> @@ -32322,37 +32327,37 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>Conversor de Traducciones (Qt4)</translation> + <translation type="obsolete">Conversor de Traducciones (Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="91"/> <source>Qt4 Designer</source> - <translation>Qt4 Designer</translation> + <translation type="obsolete">Qt4 Designer</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="99"/> <source>Qt4 Linguist</source> - <translation>Qt4 Linguist</translation> + <translation type="obsolete">Qt4 Linguist</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="107"/> <source>Qt4 Assistant</source> - <translation>Qt4 Assistant</translation> + <translation type="obsolete">Qt4 Assistant</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>Extractor de traducciones (Python, Qt4)</translation> + <translation type="obsolete">Extractor de traducciones (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>Compilador de Formularios (Python, Qt4)</translation> + <translation type="obsolete">Compilador de Formularios (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>Compilador de Recursos (Python, Qt4)</translation> + <translation type="obsolete">Compilador de Recursos (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="139"/> @@ -32414,6 +32419,41 @@ <source>Source Highlighter - Pygments</source> <translation>Resaltador de Código Fuente - Pygments</translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt Assistant</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -32425,12 +32465,12 @@ <message> <location filename="Project/Project.py" line="261"/> <source>Qt4 GUI</source> - <translation>Qt4 GUI</translation> + <translation type="obsolete">Qt4 GUI</translation> </message> <message> <location filename="Project/Project.py" line="262"/> <source>Qt4 Console</source> - <translation>Consola QT4</translation> + <translation type="obsolete">Consola QT4</translation> </message> <message> <location filename="Project/Project.py" line="264"/> @@ -33540,6 +33580,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>El tipo de Proyecto <b>{0}</b> ya está registrado con el Lenguaje de Programación <b>{1}</b>.</p></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -40286,17 +40336,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation>No se ha podido cargar</translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation>Guardando datos de Marcación Rápida</translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation><p>Los datos de Marcación Rápido no se han podido guardar en <b>{0}</b></p></translation> </message> @@ -51258,32 +51308,32 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>Qt-Designer 4</source> - <translation>Qt-Designer 4</translation> + <translation type="obsolete">Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>Ejecutar Qt-Designer 4</translation> + <translation type="obsolete">Ejecutar Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Designer 4</b><p>Ejecutar Qt-Designer 4.</p></translation> + <translation type="obsolete"><b>Qt-Designer 4</b><p>Ejecutar Qt-Designer 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>Qt-Linguist 4</source> - <translation>Qt-Linguist 4</translation> + <translation type="obsolete">Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>Ejecutar Qt-Linguist 4</translation> + <translation type="obsolete">Ejecutar Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Linguist 4</b><p>Ejecutar Qt-Linguist 4.</p></translation> + <translation type="obsolete"><b>Qt-Linguist 4</b><p>Ejecutar Qt-Linguist 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1685"/> @@ -51823,12 +51873,12 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>&Designer 4...</translation> + <translation type="obsolete">&Designer 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>&Linguist 4...</translation> + <translation type="obsolete">&Linguist 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1747"/> @@ -52994,6 +53044,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_fr.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_fr.ts Mon Dec 31 12:35:13 2012 +0100 @@ -13375,11 +13375,6 @@ <translation type="obsolete"><b>Générer la documentation</b><p>Génère la documentation API en utilisant eric4-doc.</p> {5-?}</translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="89"/> - <source>Qt4 Help Tools</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> <source>Generate documentation (eric5_doc)</source> <translation type="unfinished"></translation> @@ -13399,6 +13394,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -28500,273 +28500,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished">Erreurs SSL</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">Critique</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -28781,12 +28781,12 @@ <translation type="unfinished">Réseau</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -34393,27 +34393,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Export des préférences</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Import des préférences</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -34587,22 +34587,22 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>Convertisseur de traductions (Qt4)</translation> + <translation type="obsolete">Convertisseur de traductions (Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="91"/> <source>Qt4 Designer</source> - <translation>Qt4 Designer</translation> + <translation type="obsolete">Qt4 Designer</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="99"/> <source>Qt4 Linguist</source> - <translation>Qt4 Linguist</translation> + <translation type="obsolete">Qt4 Linguist</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="107"/> <source>Qt4 Assistant</source> - <translation>Qt4 Assistant</translation> + <translation type="obsolete">Qt4 Assistant</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="137"/> @@ -34617,17 +34617,17 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>Extracteur de traductions (Python, Qt4)</translation> + <translation type="obsolete">Extracteur de traductions (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>Compilateur de feuilles (Python, Qt4)</translation> + <translation type="obsolete">Compilateur de feuilles (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>Compilateur de ressources (Python, Qt4)</translation> + <translation type="obsolete">Compilateur de ressources (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="160"/> @@ -34714,6 +34714,41 @@ <source>Source Highlighter - Pygments</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt Assistant</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -35620,12 +35655,12 @@ <message> <location filename="Project/Project.py" line="261"/> <source>Qt4 GUI</source> - <translation>GUI Qt4</translation> + <translation type="obsolete">GUI Qt4</translation> </message> <message> <location filename="Project/Project.py" line="262"/> <source>Qt4 Console</source> - <translation>Console Qt4</translation> + <translation type="obsolete">Console Qt4</translation> </message> <message> <location filename="Project/Project.py" line="489"/> @@ -36170,6 +36205,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -43859,17 +43904,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -56022,32 +56067,32 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>Qt-Designer 4</source> - <translation>Qt-Designer 4</translation> + <translation type="obsolete">Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>Qt-Linguist 4</source> - <translation>Qt-Linguist 4</translation> + <translation type="obsolete">Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>Lancer Qt-Designer 4</translation> + <translation type="obsolete">Lancer Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Designer 4</b><p>Lancer Qt-Designer 4.</p></translation> + <translation type="obsolete"><b>Qt-Designer 4</b><p>Lancer Qt-Designer 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>Lancer Qt-Linguist 4</translation> + <translation type="obsolete">Lancer Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Linguist 4</b><p>Lance Qt-Linguist 4.</p></translation> + <translation type="obsolete"><b>Qt-Linguist 4</b><p>Lance Qt-Linguist 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="2007"/> @@ -56595,12 +56640,12 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>&Designer 4...</translation> + <translation type="obsolete">&Designer 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>&Linguist 4...</translation> + <translation type="obsolete">&Linguist 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1862"/> @@ -57710,6 +57755,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_it.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_it.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12463,7 +12463,7 @@ <message> <location filename="Plugins/PluginEricdoc.py" line="89"/> <source>Qt4 Help Tools</source> - <translation>Qt4 Help Tools</translation> + <translation type="obsolete">Qt4 Help Tools</translation> </message> <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> @@ -12485,6 +12485,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -27236,273 +27241,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">Errore</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished">Errori SSL</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"><p>Errori SSL:</p><p>{0}</p><p>Vuoi ignorare questi errori ?</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished">{0} ({1})</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">Critico</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -27517,12 +27522,12 @@ <translation type="unfinished">Rete</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -32625,27 +32630,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Esporta Preferenze</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Importa Preferenze</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>File proprietà (*.ini);;Tutti i file(*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -32789,37 +32794,37 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>Convertitore traduzioni (Qt4)</translation> + <translation type="obsolete">Convertitore traduzioni (Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="91"/> <source>Qt4 Designer</source> - <translation>Qt4-Designer</translation> + <translation type="obsolete">Qt4-Designer</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="99"/> <source>Qt4 Linguist</source> - <translation>Qt4 Linguist</translation> + <translation type="obsolete">Qt4 Linguist</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="107"/> <source>Qt4 Assistant</source> - <translation>Qt4 Assistant</translation> + <translation type="obsolete">Qt4 Assistant</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>Estrattore di traduzioni (Python, Qt4)</translation> + <translation type="obsolete">Estrattore di traduzioni (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>Compilatore forms (Python, Qt4)</translation> + <translation type="obsolete">Compilatore forms (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>Compilatore Risorse (Python, Qt4)</translation> + <translation type="obsolete">Compilatore Risorse (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="139"/> @@ -32881,6 +32886,41 @@ <source>Source Highlighter - Pygments</source> <translation>Evidenziatore Sorgente - Pygments</translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt Assistant</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -33582,12 +33622,12 @@ <message> <location filename="Project/Project.py" line="261"/> <source>Qt4 GUI</source> - <translation>GUI Qt4</translation> + <translation type="obsolete">GUI Qt4</translation> </message> <message> <location filename="Project/Project.py" line="262"/> <source>Qt4 Console</source> - <translation>Console Qt4</translation> + <translation type="obsolete">Console Qt4</translation> </message> <message> <location filename="Project/Project.py" line="2499"/> @@ -34002,6 +34042,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -40997,17 +41047,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -52408,32 +52458,32 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>Qt-Designer 4</source> - <translation>Qt-Designer 4</translation> + <translation type="obsolete">Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>Qt-Linguist 4</source> - <translation>Qt-Linguist 4</translation> + <translation type="obsolete">Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>Avvia Qt-Designer 4</translation> + <translation type="obsolete">Avvia Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Designer 4</b><p>Avvia Qt-Designer 4.</p></translation> + <translation type="obsolete"><b>Qt-Designer 4</b><p>Avvia Qt-Designer 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>Avvia Qt-Linguist 4</translation> + <translation type="obsolete">Avvia Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Linguist 4</b><p>Avvia Qt-Linguist 4.</p></translation> + <translation type="obsolete"><b>Qt-Linguist 4</b><p>Avvia Qt-Linguist 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="2007"/> @@ -52804,12 +52854,12 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>&Desginer 4...</translation> + <translation type="obsolete">&Desginer 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>&Linguist 4...</translation> + <translation type="obsolete">&Linguist 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1862"/> @@ -53985,6 +54035,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_ru.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_ru.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12562,7 +12562,7 @@ <message> <location filename="Plugins/PluginEricdoc.py" line="89"/> <source>Qt4 Help Tools</source> - <translation>Утилиты помощи Qt4</translation> + <translation type="obsolete">Утилиты помощи Qt4</translation> </message> <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> @@ -12584,6 +12584,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -27362,273 +27367,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">Информация</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">Ошибка</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished">Ошибки SSL</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"><p>Ошибки SSL: </p><p>{0}</p><p>Игнорировать?</p></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">Ошибка</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -27643,12 +27648,12 @@ <translation type="unfinished">Сеть</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -32767,27 +32772,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Экспорт предпочтений</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Импорт предпочтений</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation>Файлы свойств (*.ini);;Все файлы (*)</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -32926,37 +32931,37 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>Конвертер переводов (Qt4)</translation> + <translation type="obsolete">Конвертер переводов (Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="91"/> <source>Qt4 Designer</source> - <translation>Qt4-Дизайнер</translation> + <translation type="obsolete">Qt4-Дизайнер</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="99"/> <source>Qt4 Linguist</source> - <translation>Qt4-Лингвист</translation> + <translation type="obsolete">Qt4-Лингвист</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="107"/> <source>Qt4 Assistant</source> - <translation>Qt4 Assistant</translation> + <translation type="obsolete">Qt4 Assistant</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>Извлекатель переводов (Python, Qt4)</translation> + <translation type="obsolete">Извлекатель переводов (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>Компилятор форм (Python, Qt4)</translation> + <translation type="obsolete">Компилятор форм (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>Компилятор ресурсов (Python, Qt4)</translation> + <translation type="obsolete">Компилятор ресурсов (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="139"/> @@ -33033,6 +33038,41 @@ <source>Source Highlighter - Pygments</source> <translation>Подсветка синтаксиса - Pygments</translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt Assistant</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -33828,12 +33868,12 @@ <message> <location filename="Project/Project.py" line="261"/> <source>Qt4 GUI</source> - <translation>Qt4 GUI</translation> + <translation type="obsolete">Qt4 GUI</translation> </message> <message> <location filename="Project/Project.py" line="262"/> <source>Qt4 Console</source> - <translation>Qt4 Консоль</translation> + <translation type="obsolete">Qt4 Консоль</translation> </message> <message> <location filename="Project/Project.py" line="1632"/> @@ -34175,6 +34215,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -41128,17 +41178,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -52624,32 +52674,32 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>Qt-Designer 4</source> - <translation>Qt-Дизайнер 4</translation> + <translation type="obsolete">Qt-Дизайнер 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>Запустить Qt-Дизайнер 4</translation> + <translation type="obsolete">Запустить Qt-Дизайнер 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Дизайнер 4</b><p>Запустить Qt-Дизайнер 4.</p></translation> + <translation type="obsolete"><b>Qt-Дизайнер 4</b><p>Запустить Qt-Дизайнер 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>Qt-Linguist 4</source> - <translation>Qt-Лингвист 4</translation> + <translation type="obsolete">Qt-Лингвист 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>Запустить Qt-Лингвист 4</translation> + <translation type="obsolete">Запустить Qt-Лингвист 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Лингвист 4</b><p>Запустить Qt-Лингвист 4.</p></translation> + <translation type="obsolete"><b>Qt-Лингвист 4</b><p>Запустить Qt-Лингвист 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="2007"/> @@ -53042,12 +53092,12 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>&Дизайнер 4...</translation> + <translation type="obsolete">&Дизайнер 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>&Лингвист 4...</translation> + <translation type="obsolete">&Лингвист 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1862"/> @@ -54131,6 +54181,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_tr.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_tr.ts Mon Dec 31 12:35:13 2012 +0100 @@ -12629,11 +12629,6 @@ <translation type="obsolete"><b>Belge Üretimi</b><p>Eric-5doc kullanılarak API belgelerini üret.</p></translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="89"/> - <source>Qt4 Help Tools</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> <source>Generate documentation (eric5_doc)</source> <translation type="unfinished"></translation> @@ -12653,6 +12648,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -27348,273 +27348,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">Bilgi</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">Hata</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished">SSL Hataları</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">Kritik</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -27629,12 +27629,12 @@ <translation type="unfinished">Ağ</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -32829,27 +32829,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>Seçenekleri Dışa Aktar</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>Seçenekleri İçe Aktar</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -32993,37 +32993,37 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>Tercüme Dönüştürücü (Qt4)</translation> + <translation type="obsolete">Tercüme Dönüştürücü (Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="91"/> <source>Qt4 Designer</source> - <translation>Qt4 Designer</translation> + <translation type="obsolete">Qt4 Designer</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="99"/> <source>Qt4 Linguist</source> - <translation>Qt4 Linguist</translation> + <translation type="obsolete">Qt4 Linguist</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="107"/> <source>Qt4 Assistant</source> - <translation>Qt4 Assistant</translation> + <translation type="obsolete">Qt4 Assistant</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>Çeviri Çıkarıcı (Python, Qt4)</translation> + <translation type="obsolete">Çeviri Çıkarıcı (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>Form Derleyici (Python, Qt4)</translation> + <translation type="obsolete">Form Derleyici (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>Kaynak Derleyici (Python, Qt4)</translation> + <translation type="obsolete">Kaynak Derleyici (Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="125"/> @@ -33095,6 +33095,41 @@ <source>Source Highlighter - Pygments</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt Yardımcı</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -33116,12 +33151,12 @@ <message> <location filename="Project/Project.py" line="261"/> <source>Qt4 GUI</source> - <translation>Qt4 GUI</translation> + <translation type="obsolete">Qt4 GUI</translation> </message> <message> <location filename="Project/Project.py" line="262"/> <source>Qt4 Console</source> - <translation>Qt4 konsolu</translation> + <translation type="obsolete">Qt4 konsolu</translation> </message> <message> <location filename="Project/Project.py" line="263"/> @@ -34251,6 +34286,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -41009,17 +41054,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -52155,42 +52200,42 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>Qt-Designer 4</source> - <translation>Qt-Designer 4</translation> + <translation type="obsolete">Qt-Designer 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>&Designer 4...</translation> + <translation type="obsolete">&Designer 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>Qt-Designer 4'ı Başlat</translation> + <translation type="obsolete">Qt-Designer 4'ı Başlat</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt-Designer 4</b><p>Başlat Qt-Designer 4.</p></translation> + <translation type="obsolete"><b>Qt-Designer 4</b><p>Başlat Qt-Designer 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>Qt-Linguist 4</source> - <translation>Qt-Linguist 4</translation> + <translation type="obsolete">Qt-Linguist 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>&Linguist 4...</translation> + <translation type="obsolete">&Linguist 4...</translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>Qt-Linguist 4'ı Başlat</translation> + <translation type="obsolete">Qt-Linguist 4'ı Başlat</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt-Linguist 4</b><p>Başlat Qt-Linguist 4.</p></translation> + <translation type="obsolete"><b>Qt-Linguist 4</b><p>Başlat Qt-Linguist 4.</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1685"/> @@ -53670,6 +53715,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>
--- a/i18n/eric5_zh_CN.GB2312.ts Mon Dec 31 11:59:44 2012 +0100 +++ b/i18n/eric5_zh_CN.GB2312.ts Mon Dec 31 12:35:13 2012 +0100 @@ -13323,11 +13323,6 @@ <translation type="obsolete"><b>生成文档</b><p>使用 eric4-doc 生成 API 文档。</p> {5-?}</translation> </message> <message> - <location filename="Plugins/PluginEricdoc.py" line="89"/> - <source>Qt4 Help Tools</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Plugins/PluginEricdoc.py" line="133"/> <source>Generate documentation (eric5_doc)</source> <translation type="unfinished"></translation> @@ -13347,6 +13342,11 @@ <source><b>Generate documentation</b><p>Generate API documentation using eric5_doc.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Plugins/PluginEricdoc.py" line="89"/> + <source>Qt Help Tools</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ErrorLogDialog</name> @@ -28464,273 +28464,273 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="208"/> + <location filename="Network/IRC/IrcWidget.py" line="209"/> <source><p>Do you really want to disconnect from <b>{0}</b>?</p><p>All channels will be closed.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="172"/> + <location filename="Network/IRC/IrcWidget.py" line="173"/> <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Info</source> <translation type="unfinished">信息</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="195"/> + <location filename="Network/IRC/IrcWidget.py" line="196"/> <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="202"/> + <location filename="Network/IRC/IrcWidget.py" line="203"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="214"/> + <location filename="Network/IRC/IrcWidget.py" line="215"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="394"/> + <location filename="Network/IRC/IrcWidget.py" line="395"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="401"/> + <location filename="Network/IRC/IrcWidget.py" line="402"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="431"/> + <location filename="Network/IRC/IrcWidget.py" line="432"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="473"/> + <location filename="Network/IRC/IrcWidget.py" line="474"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="497"/> + <location filename="Network/IRC/IrcWidget.py" line="498"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="515"/> + <location filename="Network/IRC/IrcWidget.py" line="516"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="522"/> + <location filename="Network/IRC/IrcWidget.py" line="523"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="533"/> + <location filename="Network/IRC/IrcWidget.py" line="534"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="538"/> + <location filename="Network/IRC/IrcWidget.py" line="539"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="543"/> + <location filename="Network/IRC/IrcWidget.py" line="544"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="577"/> + <location filename="Network/IRC/IrcWidget.py" line="578"/> <source>Error</source> <translation type="unfinished">错误</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="592"/> + <location filename="Network/IRC/IrcWidget.py" line="593"/> <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="594"/> + <location filename="Network/IRC/IrcWidget.py" line="595"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="596"/> + <location filename="Network/IRC/IrcWidget.py" line="597"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="598"/> + <location filename="Network/IRC/IrcWidget.py" line="599"/> <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="600"/> + <location filename="Network/IRC/IrcWidget.py" line="601"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="602"/> + <location filename="Network/IRC/IrcWidget.py" line="603"/> <source>Info ({0})</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="606"/> + <location filename="Network/IRC/IrcWidget.py" line="607"/> <source>Message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="608"/> + <location filename="Network/IRC/IrcWidget.py" line="609"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="611"/> + <location filename="Network/IRC/IrcWidget.py" line="612"/> <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="615"/> + <location filename="Network/IRC/IrcWidget.py" line="616"/> <source>Current users on {0}: {1}, max. {2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="619"/> + <location filename="Network/IRC/IrcWidget.py" line="620"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="622"/> + <location filename="Network/IRC/IrcWidget.py" line="623"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="624"/> + <location filename="Network/IRC/IrcWidget.py" line="625"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="684"/> + <location filename="Network/IRC/IrcWidget.py" line="685"/> <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="690"/> + <location filename="Network/IRC/IrcWidget.py" line="691"/> <source>The host was not found. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="694"/> + <location filename="Network/IRC/IrcWidget.py" line="695"/> <source>The connection was refused by the peer. Please check the host name and port settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="702"/> + <location filename="Network/IRC/IrcWidget.py" line="703"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source>SSL Errors</source> <translation type="unfinished">SSL 错误</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="722"/> + <location filename="Network/IRC/IrcWidget.py" line="723"/> <source><p>SSL Errors:</p><p>{0}</p><p>Do you want to ignore these errors?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="733"/> + <location filename="Network/IRC/IrcWidget.py" line="734"/> <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="740"/> + <location filename="Network/IRC/IrcWidget.py" line="741"/> <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.<br/>{2}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="825"/> + <location filename="Network/IRC/IrcWidget.py" line="826"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>Critical</source> <translation type="unfinished">危险</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="839"/> + <location filename="Network/IRC/IrcWidget.py" line="840"/> <source>No nickname acceptable to the server configured for <b>{0}</b>. Disconnecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="854"/> + <location filename="Network/IRC/IrcWidget.py" line="855"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="796"/> + <location filename="Network/IRC/IrcWidget.py" line="797"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="801"/> + <location filename="Network/IRC/IrcWidget.py" line="802"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="806"/> + <location filename="Network/IRC/IrcWidget.py" line="807"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="812"/> + <location filename="Network/IRC/IrcWidget.py" line="813"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="508"/> + <location filename="Network/IRC/IrcWidget.py" line="509"/> <source>You have set your personal modes to <b>[{0}]</b>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="512"/> + <location filename="Network/IRC/IrcWidget.py" line="513"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> @@ -28745,12 +28745,12 @@ <translation type="unfinished">网络</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="698"/> + <location filename="Network/IRC/IrcWidget.py" line="699"/> <source>The SSL handshake failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="706"/> + <location filename="Network/IRC/IrcWidget.py" line="707"/> <source>A network error occurred.</source> <translation type="unfinished"></translation> </message> @@ -34352,27 +34352,27 @@ <context> <name>Preferences</name> <message> - <location filename="Preferences/__init__.py" line="1103"/> + <location filename="Preferences/__init__.py" line="1107"/> <source>Export Preferences</source> <translation>导出首选项</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Import Preferences</source> <translation>导入首选项</translation> </message> <message> - <location filename="Preferences/__init__.py" line="1130"/> + <location filename="Preferences/__init__.py" line="1134"/> <source>Properties File (*.ini);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select Python2 Interpreter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Preferences/__init__.py" line="1224"/> + <location filename="Preferences/__init__.py" line="1228"/> <source>Select the Python2 interpreter to be used:</source> <translation type="unfinished"></translation> </message> @@ -34546,22 +34546,22 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="82"/> <source>Translation Converter (Qt4)</source> - <translation>翻译转换器(Qt4)</translation> + <translation type="obsolete">翻译转换器(Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="91"/> <source>Qt4 Designer</source> - <translation>Qt4 设计师</translation> + <translation type="obsolete">Qt4 设计师</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="99"/> <source>Qt4 Linguist</source> - <translation>Qt4 语言家</translation> + <translation type="obsolete">Qt4 语言家</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="107"/> <source>Qt4 Assistant</source> - <translation>Qt4 助手</translation> + <translation type="obsolete">Qt4 助手</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="137"/> @@ -34576,17 +34576,17 @@ <message> <location filename="Preferences/ProgramsDialog.py" line="111"/> <source>Translation Extractor (Python, Qt4)</source> - <translation>翻译提取器(Python, Qt4)</translation> + <translation type="obsolete">翻译提取器(Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="115"/> <source>Forms Compiler (Python, Qt4)</source> - <translation>窗体编译器(Python, Qt4)</translation> + <translation type="obsolete">窗体编译器(Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="119"/> <source>Resource Compiler (Python, Qt4)</source> - <translation>资源编译器(Python, Qt4)</translation> + <translation type="obsolete">资源编译器(Python, Qt4)</translation> </message> <message> <location filename="Preferences/ProgramsDialog.py" line="160"/> @@ -34673,6 +34673,41 @@ <source>Source Highlighter - Pygments</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="82"/> + <source>Translation Converter (Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="91"/> + <source>Qt Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="99"/> + <source>Qt Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="107"/> + <source>Qt Assistant</source> + <translation type="unfinished">Qt 助手</translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="111"/> + <source>Translation Extractor (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="115"/> + <source>Forms Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Preferences/ProgramsDialog.py" line="119"/> + <source>Resource Compiler (Python, Qt)</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Project</name> @@ -34689,12 +34724,12 @@ <message> <location filename="Project/Project.py" line="261"/> <source>Qt4 GUI</source> - <translation>Qt4 图形用户界面程序</translation> + <translation type="obsolete">Qt4 图形用户界面程序</translation> </message> <message> <location filename="Project/Project.py" line="262"/> <source>Qt4 Console</source> - <translation>Qt4 控制台程序</translation> + <translation type="obsolete">Qt4 控制台程序</translation> </message> <message> <location filename="Project/Project.py" line="218"/> @@ -36128,6 +36163,16 @@ <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Project/Project.py" line="261"/> + <source>Qt GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Project/Project.py" line="262"/> + <source>Qt Console</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ProjectBaseBrowser</name> @@ -43823,17 +43868,17 @@ <context> <name>SpeedDial</name> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="366"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="367"/> <source>Unable to load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source>Saving Speed Dial data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="201"/> + <location filename="Helpviewer/SpeedDial/SpeedDial.py" line="202"/> <source><p>Speed Dial data could not be saved to <b>{0}</b></p></source> <translation type="unfinished"></translation> </message> @@ -55857,42 +55902,42 @@ <message> <location filename="UI/UserInterface.py" line="1652"/> <source>Qt-Designer 4</source> - <translation>Qt 设计师 4</translation> + <translation type="obsolete">Qt 设计师 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1652"/> <source>&Designer 4...</source> - <translation>设计师(&D) 4……</translation> + <translation type="obsolete">设计师(&D) 4……</translation> </message> <message> <location filename="UI/UserInterface.py" line="1655"/> <source>Start Qt-Designer 4</source> - <translation>开启 Qt 设计师 4</translation> + <translation type="obsolete">开启 Qt 设计师 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1656"/> <source><b>Qt-Designer 4</b><p>Start Qt-Designer 4.</p></source> - <translation><b>Qt 设计师 4</b><p>开启 Qt 设计师 4。</p></translation> + <translation type="obsolete"><b>Qt 设计师 4</b><p>开启 Qt 设计师 4。</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>Qt-Linguist 4</source> - <translation>Qt 语言家 4</translation> + <translation type="obsolete">Qt 语言家 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1672"/> <source>&Linguist 4...</source> - <translation>语言家(&L) 4……</translation> + <translation type="obsolete">语言家(&L) 4……</translation> </message> <message> <location filename="UI/UserInterface.py" line="1675"/> <source>Start Qt-Linguist 4</source> - <translation>开启 Qt 语言家 4</translation> + <translation type="obsolete">开启 Qt 语言家 4</translation> </message> <message> <location filename="UI/UserInterface.py" line="1676"/> <source><b>Qt-Linguist 4</b><p>Start Qt-Linguist 4.</p></source> - <translation><b>Qt 语言家 4</b><p>开启 Qt 语言家 4。</p></translation> + <translation type="obsolete"><b>Qt 语言家 4</b><p>开启 Qt 语言家 4。</p></translation> </message> <message> <location filename="UI/UserInterface.py" line="1685"/> @@ -57681,6 +57726,46 @@ <source><b>Activate IRC</b><p>This switches the input focus to the IRC window.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1652"/> + <source>Qt-&Designer...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1655"/> + <source>Start Qt-Designer</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1656"/> + <source><b>Qt-Designer</b><p>Start Qt-Designer.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1672"/> + <source>Qt-&Linguist...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1675"/> + <source>Start Qt-Linguist</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="UI/UserInterface.py" line="1676"/> + <source><b>Qt-Linguist</b><p>Start Qt-Linguist.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>UserPropertiesDialog</name>