Sun, 16 Dec 2012 16:12:42 +0100
Some corrections and a little addition to the IRC window.
--- a/APIs/Python3/eric5.api Sun Dec 16 14:34:18 2012 +0100 +++ b/APIs/Python3/eric5.api Sun Dec 16 16:12:42 2012 +0100 @@ -3344,6 +3344,7 @@ eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.hideEvent?4(evt) eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.initAutoWho?4() eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.name?4() +eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.on_editTopicButton_clicked?4() eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.on_messageEdit_returnPressed?4() eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.on_messages_copyAvailable?4(yes) eric5.Network.IRC.IrcChannelWidget.IrcChannelWidget.on_messages_customContextMenuRequested?4(pos)
--- a/Documentation/Help/source.qhp Sun Dec 16 14:34:18 2012 +0100 +++ b/Documentation/Help/source.qhp Sun Dec 16 16:12:42 2012 +0100 @@ -6488,6 +6488,7 @@ <keyword name="IrcChannelWidget.hideEvent" id="IrcChannelWidget.hideEvent" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.hideEvent" /> <keyword name="IrcChannelWidget.initAutoWho" id="IrcChannelWidget.initAutoWho" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.initAutoWho" /> <keyword name="IrcChannelWidget.name" id="IrcChannelWidget.name" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.name" /> + <keyword name="IrcChannelWidget.on_editTopicButton_clicked" id="IrcChannelWidget.on_editTopicButton_clicked" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.on_editTopicButton_clicked" /> <keyword name="IrcChannelWidget.on_messageEdit_returnPressed" id="IrcChannelWidget.on_messageEdit_returnPressed" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.on_messageEdit_returnPressed" /> <keyword name="IrcChannelWidget.on_messages_copyAvailable" id="IrcChannelWidget.on_messages_copyAvailable" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.on_messages_copyAvailable" /> <keyword name="IrcChannelWidget.on_messages_customContextMenuRequested" id="IrcChannelWidget.on_messages_customContextMenuRequested" ref="eric5.Network.IRC.IrcChannelWidget.html#IrcChannelWidget.on_messages_customContextMenuRequested" />
--- a/Documentation/Source/eric5.Network.IRC.IrcChannelWidget.html Sun Dec 16 14:34:18 2012 +0100 +++ b/Documentation/Source/eric5.Network.IRC.IrcChannelWidget.html Sun Dec 16 16:12:42 2012 +0100 @@ -241,6 +241,9 @@ <td><a href="#IrcChannelWidget.name">name</a></td> <td>Public method to get the name of the channel.</td> </tr><tr> +<td><a href="#IrcChannelWidget.on_editTopicButton_clicked">on_editTopicButton_clicked</a></td> +<td>Private slot to change the topic of the channel.</td> +</tr><tr> <td><a href="#IrcChannelWidget.on_messageEdit_returnPressed">on_messageEdit_returnPressed</a></td> <td>Private slot to send a message to the channel.</td> </tr><tr> @@ -961,7 +964,12 @@ <dd> name of the channel (string) </dd> -</dl><a NAME="IrcChannelWidget.on_messageEdit_returnPressed" ID="IrcChannelWidget.on_messageEdit_returnPressed"></a> +</dl><a NAME="IrcChannelWidget.on_editTopicButton_clicked" ID="IrcChannelWidget.on_editTopicButton_clicked"></a> +<h4>IrcChannelWidget.on_editTopicButton_clicked</h4> +<b>on_editTopicButton_clicked</b>(<i></i>) +<p> + Private slot to change the topic of the channel. +</p><a NAME="IrcChannelWidget.on_messageEdit_returnPressed" ID="IrcChannelWidget.on_messageEdit_returnPressed"></a> <h4>IrcChannelWidget.on_messageEdit_returnPressed</h4> <b>on_messageEdit_returnPressed</b>(<i></i>) <p>
--- a/Network/IRC/IrcChannelWidget.py Sun Dec 16 14:34:18 2012 +0100 +++ b/Network/IRC/IrcChannelWidget.py Sun Dec 16 16:12:42 2012 +0100 @@ -10,7 +10,8 @@ import re from PyQt4.QtCore import pyqtSlot, pyqtSignal, QDateTime, QPoint, QFileInfo, QTimer -from PyQt4.QtGui import QWidget, QListWidgetItem, QIcon, QPainter, QMenu, QApplication +from PyQt4.QtGui import QWidget, QListWidgetItem, QIcon, QPainter, QMenu, QApplication, \ + QInputDialog, QLineEdit from E5Gui import E5MessageBox, E5FileDialog from E5Gui.E5Application import e5App @@ -195,6 +196,11 @@ self.__ui = e5App().getObject("UserInterface") self.__ircWidget = parent + self.editTopicButton.setIcon(UI.PixmapCache.getIcon("ircEditTopic.png")) + + height = self.usersList.height() + self.messages.height() + self.splitter.setSizes([height * 0.3, height * 0.7]) + self.__initMessagesMenu() self.__initUsersMenu() @@ -287,14 +293,9 @@ # :sturgeon.freenode.net 313 foo_ bar :is an IRC Operator (re.compile(r":.*\s313\s[^ ]+\s([^ ]+)\s:(.*)"), self.__whoIsOperator), # :sturgeon.freenode.net 378 foo_ bar :is connecting from *@mnch-4d044d5a.pool.mediaWays.net 77.4.77.90 - (re.compile(r":.*\s311\s[^ ]+\s([^ ]+)\s:.*\s([^ ]+)\s([^ ]+)"), + (re.compile(r":.*\s378\s[^ ]+\s([^ ]+)\s:.*\s([^ ]+)\s([^ ]+)"), self.__whoIsConnection), ] - # group(1) nick - # group(2) host name - # group(3) IP - # group(4) real name - # group(5) self.__autoWhoTemplate = "WHO {0} %tnf,42" self.__autoWhoTimer = QTimer() @@ -414,6 +415,7 @@ """ self.__private = private self.__privatePartner = partner + self.editTopicButton.setEnabled(private) def setPrivateInfo(self, infoText): """ @@ -1231,11 +1233,17 @@ Private slot to initialize the users list context menu. """ self.__usersMenu = QMenu(self) - self.__usersMenu.addAction(self.trUtf8("Who Is"), self.__whoIs) + self.__whoIsAct = \ + self.__usersMenu.addAction(self.trUtf8("Who Is"), + self.__whoIs) self.__usersMenu.addSeparator() self.__privateChatAct = \ self.__usersMenu.addAction(self.trUtf8("Private Chat"), self.__openPrivateChat) + self.__usersMenu.addSeparator() + self.__usersListRefreshAct = \ + self.__usersMenu.addAction(self.trUtf8("Refresh"), + self.__sendAutoWhoCommand) @pyqtSlot(QPoint) def on_usersList_customContextMenuRequested(self, pos): @@ -1244,9 +1252,17 @@ @param pos the position of the mouse pointer (QPoint) """ - self.__privateChatAct.setEnabled(not self.__private) - if len(self.usersList.selectedItems()) > 0: - self.__usersMenu.popup(self.usersList.mapToGlobal(pos)) + enable = len(self.usersList.selectedItems()) > 0 + enablePrivate = enable and not self.__private + itm = self.usersList.itemAt(pos) + if itm and enablePrivate: + enablePrivate = itm.text().lower() not in [ + "chanserv", self.__userName.lower()] + self.__whoIsAct.setEnabled(enable) + self.__privateChatAct.setEnabled(enablePrivate) + self.__usersListRefreshAct.setEnabled( + self.usersList.count() <= Preferences.getIrc("AutoUserInfoMax")) + self.__usersMenu.popup(self.usersList.mapToGlobal(pos)) def hideEvent(self, evt): """ @@ -1332,7 +1348,7 @@ # group(4) nick # group(5) user flags # group(6) real name - if match.group(2).lower() == self.__name: + if match.group(1).lower() == self.__name: away = self.trUtf8(" (Away)") if match.group(5).startswith("G") else "" self.__addManagementMessage(self.trUtf8("Who"), self.trUtf8("{0} is {1}@{2} ({3}){4}").format( @@ -1641,3 +1657,18 @@ return True return False + + @pyqtSlot() + def on_editTopicButton_clicked(self): + """ + Private slot to change the topic of the channel. + """ + topic, ok = QInputDialog.getText( + self, + self.trUtf8("Edit Channel Topic"), + self.trUtf8("Enter the topic for this channel:"), + QLineEdit.Normal, + self.topicLabel.text()) + if ok and topic != "": + self.sendData.emit("TOPIC {0} :{1}".format( + self.__name, topic))
--- a/Network/IRC/IrcChannelWidget.ui Sun Dec 16 14:34:18 2012 +0100 +++ b/Network/IRC/IrcChannelWidget.ui Sun Dec 16 16:12:42 2012 +0100 @@ -18,17 +18,31 @@ <number>0</number> </property> <item> - <widget class="QLabel" name="topicLabel"> - <property name="text"> - <string/> - </property> - <property name="wordWrap"> - <bool>true</bool> - </property> - <property name="openExternalLinks"> - <bool>true</bool> - </property> - </widget> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QLabel" name="topicLabel"> + <property name="text"> + <string/> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + <property name="openExternalLinks"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QToolButton" name="editTopicButton"> + <property name="toolTip"> + <string>Press to change the topic</string> + </property> + <property name="text"> + <string/> + </property> + </widget> + </item> + </layout> </item> <item> <widget class="QSplitter" name="splitter"> @@ -91,9 +105,10 @@ </customwidget> </customwidgets> <tabstops> - <tabstop>usersList</tabstop> + <tabstop>messageEdit</tabstop> <tabstop>messages</tabstop> - <tabstop>messageEdit</tabstop> + <tabstop>usersList</tabstop> + <tabstop>editTopicButton</tabstop> </tabstops> <resources/> <connections/>
--- a/Network/IRC/IrcWidget.py Sun Dec 16 14:34:18 2012 +0100 +++ b/Network/IRC/IrcWidget.py Sun Dec 16 16:12:42 2012 +0100 @@ -68,6 +68,9 @@ if not isMacPlatform(): self.channelsWidget.setTabPosition(QTabWidget.South) + height = self.height() + self.splitter.setSizes([height * 0.6, height * 0.4]) + self.__channelList = [] self.__channelTypePrefixes = "" self.__userName = "" @@ -351,6 +354,7 @@ if self.channelsWidget.count() == 0: self.channelsWidget.addTab(self.__emptyLabel, "") + self.__emptyLabel.show() self.__leaveButton.setEnabled(False) self.channelsWidget.setTabsClosable(False) @@ -845,7 +849,8 @@ @param nick nick name to use (str) """ - self.__send("NICK " + nick) + if nick: + self.__send("NICK " + nick) def __setChannelTypePrefixes(self, prefixes): """
--- a/Network/IRC/IrcWidget.ui Sun Dec 16 14:34:18 2012 +0100 +++ b/Network/IRC/IrcWidget.ui Sun Dec 16 16:12:42 2012 +0100 @@ -13,40 +13,61 @@ <property name="windowTitle"> <string/> </property> - <layout class="QVBoxLayout" name="verticalLayout"> + <layout class="QVBoxLayout" name="verticalLayout_3"> <property name="margin"> <number>0</number> </property> <item> - <widget class="QTabWidget" name="channelsWidget"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> - <horstretch>0</horstretch> - <verstretch>3</verstretch> - </sizepolicy> - </property> - <property name="documentMode"> - <bool>true</bool> - </property> - <property name="tabsClosable"> - <bool>true</bool> + <widget class="QSplitter" name="splitter"> + <property name="orientation"> + <enum>Qt::Vertical</enum> </property> - <property name="movable"> - <bool>true</bool> - </property> - </widget> - </item> - <item> - <widget class="IrcNetworkWidget" name="networkWidget" native="true"> - <property name="sizePolicy"> - <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> - <horstretch>0</horstretch> - <verstretch>2</verstretch> - </sizepolicy> - </property> - <property name="focusPolicy"> - <enum>Qt::TabFocus</enum> - </property> + <widget class="QGroupBox" name="groupBox"> + <property name="title"> + <string>Channels</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QTabWidget" name="channelsWidget"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>3</verstretch> + </sizepolicy> + </property> + <property name="documentMode"> + <bool>true</bool> + </property> + <property name="tabsClosable"> + <bool>true</bool> + </property> + <property name="movable"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + <widget class="QGroupBox" name="groupBox_2"> + <property name="title"> + <string>Network</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <widget class="IrcNetworkWidget" name="networkWidget" native="true"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>2</verstretch> + </sizepolicy> + </property> + <property name="focusPolicy"> + <enum>Qt::TabFocus</enum> + </property> + </widget> + </item> + </layout> + </widget> </widget> </item> </layout>
--- a/i18n/eric5_cs.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_cs.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2581,52 +2581,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation>Pokec</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation>Uživatelé</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation>Stisknutím odeslat výše uvedený text</translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation>Stisknutím odeslat výše uvedený text</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation>Odeslat</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation>Připojení</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation>Host:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation>Zobrazuje stav připojení</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation>Zobrazuje stav serveru</translation> </message> @@ -2679,32 +2679,32 @@ <translation>Připojeno</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation>Sdílený editor</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation>Stisknutím přepnout sdílený status aktuálního editoru</translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation>Stisknutím spustit sdílený editor</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation>Stisknutím ukončit editaci a odeslat změny</translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation>...</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation>Stisknutím spustit sdílený editor</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation>Stisknutím ukončit editaci a odeslat změny</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation>Stisknutím zrušit sdílený editor</translation> </message> @@ -2749,12 +2749,12 @@ <translation><p>Obsah pokecu se nepodařilo zapsat do <b>{0}</b></p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation>Zadejte text k odeslání</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation>Zadejte port serveru</translation> </message> @@ -2764,7 +2764,7 @@ <translation type="obsolete">Stisknutím odebrat text zprávy</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation>Zadejte hosta a port pro připojení ve tvaru "host:port"</translation> </message> @@ -2774,7 +2774,7 @@ <translation type="obsolete">Stisknutím odebrat hosta</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation>Stisknutím vymazat seznam hostů</translation> </message> @@ -25887,137 +25887,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">Konec</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26026,77 +26026,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26105,247 +26105,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">Vyjmout</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">Vyjmout</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">Kopírovat</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished">Vyjmout vše</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished">Vyjmout vše</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished">Kopírovat vše</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished">Vyčistit</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished">Uložit</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26354,7 +26354,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26363,7 +26363,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26372,7 +26372,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26381,25 +26381,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26408,70 +26408,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished">Obnovit</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -27435,281 +27455,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">Chyba</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished">SSL chyby</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">Kritický</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">Síť</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_de.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_de.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2472,52 +2472,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation>Chat</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation>Nutzer</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation>Drücken, um den obigen Text zu senden</translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation>Drücken, um den obigen Text zu senden</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation>Senden</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation>Verbindung</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation>Rechner:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation>Zeigt den Verbindungsstatus</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation>Zeigt den Status des Servers</translation> </message> @@ -2570,32 +2570,32 @@ <translation>Verbinden</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation>Verteilter Editor</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation>Drücken, um den Freigabestatus des aktuellen Editors umzuschalten</translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation>Drücken, um eine verteilte Änderungssitzung zu starten</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation>Drücken, um eine verteilte Änderungssitzung zu beenden und die Änderungen zu senden</translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation>...</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation>Drücken, um eine verteilte Änderungssitzung zu starten</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation>Drücken, um eine verteilte Änderungssitzung zu beenden und die Änderungen zu senden</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation>Drücken, um eine verteilte Änderungssitzung abzubrechen</translation> </message> @@ -2635,22 +2635,22 @@ <translation>Kopieren</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation>Gib den zu sendenden Text ein</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation>Gib den Serverport ein</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation>Gib den Host und den Port in der Form "Host:Port" für die Verbindung ein</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation>Drücken, um die Hostsliste zu löschen</translation> </message> @@ -25094,137 +25094,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation>Zeigt die Liste der Teilnehmer</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation>Zeigt die Kanalnachrichten</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation>Zeigt die Kanalnachrichten</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation>Gib eine Nachricht ein, Senden durch Drücken von Return oder Enter</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation>Nachrich senden</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation>Nachrichten, die mit '/' beginnen, sind in privaten Unterhaltungen nicht zugelassen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation>IRC Kanal verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation>Soll der IRC Kanal <b>{0}</b> wirklich verlassen werden?</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation>Kanalnachricht</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation>Kanalnachricht</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation>Nick erwähnt</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation>{0} hat den Kanal {1} betreten ({2}).</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation>{0} hat den Kanal {1} betreten ({2}).</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation>Sie sind den Kanal {0} betreten.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation>Kanal betreten</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation>{0} hat den Kanal {1} verlassen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation>{0} hat den Kanal {1} verlassen: {2}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation>Kanal verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation>{0} hat den Server verlassen.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation>{0} hat den Server verlassen.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation>{0} hat den Server verlassen: {2}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation>Server verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation>Sie sind jetzt als {0} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation>Nutzer {0} ist nun als {1} bekannt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation>Abwesend</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation>{0} ist abwesend: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation>Das Kanalthema ist: "{0}".</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation>Das Thema wurde am {0} durch {1} gesetzt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation>Kanal URL: {0}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation>Kennwort geschützt ({0})</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation> <numerusform>auf einen Nutzer begrenzt</numerusform> @@ -25232,77 +25232,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation>Kanalmodi: {0}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation>Dieser Kanal wurde am {0} erstellt.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation>{0} setzt den Kanalmodus auf 'anonym'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation>{0} entfernt den Kanalmodus 'anonym'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation>{0} verhängt einen Bann auf {1}.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation>{0} verhängt einen Bann auf {1}.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation>{0} entfernt den Bann von {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation>{0} setzt den Kanalmodus 'keine Farben zugelassen'.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation>{0} setzt den Kanalmodus 'keine Farben zugelassen'.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation>{0} setzt den Kanalmodus 'Farben zugelassen'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation>{0} setzt eine Bannausnahme auf {1}.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation>{0} setzt eine Bannausnahme auf {1}.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation>{0} entfernt die Bannausnahme auf {1}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation>{0} setzt den Kanalmodus 'Einladung erforderlich'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation>{0} entfernt den Kanalmodus 'Einladung erforderlich'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation>{0} setzt den Kanalschlüssel auf '{1}'.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation>{0} setzt den Kanalschlüssel auf '{1}'.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation>{0} entfernt den Kanalschlüssel.</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation> <numerusform>{0} setzt die Kanalbegrenzung auf einen Nutzer.</numerusform> @@ -25310,247 +25310,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation>{0} entfernt die Kanalbegrenzung.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation>{0} setzt den Kanalmodus 'modereriert'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation>{0} setzt den Kanalmodus 'unmoderiert'.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> - <translation>{0} setzt den Kanalmodus 'keine Nachrichten von außerhalb'.</translation> + <source>{0} sets the channel mode to 'unmoderated'.</source> + <translation>{0} setzt den Kanalmodus 'unmoderiert'.</translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation>{0} setzt den Kanalmodus 'keine Nachrichten von außerhalb'.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation>{0} setzt den Kanalmodus auf 'Nachrichten von außerhalb zugelassen'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation>{0} setzt den Kanalmodus 'privat'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation>{0} setzt den Kanalmodus 'öffentlich'.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation>{0} setzt den Kanalmodus 'öffentlich'.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation>{0} setzt den Kanalmodus 'schweigend'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation>{0} entfernt den Kanalmodus 'schweigend'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation>{0} setzt den Kanalmodus 'unsichtbar'.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation>{0} setzt den Kanalmodus 'sichtbar'.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation>{0} setzt den Kanalmodus 'sichtbar'.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation>{0} schaltet den 'Themenschutz' an.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation>{0} schaltet den 'Themenschutz' aus.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> - <translation>{0} setzt die Einladungsmaske {1}.</translation> + <source>{0} switches off 'topic protection'.</source> + <translation>{0} schaltet den 'Themenschutz' aus.</translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> - <translation>{0} entfernt die Einladungsmaske {1}.</translation> + <source>{0} sets invitation mask {1}.</source> + <translation>{0} setzt die Einladungsmaske {1}.</translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation>{0} entfernt die Einladungsmaske {1}.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation>Modus</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation>{0} setzt den Modus für {1}: {2}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation>--- Neu ab hier ---</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation>Nachrichten speichern</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation>HTML Dateien (*.{0});;Text Dateien (*.txt);;Alle Dateien (*)</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation>Fehler beim Speichern der Nachrichten</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation><p>Der Nachrichteninhalt konnte nicht nach <b>{0}</b> gespeichert werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation>Ausschneiden</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation>Ausschneiden</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation>Alles ausschneiden</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation>Alles ausschneiden</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation>Alles kopieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation>Löschen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation>Aktuellen Position markieren</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation>Positionsmarke entfernen</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation>Who Is</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation>Private Unterhaltung</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation>Who</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation>Ende der WHO Liste für {0}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation>(Abwesend)</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation>{0} ist {1}@{2} ({3}){4}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation>Whois</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation>{0} ist {1}@{2} ({3}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation>{0} ist ein Nutzer der Kanäle: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation>{0} hat Erlaubnis zu schreiben in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation>{0} hat HalfOp-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation>{0} hat Operator-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation>{0} hat Besitzer-Status in den Kanälen: {1}</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation>{0} hat Administrator-Status in den Kanälen: {1}</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> - <translation>{0} ist auf dem Server {1} ({2}).</translation> + <source>{0} is admin on channels: {1}</source> + <translation>{0} hat Administrator-Status in den Kanälen: {1}</translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation>{0} ist auf dem Server {1} ({2}).</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation>{0} ist ein IRC Operator.</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation> <numerusform>1 Tag</numerusform> @@ -25558,7 +25558,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation> <numerusform>1 Stunde</numerusform> @@ -25566,7 +25566,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation> <numerusform>1 Minute</numerusform> @@ -25574,7 +25574,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation> <numerusform>1 Sekunde</numerusform> @@ -25582,25 +25582,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation>{0} ist seit {1}, {2}, {3} und {4} untätig.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation>{0} ist seit {1}, {2} und {3} untätig.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation>{0} ist seit {1} und {2} untätig.</translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation> <numerusform>{0} ist seit 1 Sekunde untätig.</numerusform> @@ -25608,70 +25608,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation>{0} is seit dem {1} online.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation>Ende der WHOIS Liste für {0}.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation>{0} wurde identifiziert.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation>{0} steht für Hilfe bereit.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation>{0} ist angemeldet als {1}.</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation>{0} ist angemeldet als {1}.</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation>{0} verwendet den Host {1} (IP: {2}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation>{0} verwendet eine sichere Verbindung.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation>{0} ist verbunden von {1} (IP: {2}).</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation>CTCP</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation>Versionsanfrage von {0} empfangen.</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <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/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <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/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation>Drücken, um das Thema zu ändern</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation>Aktualisieren</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation>Kanalthema bearbeiten</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation>Gib das Thema für diesen Kanal ein:</translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -26635,281 +26655,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation>Drücken, um den aktuellen Kanal zu verlassen</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation>Verbindung zum Server beenden</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation>SSL Verbindung</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation>Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <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="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation>Verbindung zum Server {0} wird unterbrochen...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation>Server gefunden, Verbindung wird hergesteltl...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation>Verbunden, Anmeldung läuft...</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation>Serververbindung unterbrochen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation>Nachrichtenfehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <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="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation>Notiz</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation>Modus</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation>Sie haben den Kanal {0} verlassen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <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="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <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="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation>Server Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation>Willkommen</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation>Support</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation>Nutzer</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation>MOTD</translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> - <translation>Abwesend</translation> + <source>Welcome</source> + <translation>Willkommen</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> - <translation>Info ({0})</translation> + <source>Support</source> + <translation>Support</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> + <translation>Nutzer</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> - <translation>Nachricht des Tages</translation> + <source>MOTD</source> + <translation>MOTD</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation>Abwesend</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation>Info ({0})</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation>Nachricht des Tages</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation>Ende der Nachricht des Tages</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <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="611"/> + <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"/> + <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"/> <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="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <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="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation>Socker Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <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="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation>SSL Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation>{0} ({1})</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation>Kritischer Fehler</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <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="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation>CTCP</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation>Versionsanfrage von {0} empfangen.</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <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="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <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="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <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="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <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> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation>Kanäle</translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation>Netzwerk</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_en.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_en.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2445,77 +2445,77 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="163"/> + <location filename="Cooperation/ChatWidget.ui" line="166"/> <source>...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> + <location filename="Cooperation/ChatWidget.ui" line="134"/> <source>Press to start a shared edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> + <location filename="Cooperation/ChatWidget.ui" line="150"/> <source>Press to end the edit and send the changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> + <location filename="Cooperation/ChatWidget.ui" line="163"/> <source>Press to cancel the shared edit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation type="unfinished"></translation> </message> @@ -2525,27 +2525,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation type="unfinished"></translation> </message> @@ -24946,137 +24946,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation> <numerusform>limited to one user</numerusform> @@ -25084,77 +25084,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation> <numerusform>{0} sets the channel limit to one nick.</numerusform> @@ -25162,247 +25162,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation> <numerusform>1 day</numerusform> @@ -25410,7 +25410,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation> <numerusform>1 hour</numerusform> @@ -25418,7 +25418,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation> <numerusform>1 minute</numerusform> @@ -25426,7 +25426,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation> <numerusform>1 seconds</numerusform> @@ -25434,25 +25434,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation> <numerusform>{0} has been idle for 1 second.</numerusform> @@ -25460,70 +25460,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -26487,281 +26507,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_es.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_es.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2525,52 +2525,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation>Chat</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation>Usuarios</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation>Pulsar para enviar el texto de encima</translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation>Pulsar para enviar el texto de encima</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation>Enviar</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation>Conexión</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation>Host:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation>Puerto:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation>Muestra el estado de la conexión</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation>Servidor</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation>Muestra el estado del servidor</translation> </message> @@ -2623,32 +2623,32 @@ <translation>Conectar</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation>Compartir Editor</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation>Pulsar para conmutar el estado de compartición del editor actual</translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation>Pulsar para iniciar una edición compartida</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation>Pulsar para finalizar la edición y enviar los cambios</translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation>...</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation>Pulsar para iniciar una edición compartida</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation>Pulsar para finalizar la edición y enviar los cambios</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation>Pulsar para cancelar la edición compartida</translation> </message> @@ -2688,12 +2688,12 @@ <translation><p>Los contenidos del chat no se han podido guardar en <b>{0}</b></p><p>Razón: {1}</p></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation>Introducir el texto a enviar</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation>Introducir el puerto del servidor</translation> </message> @@ -2703,7 +2703,7 @@ <translation type="obsolete">Pulse para limpiar el texto de mensaje</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation>Introduzca el host y puerto de conexión de la forma "host:puerto"</translation> </message> @@ -2713,7 +2713,7 @@ <translation type="obsolete">Pulse para limpiar el host</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation>Pulse para limpiar la lista de hosts</translation> </message> @@ -25377,137 +25377,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">Salir</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25515,77 +25515,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25593,247 +25593,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished">Ayuda</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">Cortar</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">Cortar</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">Copiar</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished">Cortar todo</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished">Cortar todo</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished">Copiar todo</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished">Guardar</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25841,7 +25841,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25849,7 +25849,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25857,7 +25857,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25865,25 +25865,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25891,70 +25891,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -26918,281 +26938,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">Información</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">Error</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished">Usuario</translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> - <translation type="unfinished"></translation> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> + <translation type="unfinished">Usuario</translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">Aviso Crítico</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">Red</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_fr.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_fr.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2702,52 +2702,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation type="unfinished">Envoyer</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation type="unfinished"></translation> </message> @@ -2796,32 +2796,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation type="unfinished"></translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation type="unfinished">...</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation type="unfinished">...</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation type="unfinished"></translation> </message> @@ -2861,22 +2861,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation type="unfinished"></translation> </message> @@ -26934,137 +26934,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">Quitter</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27072,77 +27072,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27150,247 +27150,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">Couper</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">Couper</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">Copier</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished">Effacer</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27398,7 +27398,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27406,7 +27406,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27414,7 +27414,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27422,25 +27422,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -27448,70 +27448,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished">Rafraichir</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -28475,281 +28495,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">Erreur</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished">Erreurs SSL</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">Critique</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">Réseau</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_it.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_it.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2582,52 +2582,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation>Chat</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation>Utenti</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation>Premi per mandare il testo qui sopra</translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation>Premi per mandare il testo qui sopra</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation>Spedisci</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation>Connessione</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation>Host:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation>Porta:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation>Mostra stato connessione</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation>Mostra lo stato del server</translation> </message> @@ -2679,32 +2679,32 @@ <translation>Connetti</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation>Condividi Editor</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation>Premi per attivare/disattivare lo stato di condivisione dell'editor attuale</translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation>Premi per avviare un edit condiviso</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation>Premi per terminare un edit e mandare le modifiche</translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation>...</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation>Premi per avviare un edit condiviso</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation>Premi per terminare un edit e mandare le modifiche</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation>Premi per cancellare un edit condiviso</translation> </message> @@ -2744,12 +2744,12 @@ <translation><p>Il contenuto della chat non può essere scritto su <b>{0}</b></p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation>Inserisci il testo da inviare</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation>Inserisci la porta del server</translation> </message> @@ -2759,7 +2759,7 @@ <translation type="obsolete">Premi per pulire il testo del messaggio</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation>Inserisci un host e una porta per la connessione nella forma "host:porta"</translation> </message> @@ -2769,7 +2769,7 @@ <translation type="obsolete">Premi per cancellare l'host</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation>Premi per cancellare la lista degli host</translation> </message> @@ -25665,137 +25665,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">Esci</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25803,77 +25803,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25881,247 +25881,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished">Aiuto</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">Taglia</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">Taglia</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">Copia</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished">Taglia tutto</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished">Taglia tutto</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished">Copia tutto</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished">Pulisci</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished">Salva</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26129,7 +26129,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26137,7 +26137,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26145,7 +26145,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26153,25 +26153,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26179,70 +26179,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -27206,281 +27226,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">Info</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">Errore</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished">Errori SSL</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">Critico</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">Rete</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_ru.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_ru.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2587,52 +2587,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation>Болтовня</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation>Пользователи</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation>Отправить сообщение</translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation>Отправить сообщение</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation>Отправить</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation>Соединение</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation>Удалённая машина:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation>Порт:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation>Показывает статус соединения</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation>Сервер</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation>Показывает статус сервера</translation> </message> @@ -2685,32 +2685,32 @@ <translation>Соединиться</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation>Совместить редактор</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation>Переключить совмещение текущего редактора</translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation>Запустить совмещённый редактор</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation>Завершить редактирование и отослать изменения</translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation>...</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation>Запустить совмещённый редактор</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation>Завершить редактирование и отослать изменения</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation>Отменить совмещённое редактирование</translation> </message> @@ -2750,12 +2750,12 @@ <translation><p>Невозможно записать содержание в файл <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation>Задайте текст для отправки</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation>Введите номер порта сервера</translation> </message> @@ -2765,7 +2765,7 @@ <translation type="obsolete">Очистить сообщение</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation>Задайте адрес соединения в формате "host:port"</translation> </message> @@ -2775,7 +2775,7 @@ <translation type="obsolete">Очистить хост</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation>Очистить список хостов</translation> </message> @@ -25784,137 +25784,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">Выход</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25923,77 +25923,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26002,247 +26002,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished">Помощь</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Файл <b>{0}</b> уже сущеструет. Переписать?</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">Вырезать</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">Вырезать</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">Копировать</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished">Вырезать всё</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished">Вырезать всё</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished">Копировать всё</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished">Очистить</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished">Сохранить</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26251,7 +26251,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26260,7 +26260,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26269,7 +26269,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26278,25 +26278,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26305,70 +26305,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished">Обновить</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -27332,281 +27352,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">Информация</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">Ошибка</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished">Ошибки SSL</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">Ошибка</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">Сеть</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_tr.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_tr.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2580,17 +2580,17 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation>Sohbet</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation>Kullanıcılar</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation>Gönderilecek metni giriniz</translation> </message> @@ -2600,57 +2600,57 @@ <translation type="obsolete">mesaj metnini temizlemek için basınız</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="163"/> + <location filename="Cooperation/ChatWidget.ui" line="166"/> <source>...</source> <translation>...</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation>Metini göndermek için basınız</translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation>Metini göndermek için basınız</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation>Gönder</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation>Paylaşım Düzenleyici</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation>Geçerli düzenleyicideki ortak durum satırını genişletmek için basınız</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> + <location filename="Cooperation/ChatWidget.ui" line="134"/> <source>Press to start a shared edit</source> <translation>Bir paylaşım (ortak )düzenleyiciyi başlatmak için basınız</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> + <location filename="Cooperation/ChatWidget.ui" line="150"/> <source>Press to end the edit and send the changes</source> <translation>Düzenlemeyi bitirmek ve değişiklikleri göndermek için basınız</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> + <location filename="Cooperation/ChatWidget.ui" line="163"/> <source>Press to cancel the shared edit</source> <translation>Ortak düzenleyiciyi iptal için basınız</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation>Bağlantı</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation>Sunucu:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation>"host:port" formunda bağlantıyı sağlamak için sunucu ve bağlantı noktasını giriniz</translation> </message> @@ -2660,7 +2660,7 @@ <translation type="obsolete">Barınağı temizlemek için basınız</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation>Sunucu listesini temizlemek için basınız</translation> </message> @@ -2670,27 +2670,27 @@ <translation>Temizle</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation>Bağlantı durumunu göster</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation>Sunucu</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation>Bağlantı Noktası:</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation>Sunucu bağlantı noktsasını giriniz</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation>Sunucunun durumunu göster</translation> </message> @@ -25777,137 +25777,137 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">Çık</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25915,77 +25915,77 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -25993,247 +25993,247 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished">Yardım</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">Kes</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">Kes</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">Kopyala</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished">Hepsini kopar</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished">Hepsini kopar</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished">Hepsini kopyala</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished">Temizle</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished">Kaydet</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26241,7 +26241,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26249,7 +26249,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26257,7 +26257,7 @@ </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26265,25 +26265,25 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> @@ -26291,70 +26291,90 @@ </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished">Tazele</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -27318,281 +27338,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">Bilgi</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">Hata</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished">SSL Hataları</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">Kritik</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">Ağ</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>
--- a/i18n/eric5_zh_CN.GB2312.ts Sun Dec 16 14:34:18 2012 +0100 +++ b/i18n/eric5_zh_CN.GB2312.ts Sun Dec 16 16:12:42 2012 +0100 @@ -2695,52 +2695,52 @@ <context> <name>ChatWidget</name> <message> - <location filename="Cooperation/ChatWidget.ui" line="51"/> + <location filename="Cooperation/ChatWidget.ui" line="54"/> <source>Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="26"/> + <location filename="Cooperation/ChatWidget.ui" line="29"/> <source>Users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="77"/> - <source>Press to send the text above</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Cooperation/ChatWidget.ui" line="80"/> + <source>Press to send the text above</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="83"/> <source>Send</source> <translation type="unfinished">发送</translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="186"/> + <location filename="Cooperation/ChatWidget.ui" line="189"/> <source>Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="194"/> + <location filename="Cooperation/ChatWidget.ui" line="197"/> <source>Host:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="274"/> + <location filename="Cooperation/ChatWidget.ui" line="277"/> <source>Port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="256"/> + <location filename="Cooperation/ChatWidget.ui" line="259"/> <source>Shows the connection status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="268"/> + <location filename="Cooperation/ChatWidget.ui" line="271"/> <source>Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="316"/> + <location filename="Cooperation/ChatWidget.ui" line="319"/> <source>Shows the status of the server</source> <translation type="unfinished"></translation> </message> @@ -2789,32 +2789,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="93"/> + <location filename="Cooperation/ChatWidget.ui" line="96"/> <source>Share Editor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="115"/> + <location filename="Cooperation/ChatWidget.ui" line="118"/> <source>Press to toggle the shared status of the current editor</source> <translation type="unfinished"></translation> </message> <message> + <location filename="Cooperation/ChatWidget.ui" line="166"/> + <source>...</source> + <translation type="unfinished">……</translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="134"/> + <source>Press to start a shared edit</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Cooperation/ChatWidget.ui" line="150"/> + <source>Press to end the edit and send the changes</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Cooperation/ChatWidget.ui" line="163"/> - <source>...</source> - <translation type="unfinished">……</translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="131"/> - <source>Press to start a shared edit</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="147"/> - <source>Press to end the edit and send the changes</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Cooperation/ChatWidget.ui" line="160"/> <source>Press to cancel the shared edit</source> <translation type="unfinished"></translation> </message> @@ -2854,22 +2854,22 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="70"/> + <location filename="Cooperation/ChatWidget.ui" line="73"/> <source>Enter the text to send</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="281"/> + <location filename="Cooperation/ChatWidget.ui" line="284"/> <source>Enter the server port</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="207"/> + <location filename="Cooperation/ChatWidget.ui" line="210"/> <source>Enter the host and port to connect to in the form "host:port"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Cooperation/ChatWidget.ui" line="227"/> + <location filename="Cooperation/ChatWidget.ui" line="230"/> <source>Press to clear the hosts list</source> <translation type="unfinished"></translation> </message> @@ -26905,577 +26905,597 @@ <context> <name>IrcChannelWidget</name> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="40"/> + <location filename="Network/IRC/IrcChannelWidget.ui" line="57"/> <source>Shows the list of users</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.ui" line="60"/> - <source>Shows the channel messages</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.ui" line="77"/> + <source>Shows the channel messages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="94"/> <source>Enter a message, send by pressing Return or Enter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Send Message</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="318"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="321"/> <source>Messages starting with a '/' are not allowed in private chats.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Leave IRC channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="341"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="344"/> <source>Do you really want to leave the IRC channel <b>{0}</b>?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="477"/> - <source>Channel Message</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="481"/> + <source>Channel Message</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="485"/> <source>Nick mentioned</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="505"/> - <source>{0} has joined the channel {1} ({2}).</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="509"/> + <source>{0} has joined the channel {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="513"/> <source>You have joined the channel {0} ({1}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="518"/> <source>Join Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="532"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="536"/> <source>{0} has left {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="539"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="543"/> <source>{0} has left {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="544"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="548"/> <source>Leave Channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="562"/> - <source>{0} has quit {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="566"/> + <source>{0} has quit {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="570"/> <source>{0} has quit {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="571"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="575"/> <source>Quit</source> <translation type="unfinished">退出</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="588"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="592"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="593"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="597"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>Away</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="628"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="632"/> <source>{0} is away: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="643"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="647"/> <source>The channel topic is: "{0}".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="658"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="662"/> <source>The topic was set by {0} on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="674"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="678"/> <source>Channel URL: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="697"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> <source>password protected ({0})</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="701"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="705"/> <source>limited to %n user(s)</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="708"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="712"/> <source>Channel modes: {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="723"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="727"/> <source>This channel was created on {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="756"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="760"/> <source>{0} sets the channel mode to 'anonymous'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="759"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="763"/> <source>{0} removes the 'anonymous' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="764"/> - <source>{0} sets a ban on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="768"/> + <source>{0} sets a ban on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="772"/> <source>{0} removes the ban on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="773"/> - <source>{0} sets the channel mode to 'no colors allowed'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="777"/> + <source>{0} sets the channel mode to 'no colors allowed'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="781"/> <source>{0} sets the channel mode to 'allow color codes'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="782"/> - <source>{0} sets a ban exception on {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="786"/> + <source>{0} sets a ban exception on {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="790"/> <source>{0} removes the ban exception on {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="791"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="795"/> <source>{0} sets the channel mode to 'invite only'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="794"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="798"/> <source>{0} removes the 'invite only' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="799"/> - <source>{0} sets the channel key to '{1}'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="803"/> + <source>{0} sets the channel key to '{1}'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> <source>{0} removes the channel key.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="807"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> <source>{0} sets the channel limit to %n nick(s).</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="811"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> <source>{0} removes the channel limit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="815"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="819"/> <source>{0} sets the channel mode to 'moderated'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="818"/> - <source>{0} sets the channel mode to 'unmoderated'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="822"/> - <source>{0} sets the channel mode to 'no messages from outside'.</source> + <source>{0} sets the channel mode to 'unmoderated'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="826"/> + <source>{0} sets the channel mode to 'no messages from outside'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="830"/> <source>{0} sets the channel mode to 'allow messages from outside'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="831"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="835"/> <source>{0} sets the channel mode to 'private'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="834"/> - <source>{0} sets the channel mode to 'public'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="838"/> + <source>{0} sets the channel mode to 'public'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="842"/> <source>{0} sets the channel mode to 'quiet'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="841"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="845"/> <source>{0} removes the 'quiet' mode from the channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="848"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="852"/> <source>{0} sets the channel mode to 'secret'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="851"/> - <source>{0} sets the channel mode to 'visible'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="855"/> + <source>{0} sets the channel mode to 'visible'.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="859"/> <source>{0} switches on 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="858"/> - <source>{0} switches off 'topic protection'.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="862"/> - <source>{0} sets invitation mask {1}.</source> + <source>{0} switches off 'topic protection'.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="866"/> - <source>{0} removes the invitation mask {1}.</source> + <source>{0} sets invitation mask {1}.</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="870"/> + <source>{0} removes the invitation mask {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="874"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="887"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="891"/> <source>{0} sets mode for {1}: {2}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="913"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="917"/> <source>Help</source> <translation type="unfinished">帮助</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1037"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1041"/> <source>--- New From Here ---</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source>Save Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1105"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1109"/> <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1122"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1126"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source>Error saving Messages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1140"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1144"/> <source><p>The messages contents could not be written to <b>{0}</b></p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1152"/> - <source>Cut</source> - <translation type="unfinished">剪切</translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1156"/> + <source>Cut</source> + <translation type="unfinished">剪切</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1160"/> <source>Copy</source> <translation type="unfinished">复制</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1161"/> - <source>Cut all</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1165"/> + <source>Cut all</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1169"/> <source>Copy all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1170"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1174"/> <source>Clear</source> <translation type="unfinished">清除</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1175"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1179"/> <source>Save</source> <translation type="unfinished">保存</translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1180"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1184"/> <source>Mark Current Position</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1183"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1187"/> <source>Remove Position Marker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1232"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1237"/> <source>Who Is</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1235"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1241"/> <source>Private Chat</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>Who</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1313"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1331"/> <source>End of WHO list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1334"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1352"/> <source> (Away)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1335"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1353"/> <source>{0} is {1}@{2} ({3}){4}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>Whois</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1355"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1373"/> <source>{0} is {1}@{2} ({3}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1400"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1418"/> <source>{0} is a user on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1404"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1422"/> <source>{0} has voice on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1408"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1426"/> <source>{0} is a halfop on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1412"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1430"/> <source>{0} is an operator on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1416"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1434"/> <source>{0} is owner of channels: {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1420"/> - <source>{0} is admin on channels: {1}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1438"/> - <source>{0} is online via {1} ({2}).</source> + <source>{0} is admin on channels: {1}</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1456"/> + <source>{0} is online via {1} ({2}).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1474"/> <source>{0} is an IRC Operator.</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1486"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1504"/> <source>%n day(s)</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1497"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1515"/> <source>%n hour(s)</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1506"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1524"/> <source>%n minute(s)</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1507"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1525"/> <source>%n second(s)</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1490"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> <source>{0} has been idle for {1}, {2}, {3}, and {4}.</source> <comment>{0} = name of person, {1} = (x days), {2} = (x hours), {3} = (x minutes), {4} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1500"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1518"/> <source>{0} has been idle for {1}, {2}, and {3}.</source> <comment>{0} = name of person, {1} = (x hours), {2} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1508"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1526"/> <source>{0} has been idle for {1} and {2}.</source> <comment>{0} = name of person, {1} = (x minutes), {3} = (x seconds)</comment> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="Network/IRC/IrcChannelWidget.py" line="1514"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1532"/> <source>{0} has been idle for %n second(s).</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1519"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> <source>{0} has been online since {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1537"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1555"/> <source>End of WHOIS list for {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1553"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1571"/> <source>{0} is an identified user.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1569"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1587"/> <source>{0} is available for help.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1585"/> - <source>{0} is logged in as {1}.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcChannelWidget.py" line="1603"/> + <source>{0} is logged in as {1}.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1621"/> <source>{0} is actually using the host {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1619"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1637"/> <source>{0} is using a secure connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="1636"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="1654"/> <source>{0} is connecting from {1} (IP: {2}).</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="938"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="942"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="943"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="947"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="948"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="952"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcChannelWidget.py" line="954"/> + <location filename="Network/IRC/IrcChannelWidget.py" line="958"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.ui" line="38"/> + <source>Press to change the topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1245"/> + <source>Refresh</source> + <translation type="unfinished">刷新</translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Edit Channel Topic</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcChannelWidget.py" line="1666"/> + <source>Enter the topic for this channel:</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>IrcIdentitiesEditDialog</name> @@ -28439,281 +28459,291 @@ <context> <name>IrcWidget</name> <message> - <location filename="Network/IRC/IrcWidget.py" line="61"/> + <location filename="Network/IRC/IrcWidget.py" line="63"/> <source>Press to leave the current channel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <source>Disconnect from Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="201"/> + <location filename="Network/IRC/IrcWidget.py" line="208"/> <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="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <source>SSL Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="165"/> + <location filename="Network/IRC/IrcWidget.py" line="172"/> <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="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Info</source> <translation type="unfinished">信息</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="188"/> - <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="195"/> + <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"/> <source>Looking for server {0} (port {1})...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="207"/> + <location filename="Network/IRC/IrcWidget.py" line="214"/> <source>Disconnecting from server {0}...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="386"/> + <location filename="Network/IRC/IrcWidget.py" line="394"/> <source>Server found,connecting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="393"/> + <location filename="Network/IRC/IrcWidget.py" line="401"/> <source>Connected,logging in...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="423"/> + <location filename="Network/IRC/IrcWidget.py" line="431"/> <source>Server disconnected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Message Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="465"/> + <location filename="Network/IRC/IrcWidget.py" line="473"/> <source>Unknown message received from server:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="489"/> + <location filename="Network/IRC/IrcWidget.py" line="497"/> <source>Notice</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="507"/> + <location filename="Network/IRC/IrcWidget.py" line="515"/> <source>Mode</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="514"/> + <location filename="Network/IRC/IrcWidget.py" line="522"/> <source>You have left channel {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="525"/> + <location filename="Network/IRC/IrcWidget.py" line="533"/> <source>You are now known as {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="530"/> + <location filename="Network/IRC/IrcWidget.py" line="538"/> <source>User {0} is now known as {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="535"/> + <location filename="Network/IRC/IrcWidget.py" line="543"/> <source>Server Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="569"/> + <location filename="Network/IRC/IrcWidget.py" line="577"/> <source>Error</source> <translation type="unfinished">错误</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="584"/> - <source>Welcome</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="586"/> - <source>Support</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="588"/> - <source>User</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Network/IRC/IrcWidget.py" line="590"/> - <source>MOTD</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="592"/> - <source>Away</source> + <source>Welcome</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="594"/> - <source>Info ({0})</source> + <source>Support</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="596"/> + <source>User</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="598"/> - <source>Message of the day</source> + <source>MOTD</source> <translation type="unfinished"></translation> </message> <message> <location filename="Network/IRC/IrcWidget.py" line="600"/> + <source>Away</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="602"/> + <source>Info ({0})</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="606"/> + <source>Message of the day</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="608"/> <source>End of message of the day</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="603"/> - <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="607"/> - <source>Current users on {0}: {1}, max. {2}</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Network/IRC/IrcWidget.py" line="611"/> + <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"/> + <source>Current users on {0}: {1}, max. {2}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.py" line="619"/> <source>Current users on the network: {0}, max. {1}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="614"/> + <location filename="Network/IRC/IrcWidget.py" line="622"/> <source>You are no longer marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="616"/> + <location filename="Network/IRC/IrcWidget.py" line="624"/> <source>You have been marked as being away.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <source>SSL Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="676"/> + <location filename="Network/IRC/IrcWidget.py" line="684"/> <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="690"/> + <location filename="Network/IRC/IrcWidget.py" line="698"/> <source>Socket Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="682"/> - <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="686"/> - <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="690"/> + <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"/> + <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="698"/> <source>The following network error occurred:<br/>{0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <source>SSL Errors</source> <translation type="unfinished">SSL 错误</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="707"/> + <location filename="Network/IRC/IrcWidget.py" line="715"/> <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="718"/> + <location filename="Network/IRC/IrcWidget.py" line="726"/> <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="725"/> + <location filename="Network/IRC/IrcWidget.py" line="733"/> <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="806"/> + <location filename="Network/IRC/IrcWidget.py" line="814"/> <source>{0} ({1})</source> <comment>channel name, users count</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>Critical</source> <translation type="unfinished">危险</translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="820"/> + <location filename="Network/IRC/IrcWidget.py" line="828"/> <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="835"/> + <location filename="Network/IRC/IrcWidget.py" line="843"/> <source>The given nickname is already in use.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>CTCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="777"/> + <location filename="Network/IRC/IrcWidget.py" line="785"/> <source>Received Version request from {0}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="782"/> + <location filename="Network/IRC/IrcWidget.py" line="790"/> <source>Received CTCP-PING request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="787"/> + <location filename="Network/IRC/IrcWidget.py" line="795"/> <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="793"/> + <location filename="Network/IRC/IrcWidget.py" line="801"/> <source>Received unknown CTCP-{0} request from {1}.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Network/IRC/IrcWidget.py" line="500"/> + <location filename="Network/IRC/IrcWidget.py" line="508"/> <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="504"/> + <location filename="Network/IRC/IrcWidget.py" line="512"/> <source>{0} has changed your personal modes to <b>[{1}]</b>.</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="27"/> + <source>Channels</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Network/IRC/IrcWidget.ui" line="53"/> + <source>Network</source> + <translation type="unfinished">网络</translation> + </message> </context> <context> <name>JavaScriptEricObject</name>