# HG changeset patch # User tdrhq@soc.pidgin.im # Date 1248664448 0 # Node ID 67143ecbddb108e0d330691a56d825dfb7128a60 # Parent 7a456d5da878815e6caee5d6edaf6fd0b6a926da# Parent fe75cd9260732f3731137a46914fd239683c54f3 propagate from branch 'im.pidgin.pidgin' (head 9b3deec2188b0d6cd5015cc06c8de2f7d5696a59) to branch 'im.pidgin.soc.2009.webkitmessageview' (head f4f724d0d7a1a3cf374b8eff0a2ce1e07ab7fb41) diff -r fe75cd926073 -r 67143ecbddb1 .mtn-ignore --- a/.mtn-ignore Fri Jul 24 01:18:07 2009 +0000 +++ b/.mtn-ignore Mon Jul 27 03:14:08 2009 +0000 @@ -31,6 +31,8 @@ doc/finch.1$ doc/pidgin.1$ doc/html +package_revision.h +package_revision_raw.txt pidgin.apspec$ pidgin.desktop$ pidgin.spec$ @@ -48,6 +50,7 @@ pidgin/win32/pidgin_exe_rc.rc$ install-sh libpurple/dbus-bindings.c +libpurple/dbus-signals.c libpurple/dbus-types.c libpurple/dbus-types.h libpurple/example/nullclient diff -r fe75cd926073 -r 67143ecbddb1 ChangeLog --- a/ChangeLog Fri Jul 24 01:18:07 2009 +0000 +++ b/ChangeLog Mon Jul 27 03:14:08 2009 +0000 @@ -3,7 +3,7 @@ version 2.6.0 (??/??/2009): libpurple: * Theme support in libpurple thanks to Justin Rodriguez's summer of code - project. With some minor additions and clean ups from Paul Aurich. + project, with some minor additions and cleanups from Paul Aurich. * Voice & Video framework in libpurple, thanks to Mike Ruprecht's summer of code project in 2008. * It should no longer be possible to end up with duplicates of buddies @@ -119,10 +119,11 @@ (Sulabh Mahajan) * Addition of MSN buddies to Yahoo accounts by adding them as 'msn/buddy@somedomain.com' is now supported. (Sulabh Mahajan) - * Further fixes for buddy pictures, aliases etc. + * Further fixes for buddy pictures, aliases, etc. * Yahoo! and Yahoo! JAPAN are now two separate protocol plugins that share common protocol code. You can now have the same account on both - networks. + networks. Accounts should be seamlessly migrated to the new + arrangement. * Ability to set personal details for an account and for buddies in the buddylist. diff -r fe75cd926073 -r 67143ecbddb1 ChangeLog.API --- a/ChangeLog.API Fri Jul 24 01:18:07 2009 +0000 +++ b/ChangeLog.API Mon Jul 27 03:14:08 2009 +0000 @@ -88,6 +88,8 @@ * All DNS routines support internationalized domain names (IDNs) when libpurple is compiled with GNU libidn. * status is set before emitting signals in purple_xfer_set_status. + * Creating multiple distinct chats with the same name (i.e. "MSN Chat") + is deprecated and will be removed in libpurple 3.0.0. Deprecated: * buddy-added and buddy-removed blist signals diff -r fe75cd926073 -r 67143ecbddb1 Makefile.am --- a/Makefile.am Fri Jul 24 01:18:07 2009 +0000 +++ b/Makefile.am Mon Jul 27 03:14:08 2009 +0000 @@ -16,13 +16,14 @@ intltool-extract.in \ intltool-merge.in \ intltool-update.in \ + package_revision.h \ pidgin.apspec.in \ pidgin.spec.in \ pidgin.desktop.in \ po/Makefile.mingw \ valgrind-suppressions -noinst_HEADERS = config.h +noinst_HEADERS = config.h package_revision.h dist-hook: pidgin.spec cp pidgin.spec $(distdir) @@ -86,7 +87,42 @@ PO_DIR=po endif -SUBDIRS = libpurple doc $(GNT_DIR) $(GTK_DIR) m4macros $(PO_DIR) share/ca-certs share/sounds +# This is phony, so that we always try to rebuild it. If it succeeds +# in calculating changes, it produces its target; otherwise, its +# target does not exist. +.PHONY: package_revision_raw.txt +# if both attempts fail, then we need to remove the empty file that > +# creates, and also make sure that the shell command exits +# successfully; the rm -f ensures both +package_revision_raw.txt: + REAL_BLDDIR=$$PWD/$(top_builddir); \ + (cd $(srcdir) && $$REAL_BLDDIR/mtn --root=. automate get_base_revision_id) 2>/dev/null >$@ \ + || (cd $(srcdir) && mtn --root=. automate get_base_revision_id) 2>/dev/null >$@ \ + || rm -f $@ +package_revision.h: package_revision_raw.txt + if [ -f $< ]; then \ + sed 's/^\(.\+\)$$/#define REVISION "\1"/' $< > $@; \ + fi + if [ ! -f $@ -a -f $(srcdir)/$@ ]; then \ + cp $(srcdir)/$@ $@; \ + fi + [ -f $@ ] || echo "#define REVISION \"unknown\"" > $@ + +# This is a magic directive copy-and-pasted, then modified, from the +# automake 1.9 manual, section 13.4, "Checking the distribution". +# Normally, 'distcheck' does a clean build, and then afterwards runs +# 'distclean', and 'distclean' is supposed to remove everything that +# the build created. However, we have some targets (package_revision.txt) +# that we distribute, but then always attempt to rebuild optimistically, and +# then if that fails fall back on the distributed versions. This +# means that 'distclean' should _not_ remove those files, since they +# are distributed, yet building the package will generate those files, +# thus automake thinks that 'distclean' _should_ remove those files, +# and 'distcheck' gets cranky if we don't. So basically what this +# line does is tell 'distcheck' to shut up and ignore those two files. +distcleancheck_listfiles = find . -type f -a ! -name package_revision.h + +SUBDIRS = . libpurple doc $(GNT_DIR) $(GTK_DIR) m4macros $(PO_DIR) share/ca-certs share/sounds docs: Doxyfile if HAVE_DOXYGEN diff -r fe75cd926073 -r 67143ecbddb1 configure.ac --- a/configure.ac Fri Jul 24 01:18:07 2009 +0000 +++ b/configure.ac Mon Jul 27 03:14:08 2009 +0000 @@ -1642,14 +1642,14 @@ dnl # Thanks go to Evolution for the checks. dnl ####################################################################### -AC_ARG_WITH(with-system-ssl-certs, [AC_HELP_STRING([--with-system-ssl-certs=
Original Author:
\n"
-msgstr ""
+msgstr "
Original Author:
\n"
msgid "
Code Contributors:
\n"
-msgstr ""
-
-#, fuzzy
+msgstr "
Code Contributors:
\n"
+
msgid "
Lovely Patch Writers:
\n"
-msgstr "Last Refreshed: %s
\n"
-
-#, fuzzy
+msgstr "
Lovely Patch Writers:
\n"
+
msgid "
Acknowledgement:
\n"
-msgstr "Currently Online: %d
\n"
-
-#, fuzzy
+msgstr "
Acknowledgement:
\n"
+
msgid "
Scrupulous Testers:
\n"
-msgstr "Last Refreshed: %s
\n"
+msgstr "
Scrupulous Testers:
\n"
msgid "and more, please let me know... thank you!))"
-msgstr ""
+msgstr "and more, please let me know... thank you!))"
msgid "
And, all the boys in the backroom...
\n"
-msgstr ""
+msgstr "
And, all the boys in the backroom...
\n"
msgid "Feel free to join us! :)"
-msgstr ""
-
-#, fuzzy, c-format
+msgstr "Feel free to join us! :)"
+
+#, c-format
msgid "About OpenQ %s"
-msgstr "About %s"
-
-#, fuzzy
+msgstr "About OpenQ %s"
+
msgid "Change Icon"
-msgstr "Save Icon"
+msgstr "Change Icon"
msgid "Change Password"
msgstr "Change Password"
-#, fuzzy
msgid "Account Information"
-msgstr "Login Information"
+msgstr "Account Information"
msgid "Update all QQ Quns"
-msgstr ""
-
-#, fuzzy
+msgstr "Update all QQ Quns"
+
msgid "About OpenQ"
-msgstr "About %s"
-
-#, fuzzy
+msgstr "About OpenQ"
+
msgid "Modify Buddy Memo"
-msgstr "Home Address"
+msgstr "Modify Buddy Memo"
#. *< type
#. *< ui_requirement
@@ -7748,189 +7638,171 @@
#. *< version
#. * summary
#. * description
-#, fuzzy
msgid "QQ Protocol Plugin"
-msgstr "QQ Protocol\tPlugin"
-
-#, fuzzy
+msgstr "QQ Protocol Plugin"
+
msgid "Auto"
-msgstr "Author"
-
-#, fuzzy
+msgstr "Auto"
+
msgid "Select Server"
-msgstr "Select User"
+msgstr "Select Server"
msgid "QQ2005"
-msgstr ""
+msgstr "QQ2005"
msgid "QQ2007"
-msgstr ""
+msgstr "QQ2007"
msgid "QQ2008"
-msgstr ""
-
-#, fuzzy
+msgstr "QQ2008"
+
msgid "Connect by TCP"
-msgstr "Connect using TCP"
-
-#, fuzzy
+msgstr "Connect by TCP"
+
msgid "Show server notice"
-msgstr "Server port"
-
-#, fuzzy
+msgstr "Show server notice"
+
msgid "Show server news"
-msgstr "Server address"
+msgstr "Show server news"
msgid "Show chat room when msg comes"
-msgstr ""
-
-#, fuzzy
+msgstr "Show chat room when msg comes"
+
msgid "Keep alive interval (seconds)"
-msgstr "Keep alive error"
-
-#, fuzzy
+msgstr "Keep alive interval (seconds)"
+
msgid "Update interval (seconds)"
-msgstr "Keep alive error"
-
-#, fuzzy
+msgstr "Update interval (seconds)"
+
msgid "Unable to decrypt server reply"
-msgstr "Cannot get server information"
+msgstr "Unable to decrypt server reply"
#, c-format
msgid "Failed requesting token, 0x%02X"
-msgstr ""
-
-#, fuzzy, c-format
+msgstr "Failed to request token, 0x%02X"
+
+#, c-format
msgid "Invalid token len, %d"
-msgstr "Invalid title"
+msgstr "Invalid token len, %d"
#. extend redirect used in QQ2006
msgid "Redirect_EX is not currently supported"
-msgstr ""
+msgstr "Redirect_EX is not currently supported"
#. need activation
#. need activation
#. need activation
-#, fuzzy
msgid "Activation required"
-msgstr "Registration Required"
+msgstr "Activation required"
#, c-format
msgid "Unknown reply code when logging in (0x%02X)"
-msgstr ""
-
-#, fuzzy
+msgstr "Unknown reply code when logging in (0x%02X)"
+
msgid "Requesting captcha"
-msgstr "Requesting %s's attention..."
-
-#, fuzzy
+msgstr "Requesting captcha"
+
msgid "Checking captcha"
-msgstr "Requesting %s's attention..."
-
-#, fuzzy
+msgstr "Checking captcha"
+
msgid "Failed captcha verification"
-msgstr "Failed Yahoo! Authentication"
-
-#, fuzzy
+msgstr "Failed captcha verification"
+
msgid "Captcha Image"
-msgstr "Save Image"
-
-#, fuzzy
+msgstr "Captcha Image"
+
msgid "Enter code"
-msgstr "Enter Password"
-
-#, fuzzy
+msgstr "Enter code"
+
msgid "QQ Captcha Verification"
-msgstr "SSL Certificate Verification"
-
-#, fuzzy
+msgstr "QQ Captcha Verification"
+
msgid "Enter the text from the image"
-msgstr "Enter the name of the group"
+msgstr "Enter the text from the image"
#, c-format
msgid "Unknown reply when checking password (0x%02X)"
-msgstr ""
+msgstr "Unknown reply when checking password (0x%02X)"
#, c-format
msgid ""
"Unknown reply code when logging in (0x%02X):\n"
"%s"
msgstr ""
+"Unknown reply code when logging in (0x%02X):\n"
+"%s"
msgid "Socket error"
msgstr "Socket error"
-#, fuzzy
msgid "Getting server"
-msgstr "Set User Info..."
-
-#, fuzzy
+msgstr "Getting server"
+
msgid "Requesting token"
-msgstr "Request denied"
-
-#, fuzzy
+msgstr "Requesting token"
+
msgid "Unable to resolve hostname"
-msgstr "Unable to connect to server."
-
-#, fuzzy
+msgstr "Unable to resolve hostname"
+
msgid "Invalid server or port"
-msgstr "Invalid error"
-
-#, fuzzy
+msgstr "Invalid server or port"
+
msgid "Connecting to server"
-msgstr "Connecting to SILC Server"
-
-#, fuzzy
+msgstr "Connecting to server"
+
msgid "QQ Error"
-msgstr "QQid Error"
-
-#, fuzzy, c-format
+msgstr "QQ Error"
+
+#, c-format
msgid ""
"Server News:\n"
"%s\n"
"%s\n"
"%s"
-msgstr "ICQ Server Relay"
-
-#, fuzzy, c-format
+msgstr ""
+"Server News:\n"
+"%s\n"
+"%s\n"
+"%s"
+
+#, c-format
msgid "%s:%s"
-msgstr "%s (%s)"
-
-#, fuzzy, c-format
+msgstr "%s:%s"
+
+#, c-format
msgid "From %s:"
-msgstr "From"
-
-#, fuzzy, c-format
+msgstr "From %s:"
+
+#, c-format
msgid ""
"Server notice From %s: \n"
"%s"
-msgstr "Server Instructions: %s"
-
-#, fuzzy
+msgstr ""
+"Server notice From %s: \n"
+"%s"
+
msgid "Unknown SERVER CMD"
-msgstr "Unknown reason"
+msgstr "Unknown SERVER CMD"
#, c-format
msgid ""
"Error reply of %s(0x%02X)\n"
"Room %u, reply 0x%02X"
msgstr ""
-
-#, fuzzy
+"Error reply of %s(0x%02X)\n"
+"Room %u, reply 0x%02X"
+
msgid "QQ Qun Command"
-msgstr "Command"
-
-#, fuzzy
+msgstr "QQ Qun Command"
+
msgid "Unable to decrypt login reply"
-msgstr "Cannot get server information"
-
-#, fuzzy
+msgstr "Unable to decrypt login reply"
+
msgid "Unknown LOGIN CMD"
-msgstr "Unknown reason"
-
-#, fuzzy
+msgstr "Unknown LOGIN CMD"
+
msgid "Unknown CLIENT CMD"
-msgstr "Unknown reason"
+msgstr "Unknown CLIENT CMD"
#, c-format
msgid "%d has declined the file %s"
@@ -8903,9 +8775,8 @@
msgid "Disconnected by server"
msgstr "Disconnected by server"
-#, fuzzy
msgid "Error connecting to SILC Server"
-msgstr "Error during connecting to SILC Server"
+msgstr "Error connecting to SILC Server"
msgid "Key Exchange failed"
msgstr "Key Exchange failed"
@@ -8918,31 +8789,25 @@
msgid "Performing key exchange"
msgstr "Performing key exchange"
-#, fuzzy
msgid "Unable to load SILC key pair"
-msgstr "Could not load SILC key pair"
+msgstr "Unable to load SILC key pair"
#. Progress
msgid "Connecting to SILC Server"
msgstr "Connecting to SILC Server"
-#, fuzzy
-msgid "Unable to not load SILC key pair"
-msgstr "Could not load SILC key pair"
-
msgid "Out of memory"
msgstr "Out of memory"
-#, fuzzy
msgid "Unable to initialize SILC protocol"
-msgstr "Cannot initialise SILC protocol"
+msgstr "Unable to initialize SILC protocol"
msgid "Error loading SILC key pair"
msgstr "Error loading SILC key pair"
-#, fuzzy, c-format
+#, c-format
msgid "Download %s: %s"
-msgstr "Users on %s: %s"
+msgstr "Download %s: %s"
msgid "Your Current Mood"
msgstr "Your Current Mood"
@@ -9225,9 +9090,8 @@
msgid "Creating SILC key pair..."
msgstr "Creating SILC key pair..."
-#, fuzzy
msgid "Unable to create SILC key pair"
-msgstr "Cannot create SILC key pair\n"
+msgstr "Unable to create SILC key pair"
#. Hint for translators: Please check the tabulator width here and in
#. the next strings (short strings: 2 tabs, longer strings 1 tab,
@@ -9365,34 +9229,30 @@
msgid "Failure: Authentication failed"
msgstr "Failure: Authentication failed"
-#, fuzzy
msgid "Unable to initialize SILC Client connection"
-msgstr "Cannot initialise SILC Client connection"
+msgstr "Unable to initialize SILC Client connection"
msgid "John Noname"
-msgstr "No name"
-
-#, fuzzy, c-format
+msgstr "John Noname"
+
+#, c-format
msgid "Unable to load SILC key pair: %s"
-msgstr "Could not load SILC key pair: %s"
+msgstr "Unable to load SILC key pair: %s"
msgid "Unable to create connection"
msgstr "Unable to create connection"
-#, fuzzy
msgid "Unknown server response"
-msgstr "Unknown server response."
-
-#, fuzzy
+msgstr "Unknown server response"
+
msgid "Unable to create listen socket"
-msgstr "Unable to create socket"
+msgstr "Unable to create listen socket"
msgid "SIP usernames may not contain whitespaces or @ symbols"
msgstr "SIP usernames may not contain whitespaces or @ symbols"
-#, fuzzy
msgid "SIP connect server not specified"
-msgstr "Server port"
+msgstr "SIP connect server not specified"
#. *< type
#. *< ui_requirement
@@ -9436,9 +9296,8 @@
msgid "doodle: Request user to start a Doodle session"
msgstr "doodle: Request user to start a Doodle session"
-#, fuzzy
msgid "Yahoo ID..."
-msgstr "Yahoo! ID"
+msgstr "Yahoo ID..."
#. *< type
#. *< ui_requirement
@@ -9450,9 +9309,8 @@
#. *< version
#. * summary
#. * description
-#, fuzzy
msgid "Yahoo! Protocol Plugin"
-msgstr "Yahoo Protocol Plug-in"
+msgstr "Yahoo! Protocol Plugin"
msgid "Pager server"
msgstr "Pager server"
@@ -9481,9 +9339,8 @@
msgid "Yahoo Chat port"
msgstr "Yahoo Chat port"
-#, fuzzy
msgid "Yahoo JAPAN ID..."
-msgstr "Yahoo! ID"
+msgstr "Yahoo JAPAN ID..."
#. *< type
#. *< ui_requirement
@@ -9495,12 +9352,11 @@
#. *< version
#. * summary
#. * description
-#, fuzzy
msgid "Yahoo! JAPAN Protocol Plugin"
-msgstr "Yahoo Protocol Plug-in"
+msgstr "Yahoo! JAPAN Protocol Plugin"
msgid "Your SMS was not delivered"
-msgstr ""
+msgstr "Your SMS was not delivered"
msgid "Your Yahoo! message did not get sent."
msgstr "Your Yahoo! message did not get sent."
@@ -9525,28 +9381,28 @@
msgstr "Add buddy rejected"
#. Some error in the received stream
-#, fuzzy
msgid "Received invalid data"
-msgstr "Received invalid data on connection with server."
+msgstr "Received invalid data"
#. security lock from too many failed login attempts
-#, fuzzy
msgid ""
"Account locked: Too many failed login attempts. Logging into the Yahoo! "
"website may fix this."
-msgstr "Unknown error number %d. Logging into the Yahoo! website may fix this."
+msgstr ""
+"Account locked: Too many failed login attempts. Logging into the Yahoo! "
+"website may fix this."
#. indicates a lock of some description
-#, fuzzy
msgid ""
"Account locked: Unknown reason. Logging into the Yahoo! website may fix "
"this."
-msgstr "Unknown error number %d. Logging into the Yahoo! website may fix this."
+msgstr ""
+"Account locked: Unknown reason. Logging into the Yahoo! website may fix "
+"this."
#. username or password missing
-#, fuzzy
msgid "Username or password missing"
-msgstr "Incorrect username or password"
+msgstr "Username or password missing"
#, c-format
msgid ""
@@ -9579,33 +9435,27 @@
msgid "Unknown error number %d. Logging into the Yahoo! website may fix this."
msgstr "Unknown error number %d. Logging into the Yahoo! website may fix this."
-#, fuzzy, c-format
+#, c-format
msgid "Unable to add buddy %s to group %s to the server list on account %s."
-msgstr "Could not add buddy %s to group %s to the server list on account %s."
-
-#, fuzzy
+msgstr "Unable to add buddy %s to group %s to the server list on account %s."
+
msgid "Unable to add buddy to server list"
-msgstr "Could not add buddy to server list"
+msgstr "Unable to add buddy to server list"
#, c-format
msgid "[ Audible %s/%s/%s.swf ] %s"
msgstr "[ Audible %s/%s/%s.swf ] %s"
-#, fuzzy
msgid "Received unexpected HTTP response from server"
-msgstr "Received unexpected HTTP response from server."
-
-#, fuzzy, c-format
+msgstr "Received unexpected HTTP response from server"
+
+#, c-format
msgid "Lost connection with %s: %s"
-msgstr ""
-"Lost connection with %s:\n"
-"%s"
-
-#, fuzzy, c-format
+msgstr "Lost connection with %s: %s"
+
+#, c-format
msgid "Unable to establish a connection with %s: %s"
-msgstr ""
-"Could not establish a connection with the server:\n"
-"%s"
+msgstr "Unable to establish a connection with %s: %s"
msgid "Not at Home"
msgstr "Not at Home"
@@ -9653,7 +9503,7 @@
msgstr "Start Doodling"
msgid "Select the ID you want to activate"
-msgstr ""
+msgstr "Select the ID you want to activate"
msgid "Join whom in chat?"
msgstr "Join whom in chat?"
@@ -9730,12 +9580,10 @@
msgid "Last Update"
msgstr "Last Update"
-#, fuzzy
msgid ""
"This profile is in a language or format that is not supported at this time."
msgstr ""
-"Sorry, this profile seems to be in a language or format that is not "
-"supported at this time."
+"This profile is in a language or format that is not supported at this time."
msgid ""
"Could not retrieve the user's profile. This most likely is a temporary "
@@ -9757,11 +9605,8 @@
msgstr "The user's profile is empty."
#, c-format
-msgid "%s declined your conference invitation to room \"%s\" because \"%s\"."
-msgstr "%s declined your conference invitation to room \"%s\" because \"%s\"."
-
-msgid "Invitation Rejected"
-msgstr "Invitation Rejected"
+msgid "%s has declined to join."
+msgstr "%s has declined to join."
msgid "Failed to join chat"
msgstr "Failed to join chat"
@@ -9813,9 +9658,8 @@
msgid "User Rooms"
msgstr "User Rooms"
-#, fuzzy
msgid "Connection problem with the YCHT server"
-msgstr "Connection problem with the YCHT server."
+msgstr "Connection problem with the YCHT server"
msgid ""
"(There was an error converting this message.\t Check the 'Encoding' option "
@@ -9941,17 +9785,17 @@
msgid "Exposure"
msgstr "Exposure"
-#, fuzzy, c-format
+#, c-format
msgid "Unable to parse response from HTTP proxy: %s"
-msgstr "Unable to parse response from HTTP proxy: %s\n"
+msgstr "Unable to parse response from HTTP proxy: %s"
#, c-format
msgid "HTTP proxy connection error %d"
msgstr "HTTP proxy connection error %d"
-#, fuzzy, c-format
+#, c-format
msgid "Access denied: HTTP proxy server forbids port %d tunneling"
-msgstr "Access denied: HTTP proxy server forbids port %d tunnelling."
+msgstr "Access denied: HTTP proxy server forbids port %d tunnelling"
#, c-format
msgid "Error resolving %s"
@@ -10009,21 +9853,18 @@
msgstr "Accept chat invitation?"
#. Shortcut
-#, fuzzy
msgid "Shortcut"
-msgstr "Sort"
-
-#, fuzzy
+msgstr "Shortcut"
+
msgid "The text-shortcut for the smiley"
-msgstr "GTK+ Text Shortcut Theme"
+msgstr "The text-shortcut for the smiley"
#. Stored Image
-#, fuzzy
msgid "Stored Image"
-msgstr "Save Image"
+msgstr "Stored Image"
msgid "Stored Image. (that'll have to do for now)"
-msgstr ""
+msgstr "Stored Image. (that'll have to do for now)"
msgid "SSL Connection Failed"
msgstr "SSL Connection Failed"
@@ -10137,9 +9978,9 @@
msgid "Unable to connect to %s"
msgstr "Unable to connect to %s"
-#, fuzzy, c-format
+#, c-format
msgid "Error reading from %s: response too long (%d bytes limit)"
-msgstr "Error reading from %s: %s"
+msgstr "Error reading from %s: response too long (%d bytes limit)"
#, c-format
msgid ""
@@ -10190,20 +10031,20 @@
msgstr "Connection refused."
#. 10048
-#, fuzzy, c-format
+#, c-format
msgid "Address already in use."
-msgstr "This chat name is already in use"
+msgstr "Address already in use."
#, c-format
msgid "Error Reading %s"
msgstr "Error reading %s"
-#, fuzzy, c-format
+#, c-format
msgid ""
"An error was encountered reading your %s. The file has not been loaded, and "
"the old file has been renamed to %s~."
msgstr ""
-"An error was encountered reading your %s. They have not been loaded, and "
+"An error was encountered reading your %s. The file has not been loaded, and "
"the old file has been renamed to %s~."
msgid "Internet Messenger"
@@ -10248,8 +10089,8 @@
msgid "Use this buddy _icon for this account:"
msgstr "Use this buddy _icon for this account:"
-msgid "_Advanced"
-msgstr "_Advanced"
+msgid "Ad_vanced"
+msgstr "Ad_vanced"
msgid "Use GNOME Proxy Settings"
msgstr "Use GNOME Proxy Settings"
@@ -10308,13 +10149,11 @@
msgid "_Basic"
msgstr "_Basic"
-#, fuzzy
msgid "Create _this new account on the server"
-msgstr "Create this new account on the server"
-
-#, fuzzy
-msgid "_Proxy"
-msgstr "Proxy"
+msgstr "Create _this new account on the server"
+
+msgid "P_roxy"
+msgstr "P_roxy"
msgid "Enabled"
msgstr "Enabled"
@@ -10322,7 +10161,7 @@
msgid "Protocol"
msgstr "Protocol"
-#, fuzzy, c-format
+#, c-format
msgid ""
"Welcome to %s!\n"
"\n"
@@ -10337,12 +10176,12 @@
"Welcome to %s!\n"
"\n"
"You have no IM accounts configured. To start connecting with %s press the "
-"Add button below and configure your first account. If you want %s to "
-"connect to multiple IM accounts, press Add again to configure them "
-"all.\n"
+"Add... button below and configure your first account. If you want %s "
+"to connect to multiple IM accounts, press Add... again to configure "
+"them all.\n"
"\n"
"You can come back to this window to add, edit, or remove accounts from "
-"Accounts->Add/Edit in the Buddy List window"
+"Accounts->Manage Accounts in the Buddy List window"
#, c-format
msgid "You have %d contact named %s. Would you like to merge them?"
@@ -10364,9 +10203,8 @@
msgid "Please update the necessary fields."
msgstr "Please update the necessary fields."
-#, fuzzy
msgid "A_ccount"
-msgstr "Account"
+msgstr "A_ccount"
msgid ""
"Please enter the appropriate information about the chat you would like to "
@@ -10393,16 +10231,14 @@
msgid "I_M"
msgstr "I_M"
-#, fuzzy
msgid "_Audio Call"
-msgstr "_Add Chat"
+msgstr "_Audio Call"
msgid "Audio/_Video Call"
-msgstr ""
-
-#, fuzzy
+msgstr "Audio/_Video Call"
+
msgid "_Video Call"
-msgstr "Video Chat"
+msgstr "_Video Call"
msgid "_Send File..."
msgstr "_Send File..."
@@ -10413,13 +10249,11 @@
msgid "View _Log"
msgstr "View _Log"
-#, fuzzy
msgid "Hide When Offline"
-msgstr "Hide when offline"
-
-#, fuzzy
+msgstr "Hide When Offline"
+
msgid "Show When Offline"
-msgstr "Show when offline"
+msgstr "Show When Offline"
msgid "_Alias..."
msgstr "_Alias..."
@@ -10427,9 +10261,8 @@
msgid "_Remove"
msgstr "_Remove"
-#, fuzzy
msgid "Set Custom Icon"
-msgstr "Set Custom Icon..."
+msgstr "Set Custom Icon"
msgid "Remove Custom Icon"
msgstr "Remove Custom Icon"
@@ -10532,9 +10365,8 @@
msgid "/_Accounts"
msgstr "/_Accounts"
-#, fuzzy
msgid "/Accounts/Manage Accounts"
-msgstr "/Accounts/Manage"
+msgstr "/Accounts/Manage Accounts"
#. Tools
msgid "/_Tools"
@@ -10546,9 +10378,8 @@
msgid "/Tools/_Certificates"
msgstr "/Tools/_Certificates"
-#, fuzzy
msgid "/Tools/Custom Smile_ys"
-msgstr "/Tools/Privacy"
+msgstr "/Tools/Custom Smile_ys"
msgid "/Tools/Plu_gins"
msgstr "/Tools/Plu_g-ins"
@@ -10677,7 +10508,7 @@
msgstr "By status"
msgid "By recent log activity"
-msgstr ""
+msgstr "By recent log activity"
#, c-format
msgid "%s disconnected"
@@ -10694,7 +10525,7 @@
msgstr "Re-enable"
msgid "SSL FAQs"
-msgstr ""
+msgstr "SSL FAQs"
msgid "Welcome back!"
msgstr "Welcome back!"
@@ -10721,7 +10552,7 @@
msgstr "/Accounts"
#. Translators: Please maintain the use of -> and <- to refer to menu heirarchy
-#, fuzzy, c-format
+#, c-format
msgid ""
"Welcome to %s!\n"
"\n"
@@ -10732,8 +10563,8 @@
"Welcome to %s!\n"
"\n"
"You have no accounts enabled. Enable your IM accounts from the Accounts"
-"b> window at Accounts->Manage. Once you enable accounts, you'll be "
-"able to sign on, set your status, and talk to your friends."
+"b> window at Accounts->Manage Accounts. Once you enable accounts, "
+"you'll be able to sign on, set your status, and talk to your friends."
#. set the Show Offline Buddies option. must be done
#. * after the treeview or faceprint gets mad. -Robot101
@@ -10791,9 +10622,8 @@
msgid "Auto_join when account becomes online."
msgstr "Auto_join when account becomes online."
-#, fuzzy
msgid "_Remain in chat after window is closed."
-msgstr "_Hide chat when the window is closed."
+msgstr "_Remain in chat after window is closed."
msgid "Please enter the name of the group to be added."
msgstr "Please enter the name of the group to be added."
@@ -10826,111 +10656,98 @@
msgid "Background Color"
msgstr "Background Colour"
-#, fuzzy
msgid "The background color for the buddy list"
-msgstr "This group has been added to your buddy list"
-
-#, fuzzy
+msgstr "The background colour for the buddy list"
+
msgid "Layout"
-msgstr "Lao"
+msgstr "Layout"
msgid "The layout of icons, name, and status of the blist"
-msgstr ""
+msgstr "The layout of icons, name, and status of the blist"
#. Group
-#, fuzzy
msgid "Expanded Background Color"
-msgstr "Background Colour"
+msgstr "Expanded Background Colour"
msgid "The background color of an expanded group"
-msgstr ""
-
-#, fuzzy
+msgstr "The background colour of an expanded group"
+
msgid "Expanded Text"
-msgstr "_Expand"
+msgstr "Expanded Text"
msgid "The text information for when a group is expanded"
-msgstr ""
-
-#, fuzzy
+msgstr "The text information for when a group is expanded"
+
msgid "Collapsed Background Color"
-msgstr "Select Background Colour"
+msgstr "Collapsed Background Colour"
msgid "The background color of a collapsed group"
-msgstr ""
-
-#, fuzzy
+msgstr "The background colour of a collapsed group"
+
msgid "Collapsed Text"
-msgstr "_Collapse"
+msgstr "Collapsed Text"
msgid "The text information for when a group is collapsed"
-msgstr ""
+msgstr "The text information for when a group is collapsed"
#. Buddy
-#, fuzzy
msgid "Contact/Chat Background Color"
-msgstr "Select Background Colour"
+msgstr "Contact/Chat Background Colour"
msgid "The background color of a contact or chat"
-msgstr ""
-
-#, fuzzy
+msgstr "The background colour of a contact or chat"
+
msgid "Contact Text"
-msgstr "Sort"
+msgstr "Contact Text"
msgid "The text information for when a contact is expanded"
-msgstr ""
-
-#, fuzzy
+msgstr "The text information for when a contact is expanded"
+
msgid "On-line Text"
-msgstr "Online"
+msgstr "On-line Text"
msgid "The text information for when a buddy is online"
-msgstr ""
-
-#, fuzzy
+msgstr "The text information for when a buddy is online"
+
msgid "Away Text"
-msgstr "Away"
+msgstr "Away Text"
msgid "The text information for when a buddy is away"
-msgstr ""
-
-#, fuzzy
+msgstr "The text information for when a buddy is away"
+
msgid "Off-line Text"
-msgstr "Offline"
+msgstr "Off-line Text"
msgid "The text information for when a buddy is off-line"
-msgstr ""
-
-#, fuzzy
+msgstr "The text information for when a buddy is off-line"
+
msgid "Idle Text"
-msgstr "Mood Text"
+msgstr "Idle Text"
msgid "The text information for when a buddy is idle"
-msgstr ""
-
-#, fuzzy
+msgstr "The text information for when a buddy is idle"
+
msgid "Message Text"
-msgstr "Message sent"
+msgstr "Message Text"
msgid "The text information for when a buddy has an unread message"
-msgstr ""
+msgstr "The text information for when a buddy has an unread message"
msgid "Message (Nick Said) Text"
-msgstr ""
+msgstr "Message (Nick Said) Text"
msgid ""
"The text information for when a chat has an unread message that mentions "
"your nick"
msgstr ""
-
-#, fuzzy
+"The text information for when a chat has an unread message that mentions "
+"your nick"
+
msgid "The text information for a buddy's status"
-msgstr "Change user information for %s"
-
-#, fuzzy
+msgstr "The text information for a buddy's status"
+
msgid "Type the host name for this certificate."
-msgstr "Type the host name this certificate is for."
+msgstr "Type the host name for this certificate."
#. Widget creation function
msgid "SSL Servers"
@@ -10978,9 +10795,8 @@
msgid "Get Away Message"
msgstr "Get Away Message"
-#, fuzzy
msgid "Last Said"
-msgstr "Last said"
+msgstr "Last Said"
msgid "Unable to save icon file to disk."
msgstr "Unable to save icon file to disk."
@@ -11025,21 +10841,17 @@
msgid "/Conversation/Clea_r Scrollback"
msgstr "/Conversation/Clea_r Scrollback"
-#, fuzzy
msgid "/Conversation/M_edia"
-msgstr "/Conversation/M_ore"
-
-#, fuzzy
+msgstr "/Conversation/M_edia"
+
msgid "/Conversation/Media/_Audio Call"
-msgstr "/Conversation/M_ore"
-
-#, fuzzy
+msgstr "/Conversation/Media/_Audio Call"
+
msgid "/Conversation/Media/_Video Call"
-msgstr "/Conversation/M_ore"
-
-#, fuzzy
+msgstr "/Conversation/Media/_Video Call"
+
msgid "/Conversation/Media/Audio\\/Video _Call"
-msgstr "/Conversation/View _Log"
+msgstr "/Conversation/Media/Audio\\/Video _Call"
msgid "/Conversation/Se_nd File..."
msgstr "/Conversation/Se_nd File..."
@@ -11113,17 +10925,14 @@
msgid "/Conversation/View Log"
msgstr "/Conversation/View Log"
-#, fuzzy
msgid "/Conversation/Media/Audio Call"
-msgstr "/Conversation/More"
-
-#, fuzzy
+msgstr "/Conversation/Media/Audio Call"
+
msgid "/Conversation/Media/Video Call"
-msgstr "/Conversation/View Log"
-
-#, fuzzy
+msgstr "/Conversation/Media/Video Call"
+
msgid "/Conversation/Media/Audio\\/Video Call"
-msgstr "/Conversation/More"
+msgstr "/Conversation/Media/Audio\\/Video Call"
msgid "/Conversation/Send File..."
msgstr "/Conversation/Send File..."
@@ -11298,25 +11107,23 @@
msgstr "Fatal Error"
msgid "bug master"
-msgstr ""
-
-#, fuzzy
+msgstr "bug master"
+
msgid "artist"
-msgstr "Artist"
+msgstr "artist"
#. feel free to not translate this
msgid "Ka-Hing Cheung"
-msgstr ""
+msgstr "Ka-Hing Cheung"
msgid "voice and video"
-msgstr ""
+msgstr "voice and video"
msgid "support"
msgstr "support"
-#, fuzzy
msgid "webmaster"
-msgstr "developer & webmaster"
+msgstr "webmaster"
msgid "Senior Contributor/QA"
msgstr "Senior Contributor/QA"
@@ -11338,7 +11145,7 @@
msgstr "support/QA"
msgid "XMPP"
-msgstr ""
+msgstr "XMPP"
msgid "original author"
msgstr "original author"
@@ -11415,9 +11222,8 @@
msgid "French"
msgstr "French"
-#, fuzzy
msgid "Irish"
-msgstr "Kurdish"
+msgstr "Irish"
msgid "Galician"
msgstr "Galician"
@@ -11437,9 +11243,8 @@
msgid "Hungarian"
msgstr "Hungarian"
-#, fuzzy
msgid "Armenian"
-msgstr "Romanian"
+msgstr "Armenian"
msgid "Indonesian"
msgstr "Indonesian"
@@ -11456,9 +11261,8 @@
msgid "Ubuntu Georgian Translators"
msgstr "Ubuntu Georgian Translators"
-#, fuzzy
msgid "Khmer"
-msgstr "Other"
+msgstr "Khmer"
msgid "Kannada"
msgstr "Kannada"
@@ -11481,9 +11285,8 @@
msgid "Macedonian"
msgstr "Macedonian"
-#, fuzzy
msgid "Mongolian"
-msgstr "Macedonian"
+msgstr "Mongolian"
msgid "Bokmål Norwegian"
msgstr "Bokmål Norwegian"
@@ -11498,7 +11301,7 @@
msgstr "Norwegian Nynorsk"
msgid "Occitan"
-msgstr ""
+msgstr "Occitan"
msgid "Punjabi"
msgstr "Punjabi"
@@ -11540,7 +11343,7 @@
msgstr "Swedish"
msgid "Swahili"
-msgstr ""
+msgstr "Swahili"
msgid "Tamil"
msgstr "Tamil"
@@ -11606,21 +11409,26 @@
"FAQ: http://developer.pidgin.im/wiki/FAQ
"
msgstr ""
+"FAQ: http://developer.pidgin.im/wiki/FAQ
"
#, c-format
msgid ""
"Help via e-mail: support@pidgin.im
"
msgstr ""
-
-#, fuzzy, c-format
+"Help via e-mail: support@pidgin.im
"
+
+#, c-format
msgid ""
"IRC Channel: #pidgin on irc.freenode.net
"
-msgstr "IRC: #pidgin on irc.freenode.net
"
-
-#, fuzzy, c-format
+msgstr ""
+"IRC Channel: #pidgin on irc.freenode.net
"
+
+#, c-format
msgid "XMPP MUC: devel@conference.pidgin.im
"
-msgstr "IRC: #pidgin on irc.freenode.net
"
+msgstr "XMPP MUC: devel@conference.pidgin.im
"
msgid "Current Developers"
msgstr "Current Developers"
@@ -11758,45 +11566,35 @@
msgid "Right-click for more unread messages...\n"
msgstr "Right-click for more unread messages...\n"
-#, fuzzy
msgid "_Change Status"
-msgstr "Change Status"
-
-#, fuzzy
+msgstr "_Change Status"
+
msgid "Show Buddy _List"
-msgstr "Show Buddy List"
-
-#, fuzzy
+msgstr "Show Buddy _List"
+
msgid "_Unread Messages"
-msgstr "Unread Messages"
-
-#, fuzzy
+msgstr "_Unread Messages"
+
msgid "New _Message..."
-msgstr "New Message..."
-
-#, fuzzy
+msgstr "New _Message..."
+
msgid "_Accounts"
-msgstr "/_Accounts"
-
-#, fuzzy
+msgstr "_Accounts"
+
msgid "Plu_gins"
-msgstr "Plug-ins"
-
-#, fuzzy
+msgstr "Plu_gins"
+
msgid "Pr_eferences"
-msgstr "Preferences"
-
-#, fuzzy
+msgstr "Pr_eferences"
+
msgid "Mute _Sounds"
-msgstr "Mute Sounds"
-
-#, fuzzy
+msgstr "Mute _Sounds"
+
msgid "_Blink on New Message"
-msgstr "Blink on New Message"
-
-#, fuzzy
+msgstr "_Blink on New Message"
+
msgid "_Quit"
-msgstr "Quit"
+msgstr "_Quit"
msgid "Not started"
msgstr "Not started"
@@ -11879,13 +11677,11 @@
msgid "Color to draw hyperlinks."
msgstr "Colour to draw hyperlinks."
-#, fuzzy
msgid "Hyperlink visited color"
-msgstr "Hyperlink colour"
-
-#, fuzzy
+msgstr "Hyperlink visited colour"
+
msgid "Color to draw hyperlink after it has been visited (or activated)."
-msgstr "Colour to draw hyperlinks when mouse is over them."
+msgstr "Colour to draw hyperlinks after they has been visited (or activated)."
msgid "Hyperlink prelight color"
msgstr "Hyperlink prelight colour"
@@ -11918,28 +11714,23 @@
msgid "Color to draw the name of an action message."
msgstr "Colour to draw the name of an action message."
-#, fuzzy
msgid "Action Message Name Color for Whispered Message"
-msgstr "Action Message Name Colour"
-
-#, fuzzy
+msgstr "Action Message Name Colour for Whispered Message"
+
msgid "Color to draw the name of a whispered action message."
-msgstr "Colour to draw the name of an action message."
-
-#, fuzzy
+msgstr "Colour to draw the name of a whispered action message."
+
msgid "Whisper Message Name Color"
-msgstr "Sent Message Name Colour"
-
-#, fuzzy
+msgstr "Whisper Message Name Colour"
+
msgid "Color to draw the name of a whispered message."
-msgstr "Colour to draw the name of an action message."
+msgstr "Colour to draw the name of a whispered message."
msgid "Typing notification color"
msgstr "Typing notification colour"
-#, fuzzy
msgid "The color to use for the typing notification"
-msgstr "The colour to use for the typing notification font"
+msgstr "The colour to use for the typing notification"
msgid "Typing notification font"
msgstr "Typing notification font"
@@ -11994,9 +11785,8 @@
msgid "_Save Image..."
msgstr "_Save Image..."
-#, fuzzy
msgid "_Add Custom Smiley..."
-msgstr "Show custom smileys"
+msgstr "_Add Custom Smiley..."
msgid "Select Font"
msgstr "Select Font"
@@ -12041,13 +11831,14 @@
"This smiley is disabled because a custom smiley exists for this shortcut:\n"
" %s"
msgstr ""
+"This smiley is disabled because a custom smiley exists for this shortcut:\n"
+" %s"
msgid "Smile!"
msgstr "Smile!"
-#, fuzzy
msgid "_Manage custom smileys"
-msgstr "Show custom smileys"
+msgstr "_Manage custom smileys"
msgid "This theme has no available smileys."
msgstr "This theme has no available smileys."
@@ -12191,7 +11982,7 @@
msgid "%s %s. Try `%s -h' for more information.\n"
msgstr "%s %s. Try `%s -h' for more information.\n"
-#, fuzzy, c-format
+#, c-format
msgid ""
"%s %s\n"
"Usage: %s [OPTION]...\n"
@@ -12213,6 +12004,7 @@
"\n"
" -c, --config=DIR use DIR for config files\n"
" -d, --debug print debugging messages to stdout\n"
+" -f, --force-online force online, regardless of network status\n"
" -h, --help display this help and exit\n"
" -m, --multiple do not ensure single instance\n"
" -n, --nologin don't automatically login\n"
@@ -12222,7 +12014,7 @@
" --display=DISPLAY X display to use\n"
" -v, --version display the current version and exit\n"
-#, fuzzy, c-format
+#, c-format
msgid ""
"%s %s\n"
"Usage: %s [OPTION]...\n"
@@ -12243,6 +12035,7 @@
"\n"
" -c, --config=DIR use DIR for config files\n"
" -d, --debug print debugging messages to stdout\n"
+" -f, --force-online force online, regardless of network status\n"
" -h, --help display this help and exit\n"
" -m, --multiple do not ensure single instance\n"
" -n, --nologin don't automatically login\n"
@@ -12251,7 +12044,7 @@
" Without this only the first account will be enabled).\n"
" -v, --version display the current version and exit\n"
-#, fuzzy, c-format
+#, c-format
msgid ""
"%s %s has segfaulted and attempted to dump a core file.\n"
"This is a bug in the software and has happened through\n"
@@ -12278,11 +12071,6 @@
"and post the backtrace from the core file. If you do not know\n"
"how to get the backtrace, please read the instructions at\n"
"%swiki/GetABacktrace\n"
-"\n"
-"If you need further assistance, please IM either SeanEgn or \n"
-"LSchiere (via AIM). Contact information for Sean and Luke \n"
-"on other protocols is at\n"
-"%swiki/DeveloperPages\n"
#. Translators may want to transliterate the name.
#. It is not to be translated.
@@ -12291,25 +12079,24 @@
#, c-format
msgid "Exiting because another libpurple client is already running.\n"
-msgstr ""
+msgstr "Exiting because another libpurple client is already running.\n"
msgid "/_Media"
-msgstr ""
+msgstr "/_Media"
msgid "/Media/_Hangup"
-msgstr ""
-
-#, fuzzy
+msgstr "/Media/_Hangup"
+
msgid "Calling..."
-msgstr "Calculating..."
+msgstr "Calling..."
#, c-format
msgid "%s wishes to start an audio/video session with you."
-msgstr ""
+msgstr "%s wishes to start an audio/video session with you."
#, c-format
msgid "%s wishes to start a video session with you."
-msgstr ""
+msgstr "%s wishes to start a video session with you."
#, c-format
msgid "%s has %d new message."
@@ -12339,9 +12126,8 @@
msgstr ""
"The 'Manual' browser command has been chosen, but no command has been set."
-#, fuzzy
msgid "No message"
-msgstr "Unknown message"
+msgstr "No message"
msgid "Open All Messages"
msgstr "Open All Messages"
@@ -12349,16 +12135,14 @@
msgid "You have mail!"
msgstr "You have mail!"
-#, fuzzy
msgid "New Pounces"
-msgstr "New Buddy Pounce"
+msgstr "New Pounces"
msgid "Dismiss"
-msgstr ""
-
-#, fuzzy
+msgstr "Dismiss"
+
msgid "You have pounced!"
-msgstr "You have mail!"
+msgstr "You have pounced!"
msgid "The following plugins will be unloaded."
msgstr "The following plug-ins will be unloaded."
@@ -12408,9 +12192,8 @@
msgid "Select a file"
msgstr "Select a file"
-#, fuzzy
msgid "Modify Buddy Pounce"
-msgstr "Edit Buddy Pounce"
+msgstr "Modify Buddy Pounce"
#. Create the "Pounce on Whom" frame.
msgid "Pounce on Whom"
@@ -12485,61 +12268,58 @@
msgid "Pounce Target"
msgstr "Pounce Target"
-#, fuzzy, c-format
+#, c-format
msgid "Started typing"
-msgstr "Starts typing"
-
-#, fuzzy, c-format
+msgstr "Started typing"
+
+#, c-format
msgid "Paused while typing"
-msgstr "Pauses while typing"
-
-#, fuzzy, c-format
+msgstr "Paused while typing"
+
+#, c-format
msgid "Signed on"
-msgstr "Signs on"
-
-#, fuzzy, c-format
+msgstr "Signed on"
+
+#, c-format
msgid "Returned from being idle"
-msgstr "%s has returned from being idle (%s)"
-
-#, fuzzy, c-format
+msgstr "Returned from being idle"
+
+#, c-format
msgid "Returned from being away"
-msgstr "Returns from away"
-
-#, fuzzy, c-format
+msgstr "Returned from being away"
+
+#, c-format
msgid "Stopped typing"
-msgstr "Stopped Typing"
-
-#, fuzzy, c-format
+msgstr "Stopped typing"
+
+#, c-format
msgid "Signed off"
-msgstr "Signs off"
-
-#, fuzzy, c-format
+msgstr "Signed off"
+
+#, c-format
msgid "Became idle"
-msgstr "Becomes idle"
-
-#, fuzzy, c-format
+msgstr "Became idle"
+
+#, c-format
msgid "Went away"
-msgstr "When away"
-
-#, fuzzy, c-format
+msgstr "Went away"
+
+#, c-format
msgid "Sent a message"
-msgstr "Send a message"
-
-#, fuzzy, c-format
+msgstr "Sent a message"
+
+#, c-format
msgid "Unknown.... Please report this!"
-msgstr "Unknown pounce event. Please report this!"
-
-#, fuzzy
+msgstr "Unknown.... Please report this!"
+
msgid "Theme failed to unpack."
-msgstr "Smiley theme failed to unpack."
-
-#, fuzzy
+msgstr "Theme failed to unpack."
+
msgid "Theme failed to load."
-msgstr "Smiley theme failed to unpack."
-
-#, fuzzy
+msgstr "Theme failed to load."
+
msgid "Theme failed to copy."
-msgstr "Smiley theme failed to unpack."
+msgstr "Theme failed to copy."
msgid "Install Theme"
msgstr "Install Theme"
@@ -12561,9 +12341,8 @@
msgstr "Cl_ose conversations with the Escape key"
#. Buddy List Themes
-#, fuzzy
msgid "Buddy List Theme"
-msgstr "Buddy List"
+msgstr "Buddy List Theme"
#. System Tray
msgid "System Tray Icon"
@@ -12575,9 +12354,8 @@
msgid "On unread messages"
msgstr "On unread messages"
-#, fuzzy
msgid "Conversation Window"
-msgstr "IM Conversation Windows"
+msgstr "Conversation Window"
msgid "_Hide new IM conversations:"
msgstr "_Hide new IM conversations:"
@@ -12680,9 +12458,9 @@
msgid "Example: stunserver.org"
msgstr "Example: stunserver.org"
-#, fuzzy, c-format
+#, c-format
msgid "Use _automatically detected IP address: %s"
-msgstr "_Autodetect IP address"
+msgstr "Use _automatically detected IP address: %s"
msgid "Public _IP:"
msgstr "Public _IP:"
@@ -12704,7 +12482,7 @@
#. TURN server
msgid "Relay Server (TURN)"
-msgstr ""
+msgstr "Relay Server (TURN)"
msgid "Proxy Server & Browser"
msgstr "Proxy Server & Browser"
@@ -12736,7 +12514,7 @@
#. This is a global option that affects SOCKS4 usage even with account-specific proxy settings
msgid "Use remote DNS with SOCKS4 proxies"
-msgstr ""
+msgstr "Use remote DNS with SOCKS4 proxies"
msgid "_User:"
msgstr "_User:"
@@ -12859,31 +12637,26 @@
"Sound c_ommand:\n"
"(%s for filename)"
-#, fuzzy
msgid "M_ute sounds"
-msgstr "Mute Sounds"
+msgstr "M_ute Sounds"
msgid "Sounds when conversation has _focus"
msgstr "Sounds when conversation has _focus"
-#, fuzzy
msgid "_Enable sounds:"
-msgstr "Enable sounds:"
-
-#, fuzzy
+msgstr "_Enable sounds:"
+
msgid "V_olume:"
-msgstr "Volume:"
+msgstr "V_olume:"
msgid "Play"
msgstr "Play"
-#, fuzzy
msgid "_Browse..."
-msgstr "Brows_e..."
-
-#, fuzzy
+msgstr "_Browse..."
+
msgid "_Reset"
-msgstr "Reset"
+msgstr "_Reset"
msgid "_Report idle time:"
msgstr "_Report idle time:"
@@ -13058,55 +12831,44 @@
msgid ""
"A custom smiley for '%s' already exists. Please use a different shortcut."
msgstr ""
-
-#, fuzzy
+"A custom smiley for '%s' already exists. Please use a different shortcut."
+
msgid "Custom Smiley"
-msgstr "Insert Smiley"
-
-#, fuzzy
+msgstr "Custom Smiley"
+
msgid "Duplicate Shortcut"
-msgstr "Duplicate Correction"
-
-#, fuzzy
+msgstr "Duplicate Shortcut"
+
msgid "Edit Smiley"
-msgstr "Insert Smiley"
-
-#, fuzzy
+msgstr "Edit Smiley"
+
msgid "Add Smiley"
-msgstr "Smile!"
-
-#, fuzzy
+msgstr "Add Smiley"
+
msgid "_Image:"
-msgstr "_Image"
+msgstr "_Image:"
#. Shortcut text
-#, fuzzy
msgid "S_hortcut text:"
-msgstr "Sort"
-
-#, fuzzy
+msgstr "S_hortcut text:"
+
msgid "Smiley"
-msgstr "Smile!"
-
-#, fuzzy
+msgstr "Smiley"
+
msgid "Shortcut Text"
-msgstr "Sort"
-
-#, fuzzy
+msgstr "Shortcut Text"
+
msgid "Custom Smiley Manager"
-msgstr "Certificate Manager"
-
-#, fuzzy
+msgstr "Custom Smiley Manager"
+
msgid "Select Buddy Icon"
-msgstr "Select Buddy"
-
-#, fuzzy
+msgstr "Select Buddy Icon"
+
msgid "Click to change your buddyicon for this account."
-msgstr "Use this buddy _icon for this account:"
-
-#, fuzzy
+msgstr "Click to change your buddy icon for this account."
+
msgid "Click to change your buddyicon for all accounts."
-msgstr "Use this buddy _icon for this account:"
+msgstr "Click to change your buddy icon for all accounts."
msgid "Waiting for network connection"
msgstr "Waiting for network connection"
@@ -13186,13 +12948,12 @@
msgid "Cannot send launcher"
msgstr "Cannot send launcher"
-#, fuzzy
msgid ""
"You dragged a desktop launcher. Most likely you wanted to send the target of "
"this launcher instead of this launcher itself."
msgstr ""
-"You dragged a desktop launcher. Most likely you wanted to send whatever this "
-"launcher points to instead of this launcher itself."
+"You dragged a desktop launcher. Most likely you wanted to send the target of "
+"this launcher instead of this launcher itself."
#, c-format
msgid ""
@@ -13224,9 +12985,8 @@
msgstr ""
"Failed to load image \"%s\": reason not known; probably a corrupt image file"
-#, fuzzy
msgid "_Open Link"
-msgstr "_Open Link in:"
+msgstr "_Open Link"
msgid "_Copy Link Location"
msgstr "_Copy Link Location"
@@ -13234,9 +12994,21 @@
msgid "_Copy Email Address"
msgstr "_Copy Email Address"
+msgid "_Open File"
+msgstr "_Open File"
+
+msgid "Open _Containing Directory"
+msgstr "Open _Containing Directory"
+
msgid "Save File"
msgstr "Save File"
+msgid "_Play Sound"
+msgstr "_Play Sound"
+
+msgid "_Save File"
+msgstr "_Save File"
+
msgid "Select color"
msgstr "Select colour"
@@ -13252,20 +13024,17 @@
msgid "_Invite"
msgstr "_Invite"
-#, fuzzy
msgid "_Modify..."
-msgstr "_Modify"
-
-#, fuzzy
+msgstr "_Modify..."
+
msgid "_Add..."
-msgstr "_Add"
+msgstr "_Add..."
msgid "_Open Mail"
msgstr "_Open Mail"
-#, fuzzy
msgid "_Edit"
-msgstr "Edit"
+msgstr "_Edit"
msgid "Pidgin Tooltip"
msgstr "Pidgin Tooltip"
@@ -13282,12 +13051,11 @@
msgid "none"
msgstr "none"
-#, fuzzy
msgid "Small"
-msgstr "Email"
+msgstr "Small"
msgid "Smaller versions of the default smilies"
-msgstr ""
+msgstr "Smaller versions of the default smilies"
msgid "Response Probability:"
msgstr "Responses Probability:"
@@ -13328,77 +13096,65 @@
msgid "Displays statistical information about your buddies' availability"
msgstr "Displays statistical information about your buddies' availability"
-#, fuzzy
msgid "Server name request"
-msgstr "Server address"
-
-#, fuzzy
+msgstr "Server name request"
+
msgid "Enter an XMPP Server"
-msgstr "Enter a Conference Server"
-
-#, fuzzy
+msgstr "Enter an XMPP Server"
+
msgid "Select an XMPP server to query"
-msgstr "Select a conference server to query"
-
-#, fuzzy
+msgstr "Select an XMPP server to query"
+
msgid "Find Services"
-msgstr "Online Services"
-
-#, fuzzy
+msgstr "Find Services"
+
msgid "Add to Buddy List"
-msgstr "Send Buddy List"
-
-#, fuzzy
+msgstr "Add to Buddy List"
+
msgid "Gateway"
-msgstr "Goes away"
-
-#, fuzzy
+msgstr "Gateway"
+
msgid "Directory"
-msgstr "Log Directory"
-
-#, fuzzy
+msgstr "Directory"
+
msgid "PubSub Collection"
-msgstr "Sound Selection"
-
-#, fuzzy
+msgstr "PubSub Collection"
+
msgid "PubSub Leaf"
-msgstr "PubSub Service"
-
-#, fuzzy
+msgstr "PubSub Leaf"
+
msgid ""
"\n"
"Description: "
-msgstr "Description"
+msgstr ""
+"\n"
+"Description: "
#. Create the window.
-#, fuzzy
msgid "Service Discovery"
-msgstr "Service Discovery Info"
-
-#, fuzzy
+msgstr "Service Discovery"
+
msgid "_Browse"
-msgstr "_Browser:"
-
-#, fuzzy
+msgstr "_Browse"
+
msgid "Server does not exist"
-msgstr "User does not exist"
-
-#, fuzzy
+msgstr "Server does not exist"
+
msgid "Server does not support service discovery"
-msgstr "Server does not use any supported authentication method"
-
-#, fuzzy
+msgstr "Server does not support service discovery"
+
msgid "XMPP Service Discovery"
-msgstr "Service Discovery Info"
+msgstr "XMPP Service Discovery"
msgid "Allows browsing and registering services."
-msgstr ""
-
-#, fuzzy
+msgstr "Allows browsing and registering services."
+
msgid ""
"This plugin is useful for registering with legacy transports or other XMPP "
"services."
-msgstr "This plugin is useful for debugging XMPP servers or clients."
+msgstr ""
+"This plugin is useful for registering with legacy transports or other XMPP "
+"services."
msgid "Buddy is idle"
msgstr "Buddy is idle"
@@ -13664,10 +13420,10 @@
msgstr "Optional information:"
msgid "First name:"
-msgstr "Forename"
+msgstr "Forename:"
msgid "Last name:"
-msgstr "Surname"
+msgstr "Surname:"
msgid "Email:"
msgstr "Email:"
@@ -13786,13 +13542,12 @@
msgstr "Music Messaging Plugin for collaborative composition."
#. * summary
-#, fuzzy
msgid ""
"The Music Messaging Plugin allows a number of users to simultaneously work "
"on a piece of music by editing a common score in real-time."
msgstr ""
"The Music Messaging Plugin allows a number of users to simultaneously work "
-"on a piece of music by editting a common score in real-time."
+"on a piece of music by editing a common score in real-time."
#. ---------- "Notify For" ----------
msgid "Notify For"
@@ -13823,9 +13578,8 @@
msgid "Set window manager \"_URGENT\" hint"
msgstr "Set window manager \"_URGENT\" hint"
-#, fuzzy
msgid "_Flash window"
-msgstr "C_hat windows"
+msgstr "_Flash window"
#. Raise window method button
msgid "R_aise conversation window"
@@ -13905,16 +13659,14 @@
msgid "Hyperlink Color"
msgstr "Hyperlink Colour"
-#, fuzzy
msgid "Visited Hyperlink Color"
-msgstr "Hyperlink Colour"
+msgstr "Visited Hyperlink Colour"
msgid "Highlighted Message Name Color"
msgstr "Highlighted Messages Name Colour"
-#, fuzzy
msgid "Typing Notification Color"
-msgstr "Typing notification colour"
+msgstr "Typing Notification Colour"
msgid "GtkTreeView Horizontal Separation"
msgstr "GtkTreeView Horizontal Separation"
@@ -13945,23 +13697,20 @@
msgid "GTK+ Text Shortcut Theme"
msgstr "GTK+ Text Shortcut Theme"
-#, fuzzy
msgid "Disable Typing Notification Text"
-msgstr "Enable typing notification"
-
-#, fuzzy
+msgstr "Disable Typing Notification Text"
+
msgid "GTK+ Theme Control Settings"
-msgstr "Pidgin GTK+ Theme Control"
-
-#, fuzzy
+msgstr "GTK+ Theme Control Settings"
+
msgid "Colors"
-msgstr "Close"
+msgstr "Colours"
msgid "Fonts"
msgstr "Fonts"
msgid "Miscellaneous"
-msgstr ""
+msgstr "Miscellaneous"
msgid "Gtkrc File Tools"
msgstr "Gtkrc File Tools"
@@ -13994,18 +13743,16 @@
#, c-format
msgid "You can upgrade to %s %s today."
-msgstr ""
+msgstr "You can upgrade to %s %s today."
msgid "New Version Available"
msgstr "New Version Available"
-#, fuzzy
msgid "Later"
-msgstr "Date"
-
-#, fuzzy
+msgstr "Later"
+
msgid "Download Now"
-msgstr "Users on %s: %s"
+msgstr "Download Now"
#. *< type
#. *< ui_requirement
@@ -14047,13 +13794,12 @@
msgstr "Conversation Window Send Button."
#. *< summary
-#, fuzzy
msgid ""
"Adds a Send button to the entry area of the conversation window. Intended "
"for use when no physical keyboard is present."
msgstr ""
"Adds a Send button to the entry area of the conversation window. Intended "
-"for when no physical keyboard is present."
+"for use when no physical keyboard is present."
msgid "Duplicate Correction"
msgstr "Duplicate Correction"
@@ -14104,94 +13850,78 @@
msgid "Replaces text in outgoing messages according to user-defined rules."
msgstr "Replaces text in outgoing messages according to user-defined rules."
-#, fuzzy
msgid "Just logged in"
-msgstr "Not logged in"
-
-#, fuzzy
+msgstr "Just logged in"
+
msgid "Just logged out"
-msgstr "Not logged in"
+msgstr "Just logged out"
msgid ""
"Icon for Contact/\n"
"Icon for Unknown person"
msgstr ""
-
-#, fuzzy
+"Icon for Contact/\n"
+"Icon for Unknown person"
+
msgid "Icon for Chat"
-msgstr "Join a Chat"
-
-#, fuzzy
+msgstr "Icon for Chat"
+
msgid "Ignored"
-msgstr "Ignore"
-
-#, fuzzy
+msgstr "Ignored"
+
msgid "Founder"
-msgstr "Louder"
-
-#, fuzzy
+msgstr "Founder"
+
msgid "Operator"
-msgstr "Opera"
+msgstr "Operator"
msgid "Half Operator"
-msgstr ""
-
-#, fuzzy
+msgstr "Half Operator"
+
msgid "Authorization dialog"
-msgstr "Authorisation Given"
-
-#, fuzzy
+msgstr "Authorisation dialog"
+
msgid "Error dialog"
-msgstr "Error "
-
-#, fuzzy
+msgstr "Error dialog"
+
msgid "Information dialog"
-msgstr "Information"
+msgstr "Information dialog"
msgid "Mail dialog"
-msgstr ""
-
-#, fuzzy
+msgstr "Mail dialog"
+
msgid "Question dialog"
-msgstr "Request Dialog"
-
-#, fuzzy
+msgstr "Question dialog"
+
msgid "Warning dialog"
-msgstr "Warning Level"
+msgstr "Warning dialog"
msgid "What kind of dialog is this?"
-msgstr ""
-
-#, fuzzy
+msgstr "What kind of dialog is this?"
+
msgid "Status Icons"
-msgstr "Status for %s"
-
-#, fuzzy
+msgstr "Status Icons"
+
msgid "Chatroom Emblems"
-msgstr "Chat room locale"
-
-#, fuzzy
+msgstr "Chatroom Emblems"
+
msgid "Dialog Icons"
-msgstr "Save Icon"
-
-#, fuzzy
+msgstr "Dialog Icons"
+
msgid "Pidgin Icon Theme Editor"
-msgstr "Pidgin GTK+ Theme Control"
-
-#, fuzzy
+msgstr "Pidgin Icon Theme Editor"
+
msgid "Contact"
-msgstr "Contact Info"
-
-#, fuzzy
+msgstr "Contact"
+
msgid "Pidgin Buddylist Theme Editor"
-msgstr "Buddy List"
-
-#, fuzzy
+msgstr "Pidgin Buddylist Theme Editor"
+
msgid "Edit Buddylist Theme"
-msgstr "Buddy List"
+msgstr "Edit Buddylist Theme"
msgid "Edit Icon Theme"
-msgstr ""
+msgstr "Edit Icon Theme"
#. *< type
#. *< ui_requirement
@@ -14200,16 +13930,14 @@
#. *< priority
#. *< id
#. * description
-#, fuzzy
msgid "Pidgin Theme Editor"
-msgstr "Pidgin GTK+ Theme Control"
+msgstr "Pidgin Theme Editor"
#. *< name
#. *< version
#. * summary
-#, fuzzy
msgid "Pidgin Theme Editor."
-msgstr "Pidgin GTK+ Theme Control"
+msgstr "Pidgin Theme Editor."
#. *< type
#. *< ui_requirement
@@ -14378,7 +14106,6 @@
msgid "Options specific to Pidgin for Windows."
msgstr "Options specific to Pidgin for Windows."
-#, fuzzy
msgid ""
"Provides options specific to Pidgin for Windows, such as buddy list docking."
msgstr ""
@@ -14420,831 +14147,3 @@
#. * description
msgid "This plugin is useful for debbuging XMPP servers or clients."
msgstr "This plugin is useful for debugging XMPP servers or clients."
-
-#~ msgid "Cannot open socket"
-#~ msgstr "Cannot open socket"
-
-#~ msgid "Could not listen on socket"
-#~ msgstr "Could not listen on socket"
-
-#~ msgid "Unable to read socket"
-#~ msgstr "Unable to read socket"
-
-#~ msgid "Connection failed."
-#~ msgstr "Connection failed."
-
-#~ msgid "Server has disconnected"
-#~ msgstr "Server has disconnected"
-
-#~ msgid "Couldn't create socket"
-#~ msgstr "Couldn't create socket"
-
-#~ msgid "Couldn't connect to host"
-#~ msgstr "Couldn't connect to host"
-
-#~ msgid "Read error"
-#~ msgstr "Read error"
-
-#~ msgid ""
-#~ "Could not establish a connection with the server:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Could not establish a connection with the server:\n"
-#~ "%s"
-
-#~ msgid "Write error"
-#~ msgstr "Write error"
-
-#~ msgid "Last Activity"
-#~ msgstr "Last Activity"
-
-#~ msgid "Service Discovery Info"
-#~ msgstr "Service Discovery Info"
-
-#~ msgid "Service Discovery Items"
-#~ msgstr "Service Discovery Items"
-
-#~ msgid "Extended Stanza Addressing"
-#~ msgstr "Extended Stanza Addressing"
-
-#~ msgid "Multi-User Chat"
-#~ msgstr "Multi-User Chat"
-
-#~ msgid "Multi-User Chat Extended Presence Information"
-#~ msgstr "Multi-User Chat Extended Presence Information"
-
-#~ msgid "In-Band Bytestreams"
-#~ msgstr "In-Band Bytestreams"
-
-#~ msgid "Ad-Hoc Commands"
-#~ msgstr "Ad-Hoc Commands"
-
-#~ msgid "PubSub Service"
-#~ msgstr "PubSub Service"
-
-#~ msgid "SOCKS5 Bytestreams"
-#~ msgstr "SOCKS5 Bytestreams"
-
-#~ msgid "Out of Band Data"
-#~ msgstr "Out of Band Data"
-
-#~ msgid "XHTML-IM"
-#~ msgstr "XHTML-IM"
-
-#~ msgid "In-Band Registration"
-#~ msgstr "In-Band Registration"
-
-#~ msgid "User Location"
-#~ msgstr "User Location"
-
-#~ msgid "User Avatar"
-#~ msgstr "User Avatar"
-
-#~ msgid "Chat State Notifications"
-#~ msgstr "Chat State Notifications"
-
-#~ msgid "Software Version"
-#~ msgstr "Software Version"
-
-#~ msgid "Stream Initiation"
-#~ msgstr "Stream Initiation"
-
-#~ msgid "User Mood"
-#~ msgstr "User Mood"
-
-#~ msgid "User Activity"
-#~ msgstr "User Activity"
-
-#~ msgid "Entity Capabilities"
-#~ msgstr "Entity Capabilities"
-
-#~ msgid "Encrypted Session Negotiations"
-#~ msgstr "Encrypted Session Negotiations"
-
-#~ msgid "User Tune"
-#~ msgstr "User Tune"
-
-#~ msgid "Roster Item Exchange"
-#~ msgstr "Roster Item Exchange"
-
-#~ msgid "Reachability Address"
-#~ msgstr "Reachability Address"
-
-#~ msgid "User Profile"
-#~ msgstr "User Profile"
-
-#~ msgid "Jingle"
-#~ msgstr "Jingle"
-
-#~ msgid "Jingle Audio"
-#~ msgstr "Jingle Audio"
-
-#~ msgid "User Nickname"
-#~ msgstr "User Nickname"
-
-#~ msgid "Jingle ICE UDP"
-#~ msgstr "Jingle ICE UDP"
-
-#~ msgid "Jingle ICE TCP"
-#~ msgstr "Jingle ICE TCP"
-
-#~ msgid "Jingle Raw UDP"
-#~ msgstr "Jingle Raw UDP"
-
-#~ msgid "Jingle Video"
-#~ msgstr "Jingle Video"
-
-#~ msgid "Jingle DTMF"
-#~ msgstr "Jingle DTMF"
-
-#~ msgid "Message Receipts"
-#~ msgstr "Message Receipts"
-
-#~ msgid "Public Key Publishing"
-#~ msgstr "Public Key Publishing"
-
-#~ msgid "User Chatting"
-#~ msgstr "User Chatting"
-
-#~ msgid "User Browsing"
-#~ msgstr "User Browsing"
-
-#~ msgid "User Gaming"
-#~ msgstr "User Gaming"
-
-#~ msgid "User Viewing"
-#~ msgstr "User Viewing"
-
-#~ msgid "Stanza Encryption"
-#~ msgstr "Stanza Encryption"
-
-#~ msgid "Entity Time"
-#~ msgstr "Entity Time"
-
-#~ msgid "Delayed Delivery"
-#~ msgstr "Delayed Delivery"
-
-#~ msgid "Collaborative Data Objects"
-#~ msgstr "Collaborative Data Objects"
-
-#~ msgid "File Repository and Sharing"
-#~ msgstr "File Repository and Sharing"
-
-#~ msgid "STUN Service Discovery for Jingle"
-#~ msgstr "STUN Service Discovery for Jingle"
-
-#~ msgid "Simplified Encrypted Session Negotiation"
-#~ msgstr "Simplified Encrypted Session Negotiation"
-
-#~ msgid "Hop Check"
-#~ msgstr "Hop Check"
-
-#~ msgid "Read Error"
-#~ msgstr "Read Error"
-
-#~ msgid "Failed to connect to server."
-#~ msgstr "Failed to connect to server."
-
-#~ msgid "Read buffer full (2)"
-#~ msgstr "Read buffer full (2)"
-
-#~ msgid "Unparseable message"
-#~ msgstr "Unparseable message"
-
-#~ msgid "Couldn't connect to host: %s (%d)"
-#~ msgstr "Couldn't connect to host: %s (%d)"
-
-#~ msgid "Login failed (%s)."
-#~ msgstr "Login failed (%s)."
-
-#~ msgid ""
-#~ "You have been logged out because you logged in at another workstation."
-#~ msgstr ""
-#~ "You have been logged out because you logged in at another workstation."
-
-#~ msgid "Error. SSL support is not installed."
-#~ msgstr "Error: SSL support is not installed."
-
-#~ msgid "Incorrect password."
-#~ msgstr "Incorrect password."
-
-#~ msgid ""
-#~ "Could not connect to BOS server:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Could not connect to BOS server:\n"
-#~ "%s"
-
-#~ msgid "You may be disconnected shortly. Check %s for updates."
-#~ msgstr "You may be disconnected shortly. Check %s for updates."
-
-#~ msgid "Could Not Connect"
-#~ msgstr "Could Not Connect"
-
-#~ msgid "Invalid username."
-#~ msgstr "Invalid username."
-
-#, fuzzy
-#~ msgid "Could not decrypt server reply"
-#~ msgstr "Cannot get server information"
-
-#~ msgid "Connection lost"
-#~ msgstr "Connection lost"
-
-#~ msgid "Couldn't resolve host"
-#~ msgstr "Couldn't resolve host"
-
-#~ msgid "Connection closed (writing)"
-#~ msgstr "Connection closed (writing)"
-
-#~ msgid "Connection reset"
-#~ msgstr "Connection reset"
-
-#~ msgid "Error reading from socket: %s"
-#~ msgstr "Error reading from socket: %s"
-
-#~ msgid "Unable to connect to host"
-#~ msgstr "Unable to connect to host"
-
-#~ msgid "Could not write"
-#~ msgstr "Could not write"
-
-#~ msgid "Could not connect"
-#~ msgstr "Could not connect"
-
-#~ msgid "Could not create listen socket"
-#~ msgstr "Could not create listen socket"
-
-#~ msgid "Could not resolve hostname"
-#~ msgstr "Could not resolve hostname"
-
-#, fuzzy
-#~ msgid "Incorrect Password"
-#~ msgstr "Incorrect password"
-
-#~ msgid ""
-#~ "Could not establish a connection with %s:\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Could not establish a connection with %s:\n"
-#~ "%s"
-
-#~ msgid "Yahoo Japan"
-#~ msgstr "Yahoo Japan"
-
-#~ msgid "Japan Pager server"
-#~ msgstr "Japan Pager server"
-
-#~ msgid "Japan file transfer server"
-#~ msgstr "Japan file transfer server"
-
-#~ msgid ""
-#~ "Lost connection with server\n"
-#~ "%s"
-#~ msgstr ""
-#~ "Lost connection with server\n"
-#~ "%s"
-
-#~ msgid "Could not resolve host name"
-#~ msgstr "Could not resolve host name"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support "
-#~ "was found."
-#~ msgstr "Server requires TLS/SSL for login. No TLS/SSL support found."
-
-#~ msgid "Conversation Window Hiding"
-#~ msgstr "Conversation Window Hiding"
-
-#, fuzzy
-#~ msgid "Please select an image for the smiley."
-#~ msgstr "Please select your mood from the list."
-
-#~ msgid "Activate which ID?"
-#~ msgstr "Activate which ID?"
-
-#~ msgid "Cursor Color"
-#~ msgstr "Cursor Colour"
-
-#~ msgid "Secondary Cursor Color"
-#~ msgstr "Secondary Cursor Colour"
-
-#~ msgid "Interface colors"
-#~ msgstr "Interface colours"
-
-#~ msgid "Widget Sizes"
-#~ msgstr "Widget Sizes"
-
-#, fuzzy
-#~ msgid "Invite message"
-#~ msgstr "Insert in message"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please enter the name of the user you wish to invite,\n"
-#~ "along with an optional invite message."
-#~ msgstr ""
-#~ "Please enter the name of the user you wish to invite, along with an "
-#~ "optional invite message."
-
-#~ msgid "Unable to retrieve MSN Address Book"
-#~ msgstr "Unable to retrieve MSN Address Book"
-
-#, fuzzy
-#~ msgid "Connection to server lost (no data received within %d second)"
-#~ msgid_plural ""
-#~ "Connection to server lost (no data received within %d seconds)"
-#~ msgstr[0] "Connection to server lost (no data received within %d seconds)"
-#~ msgstr[1] "Connection to server lost (no data received within %d seconds)"
-
-#~ msgid ""
-#~ "You may be disconnected shortly. You may want to use TOC until this is "
-#~ "fixed. Check %s for updates."
-#~ msgstr ""
-#~ "You may be disconnected shortly. You may want to use TOC until this is "
-#~ "fixed. Check %s for updates."
-
-#, fuzzy
-#~ msgid "Add buddy Q&A"
-#~ msgstr "Add Buddy"
-
-#, fuzzy
-#~ msgid "Can not decrypt get server reply"
-#~ msgstr "Cannot get server information"
-
-#~ msgid "Keep alive error"
-#~ msgstr "Keep alive error"
-
-#, fuzzy
-#~ msgid ""
-#~ "Lost connection with server:\n"
-#~ "%d, %s"
-#~ msgstr ""
-#~ "Lost connection with server:\n"
-#~ "%s"
-
-#, fuzzy
-#~ msgid "Connecting server ..."
-#~ msgstr "Connect server"
-
-#~ msgid "Failed to send IM."
-#~ msgstr "Failed to send IM."
-
-#~ msgid "Looking up %s"
-#~ msgstr "Looking up %s"
-
-#~ msgid "Connect to %s failed"
-#~ msgstr "Connect to %s failed"
-
-#~ msgid "Signon: %s"
-#~ msgstr "Signon: %s"
-
-#~ msgid "Unable to write file %s."
-#~ msgstr "Unable to write file %s."
-
-#~ msgid "Unable to read file %s."
-#~ msgstr "Unable to read file %s."
-
-#~ msgid "Message too long, last %s bytes truncated."
-#~ msgstr "Message too long, last %s bytes truncated."
-
-#~ msgid "%s not currently logged in."
-#~ msgstr "%s not currently logged in."
-
-#~ msgid "Warning of %s not allowed."
-#~ msgstr "Warning of %s not allowed."
-
-#~ msgid ""
-#~ "A message has been dropped, you are exceeding the server speed limit."
-#~ msgstr ""
-#~ "A message has been dropped, you are exceeding the server speed limit."
-
-#~ msgid "Chat in %s is not available."
-#~ msgstr "Chat in %s is not available."
-
-#~ msgid "You are sending messages too fast to %s."
-#~ msgstr "You are sending messages too fast to %s."
-
-#~ msgid "You missed an IM from %s because it was too big."
-#~ msgstr "You missed an IM from %s because it was too big."
-
-#~ msgid "You missed an IM from %s because it was sent too fast."
-#~ msgstr "You missed an IM from %s because it was sent too fast."
-
-#~ msgid "Failure."
-#~ msgstr "Failure."
-
-#~ msgid "Too many matches."
-#~ msgstr "Too many matches."
-
-#~ msgid "Need more qualifiers."
-#~ msgstr "Need more qualifiers."
-
-#~ msgid "Dir service temporarily unavailable."
-#~ msgstr "Dir service temporarily unavailable."
-
-#~ msgid "Email lookup restricted."
-#~ msgstr "Email lookup restricted."
-
-#~ msgid "Keyword ignored."
-#~ msgstr "Keyword ignored."
-
-#~ msgid "No keywords."
-#~ msgstr "No keywords."
-
-#~ msgid "User has no directory information."
-#~ msgstr "User has no directory information."
-
-#~ msgid "Country not supported."
-#~ msgstr "Country not supported."
-
-#~ msgid "Failure unknown: %s."
-#~ msgstr "Failure unknown: %s."
-
-#~ msgid "Incorrect username or password."
-#~ msgstr "Incorrect username or password."
-
-#~ msgid "The service is temporarily unavailable."
-#~ msgstr "The service is temporarily unavailable."
-
-#~ msgid "Your warning level is currently too high to log in."
-#~ msgstr "Your warning level is currently too high to log in."
-
-#~ msgid ""
-#~ "You have been connecting and disconnecting too frequently. Wait ten "
-#~ "minutes and try again. If you continue to try, you will need to wait "
-#~ "even longer."
-#~ msgstr ""
-#~ "You have been connecting and disconnecting too frequently. Wait ten "
-#~ "minutes and try again. If you continue to try, you will need to wait "
-#~ "even longer."
-
-#~ msgid "An unknown signon error has occurred: %s."
-#~ msgstr "An unknown signon error has occurred: %s."
-
-#~ msgid "An unknown error, %d, has occurred. Info: %s"
-#~ msgstr "An unknown error, %d, has occurred. Info: %s"
-
-#~ msgid "Invalid Groupname"
-#~ msgstr "Invalid Groupname"
-
-#~ msgid "Connection Closed"
-#~ msgstr "Connection Closed"
-
-#~ msgid "Waiting for reply..."
-#~ msgstr "Waiting for reply..."
-
-#~ msgid "TOC has come back from its pause. You may now send messages again."
-#~ msgstr "TOC has come back from its pause. You may now send messages again."
-
-#~ msgid "Password Change Successful"
-#~ msgstr "Password Change Successful"
-
-#~ msgid "Get Dir Info"
-#~ msgstr "Get Dir Info"
-
-#~ msgid "Set Dir Info"
-#~ msgstr "Set Dir Info"
-
-#~ msgid "Could not open %s for writing!"
-#~ msgstr "Could not open %s for writing!"
-
-#~ msgid "File transfer failed; other side probably canceled."
-#~ msgstr "File transfer failed; other side probably cancelled."
-
-#~ msgid "Could not connect for transfer."
-#~ msgstr "Could not connect for transfer."
-
-#~ msgid "Could not write file header. The file will not be transferred."
-#~ msgstr "Could not write file header. The file will not be transferred."
-
-#~ msgid "Save As..."
-#~ msgstr "Save As..."
-
-#~ msgid "%s requests %s to accept %d file: %s (%.2f %s)%s%s"
-#~ msgid_plural "%s requests %s to accept %d files: %s (%.2f %s)%s%s"
-#~ msgstr[0] "%s requests %s to accept %d file: %s (%.2f %s)%s%s"
-#~ msgstr[1] "%s requests %s to accept %d files: %s (%.2f %s)%s%s"
-
-#~ msgid "%s requests you to send them a file"
-#~ msgstr "%s requests you to send them a file"
-
-#~ msgid "TOC Protocol Plugin"
-#~ msgstr "TOC Protocol Plug-in"
-
-#~ msgid "User information for %s unavailable"
-#~ msgstr "User information for %s unavailable"
-
-#~ msgid "%s Options"
-#~ msgstr "%s Options"
-
-#~ msgid "Proxy Options"
-#~ msgstr "Proxy Options"
-
-#~ msgid "By log size"
-#~ msgstr "By log size"
-
-#~ msgid "_Open Link in Browser"
-#~ msgstr "_Open Link in Browser"
-
-#~ msgid "ST_UN server:"
-#~ msgstr "ST_UN Server:"
-
-#, fuzzy
-#~ msgid "Smiley _Image"
-#~ msgstr "Save Image"
-
-#, fuzzy
-#~ msgid "Smiley S_hortcut"
-#~ msgstr "Keyboard Shortcuts"
-
-#~ msgid "_Flash window when chat messages are received"
-#~ msgstr "_Flash window when chat messages are received"
-
-#~ msgid "A group with the name already exists."
-#~ msgstr "A group with that name already exists."
-
-#~ msgid "Primary Information"
-#~ msgstr "Primary Information"
-
-#~ msgid "Blood Type"
-#~ msgstr "Blood Group"
-
-#, fuzzy
-#~ msgid "Update information"
-#~ msgstr "Update my information"
-
-#, fuzzy
-#~ msgid "Successed:"
-#~ msgstr "Speed:"
-
-#~ msgid ""
-#~ "Setting custom faces is not currently supported. Please choose an image "
-#~ "from %s."
-#~ msgstr ""
-#~ "Setting custom faces is not currently supported. Please choose an image "
-#~ "from %s."
-
-#~ msgid "Invalid QQ Face"
-#~ msgstr "Invalid QQ Face"
-
-#~ msgid "You rejected %d's request"
-#~ msgstr "You rejected %d's request"
-
-#~ msgid "Reject request"
-#~ msgstr "Reject request"
-
-#~ msgid "Add buddy with auth request failed"
-#~ msgstr "Add buddy with auth request failed"
-
-#, fuzzy
-#~ msgid "Add into %d's buddy list"
-#~ msgstr "Couldn't load buddy list"
-
-#, fuzzy
-#~ msgid "QQ Number Error"
-#~ msgstr "QQ Number"
-
-#~ msgid "Group Description"
-#~ msgstr "Group Description"
-
-#~ msgid "Auth"
-#~ msgstr "Auth"
-
-#~ msgid "Approve"
-#~ msgstr "Approve"
-
-#, fuzzy
-#~ msgid "Successed to join Qun %d, operated by admin %d"
-#~ msgstr "Your request to join group %d has been rejected by admin %d"
-
-#, fuzzy
-#~ msgid "[%d] removed from Qun \"%d\""
-#~ msgstr "You [%d] have left group \"%d\""
-
-#, fuzzy
-#~ msgid "[%d] added to Qun \"%d\""
-#~ msgstr "You [%d] have been added to group \"%d\""
-
-#~ msgid "I am a member"
-#~ msgstr "I am a member"
-
-#, fuzzy
-#~ msgid "I am requesting"
-#~ msgstr "Bad Request"
-
-#~ msgid "I am the admin"
-#~ msgstr "I am the admin"
-
-#~ msgid "Unknown status"
-#~ msgstr "Unknown status"
-
-#, fuzzy
-#~ msgid "Remove from Qun"
-#~ msgstr "Remove Group"
-
-#~ msgid "You entered a group ID outside the acceptable range"
-#~ msgstr "You entered a group ID outside the acceptable range"
-
-#~ msgid "Are you sure you want to leave this Qun?"
-#~ msgstr "Are you sure you want to leave this Qun?"
-
-#~ msgid "Do you want to approve the request?"
-#~ msgstr "Do you want to approve the request?"
-
-#, fuzzy
-#~ msgid "Change Qun member"
-#~ msgstr "Telephone Number"
-
-#, fuzzy
-#~ msgid "Change Qun information"
-#~ msgstr "Channel Information"
-
-#~ msgid "System Message"
-#~ msgstr "System Message"
-
-#~ msgid "Last Login IP: %s
\n"
-#~ msgstr "Last Login IP: %s
\n"
-
-#~ msgid "Last Login Time: %s\n"
-#~ msgstr "Last Login Time: %s\n"
-
-#~ msgid "Set My Information"
-#~ msgstr "Set My Information"
-
-#, fuzzy
-#~ msgid "Leave the QQ Qun"
-#~ msgstr "Leave this QQ Qun"
-
-#~ msgid "Block this buddy"
-#~ msgstr "Block this buddy"
-
-#, fuzzy
-#~ msgid "Error password: %s"
-#~ msgstr "Error changing password"
-
-#, fuzzy
-#~ msgid "Failed to connect all servers"
-#~ msgstr "Failed to connect to server."
-
-#, fuzzy
-#~ msgid "Connecting server %s, retries %d"
-#~ msgstr ""
-#~ "Connection error from %s server:\n"
-#~ "%s"
-
-#, fuzzy
-#~ msgid "Do you approve the requestion?"
-#~ msgstr "Do you want to approve the request?"
-
-#, fuzzy
-#~ msgid "Do you add the buddy?"
-#~ msgstr "Do you want to add this buddy?"
-
-#, fuzzy
-#~ msgid "%s added you [%s] to buddy list"
-#~ msgstr "%s has added you [%s] to his or her buddy list"
-
-#, fuzzy
-#~ msgid "QQ Budy"
-#~ msgstr "Buddy"
-
-#~ msgid "%s wants to add you [%s] as a friend"
-#~ msgstr "%s wants to add you [%s] as a friend"
-
-#, fuzzy
-#~ msgid "%s is not in buddy list"
-#~ msgstr "%s is not in your buddy list"
-
-#, fuzzy
-#~ msgid "Would you add?"
-#~ msgstr "Would you like to add this person?"
-
-#, fuzzy
-#~ msgid "QQ Server Notice"
-#~ msgstr "Server port"
-
-#, fuzzy
-#~ msgid "Network disconnected"
-#~ msgstr "Remote disconnected"
-
-#~ msgid "developer"
-#~ msgstr "developer"
-
-#~ msgid "XMPP developer"
-#~ msgstr "XMPP developer"
-
-#~ msgid "Artists"
-#~ msgstr "Artists"
-
-#~ msgid ""
-#~ "You are using %s version %s. The current version is %s. You can get it "
-#~ "from %s
"
-#~ msgstr ""
-#~ "You are using %s version %s. The current version is %s. You can get it "
-#~ "from %s
"
-
-#~ msgid "ChangeLog:
%s"
-#~ msgstr "ChangeLog:
%s"
-
-#~ msgid "EOF while reading from resolver process"
-#~ msgstr "EOF while reading from resolver process"
-
-#~ msgid "Error setting socket options"
-#~ msgstr "Error setting socket options"
-
-#~ msgid ""
-#~ "Windows Live ID authentication: cannot find authenticate token in server "
-#~ "response"
-#~ msgstr ""
-#~ "Windows Live ID authentication: cannot find authenticate token in server "
-#~ "response"
-
-#~ msgid "Windows Live ID authentication Failed"
-#~ msgstr "Windows Live ID authentication failed"
-
-#~ msgid "Too evil (sender)"
-#~ msgstr "Too evil (sender)"
-
-#~ msgid "Too evil (receiver)"
-#~ msgstr "Too evil (receiver)"
-
-#~ msgid "Available Message"
-#~ msgstr "Available Message"
-
-#~ msgid "Away Message"
-#~ msgstr "Away Message"
-
-#~ msgid "(retrieving)"
-#~ msgstr " (retrieving)"
-
-#~ msgid "Your information has been updated"
-#~ msgstr "Your information has been updated"
-
-#~ msgid "Input your reason:"
-#~ msgstr "Enter your reason:"
-
-#~ msgid "You have successfully removed a buddy"
-#~ msgstr "You have successfully removed a buddy"
-
-#~ msgid "You have successfully removed yourself from your friend's buddy list"
-#~ msgstr ""
-#~ "You have successfully removed yourself from your friend's buddy list"
-
-#~ msgid "You have added %d to buddy list"
-#~ msgstr "You have added %d to buddy list"
-
-#~ msgid "Invalid QQid"
-#~ msgstr "Invalid QQid"
-
-#~ msgid "Please enter external group ID"
-#~ msgstr "Please enter external group ID"
-
-#~ msgid "Reason: %s"
-#~ msgstr "Reason: %s"
-
-#~ msgid "Your request to join group %d has been approved by admin %d"
-#~ msgstr "Your request to join group %d has been approved by admin %d"
-
-#~ msgid "I am applying to join"
-#~ msgstr "I am applying to join"
-
-#~ msgid "You have successfully left the group"
-#~ msgstr "You have successfully left the group"
-
-#~ msgid "QQ Group Auth"
-#~ msgstr "QQ Group Auth"
-
-#~ msgid "Your authorization request has been accepted by the QQ server"
-#~ msgstr "Your authorisation request has been accepted by the QQ server"
-
-#~ msgid "Code [0x%02X]: %s"
-#~ msgstr "Code [0x%02X]: %s"
-
-#~ msgid "Group Operation Error"
-#~ msgstr "Group Operation Error"
-
-#~ msgid "Enter your reason:"
-#~ msgstr "Enter your reason:"
-
-#~ msgid "Unable to login. Check debug log."
-#~ msgstr "Unable to login. Check debug log"
-
-#~ msgid "TCP Address"
-#~ msgstr "TCP Address"
-
-#~ msgid "UDP Address"
-#~ msgstr "UDP Address"
-
-#~ msgid "Show Login Information"
-#~ msgstr "Show Login Information"
-
-#~ msgid "Login failed, no reply"
-#~ msgstr "Login failed; no reply"
-
-#~ msgid "User %s rejected your request"
-#~ msgstr "User %s rejected your request"
-
-#~ msgid "User %s approved your request"
-#~ msgstr "User %s approved your request"
diff -r fe75cd926073 -r 67143ecbddb1 po/nl.po
--- a/po/nl.po Fri Jul 24 01:18:07 2009 +0000
+++ b/po/nl.po Mon Jul 27 03:14:08 2009 +0000
@@ -4637,7 +4637,7 @@
msgstr "Verbinden met server"
msgid "File transfer proxies"
-msgstr "Bestandsoverdracht poortnummer"
+msgstr "Bestandsoverdracht proxy"
msgid "BOSH URL"
msgstr "BOSH koppeling"
diff -r fe75cd926073 -r 67143ecbddb1 po/pt_BR.po
--- a/po/pt_BR.po Fri Jul 24 01:18:07 2009 +0000
+++ b/po/pt_BR.po Mon Jul 27 03:14:08 2009 +0000
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: Pidgin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-20 11:50-0700\n"
+"POT-Creation-Date: 2009-07-25 09:57-0400\n"
"PO-Revision-Date: 2009-02-24 22:11-0300\n"
"Last-Translator: Rodrigo Luiz Marques Flores