# HG changeset patch # User Sadrul Habib Chowdhury # Date 1243560465 0 # Node ID dc7ee92810a5e737830bda4fb5c0ee09f43153ac # Parent fd78c7022f81a9f471a968de75519976bfcc4075# Parent e4270698da3902aa02af7226f991ad1d2cddfb20 merge of '4cd185213b3eb4f0bc9ce8cd9c38ab00772f9a17' and '8b4a85b321d7cb880862657b623f7ffed5c58836' diff -r fd78c7022f81 -r dc7ee92810a5 ChangeLog --- a/ChangeLog Tue May 26 16:12:53 2009 +0000 +++ b/ChangeLog Fri May 29 01:27:45 2009 +0000 @@ -50,9 +50,7 @@ to require SSL not being respected. Yahoo: - * P2P file transfers. (Sulabh Mahajan) - * MSN Interoperability by adding MSN buddies as 'msn/user@example.com'. - (Sulabh Mahajan) + * P2P file transfers. (Sulabh Mahajan) * Sending text messages (address to +). (Sulabh Mahajan) * Addition of MSN buddies to Yahoo accounts by adding them as @@ -88,6 +86,35 @@ especially for users of braille terminals, screen readers etc. * Added a TinyURL plugin, which aids copying longer URLs. +version 2.5.6 (05/19/2009): + libpurple: + * Improve sleep behavior by aggregation of longer timeouts on second + boundaries to allow better power saving. (Arunan Balasubramaniam) + * Fix various crashes on exit. + * Make XML parsing more resilient to interactions with other libraries. + This, along with the fix for libxml2 bug 564217, fixes the crashes + on connect in XMPP with recent gst-plugins-bad (see #8830 for details). + * Many security related fixes. + + IRC: + * Correctly handle WHOIS for users who are joined to a large number of + channels. + * Notify the user if a /nick command fails, rather than trying + fallback nicks. + + MSN: + * Fix a race condition causing occasional Pidgin crashes. + * Fix some errors about the friendly name changing too fast caused + by MSN/Yahoo integration buddies. + + XMPP: + * Less likely to pop up a new conversation window in disregard of + the "Hide new IM conversations" preference. + + Yahoo: + * Fix a crash when sending very long messages. + * Fix a bug where UTF-8 status messages get garbled when going idle. + version 2.5.5 (03/01/2009): libpurple: * Fix a crash when removing an account with an unknown protocol id. diff -r fd78c7022f81 -r dc7ee92810a5 configure.ac --- a/configure.ac Tue May 26 16:12:53 2009 +0000 +++ b/configure.ac Fri May 29 01:27:45 2009 +0000 @@ -144,7 +144,7 @@ ;; esac -ALL_LINGUAS="af am ar az be@latin bg bn bs ca ca@valencia cs da de dz el en_AU en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hu id it ja ka km kn ko ku lo lt mk mn my_MM nb ne nl nn oc pa pl pt_BR pt ps ro ru si sk sl sq sr sr@latin sv ta te th tr uk ur vi xh zh_CN zh_HK zh_TW" +ALL_LINGUAS="af am ar az be@latin bg bn bs ca ca@valencia cs da de dz el en_AU en_CA en_GB eo es et eu fa fi fr ga gl gu he hi hu hy id it ja ka km kn ko ku lo lt mk mn my_MM nb ne nl nn oc pa pl pt_BR pt ps ro ru si sk sl sq sr sr@latin sv sw ta te th tr uk ur vi xh zh_CN zh_HK zh_TW" AM_GLIB_GNU_GETTEXT dnl If we don't have msgfmt, then po/ is going to fail -- ensure that diff -r fd78c7022f81 -r dc7ee92810a5 libpurple/protocols/irc/cmds.c --- a/libpurple/protocols/irc/cmds.c Tue May 26 16:12:53 2009 +0000 +++ b/libpurple/protocols/irc/cmds.c Fri May 29 01:27:45 2009 +0000 @@ -142,10 +142,10 @@ if (purple_conversation_get_type(convo) == PURPLE_CONV_TYPE_CHAT) serv_got_chat_in(gc, purple_conv_chat_get_id(PURPLE_CONV_CHAT(convo)), purple_connection_get_display_name(gc), - 0, action, time(NULL)); + PURPLE_MESSAGE_SEND, action, time(NULL)); else purple_conv_im_write(PURPLE_CONV_IM(convo), purple_connection_get_display_name(gc), - action, 0, time(NULL)); + action, PURPLE_MESSAGE_SEND, time(NULL)); g_free(action); } diff -r fd78c7022f81 -r dc7ee92810a5 libpurple/protocols/irc/irc.c --- a/libpurple/protocols/irc/irc.c Tue May 26 16:12:53 2009 +0000 +++ b/libpurple/protocols/irc/irc.c Fri May 29 01:27:45 2009 +0000 @@ -306,7 +306,7 @@ if (strpbrk(username, " \t\v\r\n") != NULL) { purple_connection_error_reason (gc, PURPLE_CONNECTION_ERROR_INVALID_SETTINGS, - _("IRC nicks may not contain whitespace")); + _("IRC nick and server may not contain whitespace")); return; } diff -r fd78c7022f81 -r dc7ee92810a5 libpurple/protocols/jabber/iq.c --- a/libpurple/protocols/jabber/iq.c Tue May 26 16:12:53 2009 +0000 +++ b/libpurple/protocols/jabber/iq.c Fri May 29 01:27:45 2009 +0000 @@ -495,6 +495,8 @@ jabber_iq_register_handler("session", "http://www.google.com/session", jabber_google_session_parse); #endif + jabber_iq_register_handler("block", "urn:xmpp:blocking", jabber_blocklist_parse_push); + jabber_iq_register_handler("unblock", "urn:xmpp:blocking", jabber_blocklist_parse_push); jabber_iq_register_handler("time", "urn:xmpp:time", jabber_iq_time_parse); } diff -r fd78c7022f81 -r dc7ee92810a5 libpurple/protocols/jabber/jabber.c --- a/libpurple/protocols/jabber/jabber.c Tue May 26 16:12:53 2009 +0000 +++ b/libpurple/protocols/jabber/jabber.c Fri May 29 01:27:45 2009 +0000 @@ -1652,6 +1652,73 @@ jabber_presence_send(js, FALSE); } +void jabber_blocklist_parse_push(JabberStream *js, const char *from, + JabberIqType type, const char *id, + xmlnode *child) +{ + JabberIq *result; + xmlnode *item; + PurpleAccount *account; + gboolean is_block; + + if (!jabber_is_own_account(js, from)) { + xmlnode *error, *x; + result = jabber_iq_new(js, JABBER_IQ_ERROR); + xmlnode_set_attrib(result->node, "id", id); + if (from) + xmlnode_set_attrib(result->node, "to", from); + + error = xmlnode_new_child(result->node, "error"); + xmlnode_set_attrib(error, "type", "cancel"); + x = xmlnode_new_child(error, "not-allowed"); + xmlnode_set_namespace(x, "urn:ietf:params:xml:ns:xmpp-stanzas"); + + jabber_iq_send(result); + return; + } + + account = purple_connection_get_account(js->gc); + is_block = g_str_equal(child->name, "block"); + + item = xmlnode_get_child(child, "item"); + if (!is_block && item == NULL) { + /* Unblock everyone */ + purple_debug_info("jabber", "Received unblock push. Unblocking everyone.\n"); + + while (account->deny != NULL) { + purple_privacy_deny_remove(account, account->deny->data, TRUE); + } + } else if (item == NULL) { + /* An empty is bogus */ + xmlnode *error, *x; + result = jabber_iq_new(js, JABBER_IQ_ERROR); + xmlnode_set_attrib(result->node, "id", id); + + error = xmlnode_new_child(result->node, "error"); + xmlnode_set_attrib(error, "type", "modify"); + x = xmlnode_new_child(error, "bad-request"); + xmlnode_set_namespace(x, "urn:ietf:params:xml:ns:xmpp-stanzas"); + + jabber_iq_send(result); + return; + } else { + for ( ; item; item = xmlnode_get_next_twin(item)) { + const char *jid = xmlnode_get_attrib(item, "jid"); + if (jid == NULL || *jid == '\0') + continue; + + if (is_block) + purple_privacy_deny_add(account, jid, TRUE); + else + purple_privacy_deny_remove(account, jid, TRUE); + } + } + + result = jabber_iq_new(js, JABBER_IQ_RESULT); + xmlnode_set_attrib(result->node, "id", id); + jabber_iq_send(result); +} + static void jabber_blocklist_parse(JabberStream *js, const char *from, JabberIqType type, const char *id, xmlnode *packet, gpointer data) @@ -1663,13 +1730,23 @@ "blocklist", "urn:xmpp:blocking"); account = purple_connection_get_account(js->gc); - if (blocklist == NULL) + if (type == JABBER_IQ_ERROR || blocklist == NULL) return; + /* This is the only privacy method supported by XEP-0191 */ + if (account->perm_deny != PURPLE_PRIVACY_DENY_USERS) + account->perm_deny = PURPLE_PRIVACY_DENY_USERS; + + /* + * TODO: When account->deny is something more than a hash table, this can + * be re-written to find the set intersection and difference. + */ + while (account->deny) + purple_privacy_deny_remove(account, account->deny->data, TRUE); + item = xmlnode_get_child(blocklist, "item"); while (item != NULL) { const char *jid = xmlnode_get_attrib(item, "jid"); - purple_privacy_deny_add(account, jid, TRUE); item = xmlnode_get_next_twin(item); } diff -r fd78c7022f81 -r dc7ee92810a5 libpurple/protocols/jabber/jabber.h --- a/libpurple/protocols/jabber/jabber.h Tue May 26 16:12:53 2009 +0000 +++ b/libpurple/protocols/jabber/jabber.h Fri May 29 01:27:45 2009 +0000 @@ -347,6 +347,9 @@ void jabber_login(PurpleAccount *account); void jabber_close(PurpleConnection *gc); void jabber_idle_set(PurpleConnection *gc, int idle); +void jabber_blocklist_parse_push(JabberStream *js, const char *from, + JabberIqType type, const char *id, + xmlnode *child); void jabber_request_block_list(JabberStream *js); void jabber_add_deny(PurpleConnection *gc, const char *who); void jabber_rem_deny(PurpleConnection *gc, const char *who); diff -r fd78c7022f81 -r dc7ee92810a5 pidgin/gtkdialogs.c --- a/pidgin/gtkdialogs.c Tue May 26 16:12:53 2009 +0000 +++ b/pidgin/gtkdialogs.c Fri May 29 01:27:45 2009 +0000 @@ -186,6 +186,7 @@ {N_("Hebrew"), "he", "Shalom Craimer", "scraimer@gmail.com"}, {N_("Hindi"), "hi", "Ravishankar Shrivastava", "raviratlami@yahoo.com"}, {N_("Hungarian"), "hu", "Kelemen Gábor", "kelemeng@gnome.hu"}, + {N_("Armenian"), "hy", "David Avsharyan", "avsharyan@gmail.com"}, {N_("Indonesian"), "id", "Rai S. Regawa", "raireg@yahoo.com"}, {N_("Italian"), "it", "Claudio Satriano", "satriano@na.infn.it"}, {N_("Japanese"), "ja", "Takashi Aihana", "aihana@gnome.gr.jp"}, @@ -223,6 +224,7 @@ {N_("Sinhala"), "si", "Danishka Navin", "snavin@redhat.com"}, {N_("Sinhala"), "si", "Yajith Ajantha Dayarathna", "yajith@gmail.com"}, {N_("Swedish"), "sv", "Peter Hjalmarsson", "xake@telia.com"}, + {N_("Swahili"), "sw", "Paul Msegeya", "msegeya@gmail.com"}, {N_("Tamil"), "ta", "Viveka Nathan K", "vivekanathan@users.sourceforge.net"}, {N_("Telugu"), "te", "Mr. Subbaramaih", "info.gist@cdac.in"}, {N_("Thai"), "th", "Isriya Paireepairit", "markpeak@gmail.com"}, diff -r fd78c7022f81 -r dc7ee92810a5 po/ChangeLog --- a/po/ChangeLog Tue May 26 16:12:53 2009 +0000 +++ b/po/ChangeLog Fri May 29 01:27:45 2009 +0000 @@ -1,6 +1,13 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul version 2.6.0 + * Armenian translation added (David Avsharyan) + * Lao translation updated (Anousak Souphavah) + * Slovenian translation updated (Martin Srebotnjak) + * Swahili translation added (Paul Msegeya) + +version 2.5.6 + * German translation updated (Björn Vogt) version 2.5.5 * Afrikaans translation updated (Friedel Wolff) diff -r fd78c7022f81 -r dc7ee92810a5 po/hy.po --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/po/hy.po Fri May 29 01:27:45 2009 +0000 @@ -0,0 +1,13365 @@ +# translation of am.po to Armenian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David Avsharyan , 2009. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: am\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-26 20:21-0700\n" +"PO-Revision-Date: 2009-05-20 17:37+0400\n" +"Last-Translator: David Avsharyan \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#. Translators may want to transliterate the name. +#. It is not to be translated. +msgid "Finch" +msgstr "Սերինոս" + +#, c-format +msgid "%s. Try `%s -h' for more information.\n" +msgstr "%s. Ավելի շատ ինֆորմացիայի համար հավագեք `%s -h'.\n" + +#, c-format +msgid "" +"%s\n" +"Usage: %s [OPTION]...\n" +"\n" +" -c, --config=DIR use DIR for config files\n" +" -d, --debug print debugging messages to stderr\n" +" -h, --help display this help and exit\n" +" -n, --nologin don't automatically login\n" +" -v, --version display the current version and exit\n" +msgstr "" +"%s\n" +"Կիրառում: %s [OPTION]...\n" +"\n" +" -c, --config=DIR օգտագործել DIR կոնֆիգուրացիոն ֆայլերի համար\n" +" -d, --debug կարգաբերվող հաղորդագրությունները տպել դեպի ստանդարտ " +"սխալների հոսք\n" +" -h, --help ցույց տալ այս օգնությունը և դուրս գալ\n" +" -n, --nologin ոչ ինքնաբերաբար մուտք\n" +" -v, --version ցույց տալ ընթացիկ տարբերակը և դուրս գալ\n" + +#, c-format +msgid "" +"%s encountered errors migrating your settings from %s to %s. Please " +"investigate and complete the migration by hand. Please report this error at " +"http://developer.pidgin.im" +msgstr "" + +#, fuzzy +msgid "Error" +msgstr "Սխալներզ" + +msgid "Account was not added" +msgstr "" + +msgid "Username of an account must be non-empty." +msgstr "Օգտագործողի անունը ..." + +msgid "New mail notifications" +msgstr "Նոր նամակի ծանուցումներ" + +msgid "Remember password" +msgstr "Հիշել գաղտնաբառը" + +msgid "There are no protocol plugins installed." +msgstr "Այնտեղ տեղադրված չէ պրոտոկոլի ավելացումներ․" + +msgid "(You probably forgot to 'make install'.)" +msgstr "(Հավանաբար դուք մոռացել եք անեք 'make install'.)" + +msgid "Modify Account" +msgstr "Ձևափոխել Հաշիվը" + +msgid "New Account" +msgstr "Նոր Հաշիվ" + +msgid "Protocol:" +msgstr "Արձանագրություն։" + +msgid "Username:" +msgstr "Օգտագործողի անունը։" + +msgid "Password:" +msgstr "Գաղտնաբառ։" + +msgid "Alias:" +msgstr "Փոխանուն։" + +#. Register checkbox +msgid "Create this account on the server" +msgstr "Ստեղծել այս հաշիվը սերվերի վրա" + +#. Cancel button +#. Cancel +msgid "Cancel" +msgstr "Չեղյալ համարել" + +#. Save button +#. Save +msgid "Save" +msgstr "Պահպանել" + +#, c-format +msgid "Are you sure you want to delete %s?" +msgstr "Դուք համոզված եք, որ ցանկանում եք ջնջել %s?" + +msgid "Delete Account" +msgstr "Ջնջել Հաշիվը" + +#. Delete button +msgid "Delete" +msgstr "Ջնջել" + +msgid "Accounts" +msgstr "Հաշիվներ" + +msgid "You can enable/disable accounts from the following list." +msgstr "Դուք կարող եք միացնել/անջատել հաշիվները հետևյալ ցանկից․" + +#. Add button +msgid "Add" +msgstr "Ավելացնել" + +#. Modify button +msgid "Modify" +msgstr "Փոփոխել" + +#, c-format +msgid "%s%s%s%s has made %s his or her buddy%s%s" +msgstr "" + +msgid "Add buddy to your list?" +msgstr "" + +#, c-format +msgid "%s%s%s%s wants to add %s to his or her buddy list%s%s" +msgstr "" + +msgid "Authorize buddy?" +msgstr "" + +msgid "Authorize" +msgstr "Լիազորում" + +msgid "Deny" +msgstr "Մերժել" + +#, c-format +msgid "" +"Online: %d\n" +"Total: %d" +msgstr "" +"Կապի մեջ: %d\n" +"Ընդհանուր: %d" + +#, c-format +msgid "Account: %s (%s)" +msgstr "Հաշիվ: %s (%s" + +#, c-format +msgid "" +"\n" +"Last Seen: %s ago" +msgstr "" +"\n" +"Last Seen: %s ago" + +msgid "Default" +msgstr "" + +msgid "You must provide a username for the buddy." +msgstr "" + +msgid "You must provide a group." +msgstr "" + +msgid "You must select an account." +msgstr "" + +msgid "The selected account is not online." +msgstr "" + +msgid "Error adding buddy" +msgstr "" + +msgid "Username" +msgstr "" + +msgid "Alias (optional)" +msgstr "" + +msgid "Add in group" +msgstr "" + +msgid "Account" +msgstr "" + +msgid "Add Buddy" +msgstr "" + +msgid "Please enter buddy information." +msgstr "" + +msgid "Chats" +msgstr "" + +#. Extract their Name and put it in +msgid "Name" +msgstr "" + +msgid "Alias" +msgstr "" + +msgid "Group" +msgstr "" + +msgid "Auto-join" +msgstr "" + +msgid "Add Chat" +msgstr "" + +msgid "You can edit more information from the context menu later." +msgstr "" + +msgid "Error adding group" +msgstr "" + +msgid "You must give a name for the group to add." +msgstr "" + +msgid "Add Group" +msgstr "" + +msgid "Enter the name of the group" +msgstr "" + +msgid "Edit Chat" +msgstr "" + +msgid "Please Update the necessary fields." +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "Edit Settings" +msgstr "" + +msgid "Information" +msgstr "" + +msgid "Retrieving..." +msgstr "" + +msgid "Get Info" +msgstr "" + +msgid "Add Buddy Pounce" +msgstr "" + +msgid "Send File" +msgstr "" + +msgid "Blocked" +msgstr "" + +msgid "Show when offline" +msgstr "" + +#, c-format +msgid "Please enter the new name for %s" +msgstr "" + +msgid "Rename" +msgstr "" + +msgid "Set Alias" +msgstr "" + +msgid "Enter empty string to reset the name." +msgstr "" + +msgid "Removing this contact will also remove all the buddies in the contact" +msgstr "" + +msgid "Removing this group will also remove all the buddies in the group" +msgstr "" + +#, c-format +msgid "Are you sure you want to remove %s?" +msgstr "" + +#. XXX: anything to do with the returned ui-handle? +msgid "Confirm Remove" +msgstr "" + +msgid "Remove" +msgstr "" + +#. Buddy List +msgid "Buddy List" +msgstr "" + +msgid "Place tagged" +msgstr "" + +msgid "Toggle Tag" +msgstr "" + +msgid "View Log" +msgstr "" + +#. General +msgid "Nickname" +msgstr "" + +#. Never know what those translations might end up like... +#. Idle stuff +msgid "Idle" +msgstr "" + +msgid "On Mobile" +msgstr "" + +msgid "New..." +msgstr "" + +msgid "Saved..." +msgstr "" + +msgid "Plugins" +msgstr "" + +msgid "Block/Unblock" +msgstr "" + +msgid "Block" +msgstr "" + +msgid "Unblock" +msgstr "" + +msgid "" +"Please enter the username or alias of the person you would like to Block/" +"Unblock." +msgstr "" + +#. Not multiline +#. Not masked? +#. No hints? +msgid "OK" +msgstr "OK" + +msgid "New Instant Message" +msgstr "" + +msgid "Please enter the username or alias of the person you would like to IM." +msgstr "" + +msgid "Channel" +msgstr "Ալիք" + +msgid "Join a Chat" +msgstr "Միանալ զրույցին" + +msgid "Please enter the name of the chat you want to join." +msgstr "" + +msgid "Join" +msgstr "Միանալ" + +msgid "" +"Please enter the username or alias of the person whose log you would like to " +"view." +msgstr "" + +#. Create the "Options" frame. +msgid "Options" +msgstr "" + +msgid "Send IM..." +msgstr "" + +msgid "Block/Unblock..." +msgstr "Փակել/Բացել" + +msgid "Join Chat..." +msgstr "Միանալ զրույցին ... " + +msgid "View Log..." +msgstr "Նայել գրառումները․․․" + +msgid "View All Logs" +msgstr "Նայել մատյանի բոլոր գրառումները" + +msgid "Show" +msgstr "Ցույց տալ" + +msgid "Empty groups" +msgstr "Դատարկ խմբեր" + +msgid "Offline buddies" +msgstr "" + +msgid "Sort" +msgstr "Դասակարգել" + +msgid "By Status" +msgstr "Ըստ " + +msgid "Alphabetically" +msgstr "" + +msgid "By Log Size" +msgstr "" + +msgid "Buddy" +msgstr "" + +msgid "Chat" +msgstr "Զրույց" + +msgid "Grouping" +msgstr "" + +msgid "Certificate Import" +msgstr "" + +msgid "Specify a hostname" +msgstr "" + +msgid "Type the host name this certificate is for." +msgstr "" + +#, c-format +msgid "" +"File %s could not be imported.\n" +"Make sure that the file is readable and in PEM format.\n" +msgstr "" + +msgid "Certificate Import Error" +msgstr "" + +msgid "X.509 certificate import failed" +msgstr "" + +msgid "Select a PEM certificate" +msgstr "" + +#, c-format +msgid "" +"Export to file %s failed.\n" +"Check that you have write permission to the target path\n" +msgstr "" + +msgid "Certificate Export Error" +msgstr "" + +msgid "X.509 certificate export failed" +msgstr "" + +msgid "PEM X.509 Certificate Export" +msgstr "" + +#, c-format +msgid "Certificate for %s" +msgstr "" + +#, c-format +msgid "" +"Common name: %s\n" +"\n" +"SHA1 fingerprint:\n" +"%s" +msgstr "" + +msgid "SSL Host Certificate" +msgstr "" + +#, c-format +msgid "Really delete certificate for %s?" +msgstr "" + +msgid "Confirm certificate delete" +msgstr "" + +msgid "Certificate Manager" +msgstr "" + +#. Creating the user splits +msgid "Hostname" +msgstr "" + +msgid "Info" +msgstr "" + +#. Close button +msgid "Close" +msgstr "" + +#, c-format +msgid "%s (%s)" +msgstr "" + +#, c-format +msgid "%s disconnected." +msgstr "" + +#, c-format +msgid "" +"%s\n" +"\n" +"Finch will not attempt to reconnect the account until you correct the error " +"and re-enable the account." +msgstr "" + +msgid "Re-enable Account" +msgstr "" + +msgid "" +"The account has disconnected and you are no longer in this chat. You will be " +"automatically rejoined in the chat when the account reconnects." +msgstr "" + +msgid "No such command." +msgstr "" + +msgid "Syntax Error: You typed the wrong number of arguments to that command." +msgstr "" + +msgid "Your command failed for an unknown reason." +msgstr "" + +msgid "That command only works in chats, not IMs." +msgstr "" + +msgid "That command only works in IMs, not chats." +msgstr "" + +msgid "That command doesn't work on this protocol." +msgstr "" + +msgid "Message was not sent, because you are not signed on." +msgstr "" + +#, c-format +msgid "%s (%s -- %s)" +msgstr "" + +#, c-format +msgid "%s [%s]" +msgstr "" + +#, c-format +msgid "" +"\n" +"%s is typing..." +msgstr "" + +msgid "You have left this chat." +msgstr "" + +msgid "Logging started. Future messages in this conversation will be logged." +msgstr "" + +msgid "" +"Logging stopped. Future messages in this conversation will not be logged." +msgstr "" + +msgid "Send To" +msgstr "" + +msgid "Conversation" +msgstr "" + +msgid "Clear Scrollback" +msgstr "" + +msgid "Show Timestamps" +msgstr "" + +msgid "Add Buddy Pounce..." +msgstr "" + +msgid "Invite..." +msgstr "" + +msgid "Enable Logging" +msgstr "" + +msgid "Enable Sounds" +msgstr "" + +msgid " " +msgstr "" + +#, c-format +msgid "List of %d user:\n" +msgid_plural "List of %d users:\n" +msgstr[0] "" +msgstr[1] "" + +msgid "Supported debug options are: version" +msgstr "" + +msgid "No such command (in this context)." +msgstr "" + +msgid "" +"Use \"/help <command>\" for help on a specific command.\n" +"The following commands are available in this context:\n" +msgstr "" + +#, c-format +msgid "" +"%s is not a valid message class. See '/help msgcolor' for valid message " +"classes." +msgstr "" + +#, c-format +msgid "%s is not a valid color. See '/help msgcolor' for valid colors." +msgstr "" + +msgid "" +"say <message>: Send a message normally as if you weren't using a " +"command." +msgstr "" + +msgid "me <action>: Send an IRC style action to a buddy or chat." +msgstr "" + +msgid "" +"debug <option>: Send various debug information to the current " +"conversation." +msgstr "" + +msgid "clear: Clears the conversation scrollback." +msgstr "" + +msgid "help <command>: Help on a specific command." +msgstr "" + +msgid "users: Show the list of users in the chat." +msgstr "" + +msgid "plugins: Show the plugins window." +msgstr "" + +msgid "buddylist: Show the buddylist." +msgstr "" + +msgid "accounts: Show the accounts window." +msgstr "" + +msgid "debugwin: Show the debug window." +msgstr "" + +msgid "prefs: Show the preference window." +msgstr "" + +msgid "statuses: Show the savedstatuses window." +msgstr "" + +msgid "" +"msgcolor <class> <foreground> <background>: Set the color " +"for different classes of messages in the conversation window.
<" +"class>: receive, send, highlight, action, timestamp
<foreground/" +"background>: black, red, green, blue, white, gray, darkgray, magenta, " +"cyan, default

EXAMPLE:
msgcolor send cyan default" +msgstr "" + +msgid "Unable to open file." +msgstr "" + +msgid "Debug Window" +msgstr "" + +#. XXX: Setting the GROW_Y for the following widgets don't make sense. But right now +#. * it's necessary to make the width of the debug window resizable ... like I said, +#. * it doesn't make sense. The bug is likely in the packing in gntbox.c. +#. +msgid "Clear" +msgstr "" + +msgid "Filter:" +msgstr "" + +msgid "Pause" +msgstr "" + +#, c-format +msgid "File Transfers - %d%% of %d file" +msgid_plural "File Transfers - %d%% of %d files" +msgstr[0] "" +msgstr[1] "" + +#. Create the window. +msgid "File Transfers" +msgstr "" + +msgid "Progress" +msgstr "" + +msgid "Filename" +msgstr "" + +msgid "Size" +msgstr "" + +msgid "Speed" +msgstr "" + +msgid "Remaining" +msgstr "" + +#. XXX: Use of ggp_str_to_uin() is an ugly hack! +msgid "Status" +msgstr "" + +msgid "Close this window when all transfers finish" +msgstr "" + +msgid "Clear finished transfers" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Waiting for transfer to begin" +msgstr "" + +msgid "Canceled" +msgstr "" + +msgid "Failed" +msgstr "" + +#, c-format +msgid "%.2f KiB/s" +msgstr "" + +msgid "Sent" +msgstr "" + +msgid "Received" +msgstr "" + +msgid "Finished" +msgstr "" + +#, c-format +msgid "The file was saved as %s." +msgstr "" + +msgid "Sending" +msgstr "" + +msgid "Receiving" +msgstr "" + +#, c-format +msgid "Conversation in %s on %s" +msgstr "" + +#, c-format +msgid "Conversation with %s on %s" +msgstr "" + +msgid "%B %Y" +msgstr "" + +msgid "" +"System events will only be logged if the \"Log all status changes to system " +"log\" preference is enabled." +msgstr "" + +msgid "" +"Instant messages will only be logged if the \"Log all instant messages\" " +"preference is enabled." +msgstr "" + +msgid "" +"Chats will only be logged if the \"Log all chats\" preference is enabled." +msgstr "" + +msgid "No logs were found" +msgstr "" + +msgid "Total log size:" +msgstr "" + +#. Search box ********* +msgid "Scroll/Search: " +msgstr "" + +#, c-format +msgid "Conversations in %s" +msgstr "" + +#, c-format +msgid "Conversations with %s" +msgstr "" + +msgid "All Conversations" +msgstr "" + +msgid "System Log" +msgstr "" + +msgid "Calling ... " +msgstr "" + +msgid "Hangup" +msgstr "" + +#. Number of actions +msgid "Accept" +msgstr "" + +msgid "Reject" +msgstr "" + +msgid "Call in progress." +msgstr "" + +msgid "The call has been terminated." +msgstr "" + +#, c-format +msgid "%s wishes to start an audio session with you." +msgstr "" + +#, c-format +msgid "%s is trying to start an unsupported media session type with you." +msgstr "" + +msgid "You have rejected the call." +msgstr "" + +msgid "call: Make an audio call." +msgstr "" + +msgid "Emails" +msgstr "" + +msgid "You have mail!" +msgstr "" + +msgid "Sender" +msgstr "" + +msgid "Subject" +msgstr "" + +#, c-format +msgid "%s (%s) has %d new message." +msgid_plural "%s (%s) has %d new messages." +msgstr[0] "" +msgstr[1] "" + +msgid "New Mail" +msgstr "" + +#, c-format +msgid "Info for %s" +msgstr "" + +msgid "Buddy Information" +msgstr "" + +msgid "Continue" +msgstr "" + +msgid "IM" +msgstr "" + +msgid "Invite" +msgstr "" + +msgid "(none)" +msgstr "" + +msgid "URI" +msgstr "" + +msgid "ERROR" +msgstr "" + +msgid "loading plugin failed" +msgstr "" + +msgid "unloading plugin failed" +msgstr "" + +#, c-format +msgid "" +"Name: %s\n" +"Version: %s\n" +"Description: %s\n" +"Author: %s\n" +"Website: %s\n" +"Filename: %s\n" +msgstr "" + +msgid "Plugin need to be loaded before you can configure it." +msgstr "" + +msgid "No configuration options for this plugin." +msgstr "" + +msgid "Error loading plugin" +msgstr "" + +msgid "The selected file is not a valid plugin." +msgstr "" + +msgid "" +"Please open the debug window and try again to see the exact error message." +msgstr "" + +msgid "Select plugin to install" +msgstr "" + +msgid "You can (un)load plugins from the following list." +msgstr "" + +msgid "Install Plugin..." +msgstr "" + +msgid "Configure Plugin" +msgstr "" + +#. copy the preferences to tmp values... +#. * I liked "take affect immediately" Oh well :-( +#. (that should have been "effect," right?) +#. Back to instant-apply! I win! BU-HAHAHA! +#. Create the window +msgid "Preferences" +msgstr "" + +msgid "Please enter a buddy to pounce." +msgstr "" + +msgid "New Buddy Pounce" +msgstr "" + +msgid "Edit Buddy Pounce" +msgstr "" + +msgid "Pounce Who" +msgstr "" + +#. Account: +msgid "Account:" +msgstr "" + +msgid "Buddy name:" +msgstr "" + +#. Create the "Pounce When Buddy..." frame. +msgid "Pounce When Buddy..." +msgstr "" + +msgid "Signs on" +msgstr "" + +msgid "Signs off" +msgstr "" + +msgid "Goes away" +msgstr "" + +msgid "Returns from away" +msgstr "" + +msgid "Becomes idle" +msgstr "" + +msgid "Is no longer idle" +msgstr "" + +msgid "Starts typing" +msgstr "" + +msgid "Pauses while typing" +msgstr "" + +msgid "Stops typing" +msgstr "" + +msgid "Sends a message" +msgstr "" + +#. Create the "Action" frame. +msgid "Action" +msgstr "" + +msgid "Open an IM window" +msgstr "" + +msgid "Pop up a notification" +msgstr "" + +msgid "Send a message" +msgstr "" + +msgid "Execute a command" +msgstr "" + +msgid "Play a sound" +msgstr "" + +msgid "Pounce only when my status is not Available" +msgstr "" + +msgid "Recurring" +msgstr "" + +msgid "Cannot create pounce" +msgstr "" + +msgid "You do not have any accounts." +msgstr "" + +msgid "You must create an account first before you can create a pounce." +msgstr "" + +#, c-format +msgid "Are you sure you want to delete the pounce on %s for %s?" +msgstr "" + +msgid "Buddy Pounces" +msgstr "" + +#, c-format +msgid "%s has started typing to you (%s)" +msgstr "" + +#, c-format +msgid "%s has paused while typing to you (%s)" +msgstr "" + +#, c-format +msgid "%s has signed on (%s)" +msgstr "" + +#, c-format +msgid "%s has returned from being idle (%s)" +msgstr "" + +#, c-format +msgid "%s has returned from being away (%s)" +msgstr "" + +#, c-format +msgid "%s has stopped typing to you (%s)" +msgstr "" + +#, c-format +msgid "%s has signed off (%s)" +msgstr "" + +#, c-format +msgid "%s has become idle (%s)" +msgstr "" + +#, c-format +msgid "%s has gone away. (%s)" +msgstr "" + +#, c-format +msgid "%s has sent you a message. (%s)" +msgstr "" + +msgid "Unknown pounce event. Please report this!" +msgstr "" + +msgid "Based on keyboard use" +msgstr "" + +msgid "From last sent message" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Show Idle Time" +msgstr "" + +msgid "Show Offline Buddies" +msgstr "" + +msgid "Notify buddies when you are typing" +msgstr "" + +msgid "Log format" +msgstr "" + +msgid "Log IMs" +msgstr "" + +msgid "Log chats" +msgstr "" + +msgid "Log status change events" +msgstr "" + +msgid "Report Idle time" +msgstr "" + +msgid "Change status when idle" +msgstr "" + +msgid "Minutes before changing status" +msgstr "" + +msgid "Change status to" +msgstr "" + +msgid "Conversations" +msgstr "" + +msgid "Logging" +msgstr "" + +msgid "You must fill all the required fields." +msgstr "" + +msgid "The required fields are underlined." +msgstr "" + +msgid "Not implemented yet." +msgstr "" + +msgid "Save File..." +msgstr "" + +msgid "Open File..." +msgstr "" + +msgid "Choose Location..." +msgstr "" + +msgid "Hit 'Enter' to find more rooms of this category." +msgstr "" + +msgid "Get" +msgstr "" + +#. Create the window. +msgid "Room List" +msgstr "" + +msgid "Buddy logs in" +msgstr "" + +msgid "Buddy logs out" +msgstr "" + +msgid "Message received" +msgstr "" + +msgid "Message received begins conversation" +msgstr "" + +msgid "Message sent" +msgstr "" + +msgid "Person enters chat" +msgstr "" + +msgid "Person leaves chat" +msgstr "" + +msgid "You talk in chat" +msgstr "" + +msgid "Others talk in chat" +msgstr "" + +msgid "Someone says your username in chat" +msgstr "" + +msgid "GStreamer Failure" +msgstr "" + +msgid "GStreamer failed to initialize." +msgstr "" + +msgid "(default)" +msgstr "" + +msgid "Select Sound File ..." +msgstr "" + +msgid "Sound Preferences" +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Automatic" +msgstr "" + +msgid "Console Beep" +msgstr "" + +msgid "Command" +msgstr "" + +msgid "No Sound" +msgstr "" + +msgid "Sound Method" +msgstr "" + +msgid "Method: " +msgstr "" + +#, c-format +msgid "" +"Sound Command\n" +"(%s for filename)" +msgstr "" + +#. Sound options +msgid "Sound Options" +msgstr "" + +msgid "Sounds when conversation has focus" +msgstr "" + +msgid "Always" +msgstr "" + +msgid "Only when available" +msgstr "" + +msgid "Only when not available" +msgstr "" + +msgid "Volume(0-100):" +msgstr "" + +#. Sound events +msgid "Sound Events" +msgstr "" + +msgid "Event" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Test" +msgstr "" + +msgid "Reset" +msgstr "" + +msgid "Choose..." +msgstr "" + +#, c-format +msgid "Are you sure you want to delete \"%s\"" +msgstr "" + +msgid "Delete Status" +msgstr "" + +msgid "Saved Statuses" +msgstr "" + +msgid "Title" +msgstr "" + +msgid "Type" +msgstr "" + +#. Statuses are almost all the same. Define a macro to reduce code repetition. +#. PurpleStatusPrimitive +#. id - use default +#. name - use default +#. saveable +#. user_settable +#. not independent +#. Attributes - each status can have a message. +msgid "Message" +msgstr "" + +#. Use +msgid "Use" +msgstr "" + +msgid "Invalid title" +msgstr "" + +msgid "Please enter a non-empty title for the status." +msgstr "" + +msgid "Duplicate title" +msgstr "" + +msgid "Please enter a different title for the status." +msgstr "" + +msgid "Substatus" +msgstr "" + +msgid "Status:" +msgstr "" + +msgid "Message:" +msgstr "" + +msgid "Edit Status" +msgstr "" + +msgid "Use different status for following accounts" +msgstr "" + +#. Save & Use +msgid "Save & Use" +msgstr "" + +msgid "Certificates" +msgstr "" + +msgid "Sounds" +msgstr "" + +msgid "Statuses" +msgstr "" + +msgid "Error loading the plugin." +msgstr "" + +msgid "Couldn't find X display" +msgstr "" + +msgid "Couldn't find window" +msgstr "" + +msgid "This plugin cannot be loaded because it was not built with X11 support." +msgstr "" + +msgid "GntClipboard" +msgstr "" + +msgid "Clipboard plugin" +msgstr "" + +msgid "" +"When the gnt clipboard contents change, the contents are made available to " +"X, if possible." +msgstr "" + +#, c-format +msgid "%s just signed on" +msgstr "" + +#, c-format +msgid "%s just signed off" +msgstr "" + +#, c-format +msgid "%s sent you a message" +msgstr "" + +#, c-format +msgid "%s said your nick in %s" +msgstr "" + +#, c-format +msgid "%s sent a message in %s" +msgstr "" + +msgid "Buddy signs on/off" +msgstr "" + +msgid "You receive an IM" +msgstr "" + +msgid "Someone speaks in a chat" +msgstr "" + +msgid "Someone says your name in a chat" +msgstr "" + +msgid "Notify with a toaster when" +msgstr "" + +msgid "Beep too!" +msgstr "" + +msgid "Set URGENT for the terminal window." +msgstr "" + +msgid "GntGf" +msgstr "" + +msgid "Toaster plugin" +msgstr "" + +#, c-format +msgid "Conversation with %s on %s:
" +msgstr "" + +msgid "History Plugin Requires Logging" +msgstr "" + +msgid "" +"Logging can be enabled from Tools -> Preferences -> Logging.\n" +"\n" +"Enabling logs for instant messages and/or chats will activate history for " +"the same conversation type(s)." +msgstr "" + +msgid "GntHistory" +msgstr "" + +msgid "Shows recently logged conversations in new conversations." +msgstr "" + +msgid "" +"When a new conversation is opened this plugin will insert the last " +"conversation into the current conversation." +msgstr "" + +msgid "Online" +msgstr "" + +msgid "Offline" +msgstr "" + +msgid "Online Buddies" +msgstr "" + +msgid "Offline Buddies" +msgstr "" + +msgid "Online/Offline" +msgstr "" + +msgid "Meebo" +msgstr "" + +msgid "No Grouping" +msgstr "" + +msgid "Nested Subgroup" +msgstr "" + +msgid "Nested Grouping (experimental)" +msgstr "" + +msgid "Provides alternate buddylist grouping options." +msgstr "" + +msgid "Lastlog" +msgstr "" + +#. Translator Note: The "backlog" is the conversation buffer/history. +msgid "lastlog: Searches for a substring in the backlog." +msgstr "" + +msgid "GntLastlog" +msgstr "" + +msgid "Lastlog plugin." +msgstr "" + +#, c-format +msgid "" +"\n" +"Fetching TinyURL..." +msgstr "" + +msgid "Only create TinyURL for urls of this length or greater" +msgstr "" + +msgid "TinyURL (or other) address prefix" +msgstr "" + +msgid "TinyURL" +msgstr "" + +msgid "TinyURL plugin" +msgstr "" + +msgid "When receiving a message with URL(s), TinyURL for easier copying" +msgstr "" + +msgid "accounts" +msgstr "" + +msgid "Password is required to sign on." +msgstr "" + +#, c-format +msgid "Enter password for %s (%s)" +msgstr "" + +msgid "Enter Password" +msgstr "" + +msgid "Save password" +msgstr "" + +#, c-format +msgid "Missing protocol plugin for %s" +msgstr "" + +msgid "Connection Error" +msgstr "" + +msgid "New passwords do not match." +msgstr "" + +msgid "Fill out all fields completely." +msgstr "" + +msgid "Original password" +msgstr "" + +msgid "New password" +msgstr "" + +msgid "New password (again)" +msgstr "" + +#, c-format +msgid "Change password for %s" +msgstr "" + +msgid "Please enter your current password and your new password." +msgstr "" + +#, c-format +msgid "Change user information for %s" +msgstr "" + +msgid "Set User Info" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Buddies" +msgstr "" + +msgid "buddy list" +msgstr "" + +msgid "(DOES NOT MATCH)" +msgstr "" + +#. Make messages +#, c-format +msgid "%s has presented the following certificate for just-this-once use:" +msgstr "" + +#, c-format +msgid "" +"Common name: %s %s\n" +"Fingerprint (SHA1): %s" +msgstr "" + +#. TODO: Find what the handle ought to be +msgid "Single-use Certificate Verification" +msgstr "" + +#. Scheme name +#. Pool name +msgid "Certificate Authorities" +msgstr "" + +#. Scheme name +#. Pool name +msgid "SSL Peers Cache" +msgstr "" + +#. Make messages +#, c-format +msgid "Accept certificate for %s?" +msgstr "" + +#. TODO: Find what the handle ought to be +msgid "SSL Certificate Verification" +msgstr "" + +msgid "_View Certificate..." +msgstr "" + +#. Prompt the user to authenticate the certificate +#. vrq will be completed by user_auth +#, c-format +msgid "" +"The certificate presented by \"%s\" is self-signed. It cannot be " +"automatically checked." +msgstr "" + +#, c-format +msgid "The certificate chain presented for %s is not valid." +msgstr "" + +#. TODO: Make this error either block the ensuing SSL +#. connection error until the user dismisses this one, or +#. stifle it. +#. TODO: Probably wrong. +#. TODO: Probably wrong +msgid "SSL Certificate Error" +msgstr "" + +msgid "Invalid certificate chain" +msgstr "" + +#. vrq will be completed by user_auth +msgid "" +"You have no database of root certificates, so this certificate cannot be " +"validated." +msgstr "" + +#. vrq will be completed by user_auth +msgid "" +"The root certificate this one claims to be issued by is unknown to Pidgin." +msgstr "" + +#, c-format +msgid "" +"The certificate chain presented by %s does not have a valid digital " +"signature from the Certificate Authority from which it claims to have a " +"signature." +msgstr "" + +msgid "Invalid certificate authority signature" +msgstr "" + +#. Prompt the user to authenticate the certificate +#. TODO: Provide the user with more guidance about why he is +#. being prompted +#. vrq will be completed by user_auth +#, c-format +msgid "" +"The certificate presented by \"%s\" claims to be from \"%s\" instead. This " +"could mean that you are not connecting to the service you believe you are." +msgstr "" + +#. Make messages +#, c-format +msgid "" +"Common name: %s\n" +"\n" +"Fingerprint (SHA1): %s\n" +"\n" +"Activation date: %s\n" +"Expiration date: %s\n" +msgstr "" + +#. TODO: Find what the handle ought to be +msgid "Certificate Information" +msgstr "" + +msgid "Registration Error" +msgstr "" + +msgid "Unregistration Error" +msgstr "" + +#, c-format +msgid "+++ %s signed on" +msgstr "" + +#, c-format +msgid "+++ %s signed off" +msgstr "" + +#. Unknown error +#. Unknown error! +msgid "Unknown error" +msgstr "" + +msgid "Unable to send message: The message is too large." +msgstr "" + +#, c-format +msgid "Unable to send message to %s." +msgstr "" + +msgid "The message is too large." +msgstr "" + +msgid "Unable to send message." +msgstr "" + +msgid "Send Message" +msgstr "" + +msgid "_Send Message" +msgstr "" + +#, c-format +msgid "%s entered the room." +msgstr "" + +#, c-format +msgid "%s [%s] entered the room." +msgstr "" + +#, c-format +msgid "You are now known as %s" +msgstr "" + +#, c-format +msgid "%s is now known as %s" +msgstr "" + +#, c-format +msgid "%s left the room." +msgstr "" + +#, c-format +msgid "%s left the room (%s)." +msgstr "" + +msgid "Invite to chat" +msgstr "" + +#. Put our happy label in it. +msgid "" +"Please enter the name of the user you wish to invite, along with an optional " +"invite message." +msgstr "" + +#, c-format +msgid "Failed to get connection: %s" +msgstr "" + +#, c-format +msgid "Failed to get name: %s" +msgstr "" + +#, c-format +msgid "Failed to get serv name: %s" +msgstr "" + +msgid "Purple's D-BUS server is not running for the reason listed below" +msgstr "" + +msgid "No name" +msgstr "" + +msgid "Unable to create new resolver process\n" +msgstr "" + +msgid "Unable to send request to resolver process\n" +msgstr "" + +#, c-format +msgid "" +"Error resolving %s:\n" +"%s" +msgstr "" + +#, c-format +msgid "Error resolving %s: %d" +msgstr "" + +#, c-format +msgid "" +"Error reading from resolver process:\n" +"%s" +msgstr "" + +#, c-format +msgid "Resolver process exited without answering our request" +msgstr "" + +#, c-format +msgid "Thread creation failure: %s" +msgstr "" + +msgid "Unknown reason" +msgstr "" + +#, c-format +msgid "" +"Error reading %s: \n" +"%s.\n" +msgstr "" + +#, c-format +msgid "" +"Error writing %s: \n" +"%s.\n" +msgstr "" + +#, c-format +msgid "" +"Error accessing %s: \n" +"%s.\n" +msgstr "" + +msgid "Directory is not writable." +msgstr "" + +msgid "Cannot send a file of 0 bytes." +msgstr "" + +msgid "Cannot send a directory." +msgstr "" + +#, c-format +msgid "%s is not a regular file. Cowardly refusing to overwrite it.\n" +msgstr "" + +#, c-format +msgid "%s wants to send you %s (%s)" +msgstr "" + +#, c-format +msgid "%s wants to send you a file" +msgstr "" + +#, c-format +msgid "Accept file transfer request from %s?" +msgstr "" + +#, c-format +msgid "" +"A file is available for download from:\n" +"Remote host: %s\n" +"Remote port: %d" +msgstr "" + +#, c-format +msgid "%s is offering to send file %s" +msgstr "" + +#, c-format +msgid "%s is not a valid filename.\n" +msgstr "" + +#, c-format +msgid "Offering to send %s to %s" +msgstr "" + +#, c-format +msgid "Starting transfer of %s from %s" +msgstr "" + +#, c-format +msgid "Transfer of file %s complete" +msgstr "" + +msgid "File transfer complete" +msgstr "" + +#, c-format +msgid "You canceled the transfer of %s" +msgstr "" + +msgid "File transfer cancelled" +msgstr "" + +#, c-format +msgid "%s canceled the transfer of %s" +msgstr "" + +#, c-format +msgid "%s canceled the file transfer" +msgstr "" + +#, c-format +msgid "File transfer to %s failed." +msgstr "" + +#, c-format +msgid "File transfer from %s failed." +msgstr "" + +msgid "Run the command in a terminal" +msgstr "" + +msgid "The command used to handle \"aim\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"gg\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"icq\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"irc\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"msnim\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"sip\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"xmpp\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"ymsgr\" URLs, if enabled." +msgstr "" + +msgid "The handler for \"aim\" URLs" +msgstr "" + +msgid "The handler for \"gg\" URLs" +msgstr "" + +msgid "The handler for \"icq\" URLs" +msgstr "" + +msgid "The handler for \"irc\" URLs" +msgstr "" + +msgid "The handler for \"msnim\" URLs" +msgstr "" + +msgid "The handler for \"sip\" URLs" +msgstr "" + +msgid "The handler for \"xmpp\" URLs" +msgstr "" + +msgid "The handler for \"ymsgr\" URLs" +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"aim\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"gg\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"icq\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"irc\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"msnim\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"sip\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"xmpp\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"ymsgr\" " +"URLs." +msgstr "" + +msgid "" +"True if the command used to handle this type of URL should be run in a " +"terminal." +msgstr "" + +msgid "Whether the specified command should handle \"aim\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"gg\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"icq\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"irc\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"msnim\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"sip\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"xmpp\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"ymsgr\" URLs" +msgstr "" + +msgid "The logger has no read function" +msgstr "" + +msgid "HTML" +msgstr "" + +msgid "Plain text" +msgstr "" + +msgid "Old flat format" +msgstr "" + +msgid "Logging of this conversation failed." +msgstr "" + +msgid "XML" +msgstr "" + +#, c-format +msgid "" +"(%s) %s <AUTO-" +"REPLY>: %s
\n" +msgstr "" + +#, c-format +msgid "" +"(%s) %s <AUTO-" +"REPLY>: %s
\n" +msgstr "" + +msgid "Unable to find log path!" +msgstr "" + +#, c-format +msgid "Could not read file: %s" +msgstr "" + +#, c-format +msgid "(%s) %s : %s\n" +msgstr "" + +#, c-format +msgid "You are using %s, but this plugin requires %s." +msgstr "" + +msgid "This plugin has not defined an ID." +msgstr "" + +#, c-format +msgid "Plugin magic mismatch %d (need %d)" +msgstr "" + +#, c-format +msgid "ABI version mismatch %d.%d.x (need %d.%d.x)" +msgstr "" + +msgid "" +"Plugin does not implement all required functions (list_icon, login and close)" +msgstr "" + +#, c-format +msgid "" +"The required plugin %s was not found. Please install this plugin and try " +"again." +msgstr "" + +msgid "Unable to load the plugin" +msgstr "" + +#, c-format +msgid "The required plugin %s was unable to load." +msgstr "" + +msgid "Unable to load your plugin." +msgstr "" + +#, c-format +msgid "%s requires %s, but it failed to unload." +msgstr "" + +msgid "Autoaccept" +msgstr "" + +msgid "Auto-accept file transfer requests from selected users." +msgstr "" + +#, c-format +msgid "Autoaccepted file transfer of \"%s\" from \"%s\" completed." +msgstr "" + +msgid "Autoaccept complete" +msgstr "" + +#, c-format +msgid "When a file-transfer request arrives from %s" +msgstr "" + +msgid "Set Autoaccept Setting" +msgstr "" + +msgid "_Save" +msgstr "" + +msgid "_Cancel" +msgstr "" + +msgid "Ask" +msgstr "" + +msgid "Auto Accept" +msgstr "" + +msgid "Auto Reject" +msgstr "" + +msgid "Autoaccept File Transfers..." +msgstr "" + +#. XXX: Is there a better way than this? There really should be. +msgid "" +"Path to save the files in\n" +"(Please provide the full path)" +msgstr "" + +msgid "Automatically reject from users not in buddy list" +msgstr "" + +msgid "" +"Notify with a popup when an autoaccepted file transfer is complete\n" +"(only when there's no conversation with the sender)" +msgstr "" + +msgid "Create a new directory for each user" +msgstr "" + +msgid "Notes" +msgstr "" + +msgid "Enter your notes below..." +msgstr "" + +msgid "Edit Notes..." +msgstr "" + +#. *< major version +#. *< minor version +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Buddy Notes" +msgstr "" + +#. *< name +#. *< version +msgid "Store notes on particular buddies." +msgstr "" + +#. *< summary +msgid "Adds the option to store notes for buddies on your buddy list." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Cipher Test" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Tests the ciphers that ship with libpurple." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "DBus Example" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "DBus Plugin Example" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "File Control" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Allows control by entering commands in a file." +msgstr "" + +msgid "Minutes" +msgstr "" + +#. This is a cultural reference. Dy'er Mak'er is a song by Led Zeppelin. +#. If that doesn't translate well into your language, drop the 's before translating. +msgid "I'dle Mak'er" +msgstr "" + +msgid "Set Account Idle Time" +msgstr "" + +msgid "_Set" +msgstr "" + +msgid "None of your accounts are idle." +msgstr "" + +msgid "Unset Account Idle Time" +msgstr "" + +msgid "_Unset" +msgstr "" + +msgid "Set Idle Time for All Accounts" +msgstr "" + +msgid "Unset Idle Time for All Idled Accounts" +msgstr "" + +msgid "Allows you to hand-configure how long you've been idle" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "IPC Test Client" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Test plugin IPC support, as a client." +msgstr "" + +#. * description +msgid "" +"Test plugin IPC support, as a client. This locates the server plugin and " +"calls the commands registered." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "IPC Test Server" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Test plugin IPC support, as a server." +msgstr "" + +#. * description +msgid "Test plugin IPC support, as a server. This registers the IPC commands." +msgstr "" + +msgid "Join/Part Hiding Configuration" +msgstr "" + +msgid "Minimum Room Size" +msgstr "" + +msgid "User Inactivity Timeout (in minutes)" +msgstr "" + +msgid "Apply hiding rules to buddies" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Join/Part Hiding" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Hides extraneous join/part messages." +msgstr "" + +#. * description +msgid "" +"This plugin hides join/part messages in large rooms, except for those users " +"actively taking part in a conversation." +msgstr "" + +#. This is used in the place of a timezone abbreviation if the +#. * offset is way off. The user should never really see it, but +#. * it's here just in case. The parens are to make it clear it's +#. * not a real timezone. +msgid "(UTC)" +msgstr "" + +msgid "User is offline." +msgstr "" + +msgid "Auto-response sent:" +msgstr "" + +#, c-format +msgid "%s has signed off." +msgstr "" + +msgid "One or more messages may have been undeliverable." +msgstr "" + +msgid "You were disconnected from the server." +msgstr "" + +msgid "" +"You are currently disconnected. Messages will not be received unless you are " +"logged in." +msgstr "" + +msgid "Message could not be sent because the maximum length was exceeded." +msgstr "" + +msgid "Message could not be sent." +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "Adium" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "Fire" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "Messenger Plus!" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "QIP" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "MSN Messenger" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "Trillian" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "aMSN" +msgstr "" + +#. Add general preferences. +msgid "General Log Reading Configuration" +msgstr "" + +msgid "Fast size calculations" +msgstr "" + +msgid "Use name heuristics" +msgstr "" + +#. Add Log Directory preferences. +msgid "Log Directory" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Log Reader" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Includes other IM clients' logs in the log viewer." +msgstr "" + +#. * description +msgid "" +"When viewing logs, this plugin will include logs from other IM clients. " +"Currently, this includes Adium, MSN Messenger, and Trillian.\n" +"\n" +"WARNING: This plugin is still alpha code and may crash frequently. Use it " +"at your own risk!" +msgstr "" + +msgid "Mono Plugin Loader" +msgstr "" + +msgid "Loads .NET plugins with Mono." +msgstr "" + +msgid "Add new line in IMs" +msgstr "" + +msgid "Add new line in Chats" +msgstr "" + +#. *< magic +#. *< major version +#. *< minor version +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "New Line" +msgstr "" + +#. *< name +#. *< version +msgid "Prepends a newline to displayed message." +msgstr "" + +#. *< summary +msgid "" +"Prepends a newline to messages so that the rest of the message appears below " +"the username in the conversation window." +msgstr "" + +msgid "Offline Message Emulation" +msgstr "" + +msgid "Save messages sent to an offline user as pounce." +msgstr "" + +msgid "" +"The rest of the messages will be saved as pounce. You can edit/delete the " +"pounce from the `Buddy Pounce' dialog." +msgstr "" + +#, c-format +msgid "" +"\"%s\" is currently offline. Do you want to save the rest of the messages in " +"a pounce and automatically send them when \"%s\" logs back in?" +msgstr "" + +msgid "Offline Message" +msgstr "" + +msgid "You can edit/delete the pounce from the `Buddy Pounces' dialog" +msgstr "" + +msgid "Yes" +msgstr "" + +msgid "No" +msgstr "" + +msgid "Save offline messages in pounce" +msgstr "" + +msgid "Do not ask. Always save in pounce." +msgstr "" + +msgid "One Time Password" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "One Time Password Support" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Enforce that passwords are used only once." +msgstr "" + +#. * description +msgid "" +"Allows you to enforce on a per-account basis that passwords not being saved " +"are only used in a single successful connection.\n" +"Note: The account password must not be saved for this to work." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Perl Plugin Loader" +msgstr "" + +#. *< name +#. *< version +#. *< summary +msgid "Provides support for loading perl plugins." +msgstr "" + +msgid "Psychic Mode" +msgstr "" + +msgid "Psychic mode for incoming conversation" +msgstr "" + +msgid "" +"Causes conversation windows to appear as other users begin to message you. " +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "" + +msgid "You feel a disturbance in the force..." +msgstr "" + +msgid "Only enable for users on the buddy list" +msgstr "" + +msgid "Disable when away" +msgstr "" + +msgid "Display notification message in conversations" +msgstr "" + +msgid "Raise psychic conversations" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Signals Test" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Test to see that all signals are working properly." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Simple Plugin" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Tests to see that most things are working." +msgstr "" + +#. Scheme name +msgid "X.509 Certificates" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "GNUTLS" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides SSL support through GNUTLS." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "NSS" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides SSL support through Mozilla NSS." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "SSL" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides a wrapper around SSL support libraries." +msgstr "" + +#, c-format +msgid "%s is no longer away." +msgstr "" + +#, c-format +msgid "%s has gone away." +msgstr "" + +#, c-format +msgid "%s has become idle." +msgstr "" + +#, c-format +msgid "%s is no longer idle." +msgstr "" + +#, c-format +msgid "%s has signed on." +msgstr "" + +msgid "Notify When" +msgstr "" + +msgid "Buddy Goes _Away" +msgstr "" + +msgid "Buddy Goes _Idle" +msgstr "" + +msgid "Buddy _Signs On/Off" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Buddy State Notification" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "" +"Notifies in a conversation window when a buddy goes or returns from away or " +"idle." +msgstr "" + +msgid "Tcl Plugin Loader" +msgstr "" + +msgid "Provides support for loading Tcl plugins" +msgstr "" + +msgid "" +"Unable to detect ActiveTCL installation. If you wish to use TCL plugins, " +"install ActiveTCL from http://www.activestate.com\n" +msgstr "" + +msgid "" +"The Apple Bonjour For Windows toolkit wasn't found, see the FAQ at: http://d." +"pidgin.im/BonjourWindows for more information." +msgstr "" + +msgid "Unable to listen for incoming IM connections\n" +msgstr "" + +msgid "" +"Unable to establish connection with the local mDNS server. Is it running?" +msgstr "" + +msgid "First name" +msgstr "" + +msgid "Last name" +msgstr "" + +msgid "Email" +msgstr "" + +msgid "AIM Account" +msgstr "" + +msgid "XMPP Account" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Bonjour Protocol Plugin" +msgstr "" + +msgid "Purple Person" +msgstr "" + +#. Creating the options for the protocol +msgid "Local Port" +msgstr "" + +msgid "Bonjour" +msgstr "" + +#, c-format +msgid "%s has closed the conversation." +msgstr "" + +msgid "Unable to send the message, the conversation couldn't be started." +msgstr "" + +msgid "Cannot open socket" +msgstr "" + +msgid "Could not bind socket to port" +msgstr "" + +msgid "Could not listen on socket" +msgstr "" + +msgid "Error communicating with local mDNSResponder." +msgstr "" + +msgid "Invalid proxy settings" +msgstr "" + +msgid "" +"Either the host name or port number specified for your given proxy type is " +"invalid." +msgstr "" + +msgid "Token Error" +msgstr "" + +msgid "Unable to fetch the token.\n" +msgstr "" + +msgid "Save Buddylist..." +msgstr "" + +msgid "Your buddylist is empty, nothing was written to the file." +msgstr "" + +msgid "Buddylist saved successfully!" +msgstr "" + +#, c-format +msgid "Couldn't write buddy list for %s to %s" +msgstr "" + +msgid "Couldn't load buddylist" +msgstr "" + +msgid "Load Buddylist..." +msgstr "" + +msgid "Buddylist loaded successfully!" +msgstr "" + +msgid "Save buddylist..." +msgstr "" + +msgid "Load buddylist from file..." +msgstr "" + +msgid "Fill in the registration fields." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +msgid "Unable to register new account. Error occurred.\n" +msgstr "" + +msgid "New Gadu-Gadu Account Registered" +msgstr "" + +msgid "Registration completed successfully!" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "Password (retype)" +msgstr "" + +msgid "Enter current token" +msgstr "" + +msgid "Current token" +msgstr "" + +msgid "Register New Gadu-Gadu Account" +msgstr "" + +msgid "Please, fill in the following fields" +msgstr "" + +msgid "City" +msgstr "" + +msgid "Year of birth" +msgstr "" + +msgid "Gender" +msgstr "" + +msgid "Male or female" +msgstr "" + +msgid "Male" +msgstr "" + +msgid "Female" +msgstr "" + +msgid "Only online" +msgstr "" + +msgid "Find buddies" +msgstr "" + +msgid "Please, enter your search criteria below" +msgstr "" + +msgid "Fill in the fields." +msgstr "" + +msgid "Your current password is different from the one that you specified." +msgstr "" + +msgid "Unable to change password. Error occurred.\n" +msgstr "" + +msgid "Change password for the Gadu-Gadu account" +msgstr "" + +msgid "Password was changed successfully!" +msgstr "" + +msgid "Current password" +msgstr "" + +msgid "Please, enter your current password and your new password for UIN: " +msgstr "" + +msgid "Change Gadu-Gadu Password" +msgstr "" + +#, c-format +msgid "Select a chat for buddy: %s" +msgstr "" + +msgid "Add to chat..." +msgstr "" + +#. Global +msgid "Available" +msgstr "" + +#. get_yahoo_status_from_purple_status() returns YAHOO_STATUS_CUSTOM for +#. * the generic away state (YAHOO_STATUS_TYPE_AWAY) with no message +#. Away stuff +msgid "Away" +msgstr "" + +msgid "UIN" +msgstr "" + +msgid "First Name" +msgstr "" + +msgid "Birth Year" +msgstr "" + +msgid "Unable to display the search results." +msgstr "" + +msgid "Gadu-Gadu Public Directory" +msgstr "" + +msgid "Search results" +msgstr "" + +msgid "No matching users found" +msgstr "" + +msgid "There are no users matching your search criteria." +msgstr "" + +msgid "Unable to read socket" +msgstr "" + +msgid "Buddy list downloaded" +msgstr "" + +msgid "Your buddy list was downloaded from the server." +msgstr "" + +msgid "Buddy list uploaded" +msgstr "" + +msgid "Your buddy list was stored on the server." +msgstr "" + +msgid "Connection failed." +msgstr "" + +msgid "Add to chat" +msgstr "" + +msgid "Chat _name:" +msgstr "" + +msgid "Chat error" +msgstr "" + +msgid "This chat name is already in use" +msgstr "" + +msgid "Not connected to the server." +msgstr "" + +msgid "Find buddies..." +msgstr "" + +msgid "Change password..." +msgstr "" + +msgid "Upload buddylist to Server" +msgstr "" + +msgid "Download buddylist from Server" +msgstr "" + +msgid "Delete buddylist from Server" +msgstr "" + +msgid "Save buddylist to file..." +msgstr "" + +#. magic +#. major_version +#. minor_version +#. plugin type +#. ui_requirement +#. flags +#. dependencies +#. priority +#. id +#. name +#. version +msgid "Gadu-Gadu Protocol Plugin" +msgstr "" + +#. summary +msgid "Polish popular IM" +msgstr "" + +msgid "Gadu-Gadu User" +msgstr "" + +#, c-format +msgid "Unknown command: %s" +msgstr "" + +#, c-format +msgid "current topic is: %s" +msgstr "" + +msgid "No topic is set" +msgstr "" + +msgid "File Transfer Failed" +msgstr "" + +msgid "Could not open a listening port." +msgstr "" + +msgid "Error displaying MOTD" +msgstr "" + +msgid "No MOTD available" +msgstr "" + +msgid "There is no MOTD associated with this connection." +msgstr "" + +#, c-format +msgid "MOTD for %s" +msgstr "" + +msgid "Server has disconnected" +msgstr "" + +msgid "View MOTD" +msgstr "" + +msgid "_Channel:" +msgstr "" + +msgid "_Password:" +msgstr "" + +msgid "IRC nicks may not contain whitespace" +msgstr "" + +#. 1. connect to server +#. connect to the server +msgid "Connecting" +msgstr "" + +msgid "SSL support unavailable" +msgstr "" + +msgid "Couldn't create socket" +msgstr "" + +msgid "Couldn't connect to host" +msgstr "" + +msgid "Read error" +msgstr "" + +msgid "Users" +msgstr "" + +msgid "Topic" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +msgid "IRC Protocol Plugin" +msgstr "" + +#. * summary +msgid "The IRC Protocol Plugin that Sucks Less" +msgstr "" + +#. host to connect to +msgid "Server" +msgstr "" + +#. port to connect to +msgid "Port" +msgstr "" + +msgid "Encodings" +msgstr "" + +msgid "Auto-detect incoming UTF-8" +msgstr "" + +msgid "Real name" +msgstr "" + +#. +#. option = purple_account_option_string_new(_("Quit message"), "quitmsg", IRC_DEFAULT_QUIT); +#. prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); +#. +msgid "Use SSL" +msgstr "" + +msgid "Bad mode" +msgstr "" + +#, c-format +msgid "Ban on %s by %s, set %s ago" +msgstr "" + +#, c-format +msgid "Ban on %s" +msgstr "" + +msgid "End of ban list" +msgstr "" + +#, c-format +msgid "You are banned from %s." +msgstr "" + +msgid "Banned" +msgstr "" + +#, c-format +msgid "Cannot ban %s: banlist is full" +msgstr "" + +msgid " (ircop)" +msgstr "" + +msgid " (identified)" +msgstr "" + +msgid "Nick" +msgstr "" + +msgid "Currently on" +msgstr "" + +msgid "Idle for" +msgstr "" + +msgid "Online since" +msgstr "" + +msgid "Defining adjective:" +msgstr "" + +msgid "Glorious" +msgstr "" + +#, c-format +msgid "%s has changed the topic to: %s" +msgstr "" + +#, c-format +msgid "%s has cleared the topic." +msgstr "" + +#, c-format +msgid "The topic for %s is: %s" +msgstr "" + +#, c-format +msgid "Unknown message '%s'" +msgstr "" + +msgid "Unknown message" +msgstr "" + +msgid "The IRC server received a message it did not understand." +msgstr "" + +#, c-format +msgid "Users on %s: %s" +msgstr "" + +msgid "Time Response" +msgstr "" + +msgid "The IRC server's local time is:" +msgstr "" + +msgid "No such channel" +msgstr "" + +#. does this happen? +msgid "no such channel" +msgstr "" + +msgid "User is not logged in" +msgstr "" + +msgid "No such nick or channel" +msgstr "" + +msgid "Could not send" +msgstr "" + +#, c-format +msgid "Joining %s requires an invitation." +msgstr "" + +msgid "Invitation only" +msgstr "" + +#, c-format +msgid "You have been kicked by %s: (%s)" +msgstr "" + +#. Remove user from channel +#, c-format +msgid "Kicked by %s (%s)" +msgstr "" + +#, c-format +msgid "mode (%s %s) by %s" +msgstr "" + +msgid "Invalid nickname" +msgstr "" + +msgid "" +"Your selected nickname was rejected by the server. It probably contains " +"invalid characters." +msgstr "" + +msgid "" +"Your selected account name was rejected by the server. It probably contains " +"invalid characters." +msgstr "" + +#. We only want to do the following dance if the connection +#. has not been successfully completed. If it has, just +#. notify the user that their /nick command didn't go. +#, c-format +msgid "The nickname \"%s\" is already being used." +msgstr "" + +msgid "Nickname in use" +msgstr "" + +msgid "Cannot change nick" +msgstr "" + +msgid "Could not change nick" +msgstr "" + +#, c-format +msgid "You have parted the channel%s%s" +msgstr "" + +msgid "Error: invalid PONG from server" +msgstr "" + +#, c-format +msgid "PING reply -- Lag: %lu seconds" +msgstr "" + +#, c-format +msgid "Cannot join %s: Registration is required." +msgstr "" + +msgid "Cannot join channel" +msgstr "" + +msgid "Nick or channel is temporarily unavailable." +msgstr "" + +#, c-format +msgid "Wallops from %s" +msgstr "" + +msgid "action <action to perform>: Perform an action." +msgstr "" + +msgid "" +"away [message]: Set an away message, or use no message to return from being " +"away." +msgstr "" + +msgid "ctcp : sends ctcp msg to nick." +msgstr "" + +msgid "chanserv: Send a command to chanserv" +msgstr "" + +msgid "" +"deop <nick1> [nick2] ...: Remove channel operator status from " +"someone. You must be a channel operator to do this." +msgstr "" + +msgid "" +"devoice <nick1> [nick2] ...: Remove channel voice status from " +"someone, preventing them from speaking if the channel is moderated (+m). You " +"must be a channel operator to do this." +msgstr "" + +msgid "" +"invite <nick> [room]: Invite someone to join you in the specified " +"channel, or the current channel." +msgstr "" + +msgid "" +"j <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more " +"channels, optionally providing a channel key for each if needed." +msgstr "" + +msgid "" +"join <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more " +"channels, optionally providing a channel key for each if needed." +msgstr "" + +msgid "" +"kick <nick> [message]: Remove someone from a channel. You must be a " +"channel operator to do this." +msgstr "" + +msgid "" +"list: Display a list of chat rooms on the network. Warning, some servers " +"may disconnect you upon doing this." +msgstr "" + +msgid "me <action to perform>: Perform an action." +msgstr "" + +msgid "memoserv: Send a command to memoserv" +msgstr "" + +msgid "" +"mode <+|-><A-Za-z> <nick|channel>: Set or unset a channel " +"or user mode." +msgstr "" + +msgid "" +"msg <nick> <message>: Send a private message to a user (as " +"opposed to a channel)." +msgstr "" + +msgid "names [channel]: List the users currently in a channel." +msgstr "" + +msgid "nick <new nickname>: Change your nickname." +msgstr "" + +msgid "nickserv: Send a command to nickserv" +msgstr "" + +msgid "notice <target<: Send a notice to a user or channel." +msgstr "" + +msgid "" +"op <nick1> [nick2] ...: Grant channel operator status to someone. You " +"must be a channel operator to do this." +msgstr "" + +msgid "" +"operwall <message>: If you don't know what this is, you probably " +"can't use it." +msgstr "" + +msgid "operserv: Send a command to operserv" +msgstr "" + +msgid "" +"part [room] [message]: Leave the current channel, or a specified channel, " +"with an optional message." +msgstr "" + +msgid "" +"ping [nick]: Asks how much lag a user (or the server if no user specified) " +"has." +msgstr "" + +msgid "" +"query <nick> <message>: Send a private message to a user (as " +"opposed to a channel)." +msgstr "" + +msgid "quit [message]: Disconnect from the server, with an optional message." +msgstr "" + +msgid "quote [...]: Send a raw command to the server." +msgstr "" + +msgid "" +"remove <nick> [message]: Remove someone from a room. You must be a " +"channel operator to do this." +msgstr "" + +msgid "time: Displays the current local time at the IRC server." +msgstr "" + +msgid "topic [new topic]: View or change the channel topic." +msgstr "" + +msgid "umode <+|-><A-Za-z>: Set or unset a user mode." +msgstr "" + +msgid "version [nick]: send CTCP VERSION request to a user" +msgstr "" + +msgid "" +"voice <nick1> [nick2] ...: Grant channel voice status to someone. You " +"must be a channel operator to do this." +msgstr "" + +msgid "" +"wallops <message>: If you don't know what this is, you probably can't " +"use it." +msgstr "" + +msgid "whois [server] <nick>: Get information on a user." +msgstr "" + +msgid "whowas <nick>: Get information on a user that has logged off." +msgstr "" + +#, c-format +msgid "Reply time from %s: %lu seconds" +msgstr "" + +msgid "PONG" +msgstr "" + +msgid "CTCP PING reply" +msgstr "" + +msgid "Disconnected." +msgstr "" + +msgid "Unknown Error" +msgstr "" + +msgid "Ad-Hoc Command Failed" +msgstr "" + +msgid "execute" +msgstr "" + +msgid "Server requires TLS/SSL for login. No TLS/SSL support found." +msgstr "" + +msgid "You require encryption, but no TLS/SSL support found." +msgstr "" + +msgid "Server requires plaintext authentication over an unencrypted stream" +msgstr "" + +#, c-format +msgid "" +"%s requires plaintext authentication over an unencrypted connection. Allow " +"this and continue authentication?" +msgstr "" + +msgid "Plaintext Authentication" +msgstr "" + +msgid "Invalid response from server." +msgstr "" + +msgid "Server does not use any supported authentication method" +msgstr "" + +msgid "You require encryption, but it is not available on this server." +msgstr "" + +msgid "Invalid challenge from server" +msgstr "" + +msgid "SASL error" +msgstr "" + +msgid "The BOSH connection manager terminated your session." +msgstr "" + +msgid "No session ID given" +msgstr "" + +msgid "Unsupported version of BOSH protocol" +msgstr "" + +msgid "Unable to establish a connection with the server" +msgstr "" + +#, c-format +msgid "" +"Could not establish a connection with the server:\n" +"%s" +msgstr "" + +msgid "Unable to establish SSL connection" +msgstr "" + +msgid "Unable to create socket" +msgstr "" + +msgid "Write error" +msgstr "" + +msgid "Full Name" +msgstr "" + +msgid "Family Name" +msgstr "" + +msgid "Given Name" +msgstr "" + +msgid "URL" +msgstr "" + +msgid "Street Address" +msgstr "" + +msgid "Extended Address" +msgstr "" + +msgid "Locality" +msgstr "" + +msgid "Region" +msgstr "" + +msgid "Postal Code" +msgstr "" + +msgid "Country" +msgstr "" + +#. lots of clients (including purple) do this, but it's +#. * out of spec +msgid "Telephone" +msgstr "" + +msgid "Organization Name" +msgstr "" + +msgid "Organization Unit" +msgstr "" + +msgid "Role" +msgstr "" + +msgid "Birthday" +msgstr "" + +msgid "Description" +msgstr "" + +msgid "Edit XMPP vCard" +msgstr "" + +msgid "" +"All items below are optional. Enter only the information with which you feel " +"comfortable." +msgstr "" + +msgid "Client" +msgstr "" + +msgid "Operating System" +msgstr "" + +msgid "Local Time" +msgstr "" + +msgid "Last Activity" +msgstr "" + +msgid "Service Discovery Info" +msgstr "" + +msgid "Service Discovery Items" +msgstr "" + +msgid "Extended Stanza Addressing" +msgstr "" + +msgid "Multi-User Chat" +msgstr "" + +msgid "Multi-User Chat Extended Presence Information" +msgstr "" + +msgid "In-Band Bytestreams" +msgstr "" + +msgid "Ad-Hoc Commands" +msgstr "" + +msgid "PubSub Service" +msgstr "" + +msgid "SOCKS5 Bytestreams" +msgstr "" + +msgid "Out of Band Data" +msgstr "" + +msgid "XHTML-IM" +msgstr "" + +msgid "In-Band Registration" +msgstr "" + +msgid "User Location" +msgstr "" + +msgid "User Avatar" +msgstr "" + +msgid "Chat State Notifications" +msgstr "" + +msgid "Software Version" +msgstr "" + +msgid "Stream Initiation" +msgstr "" + +msgid "File Transfer" +msgstr "" + +msgid "User Mood" +msgstr "" + +msgid "User Activity" +msgstr "" + +msgid "Entity Capabilities" +msgstr "" + +msgid "Encrypted Session Negotiations" +msgstr "" + +msgid "User Tune" +msgstr "" + +msgid "Roster Item Exchange" +msgstr "" + +msgid "Reachability Address" +msgstr "" + +msgid "User Profile" +msgstr "" + +msgid "Jingle" +msgstr "" + +msgid "Jingle Audio" +msgstr "" + +msgid "User Nickname" +msgstr "" + +msgid "Jingle ICE UDP" +msgstr "" + +msgid "Jingle ICE TCP" +msgstr "" + +msgid "Jingle Raw UDP" +msgstr "" + +msgid "Jingle Video" +msgstr "" + +msgid "Jingle DTMF" +msgstr "" + +msgid "Message Receipts" +msgstr "" + +msgid "Public Key Publishing" +msgstr "" + +msgid "User Chatting" +msgstr "" + +msgid "User Browsing" +msgstr "" + +msgid "User Gaming" +msgstr "" + +msgid "User Viewing" +msgstr "" + +msgid "Ping" +msgstr "" + +msgid "Stanza Encryption" +msgstr "" + +msgid "Entity Time" +msgstr "" + +msgid "Delayed Delivery" +msgstr "" + +msgid "Collaborative Data Objects" +msgstr "" + +msgid "File Repository and Sharing" +msgstr "" + +msgid "STUN Service Discovery for Jingle" +msgstr "" + +msgid "Simplified Encrypted Session Negotiation" +msgstr "" + +msgid "Hop Check" +msgstr "" + +msgid "Capabilities" +msgstr "" + +msgid "Priority" +msgstr "" + +msgid "Resource" +msgstr "" + +#, c-format +msgid "%s ago" +msgstr "" + +msgid "Logged off" +msgstr "" + +msgid "Middle Name" +msgstr "" + +msgid "Address" +msgstr "" + +msgid "P.O. Box" +msgstr "" + +msgid "Photo" +msgstr "" + +msgid "Logo" +msgstr "" + +msgid "Un-hide From" +msgstr "" + +msgid "Temporarily Hide From" +msgstr "" + +#. && NOT ME +msgid "Cancel Presence Notification" +msgstr "" + +msgid "(Re-)Request authorization" +msgstr "" + +#. if(NOT ME) +#. shouldn't this just happen automatically when the buddy is +#. removed? +msgid "Unsubscribe" +msgstr "" + +msgid "Log In" +msgstr "" + +msgid "Log Out" +msgstr "" + +msgid "Chatty" +msgstr "" + +msgid "Extended Away" +msgstr "" + +msgid "Do Not Disturb" +msgstr "" + +msgid "JID" +msgstr "" + +msgid "Last Name" +msgstr "" + +msgid "The following are the results of your search" +msgstr "" + +#. current comment from Jabber User Directory users.jabber.org +msgid "" +"Find a contact by entering the search criteria in the given fields. Note: " +"Each field supports wild card searches (%)" +msgstr "" + +msgid "Directory Query Failed" +msgstr "" + +msgid "Could not query the directory server." +msgstr "" + +#. Try to translate the message (see static message +#. list in jabber_user_dir_comments[]) +#, c-format +msgid "Server Instructions: %s" +msgstr "" + +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "" + +msgid "Email Address" +msgstr "" + +msgid "Search for XMPP users" +msgstr "" + +#. "Search" +msgid "Search" +msgstr "" + +msgid "Invalid Directory" +msgstr "" + +msgid "Enter a User Directory" +msgstr "" + +msgid "Select a user directory to search" +msgstr "" + +msgid "Search Directory" +msgstr "" + +msgid "_Room:" +msgstr "" + +msgid "_Server:" +msgstr "" + +msgid "_Handle:" +msgstr "" + +#, c-format +msgid "%s is not a valid room name" +msgstr "" + +msgid "Invalid Room Name" +msgstr "" + +#, c-format +msgid "%s is not a valid server name" +msgstr "" + +msgid "Invalid Server Name" +msgstr "" + +#, c-format +msgid "%s is not a valid room handle" +msgstr "" + +msgid "Invalid Room Handle" +msgstr "" + +msgid "Configuration error" +msgstr "" + +msgid "Unable to configure" +msgstr "" + +msgid "Room Configuration Error" +msgstr "" + +msgid "This room is not capable of being configured" +msgstr "" + +msgid "Registration error" +msgstr "" + +msgid "Nick changing not supported in non-MUC chatrooms" +msgstr "" + +msgid "Error retrieving room list" +msgstr "" + +msgid "Invalid Server" +msgstr "" + +msgid "Enter a Conference Server" +msgstr "" + +msgid "Select a conference server to query" +msgstr "" + +msgid "Find Rooms" +msgstr "" + +msgid "Affiliations:" +msgstr "" + +msgid "No users found" +msgstr "" + +msgid "Roles:" +msgstr "" + +msgid "Ping timeout" +msgstr "" + +msgid "Read Error" +msgstr "" + +#, c-format +msgid "" +"Could not find alternative XMPP connection methods after failing to connect " +"directly.\n" +msgstr "" + +msgid "Invalid XMPP ID" +msgstr "" + +msgid "Invalid XMPP ID. Domain must be set." +msgstr "" + +msgid "Malformed BOSH Connect Server" +msgstr "" + +#, c-format +msgid "Registration of %s@%s successful" +msgstr "" + +#, c-format +msgid "Registration to %s successful" +msgstr "" + +msgid "Registration Successful" +msgstr "" + +msgid "Registration Failed" +msgstr "" + +#, c-format +msgid "Registration from %s successfully removed" +msgstr "" + +msgid "Unregistration Successful" +msgstr "" + +msgid "Unregistration Failed" +msgstr "" + +msgid "Already Registered" +msgstr "" + +msgid "State" +msgstr "" + +msgid "Postal code" +msgstr "" + +msgid "Phone" +msgstr "" + +msgid "Date" +msgstr "" + +msgid "Unregister" +msgstr "" + +msgid "" +"Please fill out the information below to change your account registration." +msgstr "" + +msgid "Please fill out the information below to register your new account." +msgstr "" + +msgid "Register New XMPP Account" +msgstr "" + +msgid "Register" +msgstr "" + +#, c-format +msgid "Change Account Registration at %s" +msgstr "" + +#, c-format +msgid "Register New Account at %s" +msgstr "" + +msgid "Change Registration" +msgstr "" + +msgid "Error unregistering account" +msgstr "" + +msgid "Account successfully unregistered" +msgstr "" + +msgid "Initializing Stream" +msgstr "" + +msgid "Initializing SSL/TLS" +msgstr "" + +msgid "Authenticating" +msgstr "" + +msgid "Re-initializing Stream" +msgstr "" + +msgid "Server doesn't support blocking" +msgstr "" + +msgid "Not Authorized" +msgstr "" + +msgid "Mood" +msgstr "" + +msgid "Now Listening" +msgstr "" + +msgid "Both" +msgstr "" + +msgid "From (To pending)" +msgstr "" + +msgid "From" +msgstr "" + +msgid "To" +msgstr "" + +msgid "None (To pending)" +msgstr "" + +msgid "None" +msgstr "" + +msgid "Subscription" +msgstr "" + +msgid "Mood Text" +msgstr "" + +msgid "Allow Buzz" +msgstr "" + +msgid "Tune Artist" +msgstr "" + +msgid "Tune Title" +msgstr "" + +msgid "Tune Album" +msgstr "" + +msgid "Tune Genre" +msgstr "" + +msgid "Tune Comment" +msgstr "" + +msgid "Tune Track" +msgstr "" + +msgid "Tune Time" +msgstr "" + +msgid "Tune Year" +msgstr "" + +msgid "Tune URL" +msgstr "" + +msgid "Password Changed" +msgstr "" + +msgid "Your password has been changed." +msgstr "" + +msgid "Error changing password" +msgstr "" + +msgid "Password (again)" +msgstr "" + +msgid "Change XMPP Password" +msgstr "" + +msgid "Please enter your new password" +msgstr "" + +msgid "Set User Info..." +msgstr "" + +#. if (js->protocol_options & CHANGE_PASSWORD) { +msgid "Change Password..." +msgstr "" + +#. } +msgid "Search for Users..." +msgstr "" + +msgid "Bad Request" +msgstr "" + +msgid "Conflict" +msgstr "" + +msgid "Feature Not Implemented" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "Gone" +msgstr "" + +msgid "Internal Server Error" +msgstr "" + +msgid "Item Not Found" +msgstr "" + +msgid "Malformed XMPP ID" +msgstr "" + +msgid "Not Acceptable" +msgstr "" + +msgid "Not Allowed" +msgstr "" + +msgid "Payment Required" +msgstr "" + +msgid "Recipient Unavailable" +msgstr "" + +msgid "Registration Required" +msgstr "" + +msgid "Remote Server Not Found" +msgstr "" + +msgid "Remote Server Timeout" +msgstr "" + +msgid "Server Overloaded" +msgstr "" + +msgid "Service Unavailable" +msgstr "" + +msgid "Subscription Required" +msgstr "" + +msgid "Unexpected Request" +msgstr "" + +msgid "Authorization Aborted" +msgstr "" + +msgid "Incorrect encoding in authorization" +msgstr "" + +msgid "Invalid authzid" +msgstr "" + +msgid "Invalid Authorization Mechanism" +msgstr "" + +msgid "Authorization mechanism too weak" +msgstr "" + +msgid "Temporary Authentication Failure" +msgstr "" + +msgid "Authentication Failure" +msgstr "" + +msgid "Bad Format" +msgstr "" + +msgid "Bad Namespace Prefix" +msgstr "" + +msgid "Resource Conflict" +msgstr "" + +msgid "Connection Timeout" +msgstr "" + +msgid "Host Gone" +msgstr "" + +msgid "Host Unknown" +msgstr "" + +msgid "Improper Addressing" +msgstr "" + +msgid "Invalid ID" +msgstr "" + +msgid "Invalid Namespace" +msgstr "" + +msgid "Invalid XML" +msgstr "" + +msgid "Non-matching Hosts" +msgstr "" + +msgid "Policy Violation" +msgstr "" + +msgid "Remote Connection Failed" +msgstr "" + +msgid "Resource Constraint" +msgstr "" + +msgid "Restricted XML" +msgstr "" + +msgid "See Other Host" +msgstr "" + +msgid "System Shutdown" +msgstr "" + +msgid "Undefined Condition" +msgstr "" + +msgid "Unsupported Encoding" +msgstr "" + +msgid "Unsupported Stanza Type" +msgstr "" + +msgid "Unsupported Version" +msgstr "" + +msgid "XML Not Well Formed" +msgstr "" + +msgid "Stream Error" +msgstr "" + +#, c-format +msgid "Unable to ban user %s" +msgstr "" + +#, c-format +msgid "Unknown affiliation: \"%s\"" +msgstr "" + +#, c-format +msgid "Unable to affiliate user %s as \"%s\"" +msgstr "" + +#, c-format +msgid "Unknown role: \"%s\"" +msgstr "" + +#, c-format +msgid "Unable to set role \"%s\" for user: %s" +msgstr "" + +#, c-format +msgid "Unable to kick user %s" +msgstr "" + +#, c-format +msgid "Unable to ping user %s" +msgstr "" + +#, c-format +msgid "Unable to buzz, because there is nothing known about %s." +msgstr "" + +#, c-format +msgid "Unable to buzz, because %s might be offline." +msgstr "" + +#, c-format +msgid "" +"Unable to buzz, because %s does not support it or does not wish to receive " +"buzzes now." +msgstr "" + +#, c-format +msgid "Buzzing %s..." +msgstr "" + +#. Yahoo only supports one attention command: the 'buzz'. +#. This is index number YAHOO_BUZZ. +msgid "Buzz" +msgstr "" + +#, c-format +msgid "%s has buzzed you!" +msgstr "" + +#, c-format +msgid "Unable to initiate media with %s: invalid JID" +msgstr "" + +#, c-format +msgid "Unable to initiate media with %s: user is not online" +msgstr "" + +#, c-format +msgid "Unable to initiate media with %s: not subscribed to user presence" +msgstr "" + +msgid "Media Initiation Failed" +msgstr "" + +#, c-format +msgid "" +"Please select the resource of %s with which you would like to start a media " +"session." +msgstr "" + +msgid "Select a Resource" +msgstr "" + +msgid "Initiate Media" +msgstr "" + +msgid "config: Configure a chat room." +msgstr "" + +msgid "configure: Configure a chat room." +msgstr "" + +msgid "part [room]: Leave the room." +msgstr "" + +msgid "register: Register with a chat room." +msgstr "" + +msgid "topic [new topic]: View or change the topic." +msgstr "" + +msgid "ban <user> [reason]: Ban a user from the room." +msgstr "" + +msgid "" +"affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: Get " +"the users with an affiliation or set users' affiliation with the room." +msgstr "" + +msgid "" +"role <moderator|participant|visitor|none> [nick1] [nick2] ...: Get the " +"users with an role or set users' role with the room." +msgstr "" + +msgid "invite <user> [message]: Invite a user to the room." +msgstr "" + +msgid "join: <room> [password]: Join a chat on this server." +msgstr "" + +msgid "kick <user> [reason]: Kick a user from the room." +msgstr "" + +msgid "" +"msg <user> <message>: Send a private message to another user." +msgstr "" + +msgid "ping <jid>:\tPing a user/component/server." +msgstr "" + +msgid "buzz: Buzz a user to get their attention" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "XMPP Protocol Plugin" +msgstr "" + +#. Translators: 'domain' is used here in the context of Internet domains, e.g. pidgin.im +msgid "Domain" +msgstr "" + +msgid "Require SSL/TLS" +msgstr "" + +msgid "Force old (port 5223) SSL" +msgstr "" + +msgid "Allow plaintext auth over unencrypted streams" +msgstr "" + +msgid "Connect port" +msgstr "" + +#. TODO: default to automatically try different ports. Make the user be +#. * able to set the first port to try (like LastConnectedPort in Windows client). +#. Account options +msgid "Connect server" +msgstr "" + +msgid "File transfer proxies" +msgstr "" + +#. this should probably be part of global smiley theme settings later on, +#. shared with MSN +msgid "Show Custom Smileys" +msgstr "" + +#, c-format +msgid "%s has left the conversation." +msgstr "" + +#, c-format +msgid "Message from %s" +msgstr "" + +#, c-format +msgid "%s has set the topic to: %s" +msgstr "" + +#, c-format +msgid "The topic is: %s" +msgstr "" + +#, c-format +msgid "Message delivery to %s failed: %s" +msgstr "" + +msgid "XMPP Message Error" +msgstr "" + +#, c-format +msgid "(Code %s)" +msgstr "" + +msgid "XML Parse error" +msgstr "" + +msgid "Unknown Error in presence" +msgstr "" + +msgid "Create New Room" +msgstr "" + +msgid "" +"You are creating a new room. Would you like to configure it, or accept the " +"default settings?" +msgstr "" + +msgid "_Configure Room" +msgstr "" + +msgid "_Accept Defaults" +msgstr "" + +#, c-format +msgid "Error joining chat %s" +msgstr "" + +#, c-format +msgid "Error in chat %s" +msgstr "" + +msgid "An error occured on the in-band bytestream transfer\n" +msgstr "" + +msgid "Transfer was closed." +msgstr "" + +msgid "Failed to open the file" +msgstr "" + +msgid "Failed to open in-band bytestream" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, user does not support file transfers" +msgstr "" + +msgid "File Send Failed" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, invalid JID" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, user is not online" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, not subscribed to user presence" +msgstr "" + +#, c-format +msgid "Please select the resource of %s to which you would like to send a file" +msgstr "" + +msgid "Edit User Mood" +msgstr "" + +msgid "Please select your mood from the list." +msgstr "" + +msgid "Set" +msgstr "" + +msgid "Set Mood..." +msgstr "" + +msgid "Set User Nickname" +msgstr "" + +msgid "Please specify a new nickname for you." +msgstr "" + +msgid "" +"This information is visible to all contacts on your contact list, so choose " +"something appropriate." +msgstr "" + +msgid "Set Nickname..." +msgstr "" + +msgid "Actions" +msgstr "" + +msgid "Select an action" +msgstr "" + +#. only notify the user about problems adding to the friends list +#. * maybe we should do something else for other lists, but it probably +#. * won't cause too many problems if we just ignore it +#, c-format +msgid "Unable to add \"%s\"." +msgstr "" + +msgid "Buddy Add error" +msgstr "" + +msgid "The username specified does not exist." +msgstr "" + +#, c-format +msgid "Buddy list synchronization issue in %s (%s)" +msgstr "" + +#, c-format +msgid "" +"%s on the local list is inside the group \"%s\" but not on the server list. " +"Do you want this buddy to be added?" +msgstr "" + +#, c-format +msgid "" +"%s is on the local list but not on the server list. Do you want this buddy " +"to be added?" +msgstr "" + +#, c-format +msgid "Unable to parse message" +msgstr "" + +#, c-format +msgid "Syntax Error (probably a client bug)" +msgstr "" + +#, c-format +msgid "Invalid email address" +msgstr "" + +#, c-format +msgid "User does not exist" +msgstr "" + +#, c-format +msgid "Fully qualified domain name missing" +msgstr "" + +#, c-format +msgid "Already logged in" +msgstr "" + +#, c-format +msgid "Invalid username" +msgstr "" + +#, c-format +msgid "Invalid friendly name" +msgstr "" + +#, c-format +msgid "List full" +msgstr "" + +#, c-format +msgid "Already there" +msgstr "" + +#, c-format +msgid "Not on list" +msgstr "" + +#, c-format +msgid "User is offline" +msgstr "" + +#, c-format +msgid "Already in the mode" +msgstr "" + +#, c-format +msgid "Already in opposite list" +msgstr "" + +#, c-format +msgid "Too many groups" +msgstr "" + +#, c-format +msgid "Invalid group" +msgstr "" + +#, c-format +msgid "User not in group" +msgstr "" + +#, c-format +msgid "Group name too long" +msgstr "" + +#, c-format +msgid "Cannot remove group zero" +msgstr "" + +#, c-format +msgid "Tried to add a user to a group that doesn't exist" +msgstr "" + +#, c-format +msgid "Switchboard failed" +msgstr "" + +#, c-format +msgid "Notify transfer failed" +msgstr "" + +#, c-format +msgid "Required fields missing" +msgstr "" + +#, c-format +msgid "Too many hits to a FND" +msgstr "" + +#, c-format +msgid "Not logged in" +msgstr "" + +#, c-format +msgid "Service temporarily unavailable" +msgstr "" + +#, c-format +msgid "Database server error" +msgstr "" + +#, c-format +msgid "Command disabled" +msgstr "" + +#, c-format +msgid "File operation error" +msgstr "" + +#, c-format +msgid "Memory allocation error" +msgstr "" + +#, c-format +msgid "Wrong CHL value sent to server" +msgstr "" + +#, c-format +msgid "Server busy" +msgstr "" + +#, c-format +msgid "Server unavailable" +msgstr "" + +#, c-format +msgid "Peer notification server down" +msgstr "" + +#, c-format +msgid "Database connect error" +msgstr "" + +#, c-format +msgid "Server is going down (abandon ship)" +msgstr "" + +#, c-format +msgid "Error creating connection" +msgstr "" + +#, c-format +msgid "CVR parameters are either unknown or not allowed" +msgstr "" + +#, c-format +msgid "Unable to write" +msgstr "" + +#, c-format +msgid "Session overload" +msgstr "" + +#, c-format +msgid "User is too active" +msgstr "" + +#, c-format +msgid "Too many sessions" +msgstr "" + +#, c-format +msgid "Passport not verified" +msgstr "" + +#, c-format +msgid "Bad friend file" +msgstr "" + +#, c-format +msgid "Not expected" +msgstr "" + +#, c-format +msgid "Friendly name changes too rapidly" +msgstr "" + +#, c-format +msgid "Server too busy" +msgstr "" + +#, c-format +msgid "Authentication failed" +msgstr "" + +#, c-format +msgid "Not allowed when offline" +msgstr "" + +#, c-format +msgid "Not accepting new users" +msgstr "" + +#, c-format +msgid "Kids Passport without parental consent" +msgstr "" + +#, c-format +msgid "Passport account not yet verified" +msgstr "" + +msgid "Passport account suspended" +msgstr "" + +#, c-format +msgid "Bad ticket" +msgstr "" + +#, c-format +msgid "Unknown Error Code %d" +msgstr "" + +#, c-format +msgid "MSN Error: %s\n" +msgstr "" + +msgid "Other Contacts" +msgstr "" + +msgid "Non-IM Contacts" +msgstr "" + +msgid "Nudge" +msgstr "" + +#, c-format +msgid "%s has nudged you!" +msgstr "" + +#, c-format +msgid "Nudging %s..." +msgstr "" + +msgid "Email Address..." +msgstr "" + +msgid "Your new MSN friendly name is too long." +msgstr "" + +msgid "Set your friendly name." +msgstr "" + +msgid "This is the name that other MSN buddies will see you as." +msgstr "" + +msgid "Set your home phone number." +msgstr "" + +msgid "Set your work phone number." +msgstr "" + +msgid "Set your mobile phone number." +msgstr "" + +msgid "Allow MSN Mobile pages?" +msgstr "" + +msgid "" +"Do you want to allow or disallow people on your buddy list to send you MSN " +"Mobile pages to your cell phone or other mobile device?" +msgstr "" + +msgid "Allow" +msgstr "" + +msgid "Disallow" +msgstr "" + +#, c-format +msgid "Blocked Text for %s" +msgstr "" + +msgid "No text is blocked for this account." +msgstr "" + +#, c-format +msgid "" +"MSN servers are currently blocking the following regular expressions:
%s" +msgstr "" + +msgid "This account does not have email enabled." +msgstr "" + +msgid "Send a mobile message." +msgstr "" + +msgid "Page" +msgstr "" + +msgid "Playing a game" +msgstr "" + +msgid "Working" +msgstr "" + +msgid "Has you" +msgstr "" + +msgid "Home Phone Number" +msgstr "" + +msgid "Work Phone Number" +msgstr "" + +msgid "Mobile Phone Number" +msgstr "" + +msgid "Be Right Back" +msgstr "" + +msgid "Busy" +msgstr "" + +msgid "On the Phone" +msgstr "" + +msgid "Out to Lunch" +msgstr "" + +#. primitive +#. ID +#. name - use default +#. saveable +#. should be user_settable some day +#. independent +msgid "Artist" +msgstr "" + +msgid "Album" +msgstr "" + +msgid "Game Title" +msgstr "" + +msgid "Office Title" +msgstr "" + +msgid "Set Friendly Name..." +msgstr "" + +msgid "Set Home Phone Number..." +msgstr "" + +msgid "Set Work Phone Number..." +msgstr "" + +msgid "Set Mobile Phone Number..." +msgstr "" + +msgid "Enable/Disable Mobile Devices..." +msgstr "" + +msgid "Allow/Disallow Mobile Pages..." +msgstr "" + +msgid "View Blocked Text..." +msgstr "" + +msgid "Open Hotmail Inbox" +msgstr "" + +msgid "Send to Mobile" +msgstr "" + +msgid "Initiate _Chat" +msgstr "" + +msgid "SSL support is needed for MSN. Please install a supported SSL library." +msgstr "" + +msgid "Failed to connect to server." +msgstr "" + +msgid "Error retrieving profile" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Age" +msgstr "" + +msgid "Occupation" +msgstr "" + +msgid "Location" +msgstr "" + +msgid "Hobbies and Interests" +msgstr "" + +msgid "A Little About Me" +msgstr "" + +msgid "Social" +msgstr "" + +msgid "Marital Status" +msgstr "" + +msgid "Interests" +msgstr "" + +msgid "Pets" +msgstr "" + +msgid "Hometown" +msgstr "" + +msgid "Places Lived" +msgstr "" + +msgid "Fashion" +msgstr "" + +msgid "Humor" +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Favorite Quote" +msgstr "" + +msgid "Contact Info" +msgstr "" + +msgid "Personal" +msgstr "" + +msgid "Significant Other" +msgstr "" + +msgid "Home Phone" +msgstr "" + +msgid "Home Phone 2" +msgstr "" + +msgid "Home Address" +msgstr "" + +msgid "Personal Mobile" +msgstr "" + +msgid "Home Fax" +msgstr "" + +msgid "Personal Email" +msgstr "" + +msgid "Personal IM" +msgstr "" + +msgid "Anniversary" +msgstr "" + +#. Business +msgid "Work" +msgstr "" + +msgid "Job Title" +msgstr "" + +msgid "Company" +msgstr "" + +msgid "Department" +msgstr "" + +msgid "Profession" +msgstr "" + +msgid "Work Phone" +msgstr "" + +msgid "Work Phone 2" +msgstr "" + +msgid "Work Address" +msgstr "" + +msgid "Work Mobile" +msgstr "" + +msgid "Work Pager" +msgstr "" + +msgid "Work Fax" +msgstr "" + +msgid "Work Email" +msgstr "" + +msgid "Work IM" +msgstr "" + +msgid "Start Date" +msgstr "" + +msgid "Favorite Things" +msgstr "" + +msgid "Last Updated" +msgstr "" + +msgid "Homepage" +msgstr "" + +msgid "The user has not created a public profile." +msgstr "" + +msgid "" +"MSN reported not being able to find the user's profile. This either means " +"that the user does not exist, or that the user exists but has not created a " +"public profile." +msgstr "" + +msgid "" +"Could not find any information in the user's profile. The user most likely " +"does not exist." +msgstr "" + +msgid "View web profile" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. *< summary +msgid "Windows Live Messenger Protocol Plugin" +msgstr "" + +msgid "Use HTTP Method" +msgstr "" + +msgid "HTTP Method Server" +msgstr "" + +msgid "Show custom smileys" +msgstr "" + +msgid "nudge: nudge a user to get their attention" +msgstr "" + +msgid "Windows Live ID authentication:Unable to connect" +msgstr "" + +msgid "Windows Live ID authentication:Invalid response" +msgstr "" + +#, c-format +msgid "%s just sent you a Nudge!" +msgstr "" + +#, c-format +msgid "Unknown error (%d): %s" +msgstr "" + +msgid "Unable to add user" +msgstr "" + +#, c-format +msgid "Unknown error (%d)" +msgstr "" + +msgid "The following users are missing from your addressbook" +msgstr "" + +#, c-format +msgid "Unable to add user on %s (%s)" +msgstr "" + +#, c-format +msgid "Unable to block user on %s (%s)" +msgstr "" + +#, c-format +msgid "Unable to permit user on %s (%s)" +msgstr "" + +#, c-format +msgid "%s could not be added because your buddy list is full." +msgstr "" + +#, c-format +msgid "%s is not a valid passport account." +msgstr "" + +msgid "Service Temporarily Unavailable." +msgstr "" + +msgid "Unknown error." +msgstr "" + +msgid "Mobile message was not sent because it was too long." +msgstr "" + +#, c-format +msgid "" +"The MSN server will shut down for maintenance in %d minute. You will " +"automatically be signed out at that time. Please finish any conversations " +"in progress.\n" +"\n" +"After the maintenance has been completed, you will be able to successfully " +"sign in." +msgid_plural "" +"The MSN server will shut down for maintenance in %d minutes. You will " +"automatically be signed out at that time. Please finish any conversations " +"in progress.\n" +"\n" +"After the maintenance has been completed, you will be able to successfully " +"sign in." +msgstr[0] "" +msgstr[1] "" + +msgid "" +"Message was not sent because the system is unavailable. This normally " +"happens when the user is blocked or does not exist." +msgstr "" + +msgid "Message was not sent because messages are being sent too quickly." +msgstr "" + +msgid "Message was not sent because an unknown encoding error occurred." +msgstr "" + +msgid "Message was not sent because an unknown error occurred." +msgstr "" + +msgid "Unable to connect" +msgstr "" + +msgid "Writing error" +msgstr "" + +msgid "Reading error" +msgstr "" + +#, c-format +msgid "" +"Connection error from %s server:\n" +"%s" +msgstr "" + +msgid "Our protocol is not supported by the server." +msgstr "" + +msgid "Error parsing HTTP." +msgstr "" + +msgid "You have signed on from another location." +msgstr "" + +msgid "The MSN servers are temporarily unavailable. Please wait and try again." +msgstr "" + +msgid "The MSN servers are going down temporarily." +msgstr "" + +#, c-format +msgid "Unable to authenticate: %s" +msgstr "" + +msgid "" +"Your MSN buddy list is temporarily unavailable. Please wait and try again." +msgstr "" + +msgid "Handshaking" +msgstr "" + +msgid "Transferring" +msgstr "" + +msgid "Starting authentication" +msgstr "" + +msgid "Getting cookie" +msgstr "" + +msgid "Sending cookie" +msgstr "" + +msgid "Retrieving buddy list" +msgstr "" + +msgid "Away From Computer" +msgstr "" + +msgid "On The Phone" +msgstr "" + +msgid "Out To Lunch" +msgstr "" + +msgid "Message may have not been sent because a timeout occurred:" +msgstr "" + +msgid "Message could not be sent, not allowed while invisible:" +msgstr "" + +msgid "Message could not be sent because the user is offline:" +msgstr "" + +msgid "Message could not be sent because a connection error occurred:" +msgstr "" + +msgid "Message could not be sent because we are sending too quickly:" +msgstr "" + +msgid "" +"Message could not be sent because we were unable to establish a session with " +"the server. This is likely a server problem, try again in a few minutes:" +msgstr "" + +msgid "" +"Message could not be sent because an error with the switchboard occurred:" +msgstr "" + +msgid "Message may have not been sent because an unknown error occurred:" +msgstr "" + +msgid "Delete Buddy from Address Book?" +msgstr "" + +msgid "Do you want to delete this buddy from your address book as well?" +msgstr "" + +msgid "The username specified is invalid." +msgstr "" + +msgid "This Hotmail account may not be active." +msgstr "" + +msgid "Profile URL" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "MSN Protocol Plugin" +msgstr "" + +#, c-format +msgid "%s is not a valid group." +msgstr "" + +#, c-format +msgid "%s on %s (%s)" +msgstr "" + +msgid "Unable to rename group" +msgstr "" + +msgid "Unable to delete group" +msgstr "" + +#, c-format +msgid "%s has added you to his or her buddy list." +msgstr "" + +#, c-format +msgid "%s has removed you from his or her buddy list." +msgstr "" + +#, c-format +msgid "No such user: %s" +msgstr "" + +msgid "User lookup" +msgstr "" + +msgid "Reading challenge" +msgstr "" + +msgid "Unexpected challenge length from server" +msgstr "" + +msgid "Logging in" +msgstr "" + +msgid "MySpaceIM - No Username Set" +msgstr "" + +msgid "You appear to have no MySpace username." +msgstr "" + +msgid "Would you like to set one now? (Note: THIS CANNOT BE CHANGED!)" +msgstr "" + +msgid "Lost connection with server" +msgstr "" + +#. Can't write _()'d strings in array initializers. Workaround. +#. khc: then use N_() in the array initializer and use _() when they are +#. used +msgid "New mail messages" +msgstr "" + +msgid "New blog comments" +msgstr "" + +msgid "New profile comments" +msgstr "" + +msgid "New friend requests!" +msgstr "" + +msgid "New picture comments" +msgstr "" + +msgid "MySpace" +msgstr "" + +msgid "IM Friends" +msgstr "" + +#, c-format +msgid "" +"%d buddy was added or updated from the server (including buddies already on " +"the server-side list)" +msgid_plural "" +"%d buddies were added or updated from the server (including buddies already " +"on the server-side list)" +msgstr[0] "" +msgstr[1] "" + +msgid "Add contacts from server" +msgstr "" + +#. The session is now set up, ready to be connected. This emits the +#. * signedOn signal, so clients can now do anything with msimprpl, and +#. * we're ready for it (session key, userid, username all setup). +msgid "Connected" +msgstr "" + +#, c-format +msgid "Protocol error, code %d: %s" +msgstr "" + +#, c-format +msgid "" +"%s Your password is %d characters, greater than the expected maximum length " +"of %d for MySpaceIM. Please shorten your password at http://profileedit." +"myspace.com/index.cfm?fuseaction=accountSettings.changePassword and try " +"again." +msgstr "" + +msgid "MySpaceIM Error" +msgstr "" + +msgid "Invalid input condition" +msgstr "" + +msgid "Read buffer full (2)" +msgstr "" + +msgid "Unparseable message" +msgstr "" + +#, c-format +msgid "Couldn't connect to host: %s (%d)" +msgstr "" + +msgid "Failed to add buddy" +msgstr "" + +msgid "'addbuddy' command failed." +msgstr "" + +msgid "persist command failed" +msgstr "" + +msgid "Failed to remove buddy" +msgstr "" + +msgid "'delbuddy' command failed" +msgstr "" + +msgid "blocklist command failed" +msgstr "" + +msgid "Missing Cipher" +msgstr "" + +msgid "The RC4 cipher could not be found" +msgstr "" + +msgid "" +"Upgrade to a libpurple with RC4 support (>= 2.0.1). MySpaceIM plugin will " +"not be loaded." +msgstr "" + +msgid "Add friends from MySpace.com" +msgstr "" + +msgid "Importing friends failed" +msgstr "" + +#. TODO: find out how +msgid "Find people..." +msgstr "" + +msgid "Change IM name..." +msgstr "" + +msgid "myim URL handler" +msgstr "" + +msgid "No suitable MySpaceIM account could be found to open this myim URL." +msgstr "" + +msgid "Enable the proper MySpaceIM account and try again." +msgstr "" + +msgid "Show display name in status text" +msgstr "" + +msgid "Show headline in status text" +msgstr "" + +msgid "Send emoticons" +msgstr "" + +msgid "Screen resolution (dots per inch)" +msgstr "" + +msgid "Base font size (points)" +msgstr "" + +msgid "User" +msgstr "" + +msgid "Headline" +msgstr "" + +msgid "Song" +msgstr "" + +msgid "Total Friends" +msgstr "" + +msgid "Client Version" +msgstr "" + +msgid "MySpaceIM - Username Available" +msgstr "" + +msgid "This username is available. Would you like to set it?" +msgstr "" + +msgid "ONCE SET, THIS CANNOT BE CHANGED!" +msgstr "" + +msgid "MySpaceIM - Please Set a Username" +msgstr "" + +msgid "This username is unavailable." +msgstr "" + +msgid "Please try another username:" +msgstr "" + +#. Protocol won't log in now without a username set.. Disconnect +msgid "No username set" +msgstr "" + +msgid "Please enter a username to check its availability:" +msgstr "" + +#. TODO: icons for each zap +#. Lots of comments for translators: +#. Zap means "to strike suddenly and forcefully as if with a +#. * projectile or weapon." This term often has an electrical +#. * connotation, for example, "he was zapped by electricity when +#. * he put a fork in the toaster." +msgid "Zap" +msgstr "" + +#, c-format +msgid "%s has zapped you!" +msgstr "" + +#, c-format +msgid "Zapping %s..." +msgstr "" + +#. Whack means "to hit or strike someone with a sharp blow" +msgid "Whack" +msgstr "" + +#, c-format +msgid "%s has whacked you!" +msgstr "" + +#, c-format +msgid "Whacking %s..." +msgstr "" + +#. Torch means "to set on fire." Don't worry, this doesn't +#. * make a whole lot of sense in English, either. Feel free +#. * to translate it literally. +msgid "Torch" +msgstr "" + +#, c-format +msgid "%s has torched you!" +msgstr "" + +#, c-format +msgid "Torching %s..." +msgstr "" + +#. Smooch means "to kiss someone, often enthusiastically" +msgid "Smooch" +msgstr "" + +#, c-format +msgid "%s has smooched you!" +msgstr "" + +#, c-format +msgid "Smooching %s..." +msgstr "" + +#. A hug is a display of affection; wrapping your arms around someone +msgid "Hug" +msgstr "" + +#, c-format +msgid "%s has hugged you!" +msgstr "" + +#, c-format +msgid "Hugging %s..." +msgstr "" + +#. Slap means "to hit someone with an open/flat hand" +msgid "Slap" +msgstr "" + +#, c-format +msgid "%s has slapped you!" +msgstr "" + +#, c-format +msgid "Slapping %s..." +msgstr "" + +#. Goose means "to pinch someone on their butt" +msgid "Goose" +msgstr "" + +#, c-format +msgid "%s has goosed you!" +msgstr "" + +#, c-format +msgid "Goosing %s..." +msgstr "" + +#. A high-five is when two people's hands slap each other +#. * in the air above their heads. It is done to celebrate +#. * something, often a victory, or to congratulate someone. +msgid "High-five" +msgstr "" + +#, c-format +msgid "%s has high-fived you!" +msgstr "" + +#, c-format +msgid "High-fiving %s..." +msgstr "" + +#. We're not entirely sure what the MySpace people mean by +#. * this... but we think it's the equivalent of "prank." Or, for +#. * someone to perform a mischievous trick or practical joke. +msgid "Punk" +msgstr "" + +#, c-format +msgid "%s has punk'd you!" +msgstr "" + +#, c-format +msgid "Punking %s..." +msgstr "" + +#. Raspberry is a slang term for the vibrating sound made +#. * when you stick your tongue out of your mouth with your +#. * lips closed and blow. It is typically done when +#. * gloating or bragging. Nowadays it's a pretty silly +#. * gesture, so it does not carry a harsh negative +#. * connotation. It is generally used in a playful tone +#. * with friends. +msgid "Raspberry" +msgstr "" + +#, c-format +msgid "%s has raspberried you!" +msgstr "" + +#, c-format +msgid "Raspberrying %s..." +msgstr "" + +msgid "Required parameters not passed in" +msgstr "" + +msgid "Unable to write to network" +msgstr "" + +msgid "Unable to read from network" +msgstr "" + +msgid "Error communicating with server" +msgstr "" + +msgid "Conference not found" +msgstr "" + +msgid "Conference does not exist" +msgstr "" + +msgid "A folder with that name already exists" +msgstr "" + +msgid "Not supported" +msgstr "" + +msgid "Password has expired" +msgstr "" + +msgid "Incorrect password" +msgstr "" + +msgid "User not found" +msgstr "" + +msgid "Account has been disabled" +msgstr "" + +msgid "The server could not access the directory" +msgstr "" + +msgid "Your system administrator has disabled this operation" +msgstr "" + +msgid "The server is unavailable; try again later" +msgstr "" + +msgid "Cannot add a contact to the same folder twice" +msgstr "" + +msgid "Cannot add yourself" +msgstr "" + +msgid "Master archive is misconfigured" +msgstr "" + +msgid "Incorrect username or password" +msgstr "" + +msgid "Could not recognize the host of the username you entered" +msgstr "" + +msgid "" +"Your account has been disabled because too many incorrect passwords were " +"entered" +msgstr "" + +msgid "You cannot add the same person twice to a conversation" +msgstr "" + +msgid "You have reached your limit for the number of contacts allowed" +msgstr "" + +msgid "You have entered an incorrect username" +msgstr "" + +msgid "An error occurred while updating the directory" +msgstr "" + +msgid "Incompatible protocol version" +msgstr "" + +msgid "The user has blocked you" +msgstr "" + +msgid "" +"This evaluation version does not allow more than ten users to log in at one " +"time" +msgstr "" + +msgid "The user is either offline or you are blocked" +msgstr "" + +#, c-format +msgid "Unknown error: 0x%X" +msgstr "" + +#, c-format +msgid "Login failed (%s)." +msgstr "" + +#, c-format +msgid "Unable to send message. Could not get details for user (%s)." +msgstr "" + +#, c-format +msgid "Unable to add %s to your buddy list (%s)." +msgstr "" + +#. TODO: Improve this! message to who or for what conference? +#, c-format +msgid "Unable to send message (%s)." +msgstr "" + +#, c-format +msgid "Unable to invite user (%s)." +msgstr "" + +#, c-format +msgid "Unable to send message to %s. Could not create the conference (%s)." +msgstr "" + +#, c-format +msgid "Unable to send message. Could not create the conference (%s)." +msgstr "" + +#, c-format +msgid "" +"Unable to move user %s to folder %s in the server side list. Error while " +"creating folder (%s)." +msgstr "" + +#, c-format +msgid "" +"Unable to add %s to your buddy list. Error creating folder in server side " +"list (%s)." +msgstr "" + +#, c-format +msgid "Could not get details for user %s (%s)." +msgstr "" + +#, c-format +msgid "Unable to add user to privacy list (%s)." +msgstr "" + +#, c-format +msgid "Unable to add %s to deny list (%s)." +msgstr "" + +#, c-format +msgid "Unable to add %s to permit list (%s)." +msgstr "" + +#, c-format +msgid "Unable to remove %s from privacy list (%s)." +msgstr "" + +#, c-format +msgid "Unable to change server side privacy settings (%s)." +msgstr "" + +#, c-format +msgid "Unable to create conference (%s)." +msgstr "" + +msgid "Error communicating with server. Closing connection." +msgstr "" + +msgid "Telephone Number" +msgstr "" + +msgid "Personal Title" +msgstr "" + +msgid "Mailstop" +msgstr "" + +msgid "User ID" +msgstr "" + +#. tag = _("DN"); +#. value = nm_user_record_get_dn(user_record); +#. if (value) { +#. purple_notify_user_info_add_pair(user_info, tag, value); +#. } +#. +msgid "Full name" +msgstr "" + +#, c-format +msgid "GroupWise Conference %d" +msgstr "" + +msgid "Authenticating..." +msgstr "" + +msgid "Unable to connect to server." +msgstr "" + +msgid "Waiting for response..." +msgstr "" + +#, c-format +msgid "%s has been invited to this conversation." +msgstr "" + +msgid "Invitation to Conversation" +msgstr "" + +#, c-format +msgid "" +"Invitation from: %s\n" +"\n" +"Sent: %s" +msgstr "" + +msgid "Would you like to join the conversation?" +msgstr "" + +msgid "You have been logged out because you logged in at another workstation." +msgstr "" + +#, c-format +msgid "" +"%s appears to be offline and did not receive the message that you just sent." +msgstr "" + +msgid "" +"Unable to connect to server. Please enter the address of the server you wish " +"to connect to." +msgstr "" + +msgid "Error. SSL support is not installed." +msgstr "" + +msgid "This conference has been closed. No more messages can be sent." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Novell GroupWise Messenger Protocol Plugin" +msgstr "" + +msgid "Server address" +msgstr "" + +msgid "Server port" +msgstr "" + +msgid "Could not join chat room" +msgstr "" + +msgid "Invalid chat room name" +msgstr "" + +msgid "Server closed the connection." +msgstr "" + +#, c-format +msgid "" +"Lost connection with server:\n" +"%s" +msgstr "" + +msgid "Received invalid data on connection with server." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "AIM Protocol Plugin" +msgstr "" + +msgid "ICQ UIN..." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "ICQ Protocol Plugin" +msgstr "" + +msgid "Encoding" +msgstr "" + +msgid "The remote user has closed the connection." +msgstr "" + +msgid "The remote user has declined your request." +msgstr "" + +#, c-format +msgid "Lost connection with the remote user:
%s" +msgstr "" + +msgid "Received invalid data on connection with remote user." +msgstr "" + +msgid "Could not establish a connection with the remote user." +msgstr "" + +msgid "Direct IM established" +msgstr "" + +#, c-format +msgid "" +"%s tried to send you a %s file, but we only allow files up to %s over Direct " +"IM. Try using file transfer instead.\n" +msgstr "" + +#, c-format +msgid "File %s is %s, which is larger than the maximum size of %s." +msgstr "" + +msgid "Invalid error" +msgstr "" + +msgid "Invalid SNAC" +msgstr "" + +msgid "Rate to host" +msgstr "" + +msgid "Rate to client" +msgstr "" + +msgid "Service unavailable" +msgstr "" + +msgid "Service not defined" +msgstr "" + +msgid "Obsolete SNAC" +msgstr "" + +msgid "Not supported by host" +msgstr "" + +msgid "Not supported by client" +msgstr "" + +msgid "Refused by client" +msgstr "" + +msgid "Reply too big" +msgstr "" + +msgid "Responses lost" +msgstr "" + +msgid "Request denied" +msgstr "" + +msgid "Busted SNAC payload" +msgstr "" + +msgid "Insufficient rights" +msgstr "" + +msgid "In local permit/deny" +msgstr "" + +msgid "Warning level too high (sender)" +msgstr "" + +msgid "Warning level too high (receiver)" +msgstr "" + +msgid "User temporarily unavailable" +msgstr "" + +msgid "No match" +msgstr "" + +msgid "List overflow" +msgstr "" + +msgid "Request ambiguous" +msgstr "" + +msgid "Queue full" +msgstr "" + +msgid "Not while on AOL" +msgstr "" + +msgid "" +"(There was an error receiving this message. The buddy you are speaking with " +"is probably using a different encoding than expected. If you know what " +"encoding he is using, you can specify it in the advanced account options for " +"your AIM/ICQ account.)" +msgstr "" + +#, c-format +msgid "" +"(There was an error receiving this message. Either you and %s have " +"different encodings selected, or %s has a buggy client.)" +msgstr "" + +#. Label +msgid "Buddy Icon" +msgstr "" + +msgid "Voice" +msgstr "" + +msgid "AIM Direct IM" +msgstr "" + +msgid "Get File" +msgstr "" + +msgid "Games" +msgstr "" + +msgid "Add-Ins" +msgstr "" + +msgid "Send Buddy List" +msgstr "" + +msgid "ICQ Direct Connect" +msgstr "" + +msgid "AP User" +msgstr "" + +msgid "ICQ RTF" +msgstr "" + +msgid "Nihilist" +msgstr "" + +msgid "ICQ Server Relay" +msgstr "" + +msgid "Old ICQ UTF8" +msgstr "" + +msgid "Trillian Encryption" +msgstr "" + +msgid "ICQ UTF8" +msgstr "" + +msgid "Hiptop" +msgstr "" + +msgid "Security Enabled" +msgstr "" + +msgid "Video Chat" +msgstr "" + +msgid "iChat AV" +msgstr "" + +msgid "Live Video" +msgstr "" + +msgid "Camera" +msgstr "" + +msgid "Screen Sharing" +msgstr "" + +msgid "Free For Chat" +msgstr "" + +msgid "Not Available" +msgstr "" + +msgid "Occupied" +msgstr "" + +msgid "Web Aware" +msgstr "" + +msgid "Invisible" +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Warning Level" +msgstr "" + +msgid "Buddy Comment" +msgstr "" + +#, c-format +msgid "" +"Could not connect to authentication server:\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"Could not connect to BOS server:\n" +"%s" +msgstr "" + +msgid "Username sent" +msgstr "" + +msgid "Connection established, cookie sent" +msgstr "" + +#. TODO: Don't call this with ssi +msgid "Finalizing connection" +msgstr "" + +#, c-format +msgid "" +"Unable to login: Could not sign on as %s because the username is invalid. " +"Usernames must be a valid email address, or start with a letter and contain " +"only letters, numbers and spaces, or contain only numbers." +msgstr "" + +#. Unregistered username +#. uid is not exist +msgid "Invalid username." +msgstr "" + +msgid "Incorrect password." +msgstr "" + +#. Suspended account +msgid "Your account is currently suspended." +msgstr "" + +#. service temporarily unavailable +msgid "The AOL Instant Messenger service is temporarily unavailable." +msgstr "" + +#. username connecting too frequently +#. IP address connecting too frequently +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 "" + +#, c-format +msgid "The client version you are using is too old. Please upgrade at %s" +msgstr "" + +msgid "Could Not Connect" +msgstr "" + +msgid "Received authorization" +msgstr "" + +msgid "The SecurID key entered is invalid." +msgstr "" + +msgid "Enter SecurID" +msgstr "" + +msgid "Enter the 6 digit number from the digital display." +msgstr "" + +#. * +#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. +#. +msgid "_OK" +msgstr "" + +#, c-format +msgid "You may be disconnected shortly. If so, check %s for updates." +msgstr "" + +msgid "Unable to get a valid AIM login hash." +msgstr "" + +#, c-format +msgid "You may be disconnected shortly. Check %s for updates." +msgstr "" + +msgid "Unable to get a valid login hash." +msgstr "" + +msgid "Password sent" +msgstr "" + +msgid "Unable to initialize connection" +msgstr "" + +msgid "Please authorize me so I can add you to my buddy list." +msgstr "" + +msgid "Authorization Request Message:" +msgstr "" + +msgid "Please authorize me!" +msgstr "" + +msgid "No reason given." +msgstr "" + +msgid "Authorization Denied Message:" +msgstr "" + +#, c-format +msgid "" +"The user %u has denied your request to add them to your buddy list for the " +"following reason:\n" +"%s" +msgstr "" + +msgid "ICQ authorization denied." +msgstr "" + +#. Someone has granted you authorization +#, c-format +msgid "The user %u has granted your request to add them to your buddy list." +msgstr "" + +#, c-format +msgid "" +"You have received a special message\n" +"\n" +"From: %s [%s]\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"You have received an ICQ page\n" +"\n" +"From: %s [%s]\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"You have received an ICQ email from %s [%s]\n" +"\n" +"Message is:\n" +"%s" +msgstr "" + +#, c-format +msgid "ICQ user %u has sent you a buddy: %s (%s)" +msgstr "" + +msgid "Do you want to add this buddy to your buddy list?" +msgstr "" + +msgid "_Add" +msgstr "" + +msgid "_Decline" +msgstr "" + +#, c-format +msgid "You missed %hu message from %s because it was invalid." +msgid_plural "You missed %hu messages from %s because they were invalid." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "You missed %hu message from %s because it was too large." +msgid_plural "You missed %hu messages from %s because they were too large." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "" +"You missed %hu message from %s because the rate limit has been exceeded." +msgid_plural "" +"You missed %hu messages from %s because the rate limit has been exceeded." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "" +"You missed %hu message from %s because his/her warning level is too high." +msgid_plural "" +"You missed %hu messages from %s because his/her warning level is too high." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "You missed %hu message from %s because your warning level is too high." +msgid_plural "" +"You missed %hu messages from %s because your warning level is too high." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "You missed %hu message from %s for an unknown reason." +msgid_plural "You missed %hu messages from %s for an unknown reason." +msgstr[0] "" +msgstr[1] "" + +#. Data is assumed to be the destination bn +#, c-format +msgid "Unable to send message: %s" +msgstr "" + +msgid "Unknown reason." +msgstr "" + +#, c-format +msgid "Unable to send message to %s:" +msgstr "" + +#, c-format +msgid "User information not available: %s" +msgstr "" + +msgid "Online Since" +msgstr "" + +msgid "Member Since" +msgstr "" + +msgid "Profile" +msgstr "" + +msgid "Your AIM connection may be lost." +msgstr "" + +#. The conversion failed! +msgid "" +"[Unable to display a message from this user because it contained invalid " +"characters.]" +msgstr "" + +msgid "" +"The last action you attempted could not be performed because you are over " +"the rate limit. Please wait 10 seconds and try again." +msgstr "" + +#, c-format +msgid "You have been disconnected from chat room %s." +msgstr "" + +msgid "Mobile Phone" +msgstr "" + +msgid "Personal Web Page" +msgstr "" + +#. aim_userinfo_t +#. strip_html_tags +msgid "Additional Information" +msgstr "" + +msgid "Zip Code" +msgstr "" + +msgid "Work Information" +msgstr "" + +msgid "Division" +msgstr "" + +msgid "Position" +msgstr "" + +msgid "Web Page" +msgstr "" + +msgid "Pop-Up Message" +msgstr "" + +#, c-format +msgid "The following username is associated with %s" +msgid_plural "The following usernames are associated with %s" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "No results found for email address %s" +msgstr "" + +#, c-format +msgid "You should receive an email asking to confirm %s." +msgstr "" + +msgid "Account Confirmation Requested" +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to format username because the requested name differs " +"from the original." +msgstr "" + +#, c-format +msgid "Error 0x%04x: Unable to format username because it is invalid." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to format username because the requested name is too " +"long." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to change email address because there is already a " +"request pending for this username." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to change email address because the given address has " +"too many usernames associated with it." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to change email address because the given address is " +"invalid." +msgstr "" + +#, c-format +msgid "Error 0x%04x: Unknown error." +msgstr "" + +msgid "Error Changing Account Info" +msgstr "" + +#, c-format +msgid "The email address for %s is %s" +msgstr "" + +msgid "Account Info" +msgstr "" + +msgid "" +"Your IM Image was not sent. You must be Direct Connected to send IM Images." +msgstr "" + +msgid "Unable to set AIM profile." +msgstr "" + +msgid "" +"You have probably requested to set your profile before the login procedure " +"completed. Your profile remains unset; try setting it again when you are " +"fully connected." +msgstr "" + +#, c-format +msgid "" +"The maximum profile length of %d byte has been exceeded. It has been " +"truncated for you." +msgid_plural "" +"The maximum profile length of %d bytes has been exceeded. It has been " +"truncated for you." +msgstr[0] "" +msgstr[1] "" + +msgid "Profile too long." +msgstr "" + +#, c-format +msgid "" +"The maximum away message length of %d byte has been exceeded. It has been " +"truncated for you." +msgid_plural "" +"The maximum away message length of %d bytes has been exceeded. It has been " +"truncated for you." +msgstr[0] "" +msgstr[1] "" + +msgid "Away message too long." +msgstr "" + +#, c-format +msgid "" +"Could not add the buddy %s because the username is invalid. Usernames must " +"be a valid email address, or start with a letter and contain only letters, " +"numbers and spaces, or contain only numbers." +msgstr "" + +msgid "Unable to Add" +msgstr "" + +msgid "Unable to Retrieve Buddy List" +msgstr "" + +msgid "" +"The AIM servers were temporarily unable to send your buddy list. Your buddy " +"list is not lost, and will probably become available in a few minutes." +msgstr "" + +msgid "Orphans" +msgstr "" + +#, c-format +msgid "" +"Could not add the buddy %s because you have too many buddies in your buddy " +"list. Please remove one and try again." +msgstr "" + +msgid "(no name)" +msgstr "" + +#, c-format +msgid "Could not add the buddy %s for an unknown reason." +msgstr "" + +#, c-format +msgid "" +"The user %s has given you permission to add him or her to your buddy list. " +"Do you want to add this user?" +msgstr "" + +msgid "Authorization Given" +msgstr "" + +#. Granted +#, c-format +msgid "The user %s has granted your request to add them to your buddy list." +msgstr "" + +msgid "Authorization Granted" +msgstr "" + +#. Denied +#, c-format +msgid "" +"The user %s has denied your request to add them to your buddy list for the " +"following reason:\n" +"%s" +msgstr "" + +msgid "Authorization Denied" +msgstr "" + +msgid "_Exchange:" +msgstr "" + +msgid "Your IM Image was not sent. You cannot send IM Images in AIM chats." +msgstr "" + +msgid "iTunes Music Store Link" +msgstr "" + +#, c-format +msgid "Buddy Comment for %s" +msgstr "" + +msgid "Buddy Comment:" +msgstr "" + +#, c-format +msgid "You have selected to open a Direct IM connection with %s." +msgstr "" + +msgid "" +"Because this reveals your IP address, it may be considered a security risk. " +"Do you wish to continue?" +msgstr "" + +msgid "C_onnect" +msgstr "" + +msgid "Get AIM Info" +msgstr "" + +#. We only do this if the user is in our buddy list +msgid "Edit Buddy Comment" +msgstr "" + +msgid "Get Status Msg" +msgstr "" + +msgid "Direct IM" +msgstr "" + +msgid "Re-request Authorization" +msgstr "" + +msgid "Require authorization" +msgstr "" + +msgid "Web aware (enabling this will cause you to receive SPAM!)" +msgstr "" + +msgid "ICQ Privacy Options" +msgstr "" + +msgid "The new formatting is invalid." +msgstr "" + +msgid "Username formatting can change only capitalization and whitespace." +msgstr "" + +msgid "Change Address To:" +msgstr "" + +msgid "you are not waiting for authorization" +msgstr "" + +msgid "You are awaiting authorization from the following buddies" +msgstr "" + +msgid "" +"You can re-request authorization from these buddies by right-clicking on " +"them and selecting \"Re-request Authorization.\"" +msgstr "" + +msgid "Find Buddy by Email" +msgstr "" + +msgid "Search for a buddy by email address" +msgstr "" + +msgid "Type the email address of the buddy you are searching for." +msgstr "" + +msgid "_Search" +msgstr "" + +msgid "Set User Info (web)..." +msgstr "" + +msgid "Change Password (web)" +msgstr "" + +msgid "Configure IM Forwarding (web)" +msgstr "" + +#. ICQ actions +msgid "Set Privacy Options..." +msgstr "" + +#. AIM actions +msgid "Confirm Account" +msgstr "" + +msgid "Display Currently Registered Email Address" +msgstr "" + +msgid "Change Currently Registered Email Address..." +msgstr "" + +msgid "Show Buddies Awaiting Authorization" +msgstr "" + +msgid "Search for Buddy by Email Address..." +msgstr "" + +msgid "Search for Buddy by Information" +msgstr "" + +msgid "" +"Always use AIM/ICQ proxy server for\n" +"file transfers and direct IM (slower,\n" +"but does not reveal your IP address)" +msgstr "" + +msgid "Allow multiple simultaneous logins" +msgstr "" + +#, c-format +msgid "Asking %s to connect to us at %s:%hu for Direct IM." +msgstr "" + +#, c-format +msgid "Attempting to connect to %s:%hu." +msgstr "" + +msgid "Attempting to connect via proxy server." +msgstr "" + +#, c-format +msgid "%s has just asked to directly connect to %s" +msgstr "" + +msgid "" +"This requires a direct connection between the two computers and is necessary " +"for IM Images. Because your IP address will be revealed, this may be " +"considered a privacy risk." +msgstr "" + +msgid "Aquarius" +msgstr "" + +msgid "Pisces" +msgstr "" + +msgid "Aries" +msgstr "" + +msgid "Taurus" +msgstr "" + +msgid "Gemini" +msgstr "" + +msgid "Cancer" +msgstr "" + +msgid "Leo" +msgstr "" + +msgid "Virgo" +msgstr "" + +msgid "Libra" +msgstr "" + +msgid "Scorpio" +msgstr "" + +msgid "Sagittarius" +msgstr "" + +msgid "Capricorn" +msgstr "" + +msgid "Rat" +msgstr "" + +msgid "Ox" +msgstr "" + +msgid "Tiger" +msgstr "" + +msgid "Rabbit" +msgstr "" + +msgid "Dragon" +msgstr "" + +msgid "Snake" +msgstr "" + +msgid "Horse" +msgstr "" + +msgid "Goat" +msgstr "" + +msgid "Monkey" +msgstr "" + +msgid "Rooster" +msgstr "" + +msgid "Dog" +msgstr "" + +msgid "Pig" +msgstr "" + +msgid "Other" +msgstr "" + +msgid "Visible" +msgstr "" + +msgid "Friend Only" +msgstr "" + +msgid "Private" +msgstr "" + +msgid "QQ Number" +msgstr "" + +msgid "Country/Region" +msgstr "" + +msgid "Province/State" +msgstr "" + +msgid "Zipcode" +msgstr "" + +msgid "Phone Number" +msgstr "" + +msgid "Authorize adding" +msgstr "" + +msgid "Cellphone Number" +msgstr "" + +msgid "Personal Introduction" +msgstr "" + +msgid "City/Area" +msgstr "" + +msgid "Publish Mobile" +msgstr "" + +msgid "Publish Contact" +msgstr "" + +msgid "College" +msgstr "" + +msgid "Horoscope" +msgstr "" + +msgid "Zodiac" +msgstr "" + +msgid "Blood" +msgstr "" + +msgid "True" +msgstr "" + +msgid "False" +msgstr "" + +msgid "Modify Contact" +msgstr "" + +msgid "Modify Address" +msgstr "" + +msgid "Modify Extended Information" +msgstr "" + +msgid "Modify Information" +msgstr "" + +msgid "Update" +msgstr "" + +msgid "Could not change buddy information." +msgstr "" + +msgid "Mobile" +msgstr "" + +msgid "Note" +msgstr "" + +#. callback +msgid "Buddy Memo" +msgstr "" + +msgid "Change his/her memo as you like" +msgstr "" + +msgid "_Modify" +msgstr "" + +msgid "Memo Modify" +msgstr "" + +msgid "Server says:" +msgstr "" + +msgid "Your request was accepted." +msgstr "" + +msgid "Your request was rejected." +msgstr "" + +#, c-format +msgid "%u requires verification" +msgstr "" + +msgid "Add buddy question" +msgstr "" + +msgid "Enter answer here" +msgstr "" + +msgid "Send" +msgstr "" + +msgid "Invalid answer." +msgstr "" + +msgid "Authorization denied message:" +msgstr "" + +msgid "Sorry, you're not my style." +msgstr "" + +#, c-format +msgid "%u needs authorization" +msgstr "" + +msgid "Add buddy authorize" +msgstr "" + +msgid "Enter request here" +msgstr "" + +msgid "Would you be my friend?" +msgstr "" + +msgid "QQ Buddy" +msgstr "" + +msgid "Add buddy" +msgstr "" + +msgid "Invalid QQ Number" +msgstr "" + +msgid "Failed sending authorize" +msgstr "" + +#, c-format +msgid "Failed removing buddy %u" +msgstr "" + +#, c-format +msgid "Failed removing me from %d's buddy list" +msgstr "" + +msgid "No reason given" +msgstr "" + +#. only need to get value +#, c-format +msgid "You have been added by %s" +msgstr "" + +msgid "Would you like to add him?" +msgstr "" + +#, c-format +msgid "Rejected by %s" +msgstr "" + +#, c-format +msgid "Message: %s" +msgstr "" + +msgid "ID: " +msgstr "" + +msgid "Group ID" +msgstr "" + +msgid "QQ Qun" +msgstr "" + +msgid "Please enter Qun number" +msgstr "" + +msgid "You can only search for permanent Qun\n" +msgstr "" + +msgid "(Invalid UTF-8 string)" +msgstr "" + +msgid "Not member" +msgstr "" + +msgid "Member" +msgstr "" + +msgid "Requesting" +msgstr "" + +msgid "Admin" +msgstr "" + +msgid "Notice" +msgstr "" + +msgid "Detail" +msgstr "" + +msgid "Creator" +msgstr "" + +msgid "About me" +msgstr "" + +msgid "Category" +msgstr "" + +msgid "The Qun does not allow others to join" +msgstr "" + +msgid "Join QQ Qun" +msgstr "" + +msgid "Input request here" +msgstr "" + +#, c-format +msgid "Successfully joined Qun %s (%u)" +msgstr "" + +msgid "Successfully joined Qun" +msgstr "" + +#, c-format +msgid "Qun %u denied from joining" +msgstr "" + +msgid "QQ Qun Operation" +msgstr "" + +msgid "Failed:" +msgstr "" + +msgid "Join Qun, Unknown Reply" +msgstr "" + +msgid "Quit Qun" +msgstr "" + +msgid "" +"Note, if you are the creator, \n" +"this operation will eventually remove this Qun." +msgstr "" + +msgid "Sorry, you are not our style" +msgstr "" + +msgid "Successfully changed Qun members" +msgstr "" + +msgid "Successfully changed Qun information" +msgstr "" + +msgid "You have successfully created a Qun" +msgstr "" + +msgid "Would you like to set up detailed information now?" +msgstr "" + +msgid "Setup" +msgstr "" + +#, c-format +msgid "%u requested to join Qun %u for %s" +msgstr "" + +#, c-format +msgid "%u request to join Qun %u" +msgstr "" + +#, c-format +msgid "Failed to join Qun %u, operated by admin %u" +msgstr "" + +#, c-format +msgid "Joining Qun %u is approved by admin %u for %s" +msgstr "" + +#, c-format +msgid "Removed buddy %u." +msgstr "" + +#, c-format +msgid "New buddy %u joined." +msgstr "" + +#, c-format +msgid "Unknown-%d" +msgstr "" + +msgid "Level" +msgstr "" + +msgid " VIP" +msgstr "" + +msgid " TCP" +msgstr "" + +msgid " FromMobile" +msgstr "" + +msgid " BindMobile" +msgstr "" + +msgid " Video" +msgstr "" + +msgid " Zone" +msgstr "" + +msgid "Flag" +msgstr "" + +msgid "Ver" +msgstr "" + +msgid "Invalid name" +msgstr "" + +msgid "Select icon..." +msgstr "" + +#, c-format +msgid "Login time: %d-%d-%d, %d:%d:%d
\n" +msgstr "" + +#, c-format +msgid "Total Online Buddies: %d
\n" +msgstr "" + +#, c-format +msgid "Last Refresh: %d-%d-%d, %d:%d:%d
\n" +msgstr "" + +#, c-format +msgid "Server: %s
\n" +msgstr "" + +#, c-format +msgid "Client Tag: %s
\n" +msgstr "" + +#, c-format +msgid "Connection Mode: %s
\n" +msgstr "" + +#, c-format +msgid "My Internet IP: %s:%d
\n" +msgstr "" + +#, c-format +msgid "Sent: %lu
\n" +msgstr "" + +#, c-format +msgid "Resend: %lu
\n" +msgstr "" + +#, c-format +msgid "Lost: %lu
\n" +msgstr "" + +#, c-format +msgid "Received: %lu
\n" +msgstr "" + +#, c-format +msgid "Received Duplicate: %lu
\n" +msgstr "" + +#, c-format +msgid "Time: %d-%d-%d, %d:%d:%d
\n" +msgstr "" + +#, c-format +msgid "IP: %s
\n" +msgstr "" + +msgid "Login Information" +msgstr "" + +msgid "

Original Author:
\n" +msgstr "" + +msgid "

Code Contributors:
\n" +msgstr "" + +msgid "

Lovely Patch Writers:
\n" +msgstr "" + +msgid "

Acknowledgement:
\n" +msgstr "" + +msgid "

Scrupulous Testers:
\n" +msgstr "" + +msgid "and more, please let me know... thank you!))" +msgstr "" + +msgid "

And, all the boys in the backroom...
\n" +msgstr "" + +msgid "Feel free to join us! :)" +msgstr "" + +#, c-format +msgid "About OpenQ %s" +msgstr "" + +msgid "Change Icon" +msgstr "" + +msgid "Change Password" +msgstr "" + +msgid "Account Information" +msgstr "" + +msgid "Update all QQ Quns" +msgstr "" + +msgid "About OpenQ" +msgstr "" + +msgid "Modify Buddy Memo" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "QQ Protocol Plugin" +msgstr "" + +msgid "Auto" +msgstr "" + +msgid "Select Server" +msgstr "" + +msgid "QQ2005" +msgstr "" + +msgid "QQ2007" +msgstr "" + +msgid "QQ2008" +msgstr "" + +msgid "Connect by TCP" +msgstr "" + +msgid "Show server notice" +msgstr "" + +msgid "Show server news" +msgstr "" + +msgid "Show chat room when msg comes" +msgstr "" + +msgid "Keep alive interval (seconds)" +msgstr "" + +msgid "Update interval (seconds)" +msgstr "" + +msgid "Cannot decrypt server reply" +msgstr "" + +#, c-format +msgid "Failed requesting token, 0x%02X" +msgstr "" + +#, c-format +msgid "Invalid token len, %d" +msgstr "" + +#. extend redirect used in QQ2006 +msgid "Redirect_EX is not currently supported" +msgstr "" + +#. need activation +#. need activation +#. need activation +msgid "Activation required" +msgstr "" + +#, c-format +msgid "Unknown reply code when logging in (0x%02X)" +msgstr "" + +msgid "Could not decrypt server reply" +msgstr "" + +msgid "Requesting captcha" +msgstr "" + +msgid "Checking captcha" +msgstr "" + +msgid "Failed captcha verification" +msgstr "" + +msgid "Captcha Image" +msgstr "" + +msgid "Enter code" +msgstr "" + +msgid "QQ Captcha Verification" +msgstr "" + +msgid "Enter the text from the image" +msgstr "" + +#, c-format +msgid "Unknown reply when checking password (0x%02X)" +msgstr "" + +#, c-format +msgid "" +"Unknown reply code when logging in (0x%02X):\n" +"%s" +msgstr "" + +msgid "Unable to connect." +msgstr "" + +msgid "Socket error" +msgstr "" + +msgid "Unable to read from socket" +msgstr "" + +msgid "Write Error" +msgstr "" + +msgid "Connection lost" +msgstr "" + +msgid "Getting server" +msgstr "" + +msgid "Requesting token" +msgstr "" + +msgid "Couldn't resolve host" +msgstr "" + +msgid "Invalid server or port" +msgstr "" + +msgid "Connecting to server" +msgstr "" + +msgid "QQ Error" +msgstr "" + +#, c-format +msgid "" +"Server News:\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#, c-format +msgid "%s:%s" +msgstr "" + +#, c-format +msgid "From %s:" +msgstr "" + +#, c-format +msgid "" +"Server notice From %s: \n" +"%s" +msgstr "" + +msgid "Unknown SERVER CMD" +msgstr "" + +#, c-format +msgid "" +"Error reply of %s(0x%02X)\n" +"Room %u, reply 0x%02X" +msgstr "" + +msgid "QQ Qun Command" +msgstr "" + +msgid "Could not decrypt login reply" +msgstr "" + +msgid "Unknown LOGIN CMD" +msgstr "" + +msgid "Unknown CLIENT CMD" +msgstr "" + +#, c-format +msgid "%d has declined the file %s" +msgstr "" + +msgid "File Send" +msgstr "" + +#, c-format +msgid "%d canceled the transfer of %s" +msgstr "" + +msgid "Connection closed (writing)" +msgstr "" + +#, c-format +msgid "Group Title: %s
" +msgstr "" + +#, c-format +msgid "Notes Group ID: %s
" +msgstr "" + +#, c-format +msgid "Info for Group %s" +msgstr "" + +msgid "Notes Address Book Information" +msgstr "" + +msgid "Invite Group to Conference..." +msgstr "" + +msgid "Get Notes Address Book Info" +msgstr "" + +msgid "Sending Handshake" +msgstr "" + +msgid "Waiting for Handshake Acknowledgement" +msgstr "" + +msgid "Handshake Acknowledged, Sending Login" +msgstr "" + +msgid "Waiting for Login Acknowledgement" +msgstr "" + +msgid "Login Redirected" +msgstr "" + +msgid "Forcing Login" +msgstr "" + +msgid "Login Acknowledged" +msgstr "" + +msgid "Starting Services" +msgstr "" + +#, c-format +msgid "" +"A Sametime administrator has issued the following announcement on server %s" +msgstr "" + +msgid "Sametime Administrator Announcement" +msgstr "" + +msgid "Connection reset" +msgstr "" + +#, c-format +msgid "Error reading from socket: %s" +msgstr "" + +#. this is a regular connect, error out +msgid "Unable to connect to host" +msgstr "" + +#, c-format +msgid "Announcement from %s" +msgstr "" + +msgid "Conference Closed" +msgstr "" + +msgid "Unable to send message: " +msgstr "" + +msgid "Place Closed" +msgstr "" + +msgid "Microphone" +msgstr "" + +msgid "Speakers" +msgstr "" + +msgid "Video Camera" +msgstr "" + +msgid "Supports" +msgstr "" + +msgid "External User" +msgstr "" + +msgid "Create conference with user" +msgstr "" + +#, c-format +msgid "" +"Please enter a topic for the new conference, and an invitation message to be " +"sent to %s" +msgstr "" + +msgid "New Conference" +msgstr "" + +msgid "Create" +msgstr "" + +msgid "Available Conferences" +msgstr "" + +msgid "Create New Conference..." +msgstr "" + +msgid "Invite user to a conference" +msgstr "" + +#, c-format +msgid "" +"Select a conference from the list below to send an invite to user %s. Select " +"\"Create New Conference\" if you'd like to create a new conference to invite " +"this user to." +msgstr "" + +msgid "Invite to Conference" +msgstr "" + +msgid "Invite to Conference..." +msgstr "" + +msgid "Send TEST Announcement" +msgstr "" + +msgid "Topic:" +msgstr "" + +msgid "No Sametime Community Server specified" +msgstr "" + +#, c-format +msgid "" +"No host or IP address has been configured for the Meanwhile account %s. " +"Please enter one below to continue logging in." +msgstr "" + +msgid "Meanwhile Connection Setup" +msgstr "" + +msgid "No Sametime Community Server Specified" +msgstr "" + +msgid "Connect" +msgstr "" + +#, c-format +msgid "Unknown (0x%04x)
" +msgstr "" + +msgid "Last Known Client" +msgstr "" + +msgid "User Name" +msgstr "" + +msgid "Sametime ID" +msgstr "" + +msgid "An ambiguous user ID was entered" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' may possibly refer to any of the following users. Please " +"select the correct user from the list below to add them to your buddy list." +msgstr "" + +msgid "Select User" +msgstr "" + +msgid "Unable to add user: user not found" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' did not match any users in your Sametime community. This " +"entry has been removed from your buddy list." +msgstr "" + +#, c-format +msgid "" +"Error reading file %s: \n" +"%s\n" +msgstr "" + +msgid "Remotely Stored Buddy List" +msgstr "" + +msgid "Buddy List Storage Mode" +msgstr "" + +msgid "Local Buddy List Only" +msgstr "" + +msgid "Merge List from Server" +msgstr "" + +msgid "Merge and Save List to Server" +msgstr "" + +msgid "Synchronize List with Server" +msgstr "" + +#, c-format +msgid "Import Sametime List for Account %s" +msgstr "" + +#, c-format +msgid "Export Sametime List for Account %s" +msgstr "" + +msgid "Unable to add group: group exists" +msgstr "" + +#, c-format +msgid "A group named '%s' already exists in your buddy list." +msgstr "" + +msgid "Unable to add group" +msgstr "" + +msgid "Possible Matches" +msgstr "" + +msgid "Notes Address Book group results" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' may possibly refer to any of the following Notes Address " +"Book groups. Please select the correct group from the list below to add it " +"to your buddy list." +msgstr "" + +msgid "Select Notes Address Book" +msgstr "" + +msgid "Unable to add group: group not found" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' did not match any Notes Address Book groups in your " +"Sametime community." +msgstr "" + +msgid "Notes Address Book Group" +msgstr "" + +msgid "" +"Enter the name of a Notes Address Book group in the field below to add the " +"group and its members to your buddy list." +msgstr "" + +#, c-format +msgid "Search results for '%s'" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' may possibly refer to any of the following users. You " +"may add these users to your buddy list or send them messages with the action " +"buttons below." +msgstr "" + +msgid "Search Results" +msgstr "" + +msgid "No matches" +msgstr "" + +#, c-format +msgid "The identifier '%s' did not match any users in your Sametime community." +msgstr "" + +msgid "No Matches" +msgstr "" + +msgid "Search for a user" +msgstr "" + +msgid "" +"Enter a name or partial ID in the field below to search for matching users " +"in your Sametime community." +msgstr "" + +msgid "User Search" +msgstr "" + +msgid "Import Sametime List..." +msgstr "" + +msgid "Export Sametime List..." +msgstr "" + +msgid "Add Notes Address Book Group..." +msgstr "" + +msgid "User Search..." +msgstr "" + +msgid "Force login (ignore server redirects)" +msgstr "" + +#. pretend to be Sametime Connect +msgid "Hide client identity" +msgstr "" + +#, c-format +msgid "User %s is not present in the network" +msgstr "" + +msgid "Key Agreement" +msgstr "" + +msgid "Cannot perform the key agreement" +msgstr "" + +msgid "Error occurred during key agreement" +msgstr "" + +msgid "Key Agreement failed" +msgstr "" + +msgid "Timeout during key agreement" +msgstr "" + +msgid "Key agreement was aborted" +msgstr "" + +msgid "Key agreement is already started" +msgstr "" + +msgid "Key agreement cannot be started with yourself" +msgstr "" + +msgid "The remote user is not present in the network any more" +msgstr "" + +#, c-format +msgid "" +"Key agreement request received from %s. Would you like to perform the key " +"agreement?" +msgstr "" + +#, c-format +msgid "" +"The remote user is waiting key agreement on:\n" +"Remote host: %s\n" +"Remote port: %d" +msgstr "" + +msgid "Key Agreement Request" +msgstr "" + +msgid "IM With Password" +msgstr "" + +msgid "Cannot set IM key" +msgstr "" + +msgid "Set IM Password" +msgstr "" + +msgid "Get Public Key" +msgstr "" + +msgid "Cannot fetch the public key" +msgstr "" + +msgid "Show Public Key" +msgstr "" + +msgid "Could not load public key" +msgstr "" + +msgid "User Information" +msgstr "" + +msgid "Cannot get user information" +msgstr "" + +#, c-format +msgid "The %s buddy is not trusted" +msgstr "" + +msgid "" +"You cannot receive buddy notifications until you import his/her public key. " +"You can use the Get Public Key command to get the public key." +msgstr "" + +#. Open file selector to select the public key. +msgid "Open..." +msgstr "" + +#, c-format +msgid "The %s buddy is not present in the network" +msgstr "" + +msgid "" +"To add the buddy you must import his/her public key. Press Import to import " +"a public key." +msgstr "" + +msgid "_Import..." +msgstr "" + +msgid "Select correct user" +msgstr "" + +msgid "" +"More than one user was found with the same public key. Select the correct " +"user from the list to add to the buddy list." +msgstr "" + +msgid "" +"More than one user was found with the same name. Select the correct user " +"from the list to add to the buddy list." +msgstr "" + +msgid "Detached" +msgstr "" + +msgid "Indisposed" +msgstr "" + +msgid "Wake Me Up" +msgstr "" + +msgid "Hyper Active" +msgstr "" + +msgid "Robot" +msgstr "" + +msgid "Happy" +msgstr "" + +msgid "Sad" +msgstr "" + +msgid "Angry" +msgstr "" + +msgid "Jealous" +msgstr "" + +msgid "Ashamed" +msgstr "" + +msgid "Invincible" +msgstr "" + +msgid "In Love" +msgstr "" + +msgid "Sleepy" +msgstr "" + +msgid "Bored" +msgstr "" + +msgid "Excited" +msgstr "" + +msgid "Anxious" +msgstr "" + +msgid "User Modes" +msgstr "" + +msgid "Preferred Contact" +msgstr "" + +msgid "Preferred Language" +msgstr "" + +msgid "Device" +msgstr "" + +msgid "Timezone" +msgstr "" + +msgid "Geolocation" +msgstr "" + +msgid "Reset IM Key" +msgstr "" + +msgid "IM with Key Exchange" +msgstr "" + +msgid "IM with Password" +msgstr "" + +msgid "Get Public Key..." +msgstr "" + +msgid "Kill User" +msgstr "" + +msgid "Draw On Whiteboard" +msgstr "" + +msgid "_Passphrase:" +msgstr "" + +#, c-format +msgid "Channel %s does not exist in the network" +msgstr "" + +msgid "Channel Information" +msgstr "" + +msgid "Cannot get channel information" +msgstr "" + +#, c-format +msgid "Channel Name: %s" +msgstr "" + +#, c-format +msgid "
User Count: %d" +msgstr "" + +#, c-format +msgid "
Channel Founder: %s" +msgstr "" + +#, c-format +msgid "
Channel Cipher: %s" +msgstr "" + +#. Definition of HMAC: http://en.wikipedia.org/wiki/HMAC +#, c-format +msgid "
Channel HMAC: %s" +msgstr "" + +#, c-format +msgid "
Channel Topic:
%s" +msgstr "" + +#, c-format +msgid "
Channel Modes: " +msgstr "" + +#, c-format +msgid "
Founder Key Fingerprint:
%s" +msgstr "" + +#, c-format +msgid "
Founder Key Babbleprint:
%s" +msgstr "" + +msgid "Add Channel Public Key" +msgstr "" + +#. Add new public key +msgid "Open Public Key..." +msgstr "" + +msgid "Channel Passphrase" +msgstr "" + +msgid "Channel Public Keys List" +msgstr "" + +#, c-format +msgid "" +"Channel authentication is used to secure the channel from unauthorized " +"access. The authentication may be based on passphrase and digital " +"signatures. If passphrase is set, it is required to be able to join. If " +"channel public keys are set then only users whose public keys are listed are " +"able to join." +msgstr "" + +msgid "Channel Authentication" +msgstr "" + +msgid "Add / Remove" +msgstr "" + +msgid "Group Name" +msgstr "" + +msgid "Passphrase" +msgstr "" + +#, c-format +msgid "Please enter the %s channel private group name and passphrase." +msgstr "" + +msgid "Add Channel Private Group" +msgstr "" + +msgid "User Limit" +msgstr "" + +msgid "Set user limit on channel. Set to zero to reset user limit." +msgstr "" + +msgid "Invite List" +msgstr "" + +msgid "Ban List" +msgstr "" + +msgid "Add Private Group" +msgstr "" + +msgid "Reset Permanent" +msgstr "" + +msgid "Set Permanent" +msgstr "" + +msgid "Set User Limit" +msgstr "" + +msgid "Reset Topic Restriction" +msgstr "" + +msgid "Set Topic Restriction" +msgstr "" + +msgid "Reset Private Channel" +msgstr "" + +msgid "Set Private Channel" +msgstr "" + +msgid "Reset Secret Channel" +msgstr "" + +msgid "Set Secret Channel" +msgstr "" + +#, c-format +msgid "" +"You have to join the %s channel before you are able to join the private group" +msgstr "" + +msgid "Join Private Group" +msgstr "" + +msgid "Cannot join private group" +msgstr "" + +msgid "Call Command" +msgstr "" + +msgid "Cannot call command" +msgstr "" + +msgid "Unknown command" +msgstr "" + +msgid "Secure File Transfer" +msgstr "" + +msgid "Error during file transfer" +msgstr "" + +msgid "Remote disconnected" +msgstr "" + +msgid "Permission denied" +msgstr "" + +msgid "Key agreement failed" +msgstr "" + +msgid "Connection timed out" +msgstr "" + +msgid "Creating connection failed" +msgstr "" + +msgid "File transfer session does not exist" +msgstr "" + +msgid "No file transfer session active" +msgstr "" + +msgid "File transfer already started" +msgstr "" + +msgid "Could not perform key agreement for file transfer" +msgstr "" + +msgid "Could not start the file transfer" +msgstr "" + +msgid "Cannot send file" +msgstr "" + +msgid "Error occurred" +msgstr "" + +#, c-format +msgid "%s has changed the topic of %s to: %s" +msgstr "" + +#, c-format +msgid "%s set channel %s modes to: %s" +msgstr "" + +#, c-format +msgid "%s removed all channel %s modes" +msgstr "" + +#, c-format +msgid "%s set %s's modes to: %s" +msgstr "" + +#, c-format +msgid "%s removed all %s's modes" +msgstr "" + +#, c-format +msgid "You have been kicked off %s by %s (%s)" +msgstr "" + +#, c-format +msgid "You have been killed by %s (%s)" +msgstr "" + +#, c-format +msgid "Killed by %s (%s)" +msgstr "" + +msgid "Server signoff" +msgstr "" + +msgid "Personal Information" +msgstr "" + +msgid "Birth Day" +msgstr "" + +msgid "Job Role" +msgstr "" + +msgid "Organization" +msgstr "" + +msgid "Unit" +msgstr "" + +msgid "Join Chat" +msgstr "" + +#, c-format +msgid "You are channel founder on %s" +msgstr "" + +#, c-format +msgid "Channel founder on %s is %s" +msgstr "" + +msgid "Real Name" +msgstr "" + +msgid "Status Text" +msgstr "" + +msgid "Public Key Fingerprint" +msgstr "" + +msgid "Public Key Babbleprint" +msgstr "" + +msgid "_More..." +msgstr "" + +msgid "Detach From Server" +msgstr "" + +msgid "Cannot detach" +msgstr "" + +msgid "Cannot set topic" +msgstr "" + +msgid "Failed to change nickname" +msgstr "" + +msgid "Roomlist" +msgstr "" + +msgid "Cannot get room list" +msgstr "" + +msgid "Network is empty" +msgstr "" + +msgid "No public key was received" +msgstr "" + +msgid "Server Information" +msgstr "" + +msgid "Cannot get server information" +msgstr "" + +msgid "Server Statistics" +msgstr "" + +msgid "Cannot get server statistics" +msgstr "" + +#, c-format +msgid "" +"Local server start time: %s\n" +"Local server uptime: %s\n" +"Local server clients: %d\n" +"Local server channels: %d\n" +"Local server operators: %d\n" +"Local router operators: %d\n" +"Local cell clients: %d\n" +"Local cell channels: %d\n" +"Local cell servers: %d\n" +"Total clients: %d\n" +"Total channels: %d\n" +"Total servers: %d\n" +"Total routers: %d\n" +"Total server operators: %d\n" +"Total router operators: %d\n" +msgstr "" + +msgid "Network Statistics" +msgstr "" + +msgid "Ping failed" +msgstr "" + +msgid "Ping reply received from server" +msgstr "" + +msgid "Could not kill user" +msgstr "" + +msgid "WATCH" +msgstr "" + +msgid "Cannot watch user" +msgstr "" + +msgid "Resuming session" +msgstr "" + +msgid "Authenticating connection" +msgstr "" + +msgid "Verifying server public key" +msgstr "" + +msgid "Passphrase required" +msgstr "" + +#, c-format +msgid "" +"Received %s's public key. Your local copy does not match this key. Would you " +"still like to accept this public key?" +msgstr "" + +#, c-format +msgid "Received %s's public key. Would you like to accept this public key?" +msgstr "" + +#, c-format +msgid "" +"Fingerprint and babbleprint for the %s key are:\n" +"\n" +"%s\n" +"%s\n" +msgstr "" + +msgid "Verify Public Key" +msgstr "" + +msgid "_View..." +msgstr "" + +msgid "Unsupported public key type" +msgstr "" + +msgid "Disconnected by server" +msgstr "" + +msgid "Error during connecting to SILC Server" +msgstr "" + +msgid "Key Exchange failed" +msgstr "" + +msgid "" +"Resuming detached session failed. Press Reconnect to create new connection." +msgstr "" + +msgid "Connection failed" +msgstr "" + +msgid "Performing key exchange" +msgstr "" + +msgid "Unable to create connection" +msgstr "" + +msgid "Could not load SILC key pair" +msgstr "" + +#. Progress +msgid "Connecting to SILC Server" +msgstr "" + +msgid "Out of memory" +msgstr "" + +msgid "Cannot initialize SILC protocol" +msgstr "" + +msgid "Error loading SILC key pair" +msgstr "" + +#, c-format +msgid "Download %s: %s" +msgstr "" + +msgid "Your Current Mood" +msgstr "" + +#, c-format +msgid "Normal" +msgstr "" + +msgid "In love" +msgstr "" + +msgid "" +"\n" +"Your Preferred Contact Methods" +msgstr "" + +msgid "SMS" +msgstr "" + +msgid "MMS" +msgstr "" + +msgid "Video conferencing" +msgstr "" + +msgid "Your Current Status" +msgstr "" + +msgid "Online Services" +msgstr "" + +msgid "Let others see what services you are using" +msgstr "" + +msgid "Let others see what computer you are using" +msgstr "" + +msgid "Your VCard File" +msgstr "" + +msgid "Timezone (UTC)" +msgstr "" + +msgid "User Online Status Attributes" +msgstr "" + +msgid "" +"You can let other users see your online status information and your personal " +"information. Please fill the information you would like other users to see " +"about yourself." +msgstr "" + +msgid "Message of the Day" +msgstr "" + +msgid "No Message of the Day available" +msgstr "" + +msgid "There is no Message of the Day associated with this connection" +msgstr "" + +msgid "Create New SILC Key Pair" +msgstr "" + +msgid "Passphrases do not match" +msgstr "" + +msgid "Key Pair Generation failed" +msgstr "" + +msgid "Key length" +msgstr "" + +msgid "Public key file" +msgstr "" + +msgid "Private key file" +msgstr "" + +msgid "Passphrase (retype)" +msgstr "" + +msgid "Generate Key Pair" +msgstr "" + +msgid "Online Status" +msgstr "" + +msgid "View Message of the Day" +msgstr "" + +msgid "Create SILC Key Pair..." +msgstr "" + +#, c-format +msgid "User %s is not present in the network" +msgstr "" + +msgid "Topic too long" +msgstr "" + +msgid "You must specify a nick" +msgstr "" + +#, c-format +msgid "channel %s not found" +msgstr "" + +#, c-format +msgid "channel modes for %s: %s" +msgstr "" + +#, c-format +msgid "no channel modes are set on %s" +msgstr "" + +#, c-format +msgid "Failed to set cmodes for %s" +msgstr "" + +#, c-format +msgid "Unknown command: %s, (may be a client bug)" +msgstr "" + +msgid "part [channel]: Leave the chat" +msgstr "" + +msgid "leave [channel]: Leave the chat" +msgstr "" + +msgid "topic [<new topic>]: View or change the topic" +msgstr "" + +msgid "join <channel> [<password>]: Join a chat on this network" +msgstr "" + +msgid "list: List channels on this network" +msgstr "" + +msgid "whois <nick>: View nick's information" +msgstr "" + +msgid "msg <nick> <message>: Send a private message to a user" +msgstr "" + +msgid "query <nick> [<message>]: Send a private message to a user" +msgstr "" + +msgid "motd: View the server's Message Of The Day" +msgstr "" + +msgid "detach: Detach this session" +msgstr "" + +msgid "quit [message]: Disconnect from the server, with an optional message" +msgstr "" + +msgid "call <command>: Call any silc client command" +msgstr "" + +msgid "kill <nick> [-pubkey|<reason>]: Kill nick" +msgstr "" + +msgid "nick <newnick>: Change your nickname" +msgstr "" + +msgid "whowas <nick>: View nick's information" +msgstr "" + +msgid "" +"cmode <channel> [+|-<modes>] [arguments]: Change or display " +"channel modes" +msgstr "" + +msgid "" +"cumode <channel> +|-<modes> <nick>: Change nick's modes " +"on channel" +msgstr "" + +msgid "umode <usermodes>: Set your modes in the network" +msgstr "" + +msgid "oper <nick> [-pubkey]: Get server operator privileges" +msgstr "" + +msgid "" +"invite <channel> [-|+]<nick>: invite nick or add/remove from " +"channel invite list" +msgstr "" + +msgid "kick <channel> <nick> [comment]: Kick client from channel" +msgstr "" + +msgid "info [server]: View server administrative details" +msgstr "" + +msgid "ban [<channel> +|-<nick>]: Ban client from channel" +msgstr "" + +msgid "getkey <nick|server>: Retrieve client's or server's public key" +msgstr "" + +msgid "stats: View server and network statistics" +msgstr "" + +msgid "ping: Send PING to the connected server" +msgstr "" + +msgid "users <channel>: List users in channel" +msgstr "" + +msgid "" +"names [-count|-ops|-halfops|-voices|-normal] <channel(s)>: List " +"specific users in channel(s)" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +msgid "SILC Protocol Plugin" +msgstr "" + +#. * description +msgid "Secure Internet Live Conferencing (SILC) Protocol" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "Public Key file" +msgstr "" + +msgid "Private Key file" +msgstr "" + +msgid "Cipher" +msgstr "" + +msgid "HMAC" +msgstr "" + +msgid "Use Perfect Forward Secrecy" +msgstr "" + +msgid "Public key authentication" +msgstr "" + +msgid "Block IMs without Key Exchange" +msgstr "" + +msgid "Block messages to whiteboard" +msgstr "" + +msgid "Automatically open whiteboard" +msgstr "" + +msgid "Digitally sign and verify all messages" +msgstr "" + +msgid "Creating SILC key pair..." +msgstr "" + +msgid "Cannot create SILC key pair\n" +msgstr "" + +#. Hint for translators: Please check the tabulator width here and in +#. the next strings (short strings: 2 tabs, longer strings 1 tab, +#. sum: 3 tabs or 24 characters) +#, c-format +msgid "Real Name: \t%s\n" +msgstr "" + +#, c-format +msgid "User Name: \t%s\n" +msgstr "" + +#, c-format +msgid "Email: \t\t%s\n" +msgstr "" + +#, c-format +msgid "Host Name: \t%s\n" +msgstr "" + +#, c-format +msgid "Organization: \t%s\n" +msgstr "" + +#, c-format +msgid "Country: \t%s\n" +msgstr "" + +#, c-format +msgid "Algorithm: \t%s\n" +msgstr "" + +#, c-format +msgid "Key Length: \t%d bits\n" +msgstr "" + +#, c-format +msgid "Version: \t%s\n" +msgstr "" + +#, c-format +msgid "" +"Public Key Fingerprint:\n" +"%s\n" +"\n" +msgstr "" + +#, c-format +msgid "" +"Public Key Babbleprint:\n" +"%s" +msgstr "" + +msgid "Public Key Information" +msgstr "" + +msgid "Paging" +msgstr "" + +msgid "Video Conferencing" +msgstr "" + +msgid "Computer" +msgstr "" + +msgid "PDA" +msgstr "" + +msgid "Terminal" +msgstr "" + +#, c-format +msgid "%s sent message to whiteboard. Would you like to open the whiteboard?" +msgstr "" + +#, c-format +msgid "" +"%s sent message to whiteboard on %s channel. Would you like to open the " +"whiteboard?" +msgstr "" + +msgid "Whiteboard" +msgstr "" + +msgid "No server statistics available" +msgstr "" + +#, c-format +msgid "Failure: Version mismatch, upgrade your client" +msgstr "" + +#, c-format +msgid "Failure: Remote does not trust/support your public key" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed KE group" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed cipher" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed PKCS" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed hash function" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed HMAC" +msgstr "" + +#, c-format +msgid "Failure: Incorrect signature" +msgstr "" + +#, c-format +msgid "Failure: Invalid cookie" +msgstr "" + +#, c-format +msgid "Failure: Authentication failed" +msgstr "" + +msgid "Cannot initialize SILC Client connection" +msgstr "" + +msgid "John Noname" +msgstr "" + +#, c-format +msgid "Could not load SILC key pair: %s" +msgstr "" + +msgid "Could not write" +msgstr "" + +msgid "Could not connect" +msgstr "" + +msgid "Unknown server response." +msgstr "" + +msgid "Could not create listen socket" +msgstr "" + +msgid "Could not resolve hostname" +msgstr "" + +msgid "SIP usernames may not contain whitespaces or @ symbols" +msgstr "" + +msgid "SIP connect server not specified" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +msgid "SIP/SIMPLE Protocol Plugin" +msgstr "" + +#. * summary +msgid "The SIP/SIMPLE Protocol Plugin" +msgstr "" + +msgid "Publish status (note: everyone may watch you)" +msgstr "" + +msgid "Use UDP" +msgstr "" + +msgid "Use proxy" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Auth User" +msgstr "" + +msgid "Auth Domain" +msgstr "" + +#, c-format +msgid "%s has sent you a webcam invite, which is not yet supported." +msgstr "" + +msgid "Your SMS was not delivered" +msgstr "" + +msgid "Your Yahoo! message did not get sent." +msgstr "" + +#, c-format +msgid "Yahoo! system message for %s:" +msgstr "" + +#, c-format +msgid "" +"%s has (retroactively) denied your request to add them to your list for the " +"following reason: %s." +msgstr "" + +#, c-format +msgid "%s has (retroactively) denied your request to add them to your list." +msgstr "" + +msgid "Add buddy rejected" +msgstr "" + +#. Some error in the received stream +msgid "Received invalid data" +msgstr "" + +#. Password incorrect +msgid "Incorrect Password" +msgstr "" + +#. security lock from too many failed login attempts +msgid "Account locked: Too many failed login attempts" +msgstr "" + +#. the username does not exist +msgid "Username does not exist" +msgstr "" + +#. indicates a lock of some description +msgid "Account locked: See the debug log" +msgstr "" + +#. username or password missing +msgid "Username or password missing" +msgstr "" + +#, c-format +msgid "" +"The Yahoo server has requested the use of an unrecognized authentication " +"method. You will probably not be able to successfully sign on to Yahoo. " +"Check %s for updates." +msgstr "" + +msgid "Failed Yahoo! Authentication" +msgstr "" + +#, c-format +msgid "" +"You have tried to ignore %s, but the user is on your buddy list. Clicking " +"\"Yes\" will remove and ignore the buddy." +msgstr "" + +msgid "Ignore buddy?" +msgstr "" + +msgid "Your account is locked, please log in to the Yahoo! website." +msgstr "" + +#, c-format +msgid "Unknown error number %d. Logging into the Yahoo! website may fix this." +msgstr "" + +#, c-format +msgid "Could not add buddy %s to group %s to the server list on account %s." +msgstr "" + +msgid "Could not add buddy to server list" +msgstr "" + +#, c-format +msgid "[ Audible %s/%s/%s.swf ] %s" +msgstr "" + +msgid "Received unexpected HTTP response from server." +msgstr "" + +msgid "Connection problem" +msgstr "" + +#, c-format +msgid "" +"Lost connection with %s:\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"Could not establish a connection with %s:\n" +"%s" +msgstr "" + +msgid "Not at Home" +msgstr "" + +msgid "Not at Desk" +msgstr "" + +msgid "Not in Office" +msgstr "" + +msgid "On Vacation" +msgstr "" + +msgid "Stepped Out" +msgstr "" + +msgid "Not on server list" +msgstr "" + +msgid "Appear Online" +msgstr "" + +msgid "Appear Permanently Offline" +msgstr "" + +msgid "Presence" +msgstr "" + +msgid "Appear Offline" +msgstr "" + +msgid "Don't Appear Permanently Offline" +msgstr "" + +msgid "Join in Chat" +msgstr "" + +msgid "Initiate Conference" +msgstr "" + +msgid "Presence Settings" +msgstr "" + +msgid "Start Doodling" +msgstr "" + +msgid "Activate which ID?" +msgstr "" + +msgid "Join whom in chat?" +msgstr "" + +msgid "Activate ID..." +msgstr "" + +msgid "Join User in Chat..." +msgstr "" + +msgid "Open Inbox" +msgstr "" + +msgid "join <room>: Join a chat room on the Yahoo network" +msgstr "" + +msgid "list: List rooms on the Yahoo network" +msgstr "" + +msgid "doodle: Request user to start a Doodle session" +msgstr "" + +msgid "Yahoo ID..." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Yahoo Protocol Plugin" +msgstr "" + +msgid "Yahoo Japan" +msgstr "" + +msgid "Pager server" +msgstr "" + +msgid "Japan Pager server" +msgstr "" + +msgid "Pager port" +msgstr "" + +msgid "File transfer server" +msgstr "" + +msgid "Japan file transfer server" +msgstr "" + +msgid "File transfer port" +msgstr "" + +msgid "Chat room locale" +msgstr "" + +msgid "Ignore conference and chatroom invitations" +msgstr "" + +msgid "Chat room list URL" +msgstr "" + +msgid "Yahoo Chat server" +msgstr "" + +msgid "Yahoo Chat port" +msgstr "" + +#. Write a local message to this conversation showing that a request for a +#. * Doodle session has been made +#. +msgid "Sent Doodle request." +msgstr "" + +msgid "Unable to establish file descriptor." +msgstr "" + +#, c-format +msgid "%s is trying to send you a group of %d files.\n" +msgstr "" + +msgid "Yahoo! Japan Profile" +msgstr "" + +msgid "Yahoo! Profile" +msgstr "" + +msgid "" +"Sorry, profiles marked as containing adult content are not supported at this " +"time." +msgstr "" + +msgid "" +"If you wish to view this profile, you will need to visit this link in your " +"web browser:" +msgstr "" + +msgid "Yahoo! ID" +msgstr "" + +msgid "Hobbies" +msgstr "" + +msgid "Latest News" +msgstr "" + +msgid "Home Page" +msgstr "" + +msgid "Cool Link 1" +msgstr "" + +msgid "Cool Link 2" +msgstr "" + +msgid "Cool Link 3" +msgstr "" + +msgid "Last Update" +msgstr "" + +msgid "" +"This profile is in a language or format that is not supported at this time." +msgstr "" + +msgid "" +"Could not retrieve the user's profile. This most likely is a temporary " +"server-side problem. Please try again later." +msgstr "" + +msgid "" +"Could not retrieve the user's profile. This most likely means that the user " +"does not exist; however, Yahoo! sometimes does fail to find a user's " +"profile. If you know that the user exists, please try again later." +msgstr "" + +msgid "The user's profile is empty." +msgstr "" + +#, c-format +msgid "%s declined your conference invitation to room \"%s\" because \"%s\"." +msgstr "" + +msgid "Invitation Rejected" +msgstr "" + +msgid "Failed to join chat" +msgstr "" + +#. -6 +msgid "Unknown room" +msgstr "" + +#. -15 +msgid "Maybe the room is full" +msgstr "" + +#. -35 +msgid "Not available" +msgstr "" + +msgid "" +"Unknown error. You may need to logout and wait five minutes before being " +"able to rejoin a chatroom" +msgstr "" + +#, c-format +msgid "You are now chatting in %s." +msgstr "" + +msgid "Failed to join buddy in chat" +msgstr "" + +msgid "Maybe they're not in a chat?" +msgstr "" + +msgid "Fetching the room list failed." +msgstr "" + +msgid "Voices" +msgstr "" + +msgid "Webcams" +msgstr "" + +msgid "Unable to fetch room list." +msgstr "" + +msgid "User Rooms" +msgstr "" + +msgid "Connection problem with the YCHT server." +msgstr "" + +#, c-format +msgid "" +"Lost connection with server\n" +"%s" +msgstr "" + +msgid "" +"(There was an error converting this message.\t Check the 'Encoding' option " +"in the Account Editor)" +msgstr "" + +#, c-format +msgid "Unable to send to chat %s,%s,%s" +msgstr "" + +msgid "Hidden or not logged-in" +msgstr "" + +#, c-format +msgid "
At %s since %s" +msgstr "" + +msgid "Anyone" +msgstr "" + +msgid "_Class:" +msgstr "" + +msgid "_Instance:" +msgstr "" + +msgid "_Recipient:" +msgstr "" + +#, c-format +msgid "Attempt to subscribe to %s,%s,%s failed" +msgstr "" + +msgid "zlocate <nick>: Locate user" +msgstr "" + +msgid "zl <nick>: Locate user" +msgstr "" + +msgid "instance <instance>: Set the instance to be used on this class" +msgstr "" + +msgid "inst <instance>: Set the instance to be used on this class" +msgstr "" + +msgid "topic <instance>: Set the instance to be used on this class" +msgstr "" + +msgid "sub <class> <instance> <recipient>: Join a new chat" +msgstr "" + +msgid "" +"zi <instance>: Send a message to <message,instance,*>" +msgstr "" + +msgid "" +"zci <class> <instance>: Send a message to <class," +"instance,*>" +msgstr "" + +msgid "" +"zcir <class> <instance> <recipient>: Send a message to <" +"class,instance,recipient>" +msgstr "" + +msgid "" +"zir <instance> <recipient>: Send a message to <MESSAGE," +"instance,recipient>" +msgstr "" + +msgid "zc <class>: Send a message to <class,PERSONAL,*>" +msgstr "" + +msgid "Resubscribe" +msgstr "" + +msgid "Retrieve subscriptions from server" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Zephyr Protocol Plugin" +msgstr "" + +msgid "Use tzc" +msgstr "" + +msgid "tzc command" +msgstr "" + +msgid "Export to .anyone" +msgstr "" + +msgid "Export to .zephyr.subs" +msgstr "" + +msgid "Import from .anyone" +msgstr "" + +msgid "Import from .zephyr.subs" +msgstr "" + +msgid "Realm" +msgstr "" + +msgid "Exposure" +msgstr "" + +#, c-format +msgid "" +"Unable to create socket:\n" +"%s" +msgstr "" + +#, c-format +msgid "Unable to parse response from HTTP proxy: %s\n" +msgstr "" + +#, c-format +msgid "HTTP proxy connection error %d" +msgstr "" + +#, c-format +msgid "Access denied: HTTP proxy server forbids port %d tunneling." +msgstr "" + +#, c-format +msgid "Error resolving %s" +msgstr "" + +msgid "Could not resolve host name" +msgstr "" + +#, c-format +msgid "Requesting %s's attention..." +msgstr "" + +#, c-format +msgid "%s has requested your attention!" +msgstr "" + +#. * +#. * A wrapper for purple_request_action() that uses @c Yes and @c No buttons. +#. +msgid "_Yes" +msgstr "" + +msgid "_No" +msgstr "" + +#. * +#. * A wrapper for purple_request_action() that uses Accept and Cancel buttons. +#. +msgid "_Accept" +msgstr "" + +#. * +#. * The default message to use when the user becomes auto-away. +#. +msgid "I'm not here right now" +msgstr "" + +msgid "saved statuses" +msgstr "" + +#, c-format +msgid "%s is now known as %s.\n" +msgstr "" + +#, c-format +msgid "" +"%s has invited %s to the chat room %s:\n" +"%s" +msgstr "" + +#, c-format +msgid "%s has invited %s to the chat room %s\n" +msgstr "" + +msgid "Accept chat invitation?" +msgstr "" + +#. Shortcut +msgid "Shortcut" +msgstr "" + +msgid "The text-shortcut for the smiley" +msgstr "" + +#. Stored Image +msgid "Stored Image" +msgstr "" + +msgid "Stored Image. (that'll have to do for now)" +msgstr "" + +msgid "SSL Connection Failed" +msgstr "" + +msgid "SSL Handshake Failed" +msgstr "" + +msgid "SSL peer presented an invalid certificate" +msgstr "" + +msgid "Unknown SSL error" +msgstr "" + +msgid "Unset" +msgstr "" + +msgid "Do not disturb" +msgstr "" + +msgid "Extended away" +msgstr "" + +msgid "Listening to music" +msgstr "" + +#, c-format +msgid "%s (%s) changed status from %s to %s" +msgstr "" + +#, c-format +msgid "%s (%s) is now %s" +msgstr "" + +#, c-format +msgid "%s (%s) is no longer %s" +msgstr "" + +#, c-format +msgid "%s became idle" +msgstr "" + +#, c-format +msgid "%s became unidle" +msgstr "" + +#, c-format +msgid "+++ %s became idle" +msgstr "" + +#, c-format +msgid "+++ %s became unidle" +msgstr "" + +#. +#. * This string determines how some dates are displayed. The default +#. * string "%x %X" shows the date then the time. Translators can +#. * change this to "%X %x" if they want the time to be shown first, +#. * followed by the date. +#. +#, c-format +msgid "%x %X" +msgstr "" + +msgid "Calculating..." +msgstr "" + +msgid "Unknown." +msgstr "" + +#, c-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%s, %d hour" +msgid_plural "%s, %d hours" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%s, %d minute" +msgid_plural "%s, %d minutes" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "Could not open %s: Redirected too many times" +msgstr "" + +#, c-format +msgid "Unable to connect to %s" +msgstr "" + +#, c-format +msgid "Error reading from %s: response too long (%d bytes limit)" +msgstr "" + +#, c-format +msgid "" +"Unable to allocate enough memory to hold the contents from %s. The web " +"server may be trying something malicious." +msgstr "" + +#, c-format +msgid "Error reading from %s: %s" +msgstr "" + +#, c-format +msgid "Error writing to %s: %s" +msgstr "" + +#, c-format +msgid "Unable to connect to %s: %s" +msgstr "" + +#, c-format +msgid "" +"Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support was " +"found." +msgstr "" + +#, c-format +msgid " - %s" +msgstr "" + +#, c-format +msgid " (%s)" +msgstr "" + +#. 10053 +#, c-format +msgid "Connection interrupted by other software on your computer." +msgstr "" + +#. 10054 +#, c-format +msgid "Remote host closed connection." +msgstr "" + +#. 10060 +#, c-format +msgid "Connection timed out." +msgstr "" + +#. 10061 +#, c-format +msgid "Connection refused." +msgstr "" + +#. 10048 +#, c-format +msgid "Address already in use." +msgstr "" + +#, c-format +msgid "Error Reading %s" +msgstr "" + +#, 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 "" + +msgid "Internet Messenger" +msgstr "" + +msgid "Pidgin Internet Messenger" +msgstr "" + +msgid "Send instant messages over multiple protocols" +msgstr "" + +msgid "Orientation" +msgstr "" + +msgid "The orientation of the tray." +msgstr "" + +#. Build the login options frame. +msgid "Login Options" +msgstr "" + +msgid "Pro_tocol:" +msgstr "" + +msgid "_Username:" +msgstr "" + +msgid "Remember pass_word" +msgstr "" + +#. Build the user options frame. +msgid "User Options" +msgstr "" + +msgid "_Local alias:" +msgstr "" + +msgid "New _mail notifications" +msgstr "" + +#. Buddy icon +msgid "Use this buddy _icon for this account:" +msgstr "" + +msgid "_Advanced" +msgstr "" + +msgid "Use GNOME Proxy Settings" +msgstr "" + +msgid "Use Global Proxy Settings" +msgstr "" + +msgid "No Proxy" +msgstr "" + +msgid "HTTP" +msgstr "" + +msgid "SOCKS 4" +msgstr "" + +msgid "SOCKS 5" +msgstr "" + +msgid "Use Environmental Settings" +msgstr "" + +#. This is an easter egg. +#. It means one of two things, both intended as humourus: +#. A) your network is really slow and you have nothing better to do than +#. look at butterflies. +#. B)You are looking really closely at something that shouldn't matter. +msgid "If you look real closely" +msgstr "" + +#. This is an easter egg. See the comment on the previous line in the source. +msgid "you can see the butterflies mating" +msgstr "" + +msgid "Proxy _type:" +msgstr "" + +msgid "_Host:" +msgstr "" + +msgid "_Port:" +msgstr "" + +msgid "Pa_ssword:" +msgstr "" + +msgid "Unable to save new account" +msgstr "" + +msgid "An account already exists with the specified criteria." +msgstr "" + +msgid "Add Account" +msgstr "" + +msgid "_Basic" +msgstr "" + +msgid "Create _this new account on the server" +msgstr "" + +msgid "_Proxy" +msgstr "" + +msgid "Enabled" +msgstr "" + +msgid "Protocol" +msgstr "" + +#, c-format +msgid "" +"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" +"\n" +"You can come back to this window to add, edit, or remove accounts from " +"Accounts->Manage Accounts in the Buddy List window" +msgstr "" + +#, c-format +msgid "You have %d contact named %s. Would you like to merge them?" +msgid_plural "" +"You currently have %d contacts named %s. Would you like to merge them?" +msgstr[0] "" +msgstr[1] "" + +msgid "" +"Merging these contacts will cause them to share a single entry on the buddy " +"list and use a single conversation window. You can separate them again by " +"choosing 'Expand' from the contact's context menu" +msgstr "" + +msgid "Please update the necessary fields." +msgstr "" + +msgid "A_ccount" +msgstr "" + +msgid "" +"Please enter the appropriate information about the chat you would like to " +"join.\n" +msgstr "" + +msgid "Room _List" +msgstr "" + +msgid "_Block" +msgstr "" + +msgid "Un_block" +msgstr "" + +msgid "Move to" +msgstr "" + +msgid "Get _Info" +msgstr "" + +msgid "I_M" +msgstr "" + +msgid "_Audio Call" +msgstr "" + +msgid "Audio/_Video Call" +msgstr "" + +msgid "_Video Call" +msgstr "" + +msgid "_Send File..." +msgstr "" + +msgid "Add Buddy _Pounce..." +msgstr "" + +msgid "View _Log" +msgstr "" + +msgid "Hide when offline" +msgstr "" + +msgid "_Alias..." +msgstr "" + +msgid "_Remove" +msgstr "" + +msgid "Set Custom Icon" +msgstr "" + +msgid "Remove Custom Icon" +msgstr "" + +msgid "Add _Buddy..." +msgstr "" + +msgid "Add C_hat..." +msgstr "" + +msgid "_Delete Group" +msgstr "" + +msgid "_Rename" +msgstr "" + +#. join button +msgid "_Join" +msgstr "" + +msgid "Auto-Join" +msgstr "" + +msgid "Persistent" +msgstr "" + +msgid "_Edit Settings..." +msgstr "" + +msgid "_Collapse" +msgstr "" + +msgid "_Expand" +msgstr "" + +msgid "/Tools/Mute Sounds" +msgstr "" + +msgid "" +"You are not currently signed on with an account that can add that buddy." +msgstr "" + +#. I don't believe this can happen currently, I think +#. * everything that calls this function checks for one of the +#. * above node types first. +msgid "Unknown node type" +msgstr "" + +#. Buddies menu +msgid "/_Buddies" +msgstr "" + +msgid "/Buddies/New Instant _Message..." +msgstr "" + +msgid "/Buddies/Join a _Chat..." +msgstr "" + +msgid "/Buddies/Get User _Info..." +msgstr "" + +msgid "/Buddies/View User _Log..." +msgstr "" + +msgid "/Buddies/Sh_ow" +msgstr "" + +msgid "/Buddies/Show/_Offline Buddies" +msgstr "" + +msgid "/Buddies/Show/_Empty Groups" +msgstr "" + +msgid "/Buddies/Show/Buddy _Details" +msgstr "" + +msgid "/Buddies/Show/Idle _Times" +msgstr "" + +msgid "/Buddies/Show/_Protocol Icons" +msgstr "" + +msgid "/Buddies/_Sort Buddies" +msgstr "" + +msgid "/Buddies/_Add Buddy..." +msgstr "" + +msgid "/Buddies/Add C_hat..." +msgstr "" + +msgid "/Buddies/Add _Group..." +msgstr "" + +msgid "/Buddies/_Quit" +msgstr "" + +#. Accounts menu +msgid "/_Accounts" +msgstr "" + +msgid "/Accounts/Manage Accounts" +msgstr "" + +#. Tools +msgid "/_Tools" +msgstr "" + +msgid "/Tools/Buddy _Pounces" +msgstr "" + +msgid "/Tools/_Certificates" +msgstr "" + +msgid "/Tools/Custom Smile_ys" +msgstr "" + +msgid "/Tools/Plu_gins" +msgstr "" + +msgid "/Tools/Pr_eferences" +msgstr "" + +msgid "/Tools/Pr_ivacy" +msgstr "" + +msgid "/Tools/_File Transfers" +msgstr "" + +msgid "/Tools/R_oom List" +msgstr "" + +msgid "/Tools/System _Log" +msgstr "" + +msgid "/Tools/Mute _Sounds" +msgstr "" + +#. Help +msgid "/_Help" +msgstr "" + +msgid "/Help/Online _Help" +msgstr "" + +msgid "/Help/_Debug Window" +msgstr "" + +msgid "/Help/_About" +msgstr "" + +#, c-format +msgid "Account: %s" +msgstr "" + +#, c-format +msgid "" +"\n" +"Occupants: %d" +msgstr "" + +#, c-format +msgid "" +"\n" +"Topic: %s" +msgstr "" + +msgid "(no topic set)" +msgstr "" + +msgid "Buddy Alias" +msgstr "" + +msgid "Logged In" +msgstr "" + +msgid "Last Seen" +msgstr "" + +msgid "Spooky" +msgstr "" + +msgid "Awesome" +msgstr "" + +msgid "Rockin'" +msgstr "" + +msgid "Total Buddies" +msgstr "" + +#, c-format +msgid "Idle %dd %dh %02dm" +msgstr "" + +#, c-format +msgid "Idle %dh %02dm" +msgstr "" + +#, c-format +msgid "Idle %dm" +msgstr "" + +msgid "/Buddies/New Instant Message..." +msgstr "" + +msgid "/Buddies/Join a Chat..." +msgstr "" + +msgid "/Buddies/Get User Info..." +msgstr "" + +msgid "/Buddies/Add Buddy..." +msgstr "" + +msgid "/Buddies/Add Chat..." +msgstr "" + +msgid "/Buddies/Add Group..." +msgstr "" + +msgid "/Tools/Privacy" +msgstr "" + +msgid "/Tools/Room List" +msgstr "" + +#, c-format +msgid "%d unread message from %s\n" +msgid_plural "%d unread messages from %s\n" +msgstr[0] "" +msgstr[1] "" + +msgid "Manually" +msgstr "" + +msgid "By status" +msgstr "" + +msgid "By recent log activity" +msgstr "" + +#, c-format +msgid "%s disconnected" +msgstr "" + +#, c-format +msgid "%s disabled" +msgstr "" + +msgid "Reconnect" +msgstr "" + +msgid "Re-enable" +msgstr "" + +msgid "SSL FAQs" +msgstr "" + +msgid "Welcome back!" +msgstr "" + +#, c-format +msgid "%d account was disabled because you signed on from another location:" +msgid_plural "" +"%d accounts were disabled because you signed on from another location:" +msgstr[0] "" +msgstr[1] "" + +msgid "Username:" +msgstr "" + +msgid "Password:" +msgstr "" + +msgid "_Login" +msgstr "" + +msgid "/Accounts" +msgstr "" + +#. Translators: Please maintain the use of -> and <- to refer to menu heirarchy +#, c-format +msgid "" +"Welcome to %s!\n" +"\n" +"You have no accounts enabled. Enable your IM accounts from the Accounts window at Accounts->Manage Accounts. Once you enable accounts, " +"you'll be able to sign on, set your status, and talk to your friends." +msgstr "" + +#. set the Show Offline Buddies option. must be done +#. * after the treeview or faceprint gets mad. -Robot101 +#. +msgid "/Buddies/Show/Offline Buddies" +msgstr "" + +msgid "/Buddies/Show/Empty Groups" +msgstr "" + +msgid "/Buddies/Show/Buddy Details" +msgstr "" + +msgid "/Buddies/Show/Idle Times" +msgstr "" + +msgid "/Buddies/Show/Protocol Icons" +msgstr "" + +msgid "Add a buddy.\n" +msgstr "" + +msgid "Buddy's _username:" +msgstr "" + +msgid "(Optional) A_lias:" +msgstr "" + +msgid "Add buddy to _group:" +msgstr "" + +msgid "This protocol does not support chat rooms." +msgstr "" + +msgid "" +"You are not currently signed on with any protocols that have the ability to " +"chat." +msgstr "" + +msgid "" +"Please enter an alias, and the appropriate information about the chat you " +"would like to add to your buddy list.\n" +msgstr "" + +msgid "A_lias:" +msgstr "" + +msgid "_Group:" +msgstr "" + +msgid "Auto_join when account becomes online." +msgstr "" + +msgid "_Remain in chat after window is closed." +msgstr "" + +msgid "Please enter the name of the group to be added." +msgstr "" + +msgid "Enable Account" +msgstr "" + +msgid "/Accounts/Enable Account" +msgstr "" + +msgid "/Accounts/" +msgstr "" + +msgid "_Edit Account" +msgstr "" + +msgid "No actions available" +msgstr "" + +msgid "_Disable" +msgstr "" + +msgid "/Tools" +msgstr "" + +msgid "/Buddies/Sort Buddies" +msgstr "" + +#. Widget creation function +msgid "SSL Servers" +msgstr "" + +msgid "Unknown command." +msgstr "" + +msgid "That buddy is not on the same protocol as this chat." +msgstr "" + +msgid "" +"You are not currently signed on with an account that can invite that buddy." +msgstr "" + +msgid "Invite Buddy Into Chat Room" +msgstr "" + +msgid "_Buddy:" +msgstr "" + +msgid "_Message:" +msgstr "" + +#, c-format +msgid "

Conversation with %s

\n" +msgstr "" + +msgid "Save Conversation" +msgstr "" + +msgid "Find" +msgstr "" + +msgid "_Search for:" +msgstr "" + +msgid "Un-Ignore" +msgstr "" + +msgid "Ignore" +msgstr "" + +msgid "Get Away Message" +msgstr "" + +msgid "Last said" +msgstr "" + +msgid "Unable to save icon file to disk." +msgstr "" + +msgid "Save Icon" +msgstr "" + +msgid "Animate" +msgstr "" + +msgid "Hide Icon" +msgstr "" + +msgid "Save Icon As..." +msgstr "" + +msgid "Set Custom Icon..." +msgstr "" + +msgid "Change Size" +msgstr "" + +msgid "Show All" +msgstr "" + +#. Conversation menu +msgid "/_Conversation" +msgstr "" + +msgid "/Conversation/New Instant _Message..." +msgstr "" + +msgid "/Conversation/_Find..." +msgstr "" + +msgid "/Conversation/View _Log" +msgstr "" + +msgid "/Conversation/_Save As..." +msgstr "" + +msgid "/Conversation/Clea_r Scrollback" +msgstr "" + +msgid "/Conversation/M_edia" +msgstr "" + +msgid "/Conversation/Media/_Audio Call" +msgstr "" + +msgid "/Conversation/Media/_Video Call" +msgstr "" + +msgid "/Conversation/Media/Audio\\/Video _Call" +msgstr "" + +msgid "/Conversation/Se_nd File..." +msgstr "" + +msgid "/Conversation/Add Buddy _Pounce..." +msgstr "" + +msgid "/Conversation/_Get Info" +msgstr "" + +msgid "/Conversation/In_vite..." +msgstr "" + +msgid "/Conversation/M_ore" +msgstr "" + +msgid "/Conversation/Al_ias..." +msgstr "" + +msgid "/Conversation/_Block..." +msgstr "" + +msgid "/Conversation/_Unblock..." +msgstr "" + +msgid "/Conversation/_Add..." +msgstr "" + +msgid "/Conversation/_Remove..." +msgstr "" + +msgid "/Conversation/Insert Lin_k..." +msgstr "" + +msgid "/Conversation/Insert Imag_e..." +msgstr "" + +msgid "/Conversation/_Close" +msgstr "" + +#. Options +msgid "/_Options" +msgstr "" + +msgid "/Options/Enable _Logging" +msgstr "" + +msgid "/Options/Enable _Sounds" +msgstr "" + +msgid "/Options/Show Formatting _Toolbars" +msgstr "" + +msgid "/Options/Show Ti_mestamps" +msgstr "" + +msgid "/Conversation/More" +msgstr "" + +msgid "/Options" +msgstr "" + +#. The menubar has been deactivated. Make sure the 'More' submenu is regenerated next time +#. * the 'Conversation' menu pops up. +#. Make sure the 'Conversation -> More' menuitems are regenerated whenever +#. * the 'Conversation' menu pops up because the entries can change after the +#. * conversation is created. +msgid "/Conversation" +msgstr "" + +msgid "/Conversation/View Log" +msgstr "" + +msgid "/Conversation/Media/Audio Call" +msgstr "" + +msgid "/Conversation/Media/Video Call" +msgstr "" + +msgid "/Conversation/Media/Audio\\/Video Call" +msgstr "" + +msgid "/Conversation/Send File..." +msgstr "" + +msgid "/Conversation/Add Buddy Pounce..." +msgstr "" + +msgid "/Conversation/Get Info" +msgstr "" + +msgid "/Conversation/Invite..." +msgstr "" + +msgid "/Conversation/Alias..." +msgstr "" + +msgid "/Conversation/Block..." +msgstr "" + +msgid "/Conversation/Unblock..." +msgstr "" + +msgid "/Conversation/Add..." +msgstr "" + +msgid "/Conversation/Remove..." +msgstr "" + +msgid "/Conversation/Insert Link..." +msgstr "" + +msgid "/Conversation/Insert Image..." +msgstr "" + +msgid "/Options/Enable Logging" +msgstr "" + +msgid "/Options/Enable Sounds" +msgstr "" + +msgid "/Options/Show Formatting Toolbars" +msgstr "" + +msgid "/Options/Show Timestamps" +msgstr "" + +msgid "User is typing..." +msgstr "" + +#, c-format +msgid "" +"\n" +"%s has stopped typing" +msgstr "" + +#. Build the Send To menu +msgid "S_end To" +msgstr "" + +msgid "_Send" +msgstr "" + +#. Setup the label telling how many people are in the room. +msgid "0 people in room" +msgstr "" + +#, c-format +msgid "%d person in room" +msgid_plural "%d people in room" +msgstr[0] "" +msgstr[1] "" + +msgid "Typing" +msgstr "" + +msgid "Stopped Typing" +msgstr "" + +msgid "Nick Said" +msgstr "" + +msgid "Unread Messages" +msgstr "" + +msgid "New Event" +msgstr "" + +msgid "clear: Clears all conversation scrollbacks." +msgstr "" + +msgid "Confirm close" +msgstr "" + +msgid "You have unread messages. Are you sure you want to close the window?" +msgstr "" + +msgid "Close other tabs" +msgstr "" + +msgid "Close all tabs" +msgstr "" + +msgid "Detach this tab" +msgstr "" + +msgid "Close this tab" +msgstr "" + +msgid "Close conversation" +msgstr "" + +msgid "Last created window" +msgstr "" + +msgid "Separate IM and Chat windows" +msgstr "" + +msgid "New window" +msgstr "" + +msgid "By group" +msgstr "" + +msgid "By account" +msgstr "" + +msgid "Save Debug Log" +msgstr "" + +msgid "Invert" +msgstr "" + +msgid "Highlight matches" +msgstr "" + +msgid "_Icon Only" +msgstr "" + +msgid "_Text Only" +msgstr "" + +msgid "_Both Icon & Text" +msgstr "" + +msgid "Filter" +msgstr "" + +msgid "Right click for more options." +msgstr "" + +msgid "Level " +msgstr "" + +msgid "Select the debug filter level." +msgstr "" + +msgid "All" +msgstr "" + +msgid "Misc" +msgstr "" + +msgid "Warning" +msgstr "" + +msgid "Error " +msgstr "" + +msgid "Fatal Error" +msgstr "" + +msgid "bug master" +msgstr "" + +msgid "artist" +msgstr "" + +#. feel free to not translate this +msgid "Ka-Hing Cheung" +msgstr "" + +msgid "voice and video" +msgstr "" + +msgid "support" +msgstr "" + +msgid "webmaster" +msgstr "" + +msgid "Senior Contributor/QA" +msgstr "" + +msgid "win32 port" +msgstr "" + +msgid "maintainer" +msgstr "" + +msgid "libfaim maintainer" +msgstr "" + +#. If "lazy bum" translates literally into a serious insult, use something else or omit it. +msgid "hacker and designated driver [lazy bum]" +msgstr "" + +msgid "support/QA" +msgstr "" + +msgid "XMPP" +msgstr "" + +msgid "original author" +msgstr "" + +msgid "lead developer" +msgstr "" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "" + +msgid "Belarusian Latin" +msgstr "" + +msgid "Bulgarian" +msgstr "" + +msgid "Bengali" +msgstr "" + +msgid "Bosnian" +msgstr "" + +msgid "Catalan" +msgstr "" + +msgid "Valencian-Catalan" +msgstr "" + +msgid "Czech" +msgstr "" + +msgid "Danish" +msgstr "" + +msgid "German" +msgstr "" + +msgid "Dzongkha" +msgstr "" + +msgid "Greek" +msgstr "" + +msgid "Australian English" +msgstr "" + +msgid "Canadian English" +msgstr "" + +msgid "British English" +msgstr "" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "" + +msgid "Estonian" +msgstr "" + +msgid "Euskera(Basque)" +msgstr "" + +msgid "Persian" +msgstr "" + +msgid "Finnish" +msgstr "" + +msgid "French" +msgstr "" + +msgid "Irish" +msgstr "" + +msgid "Galician" +msgstr "" + +msgid "Gujarati" +msgstr "" + +msgid "Gujarati Language Team" +msgstr "" + +msgid "Hebrew" +msgstr "" + +msgid "Hindi" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Armenian" +msgstr "" + +msgid "Indonesian" +msgstr "" + +msgid "Italian" +msgstr "" + +msgid "Japanese" +msgstr "" + +msgid "Georgian" +msgstr "" + +msgid "Ubuntu Georgian Translators" +msgstr "" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "" + +msgid "Kannada Translation team" +msgstr "" + +msgid "Korean" +msgstr "" + +msgid "Kurdish" +msgstr "" + +msgid "Lao" +msgstr "" + +msgid "Lithuanian" +msgstr "" + +msgid "Macedonian" +msgstr "" + +msgid "Mongolian" +msgstr "" + +msgid "Bokmål Norwegian" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch, Flemish" +msgstr "" + +msgid "Norwegian Nynorsk" +msgstr "" + +msgid "Occitan" +msgstr "" + +msgid "Punjabi" +msgstr "" + +msgid "Polish" +msgstr "" + +msgid "Portuguese" +msgstr "" + +msgid "Portuguese-Brazil" +msgstr "" + +msgid "Pashto" +msgstr "" + +msgid "Romanian" +msgstr "" + +msgid "Russian" +msgstr "" + +msgid "Slovak" +msgstr "" + +msgid "Slovenian" +msgstr "" + +msgid "Albanian" +msgstr "" + +msgid "Serbian" +msgstr "" + +msgid "Sinhala" +msgstr "" + +msgid "Swedish" +msgstr "" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "" + +msgid "Telugu" +msgstr "" + +msgid "Thai" +msgstr "" + +msgid "Turkish" +msgstr "" + +msgid "Urdu" +msgstr "" + +msgid "Vietnamese" +msgstr "" + +msgid "T.M.Thanh and the Gnome-Vi Team" +msgstr "" + +msgid "Simplified Chinese" +msgstr "" + +msgid "Hong Kong Chinese" +msgstr "" + +msgid "Traditional Chinese" +msgstr "" + +msgid "Amharic" +msgstr "" + +#, c-format +msgid "About %s" +msgstr "" + +#, c-format +msgid "" +"%s is a graphical modular messaging client based on libpurple which is " +"capable of connecting to AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, " +"Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, and " +"QQ all at once. It is written using GTK+.

You may modify and " +"redistribute the program under the terms of the GPL (version 2 or later). A " +"copy of the GPL is contained in the 'COPYING' file distributed with %s. %s " +"is copyrighted by its contributors. See the 'COPYRIGHT' file for the " +"complete list of contributors. We provide no warranty for this program." +"

" +msgstr "" + +#, c-format +msgid "" +"FAQ: http://developer.pidgin.im/wiki/FAQ

" +msgstr "" + +#, c-format +msgid "" +"Help via e-mail: support@pidgin.im

" +msgstr "" + +#, c-format +msgid "" +"IRC Channel: #pidgin on irc.freenode.net

" +msgstr "" + +#, c-format +msgid "XMPP MUC: devel@conference.pidgin.im

" +msgstr "" + +msgid "Current Developers" +msgstr "" + +msgid "Crazy Patch Writers" +msgstr "" + +msgid "Retired Developers" +msgstr "" + +msgid "Retired Crazy Patch Writers" +msgstr "" + +msgid "Current Translators" +msgstr "" + +msgid "Past Translators" +msgstr "" + +msgid "Debugging Information" +msgstr "" + +msgid "_Name" +msgstr "" + +msgid "_Account" +msgstr "" + +msgid "Get User Info" +msgstr "" + +msgid "" +"Please enter the username or alias of the person whose info you would like " +"to view." +msgstr "" + +msgid "View User Log" +msgstr "" + +msgid "Alias Contact" +msgstr "" + +msgid "Enter an alias for this contact." +msgstr "" + +#, c-format +msgid "Enter an alias for %s." +msgstr "" + +msgid "Alias Buddy" +msgstr "" + +msgid "Alias Chat" +msgstr "" + +msgid "Enter an alias for this chat." +msgstr "" + +#, c-format +msgid "" +"You are about to remove the contact containing %s and %d other buddy from " +"your buddy list. Do you want to continue?" +msgid_plural "" +"You are about to remove the contact containing %s and %d other buddies from " +"your buddy list. Do you want to continue?" +msgstr[0] "" +msgstr[1] "" + +msgid "Remove Contact" +msgstr "" + +msgid "_Remove Contact" +msgstr "" + +#, c-format +msgid "" +"You are about to merge the group called %s into the group called %s. Do you " +"want to continue?" +msgstr "" + +msgid "Merge Groups" +msgstr "" + +msgid "_Merge Groups" +msgstr "" + +#, c-format +msgid "" +"You are about to remove the group %s and all its members from your buddy " +"list. Do you want to continue?" +msgstr "" + +msgid "Remove Group" +msgstr "" + +msgid "_Remove Group" +msgstr "" + +#, c-format +msgid "" +"You are about to remove %s from your buddy list. Do you want to continue?" +msgstr "" + +msgid "Remove Buddy" +msgstr "" + +msgid "_Remove Buddy" +msgstr "" + +#, c-format +msgid "" +"You are about to remove the chat %s from your buddy list. Do you want to " +"continue?" +msgstr "" + +msgid "Remove Chat" +msgstr "" + +msgid "_Remove Chat" +msgstr "" + +msgid "Right-click for more unread messages...\n" +msgstr "" + +msgid "_Change Status" +msgstr "" + +msgid "Show Buddy _List" +msgstr "" + +msgid "_Unread Messages" +msgstr "" + +msgid "New _Message..." +msgstr "" + +msgid "_Accounts" +msgstr "" + +msgid "Plu_gins" +msgstr "" + +msgid "Pr_eferences" +msgstr "" + +msgid "Mute _Sounds" +msgstr "" + +msgid "_Blink on New Message" +msgstr "" + +msgid "_Quit" +msgstr "" + +msgid "Not started" +msgstr "" + +msgid "Receiving As:" +msgstr "" + +msgid "Receiving From:" +msgstr "" + +msgid "Sending To:" +msgstr "" + +msgid "Sending As:" +msgstr "" + +msgid "There is no application configured to open this type of file." +msgstr "" + +msgid "An error occurred while opening the file." +msgstr "" + +#, c-format +msgid "Error launching %s: %s" +msgstr "" + +#, c-format +msgid "Error running %s" +msgstr "" + +#, c-format +msgid "Process returned error code %d" +msgstr "" + +msgid "Filename:" +msgstr "" + +msgid "Local File:" +msgstr "" + +msgid "Speed:" +msgstr "" + +msgid "Time Elapsed:" +msgstr "" + +msgid "Time Remaining:" +msgstr "" + +msgid "Close this window when all transfers _finish" +msgstr "" + +msgid "C_lear finished transfers" +msgstr "" + +#. "Download Details" arrow +msgid "File transfer _details" +msgstr "" + +#. Pause button +msgid "_Pause" +msgstr "" + +#. Resume button +msgid "_Resume" +msgstr "" + +msgid "Paste as Plain _Text" +msgstr "" + +msgid "_Reset formatting" +msgstr "" + +msgid "Disable _smileys in selected text" +msgstr "" + +msgid "Hyperlink color" +msgstr "" + +msgid "Color to draw hyperlinks." +msgstr "" + +msgid "Hyperlink visited color" +msgstr "" + +msgid "Color to draw hyperlinks after it has been visited (or activated)." +msgstr "" + +msgid "Hyperlink prelight color" +msgstr "" + +msgid "Color to draw hyperlinks when mouse is over them." +msgstr "" + +msgid "Sent Message Name Color" +msgstr "" + +msgid "Color to draw the name of a message you sent." +msgstr "" + +msgid "Received Message Name Color" +msgstr "" + +msgid "Color to draw the name of a message you received." +msgstr "" + +msgid "\"Attention\" Name Color" +msgstr "" + +msgid "Color to draw the name of a message you received containing your name." +msgstr "" + +msgid "Action Message Name Color" +msgstr "" + +msgid "Color to draw the name of an action message." +msgstr "" + +msgid "Action Message Name Color for Whispered Message" +msgstr "" + +msgid "Whisper Message Name Color" +msgstr "" + +msgid "Typing notification color" +msgstr "" + +msgid "The color to use for the typing notification font" +msgstr "" + +msgid "Typing notification font" +msgstr "" + +msgid "The font to use for the typing notification" +msgstr "" + +msgid "Enable typing notification" +msgstr "" + +msgid "" +"Unrecognized file type\n" +"\n" +"Defaulting to PNG." +msgstr "" + +msgid "" +"Unrecognized file type\n" +"\n" +"Defaulting to PNG." +msgstr "" + +#, c-format +msgid "" +"Error saving image\n" +"\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"Error saving image\n" +"\n" +"%s" +msgstr "" + +msgid "Save Image" +msgstr "" + +msgid "_Save Image..." +msgstr "" + +msgid "_Add Custom Smiley..." +msgstr "" + +msgid "Select Font" +msgstr "" + +msgid "Select Text Color" +msgstr "" + +msgid "Select Background Color" +msgstr "" + +msgid "_URL" +msgstr "" + +msgid "_Description" +msgstr "" + +msgid "" +"Please enter the URL and description of the link that you want to insert. " +"The description is optional." +msgstr "" + +msgid "Please enter the URL of the link that you want to insert." +msgstr "" + +msgid "Insert Link" +msgstr "" + +msgid "_Insert" +msgstr "" + +#, c-format +msgid "Failed to store image: %s\n" +msgstr "" + +msgid "Insert Image" +msgstr "" + +#, c-format +msgid "" +"This smiley is disabled because a custom smiley exists for this shortcut:\n" +" %s" +msgstr "" + +msgid "Smile!" +msgstr "" + +msgid "_Manage custom smileys" +msgstr "" + +msgid "This theme has no available smileys." +msgstr "" + +msgid "_Font" +msgstr "" + +msgid "Group Items" +msgstr "" + +msgid "Ungroup Items" +msgstr "" + +msgid "Bold" +msgstr "" + +msgid "Italic" +msgstr "" + +msgid "Underline" +msgstr "" + +msgid "Strikethrough" +msgstr "" + +msgid "Increase Font Size" +msgstr "" + +msgid "Decrease Font Size" +msgstr "" + +msgid "Font Face" +msgstr "" + +msgid "Background Color" +msgstr "" + +msgid "Foreground Color" +msgstr "" + +msgid "Reset Formatting" +msgstr "" + +msgid "Insert IM Image" +msgstr "" + +msgid "Insert Smiley" +msgstr "" + +msgid "_Bold" +msgstr "" + +msgid "_Italic" +msgstr "" + +msgid "_Underline" +msgstr "" + +msgid "Strikethrough" +msgstr "" + +msgid "_Larger" +msgstr "" + +msgid "_Normal" +msgstr "" + +msgid "_Smaller" +msgstr "" + +#. If we want to show the formatting for the following items, we would +#. * need to update them when formatting changes. The above items don't need +#. * no updating nor nothin' +msgid "_Font face" +msgstr "" + +msgid "Foreground _color" +msgstr "" + +msgid "Bac_kground color" +msgstr "" + +msgid "_Image" +msgstr "" + +msgid "_Link" +msgstr "" + +msgid "_Horizontal rule" +msgstr "" + +msgid "_Smile!" +msgstr "" + +msgid "Log Deletion Failed" +msgstr "" + +msgid "Check permissions and try again." +msgstr "" + +#, c-format +msgid "" +"Are you sure you want to permanently delete the log of the conversation with " +"%s which started at %s?" +msgstr "" + +#, c-format +msgid "" +"Are you sure you want to permanently delete the log of the conversation in %" +"s which started at %s?" +msgstr "" + +#, c-format +msgid "" +"Are you sure you want to permanently delete the system log which started at %" +"s?" +msgstr "" + +msgid "Delete Log?" +msgstr "" + +msgid "Delete Log..." +msgstr "" + +#, c-format +msgid "Conversation in %s on %s" +msgstr "" + +#, c-format +msgid "Conversation with %s on %s" +msgstr "" + +#. Steal the "HELP" response and use it to trigger browsing to the logs folder +msgid "_Browse logs folder" +msgstr "" + +#, c-format +msgid "%s %s. Try `%s -h' for more information.\n" +msgstr "" + +#, c-format +msgid "" +"%s %s\n" +"Usage: %s [OPTION]...\n" +"\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" +" -l, --login[=NAME] enable specified account(s) (optional argument NAME\n" +" specifies account(s) to use, separated by commas.\n" +" Without this only the first account will be enabled).\n" +" --display=DISPLAY X display to use\n" +" -v, --version display the current version and exit\n" +msgstr "" + +#, c-format +msgid "" +"%s %s\n" +"Usage: %s [OPTION]...\n" +"\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" +" -l, --login[=NAME] enable specified account(s) (optional argument NAME\n" +" specifies account(s) to use, separated by commas.\n" +" Without this only the first account will be enabled).\n" +" -v, --version display the current version and exit\n" +msgstr "" + +#, 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" +"no fault of your own.\n" +"\n" +"If you can reproduce the crash, please notify the developers\n" +"by reporting a bug at:\n" +"%ssimpleticket/\n" +"\n" +"Please make sure to specify what you were doing at the time\n" +"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" +msgstr "" + +#. Translators may want to transliterate the name. +#. It is not to be translated. +msgid "Pidgin" +msgstr "" + +#, c-format +msgid "Exiting because another libpurple client is already running.\n" +msgstr "" + +msgid "/_Media" +msgstr "" + +msgid "/Media/_Hangup" +msgstr "" + +msgid "Calling..." +msgstr "" + +#, c-format +msgid "%s wishes to start an audio/video session with you." +msgstr "" + +#, c-format +msgid "%s wishes to start a video session with you." +msgstr "" + +#, c-format +msgid "%s has %d new message." +msgid_plural "%s has %d new messages." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d new email." +msgid_plural "%d new emails." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "The browser command \"%s\" is invalid." +msgstr "" + +msgid "Unable to open URL" +msgstr "" + +#, c-format +msgid "Error launching \"%s\": %s" +msgstr "" + +msgid "" +"The 'Manual' browser command has been chosen, but no command has been set." +msgstr "" + +msgid "Open All Messages" +msgstr "" + +msgid "You have mail!" +msgstr "" + +msgid "New Pounces" +msgstr "" + +msgid "Dismiss" +msgstr "" + +msgid "You have pounced!" +msgstr "" + +msgid "No message" +msgstr "" + +msgid "The following plugins will be unloaded." +msgstr "" + +msgid "Multiple plugins will be unloaded." +msgstr "" + +msgid "Unload Plugins" +msgstr "" + +msgid "Could not unload plugin" +msgstr "" + +msgid "" +"The plugin could not be unloaded now, but will be disabled at the next " +"startup." +msgstr "" + +#, c-format +msgid "" +"Error: %s\n" +"Check the plugin website for an update." +msgstr "" + +msgid "Author" +msgstr "" + +msgid "Written by:" +msgstr "" + +msgid "Web site:" +msgstr "" + +msgid "Filename:" +msgstr "" + +msgid "Configure Pl_ugin" +msgstr "" + +msgid "Plugin Details" +msgstr "" + +msgid "Select a file" +msgstr "" + +msgid "Modify Buddy Pounce" +msgstr "" + +#. Create the "Pounce on Whom" frame. +msgid "Pounce on Whom" +msgstr "" + +msgid "_Account:" +msgstr "" + +msgid "_Buddy name:" +msgstr "" + +msgid "Si_gns on" +msgstr "" + +msgid "Signs o_ff" +msgstr "" + +msgid "Goes a_way" +msgstr "" + +msgid "Ret_urns from away" +msgstr "" + +msgid "Becomes _idle" +msgstr "" + +msgid "Is no longer i_dle" +msgstr "" + +msgid "Starts _typing" +msgstr "" + +msgid "P_auses while typing" +msgstr "" + +msgid "Stops t_yping" +msgstr "" + +msgid "Sends a _message" +msgstr "" + +msgid "Ope_n an IM window" +msgstr "" + +msgid "_Pop up a notification" +msgstr "" + +msgid "Send a _message" +msgstr "" + +msgid "E_xecute a command" +msgstr "" + +msgid "P_lay a sound" +msgstr "" + +msgid "Brows_e..." +msgstr "" + +msgid "Br_owse..." +msgstr "" + +msgid "Pre_view" +msgstr "" + +msgid "P_ounce only when my status is not Available" +msgstr "" + +msgid "_Recurring" +msgstr "" + +msgid "Pounce Target" +msgstr "" + +#, c-format +msgid "Started typing" +msgstr "" + +#, c-format +msgid "Paused while typing" +msgstr "" + +#, c-format +msgid "Signed on" +msgstr "" + +#, c-format +msgid "Returned from being idle" +msgstr "" + +#, c-format +msgid "Returned from being away" +msgstr "" + +#, c-format +msgid "Stopped typing" +msgstr "" + +#, c-format +msgid "Signed off" +msgstr "" + +#, c-format +msgid "Became idle" +msgstr "" + +#, c-format +msgid "Went away" +msgstr "" + +#, c-format +msgid "Sent a message" +msgstr "" + +#, c-format +msgid "Unknown.... Please report this!" +msgstr "" + +msgid "Smiley theme failed to unpack." +msgstr "" + +msgid "Install Theme" +msgstr "" + +msgid "" +"Select a smiley theme that you would like to use from the list below. New " +"themes can be installed by dragging and dropping them onto the theme list." +msgstr "" + +msgid "Icon" +msgstr "" + +msgid "Keyboard Shortcuts" +msgstr "" + +msgid "Cl_ose conversations with the Escape key" +msgstr "" + +#. Buddy List Themes +msgid "Buddy List Theme" +msgstr "" + +#. System Tray +msgid "System Tray Icon" +msgstr "" + +msgid "_Show system tray icon:" +msgstr "" + +msgid "On unread messages" +msgstr "" + +msgid "Conversation Window Hiding" +msgstr "" + +msgid "_Hide new IM conversations:" +msgstr "" + +msgid "When away" +msgstr "" + +#. All the tab options! +msgid "Tabs" +msgstr "" + +msgid "Show IMs and chats in _tabbed windows" +msgstr "" + +msgid "Show close b_utton on tabs" +msgstr "" + +msgid "_Placement:" +msgstr "" + +msgid "Top" +msgstr "" + +msgid "Bottom" +msgstr "" + +msgid "Left" +msgstr "" + +msgid "Right" +msgstr "" + +msgid "Left Vertical" +msgstr "" + +msgid "Right Vertical" +msgstr "" + +msgid "N_ew conversations:" +msgstr "" + +msgid "Show _formatting on incoming messages" +msgstr "" + +msgid "Close IMs immediately when the tab is closed" +msgstr "" + +msgid "Show _detailed information" +msgstr "" + +msgid "Enable buddy ic_on animation" +msgstr "" + +msgid "_Notify buddies that you are typing to them" +msgstr "" + +msgid "Highlight _misspelled words" +msgstr "" + +msgid "Use smooth-scrolling" +msgstr "" + +msgid "F_lash window when IMs are received" +msgstr "" + +msgid "Minimi_ze new conversation windows" +msgstr "" + +msgid "Minimum input area height in lines:" +msgstr "" + +msgid "Font" +msgstr "" + +msgid "Use document font from _theme" +msgstr "" + +msgid "Use font from _theme" +msgstr "" + +msgid "Conversation _font:" +msgstr "" + +msgid "Default Formatting" +msgstr "" + +msgid "" +"This is how your outgoing message text will appear when you use protocols " +"that support formatting." +msgstr "" + +msgid "Cannot start proxy configuration program." +msgstr "" + +msgid "Cannot start browser configuration program." +msgstr "" + +msgid "Example: stunserver.org" +msgstr "" + +msgid "_Autodetect IP address" +msgstr "" + +msgid "Public _IP:" +msgstr "" + +msgid "Ports" +msgstr "" + +msgid "_Enable automatic router port forwarding" +msgstr "" + +msgid "_Manually specify range of ports to listen on" +msgstr "" + +msgid "_Start port:" +msgstr "" + +msgid "_End port:" +msgstr "" + +#. TURN server +msgid "Relay Server (TURN)" +msgstr "" + +msgid "Proxy Server & Browser" +msgstr "" + +msgid "Proxy configuration program was not found." +msgstr "" + +msgid "Browser configuration program was not found." +msgstr "" + +msgid "" +"Proxy & Browser preferences are configured\n" +"in GNOME Preferences" +msgstr "" + +msgid "Configure _Proxy" +msgstr "" + +msgid "Configure _Browser" +msgstr "" + +msgid "Proxy Server" +msgstr "" + +msgid "No proxy" +msgstr "" + +#. This is a global option that affects SOCKS4 usage even with account-specific proxy settings +msgid "Use remote DNS with SOCKS4 proxies" +msgstr "" + +msgid "_User:" +msgstr "" + +msgid "Seamonkey" +msgstr "" + +msgid "Opera" +msgstr "" + +msgid "Netscape" +msgstr "" + +msgid "Mozilla" +msgstr "" + +msgid "Konqueror" +msgstr "" + +msgid "Desktop Default" +msgstr "" + +msgid "GNOME Default" +msgstr "" + +msgid "Galeon" +msgstr "" + +msgid "Firefox" +msgstr "" + +msgid "Firebird" +msgstr "" + +msgid "Epiphany" +msgstr "" + +msgid "Manual" +msgstr "" + +msgid "Browser Selection" +msgstr "" + +msgid "_Browser:" +msgstr "" + +msgid "_Open link in:" +msgstr "" + +msgid "Browser default" +msgstr "" + +msgid "Existing window" +msgstr "" + +msgid "New tab" +msgstr "" + +#, c-format +msgid "" +"_Manual:\n" +"(%s for URL)" +msgstr "" + +msgid "Log _format:" +msgstr "" + +msgid "Log all _instant messages" +msgstr "" + +msgid "Log all c_hats" +msgstr "" + +msgid "Log all _status changes to system log" +msgstr "" + +msgid "Sound Selection" +msgstr "" + +#, c-format +msgid "Quietest" +msgstr "" + +#, c-format +msgid "Quieter" +msgstr "" + +#, c-format +msgid "Quiet" +msgstr "" + +#, c-format +msgid "Loud" +msgstr "" + +#, c-format +msgid "Louder" +msgstr "" + +#, c-format +msgid "Loudest" +msgstr "" + +msgid "_Method:" +msgstr "" + +msgid "Console beep" +msgstr "" + +msgid "No sounds" +msgstr "" + +#, c-format +msgid "" +"Sound c_ommand:\n" +"(%s for filename)" +msgstr "" + +msgid "M_ute sounds" +msgstr "" + +msgid "Sounds when conversation has _focus" +msgstr "" + +msgid "_Enable sounds:" +msgstr "" + +msgid "V_olume:" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "_Browse..." +msgstr "" + +msgid "_Reset" +msgstr "" + +msgid "_Report idle time:" +msgstr "" + +msgid "Based on keyboard or mouse use" +msgstr "" + +msgid "_Auto-reply:" +msgstr "" + +msgid "When both away and idle" +msgstr "" + +#. Auto-away stuff +msgid "Auto-away" +msgstr "" + +msgid "_Minutes before becoming idle:" +msgstr "" + +msgid "Change status when _idle" +msgstr "" + +msgid "Change _status to:" +msgstr "" + +#. Signon status stuff +msgid "Status at Startup" +msgstr "" + +msgid "Use status from last _exit at startup" +msgstr "" + +msgid "Status to a_pply at startup:" +msgstr "" + +msgid "Interface" +msgstr "" + +msgid "Smiley Themes" +msgstr "" + +msgid "Browser" +msgstr "" + +msgid "Status / Idle" +msgstr "" + +msgid "Allow all users to contact me" +msgstr "" + +msgid "Allow only the users on my buddy list" +msgstr "" + +msgid "Allow only the users below" +msgstr "" + +msgid "Block all users" +msgstr "" + +msgid "Block only the users below" +msgstr "" + +msgid "Privacy" +msgstr "" + +msgid "Changes to privacy settings take effect immediately." +msgstr "" + +msgid "Set privacy for:" +msgstr "" + +#. Remove All button +msgid "Remove Al_l" +msgstr "" + +msgid "Permit User" +msgstr "" + +msgid "Type a user you permit to contact you." +msgstr "" + +msgid "Please enter the name of the user you wish to be able to contact you." +msgstr "" + +msgid "_Permit" +msgstr "" + +#, c-format +msgid "Allow %s to contact you?" +msgstr "" + +#, c-format +msgid "Are you sure you wish to allow %s to contact you?" +msgstr "" + +msgid "Block User" +msgstr "" + +msgid "Type a user to block." +msgstr "" + +msgid "Please enter the name of the user you wish to block." +msgstr "" + +#, c-format +msgid "Block %s?" +msgstr "" + +#, c-format +msgid "Are you sure you want to block %s?" +msgstr "" + +msgid "Apply" +msgstr "" + +msgid "That file already exists" +msgstr "" + +msgid "Would you like to overwrite it?" +msgstr "" + +msgid "Overwrite" +msgstr "" + +msgid "Choose New Name" +msgstr "" + +msgid "Select Folder..." +msgstr "" + +#. list button +msgid "_Get List" +msgstr "" + +#. add button +msgid "_Add Chat" +msgstr "" + +msgid "Are you sure you want to delete the selected saved statuses?" +msgstr "" + +#. Use button +msgid "_Use" +msgstr "" + +msgid "Title already in use. You must choose a unique title." +msgstr "" + +msgid "Different" +msgstr "" + +msgid "_Title:" +msgstr "" + +msgid "_Status:" +msgstr "" + +#. Different status message expander +msgid "Use a _different status for some accounts" +msgstr "" + +#. Save & Use button +msgid "Sa_ve & Use" +msgstr "" + +#, c-format +msgid "Status for %s" +msgstr "" + +#. +#. * TODO: We should enable/disable the add button based on +#. * whether the user has entered all required data. That +#. * would eliminate the need for this check and provide a +#. * better user experience. +#. +msgid "Custom Smiley" +msgstr "" + +msgid "More Data needed" +msgstr "" + +msgid "Please provide a shortcut to associate with the smiley." +msgstr "" + +#, c-format +msgid "" +"A custom smiley for '%s' already exists. Please use a different shortcut." +msgstr "" + +msgid "Duplicate Shortcut" +msgstr "" + +msgid "Please select an image for the smiley." +msgstr "" + +msgid "Edit Smiley" +msgstr "" + +msgid "Add Smiley" +msgstr "" + +msgid "_Image:" +msgstr "" + +#. Shortcut text +msgid "S_hortcut text:" +msgstr "" + +msgid "Smiley" +msgstr "" + +msgid "Shortcut Text" +msgstr "" + +msgid "Custom Smiley Manager" +msgstr "" + +msgid "Select Buddy Icon" +msgstr "" + +msgid "Click to change your buddyicon for this account." +msgstr "" + +msgid "Click to change your buddyicon for all accounts." +msgstr "" + +msgid "Waiting for network connection" +msgstr "" + +msgid "New status..." +msgstr "" + +msgid "Saved statuses..." +msgstr "" + +msgid "Status Selector" +msgstr "" + +msgid "Google Talk" +msgstr "" + +#, c-format +msgid "The following error has occurred loading %s: %s" +msgstr "" + +msgid "Failed to load image" +msgstr "" + +#, c-format +msgid "Cannot send folder %s." +msgstr "" + +#, c-format +msgid "" +"%s cannot transfer a folder. You will need to send the files within " +"individually." +msgstr "" + +msgid "You have dragged an image" +msgstr "" + +msgid "" +"You can send this image as a file transfer, embed it into this message, or " +"use it as the buddy icon for this user." +msgstr "" + +msgid "Set as buddy icon" +msgstr "" + +msgid "Send image file" +msgstr "" + +msgid "Insert in message" +msgstr "" + +msgid "Would you like to set it as the buddy icon for this user?" +msgstr "" + +msgid "" +"You can send this image as a file transfer, or use it as the buddy icon for " +"this user." +msgstr "" + +msgid "" +"You can insert this image into this message, or use it as the buddy icon for " +"this user" +msgstr "" + +#. I don't know if we really want to do anything here. Most of the desktop item types are crap like +#. * "MIME Type" (I have no clue how that would be a desktop item) and "Comment"... nothing we can really +#. * send. The only logical one is "Application," but do we really want to send a binary and nothing else? +#. * Probably not. I'll just give an error and return. +#. The original patch sent the icon used by the launcher. That's probably wrong +msgid "Cannot send launcher" +msgstr "" + +msgid "" +"You dragged a desktop launcher. Most likely you wanted to send whatever this " +"launcher points to instead of this launcher itself." +msgstr "" + +#, c-format +msgid "" +"File: %s\n" +"File size: %s\n" +"Image size: %dx%d" +msgstr "" + +#, c-format +msgid "The file '%s' is too large for %s. Please try a smaller image.\n" +msgstr "" + +msgid "Icon Error" +msgstr "" + +msgid "Could not set icon" +msgstr "" + +#, c-format +msgid "Failed to open file '%s': %s" +msgstr "" + +#, c-format +msgid "" +"Failed to load image '%s': reason not known, probably a corrupt image file" +msgstr "" + +msgid "_Open Link" +msgstr "" + +msgid "_Copy Link Location" +msgstr "" + +msgid "_Copy Email Address" +msgstr "" + +msgid "Save File" +msgstr "" + +msgid "Select color" +msgstr "" + +msgid "_Alias" +msgstr "" + +msgid "Close _tabs" +msgstr "" + +msgid "_Get Info" +msgstr "" + +msgid "_Invite" +msgstr "" + +msgid "_Modify..." +msgstr "" + +msgid "_Add..." +msgstr "" + +msgid "_Open Mail" +msgstr "" + +msgid "_Edit" +msgstr "" + +msgid "Pidgin Tooltip" +msgstr "" + +msgid "Pidgin smileys" +msgstr "" + +msgid "Penguin Pimps" +msgstr "" + +msgid "Selecting this disables graphical emoticons." +msgstr "" + +msgid "none" +msgstr "" + +msgid "Small" +msgstr "" + +msgid "Smaller versions of the default smilies" +msgstr "" + +msgid "Response Probability:" +msgstr "" + +msgid "Statistics Configuration" +msgstr "" + +#. msg_difference spinner +msgid "Maximum response timeout:" +msgstr "" + +msgid "minutes" +msgstr "" + +#. last_seen spinner +msgid "Maximum last-seen difference:" +msgstr "" + +#. threshold spinner +msgid "Threshold:" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Contact Availability Prediction" +msgstr "" + +#. *< name +#. *< version +msgid "Contact Availability Prediction plugin." +msgstr "" + +#. * summary +msgid "Displays statistical information about your buddies' availability" +msgstr "" + +msgid "Buddy is idle" +msgstr "" + +msgid "Buddy is away" +msgstr "" + +msgid "Buddy is \"extended\" away" +msgstr "" + +#. Not used yet. +msgid "Buddy is mobile" +msgstr "" + +msgid "Buddy is offline" +msgstr "" + +msgid "Point values to use when..." +msgstr "" + +msgid "" +"The buddy with the largest score is the buddy who will have priority " +"in the contact.\n" +msgstr "" + +msgid "Use last buddy when scores are equal" +msgstr "" + +msgid "Point values to use for account..." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Contact Priority" +msgstr "" + +#. *< name +#. *< version +#. *< summary +msgid "" +"Allows for controlling the values associated with different buddy states." +msgstr "" + +#. *< description +msgid "" +"Allows for changing the point values of idle/away/offline states for buddies " +"in contact priority computations." +msgstr "" + +msgid "Conversation Colors" +msgstr "" + +msgid "Customize colors in the conversation window" +msgstr "" + +msgid "Error Messages" +msgstr "" + +msgid "Highlighted Messages" +msgstr "" + +msgid "System Messages" +msgstr "" + +msgid "Sent Messages" +msgstr "" + +msgid "Received Messages" +msgstr "" + +#, c-format +msgid "Select Color for %s" +msgstr "" + +msgid "Ignore incoming format" +msgstr "" + +msgid "Apply in Chats" +msgstr "" + +msgid "Apply in IMs" +msgstr "" + +msgid "By conversation count" +msgstr "" + +msgid "Conversation Placement" +msgstr "" + +#. Translators: "New conversations" should match the text in the preferences dialog and "By conversation count" should be the same text used above +msgid "" +"Note: The preference for \"New conversations\" must be set to \"By " +"conversation count\"." +msgstr "" + +msgid "Number of conversations per window" +msgstr "" + +msgid "Separate IM and Chat windows when placing by number" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "ExtPlacement" +msgstr "" + +#. *< name +#. *< version +msgid "Extra conversation placement options." +msgstr "" + +#. *< summary +#. * description +msgid "" +"Restrict the number of conversations per windows, optionally separating IMs " +"and Chats" +msgstr "" + +#. Configuration frame +msgid "Mouse Gestures Configuration" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Right mouse button" +msgstr "" + +#. "Visual gesture display" checkbox +msgid "_Visual gesture display" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Mouse Gestures" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Provides support for mouse gestures" +msgstr "" + +#. * description +msgid "" +"Allows support for mouse gestures in conversation windows. Drag the middle " +"mouse button to perform certain actions:\n" +" • Drag down and then to the right to close a conversation.\n" +" • Drag up and then to the left to switch to the previous conversation.\n" +" • Drag up and then to the right to switch to the next conversation." +msgstr "" + +msgid "Instant Messaging" +msgstr "" + +#. Add the label. +msgid "Select a person from your address book below, or add a new person." +msgstr "" + +msgid "Group:" +msgstr "" + +#. "New Person" button +msgid "New Person" +msgstr "" + +#. "Select Buddy" button +msgid "Select Buddy" +msgstr "" + +#. Add the label. +msgid "" +"Select a person from your address book to add this buddy to, or create a new " +"person." +msgstr "" + +#. Add the expander +msgid "User _details" +msgstr "" + +#. "Associate Buddy" button +msgid "_Associate Buddy" +msgstr "" + +msgid "Unable to send email" +msgstr "" + +msgid "The evolution executable was not found in the PATH." +msgstr "" + +msgid "An email address was not found for this buddy." +msgstr "" + +msgid "Add to Address Book" +msgstr "" + +msgid "Send Email" +msgstr "" + +#. Configuration frame +msgid "Evolution Integration Configuration" +msgstr "" + +#. Label +msgid "Select all accounts that buddies should be auto-added to." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Evolution Integration" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides integration with Evolution." +msgstr "" + +msgid "Please enter the person's information below." +msgstr "" + +msgid "Please enter the buddy's username and account type below." +msgstr "" + +msgid "Account type:" +msgstr "" + +#. Optional Information section +msgid "Optional information:" +msgstr "" + +msgid "First name:" +msgstr "" + +msgid "Last name:" +msgstr "" + +msgid "Email:" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "GTK Signals Test" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Test to see that all ui signals are working properly." +msgstr "" + +#, c-format +msgid "" +"\n" +"Buddy Note: %s" +msgstr "" + +msgid "History" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Iconify on Away" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Iconifies the buddy list and your conversations when you go away." +msgstr "" + +msgid "Mail Checker" +msgstr "" + +msgid "Checks for new local mail." +msgstr "" + +msgid "Adds a small box to the buddy list that shows if you have new mail." +msgstr "" + +msgid "Markerline" +msgstr "" + +msgid "Draw a line to indicate new messages in a conversation." +msgstr "" + +msgid "Jump to markerline" +msgstr "" + +msgid "Draw Markerline in " +msgstr "" + +msgid "_IM windows" +msgstr "" + +msgid "C_hat windows" +msgstr "" + +msgid "" +"A music messaging session has been requested. Please click the MM icon to " +"accept." +msgstr "" + +msgid "Music messaging session confirmed." +msgstr "" + +msgid "Music Messaging" +msgstr "" + +msgid "There was a conflict in running the command:" +msgstr "" + +msgid "Error Running Editor" +msgstr "" + +msgid "The following error has occurred:" +msgstr "" + +#. Configuration frame +msgid "Music Messaging Configuration" +msgstr "" + +msgid "Score Editor Path" +msgstr "" + +msgid "_Apply" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +msgid "Music Messaging Plugin for collaborative composition." +msgstr "" + +#. * summary +msgid "" +"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." +msgstr "" + +#. ---------- "Notify For" ---------- +msgid "Notify For" +msgstr "" + +msgid "\t_Only when someone says your username" +msgstr "" + +msgid "_Focused windows" +msgstr "" + +#. ---------- "Notification Methods" ---------- +msgid "Notification Methods" +msgstr "" + +msgid "Prepend _string into window title:" +msgstr "" + +#. Count method button +msgid "Insert c_ount of new messages into window title" +msgstr "" + +#. Count xprop method button +msgid "Insert count of new message into _X property" +msgstr "" + +#. Urgent method button +msgid "Set window manager \"_URGENT\" hint" +msgstr "" + +msgid "_Flash window" +msgstr "" + +#. Raise window method button +msgid "R_aise conversation window" +msgstr "" + +#. Present conversation method button +msgid "_Present conversation window" +msgstr "" + +#. ---------- "Notification Removals" ---------- +msgid "Notification Removal" +msgstr "" + +#. Remove on focus button +msgid "Remove when conversation window _gains focus" +msgstr "" + +#. Remove on click button +msgid "Remove when conversation window _receives click" +msgstr "" + +#. Remove on type button +msgid "Remove when _typing in conversation window" +msgstr "" + +#. Remove on message send button +msgid "Remove when a _message gets sent" +msgstr "" + +#. Remove on conversation switch button +msgid "Remove on switch to conversation ta_b" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Message Notification" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides a variety of ways of notifying you of unread messages." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Pidgin Demonstration Plugin" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "An example plugin that does stuff - see the description." +msgstr "" + +#. * description +msgid "" +"This is a really cool plugin that does a lot of stuff:\n" +"- It tells you who wrote the program when you log in\n" +"- It reverses all incoming text\n" +"- It sends a message to people on your list immediately when they sign on" +msgstr "" + +msgid "Cursor Color" +msgstr "" + +msgid "Secondary Cursor Color" +msgstr "" + +msgid "Hyperlink Color" +msgstr "" + +msgid "Visited Hyperlink Color" +msgstr "" + +msgid "Highlighted Message Name Color" +msgstr "" + +msgid "GtkTreeView Horizontal Separation" +msgstr "" + +msgid "Conversation Entry" +msgstr "" + +msgid "Request Dialog" +msgstr "" + +msgid "Notify Dialog" +msgstr "" + +msgid "Select Color" +msgstr "" + +#, c-format +msgid "Select Interface Font" +msgstr "" + +#, c-format +msgid "Select Font for %s" +msgstr "" + +msgid "GTK+ Interface Font" +msgstr "" + +msgid "GTK+ Text Shortcut Theme" +msgstr "" + +#. +#. for (i = 0; i < G_N_ELEMENTS(widget_bool_prefs); i++) { +#. hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_CAT_SPACE); +#. gtk_box_pack_start(GTK_BOX(frame), hbox, FALSE, FALSE, 0); +#. +#. check = pidgin_prefs_checkbox(_(widget_bool_names[i]), +#. widget_bool_prefs_set[i], hbox); +#. gtk_size_group_add_widget(labelsg, check); +#. +#. widget_bool_widgets[i] = pidgin_prefs_checkbox("", widget_bool_prefs[i], hbox); +#. * +#. gtk_size_group_add_widget(widgetsb, widget_bool_widgets[i]); +#. * +#. gtk_widget_set_sensitive(widget_bool_widgets[i], +#. purple_prefs_get_bool(widget_bool_prefs_set[i])); +#. g_signal_connect(G_OBJECT(check), "toggled", +#. G_CALLBACK(pidgin_toggle_sensitive), +#. widget_bool_widgets[i]); +#. } +#. +msgid "Interface colors" +msgstr "" + +msgid "Widget Sizes" +msgstr "" + +msgid "Fonts" +msgstr "" + +msgid "Gtkrc File Tools" +msgstr "" + +#, c-format +msgid "Write settings to %s%sgtkrc-2.0" +msgstr "" + +msgid "Re-read gtkrc files" +msgstr "" + +msgid "Pidgin GTK+ Theme Control" +msgstr "" + +msgid "Provides access to commonly used gtkrc settings." +msgstr "" + +msgid "Raw" +msgstr "" + +msgid "Lets you send raw input to text-based protocols." +msgstr "" + +msgid "" +"Lets you send raw input to text-based protocols (XMPP, MSN, IRC, TOC). Hit " +"'Enter' in the entry box to send. Watch the debug window." +msgstr "" + +#, c-format +msgid "You can upgrade to %s %s today." +msgstr "" + +msgid "New Version Available" +msgstr "" + +msgid "Later" +msgstr "" + +msgid "Download Now" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Release Notification" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Checks periodically for new releases." +msgstr "" + +#. * description +msgid "" +"Checks periodically for new releases and notifies the user with the " +"ChangeLog." +msgstr "" + +#. *< major version +#. *< minor version +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Send Button" +msgstr "" + +#. *< name +#. *< version +msgid "Conversation Window Send Button." +msgstr "" + +#. *< summary +msgid "" +"Adds a Send button to the entry area of the conversation window. Intended " +"for when no physical keyboard is present." +msgstr "" + +msgid "Duplicate Correction" +msgstr "" + +msgid "The specified word already exists in the correction list." +msgstr "" + +msgid "Text Replacements" +msgstr "" + +msgid "You type" +msgstr "" + +msgid "You send" +msgstr "" + +msgid "Whole words only" +msgstr "" + +msgid "Case sensitive" +msgstr "" + +msgid "Add a new text replacement" +msgstr "" + +msgid "You _type:" +msgstr "" + +msgid "You _send:" +msgstr "" + +#. Created here so it can be passed to whole_words_button_toggled. +msgid "_Exact case match (uncheck for automatic case handling)" +msgstr "" + +msgid "Only replace _whole words" +msgstr "" + +msgid "General Text Replacement Options" +msgstr "" + +msgid "Enable replacement of last word on send" +msgstr "" + +msgid "Text replacement" +msgstr "" + +msgid "Replaces text in outgoing messages according to user-defined rules." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Buddy Ticker" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "A horizontal scrolling version of the buddy list." +msgstr "" + +msgid "Display Timestamps Every" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Timestamp" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Display iChat-style timestamps" +msgstr "" + +#. * description +msgid "Display iChat-style timestamps every N minutes." +msgstr "" + +msgid "Timestamp Format Options" +msgstr "" + +#, c-format +msgid "_Force 24-hour time format" +msgstr "" + +msgid "Show dates in..." +msgstr "" + +msgid "Co_nversations:" +msgstr "" + +msgid "For delayed messages" +msgstr "" + +msgid "For delayed messages and in chats" +msgstr "" + +msgid "_Message Logs:" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Message Timestamp Formats" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Customizes the message timestamp formats." +msgstr "" + +#. * description +msgid "" +"This plugin allows the user to customize conversation and logging message " +"timestamp formats." +msgstr "" + +msgid "Opacity:" +msgstr "" + +#. IM Convo trans options +msgid "IM Conversation Windows" +msgstr "" + +msgid "_IM window transparency" +msgstr "" + +msgid "_Show slider bar in IM window" +msgstr "" + +msgid "Remove IM window transparency on focus" +msgstr "" + +msgid "Always on top" +msgstr "" + +#. Buddy List trans options +msgid "Buddy List Window" +msgstr "" + +msgid "_Buddy List window transparency" +msgstr "" + +msgid "Remove Buddy List window transparency on focus" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Transparency" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Variable Transparency for the buddy list and conversations." +msgstr "" + +#. * description +msgid "" +"This plugin enables variable alpha transparency on conversation windows and " +"the buddy list.\n" +"\n" +"* Note: This plugin requires Win2000 or greater." +msgstr "" + +msgid "GTK+ Runtime Version" +msgstr "" + +#. Autostart +msgid "Startup" +msgstr "" + +#, c-format +msgid "_Start %s on Windows startup" +msgstr "" + +msgid "_Dockable Buddy List" +msgstr "" + +#. Blist On Top +msgid "_Keep Buddy List window on top:" +msgstr "" + +#. XXX: Did this ever work? +msgid "Only when docked" +msgstr "" + +msgid "Windows Pidgin Options" +msgstr "" + +msgid "Options specific to Pidgin for Windows." +msgstr "" + +msgid "" +"Provides options specific to Pidgin for Windows , such as buddy list docking." +msgstr "" + +msgid "Logged out." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "XMPP Console" +msgstr "" + +msgid "Account: " +msgstr "" + +msgid "Not connected to XMPP" +msgstr "" + +msgid "Insert an stanza." +msgstr "" + +msgid "Insert a stanza." +msgstr "" + +msgid "Insert a stanza." +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Send and receive raw XMPP stanzas." +msgstr "" + +#. * description +msgid "This plugin is useful for debbuging XMPP servers or clients." +msgstr "" diff -r fd78c7022f81 -r dc7ee92810a5 po/lo.po --- a/po/lo.po Tue May 26 16:12:53 2009 +0000 +++ b/po/lo.po Fri May 29 01:27:45 2009 +0000 @@ -1,25 +1,26 @@ -# SOME DESCRIPTIVE TITLE. +# translation of lo.po to Lao # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. # -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +# Anousak Souphavanh , 2007, 2009. +msgid "" +msgstr "" +"Project-Id-Version: lo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-30 10:39-0400\n" -"PO-Revision-Date: 2007-09-28 09:52+0700\n" +"POT-Creation-Date: 2009-05-26 22:29-0700\n" +"PO-Revision-Date: 2009-04-29 09:28+0700\n" "Last-Translator: Anousak Souphavanh \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" # "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. Translators may want to transliterate the name. #. It is not to be translated. msgid "Finch" -msgstr "" +msgstr "ຟີນຊ໌" #, c-format msgid "%s. Try `%s -h' for more information.\n" @@ -48,40 +49,40 @@ msgstr "ຜິດພາດ" msgid "Account was not added" -msgstr "" +msgstr "ບໍ່ໃດ້ເພີ້ມບັນຊີ " msgid "Username of an account must be non-empty." -msgstr "" +msgstr "ລະຫັດຜູ້ໃຊ້ຕ້ອງໃຫ້ມີຂໍ້ມູນ" msgid "New mail notifications" -msgstr "" +msgstr "ອີເເມວລ໌ໃຫ່ມເຕືອນ" msgid "Remember password" -msgstr "" +msgstr "ຈື່ລະຫັດພານ" msgid "There are no protocol plugins installed." msgstr "" msgid "(You probably forgot to 'make install'.)" -msgstr "" +msgstr "ຄິດວ່າທ່ານລືມຂຽນ 'make install'" msgid "Modify Account" -msgstr "" +msgstr "ປັບບັນຊີ" msgid "New Account" -msgstr "" +msgstr "ບັນຊີໃຫມ່" msgid "Protocol:" -msgstr "" +msgstr "ໂປໂຕໂກນ:" msgid "Username:" -msgstr "" +msgstr "ຊື່ຜູ້ໃຊ້:" msgid "Password:" -msgstr "" +msgstr "ລະຫັດພ່ານ:" msgid "Alias:" -msgstr "" +msgstr "ຊື່ຫລີ້ນ:" #. Register checkbox msgid "Create this account on the server" @@ -90,37 +91,37 @@ #. Cancel button #. Cancel msgid "Cancel" -msgstr "" +msgstr "ຍົກເລີອກ" #. Save button #. Save msgid "Save" -msgstr "" +msgstr "ບັນທຶກ" #, c-format msgid "Are you sure you want to delete %s?" -msgstr "" +msgstr "ເເນ່ທີ່ຈະລຶບ %s?" msgid "Delete Account" -msgstr "" +msgstr "ລຶບບັນຊີ" #. Delete button msgid "Delete" -msgstr "" +msgstr "ລຶບ" msgid "Accounts" -msgstr "" +msgstr "ບັນຊີທົວໄປ" msgid "You can enable/disable accounts from the following list." msgstr "" #. Add button msgid "Add" -msgstr "" +msgstr "ເພີ້ມ" #. Modify button msgid "Modify" -msgstr "" +msgstr "ປັບ" #, c-format msgid "%s%s%s%s has made %s his or her buddy%s%s" @@ -137,20 +138,22 @@ msgstr "" msgid "Authorize" -msgstr "" +msgstr "ອະນຸມັດ" msgid "Deny" -msgstr "" +msgstr "ປະຕິເສດ" #, c-format msgid "" "Online: %d\n" "Total: %d" msgstr "" +"ອອນລາຍ: %d\n" +"ຈໍານວນລວມ: %d" #, c-format msgid "Account: %s (%s)" -msgstr "" +msgstr "ບັນຊີ: %s (%s)" #, c-format msgid "" @@ -1669,6 +1672,8 @@ msgid "+++ %s signed off" msgstr "" +#. Unknown error +#. Unknown error! msgid "Unknown error" msgstr "" @@ -3480,6 +3485,9 @@ msgid "Server does not use any supported authentication method" msgstr "" +msgid "You require encryption, but it is not available on this server." +msgstr "" + msgid "Invalid challenge from server" msgstr "" @@ -3739,6 +3747,13 @@ msgid "Resource" msgstr "" +#, c-format +msgid "%s ago" +msgstr "" + +msgid "Logged off" +msgstr "" + msgid "Middle Name" msgstr "" @@ -3903,7 +3918,14 @@ msgid "Find Rooms" msgstr "" -msgid "You require encryption, but it is not available on this server." +#, fuzzy +msgid "Affiliations:" +msgstr "ຊື່ຫລີ້ນ:" + +msgid "No users found" +msgstr "" + +msgid "Roles:" msgstr "" msgid "Ping timeout" @@ -4354,13 +4376,13 @@ msgstr "" msgid "" -"affiliate <user> <owner|admin|member|outcast|none>: Set a user's " -"affiliation with the room." -msgstr "" - -msgid "" -"role <user> <moderator|participant|visitor|none>: Set a user's " -"role in the room." +"affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: Get " +"the users with an affiliation or set users' affiliation with the room." +msgstr "" + +msgid "" +"role <moderator|participant|visitor|none> [nick1] [nick2] ...: Get the " +"users with an role or set users' role with the room." msgstr "" msgid "invite <user> [message]: Invite a user to the room." @@ -5140,28 +5162,20 @@ msgstr "" #, c-format -msgid "%s is not a valid group." -msgstr "" - -msgid "Unknown error." -msgstr "" - -#, c-format -msgid "%s on %s (%s)" -msgstr "" - -#, c-format msgid "%s just sent you a Nudge!" msgstr "" -#. char *adl = g_strndup(payload, len); -#, c-format -msgid "Unknown error (%d)" +#, c-format +msgid "Unknown error (%d): %s" msgstr "" msgid "Unable to add user" msgstr "" +#, c-format +msgid "Unknown error (%d)" +msgstr "" + msgid "The following users are missing from your addressbook" msgstr "" @@ -5188,15 +5202,12 @@ msgid "Service Temporarily Unavailable." msgstr "" +msgid "Unknown error." +msgstr "" + msgid "Mobile message was not sent because it was too long." msgstr "" -msgid "Unable to rename group" -msgstr "" - -msgid "Unable to delete group" -msgstr "" - #, c-format msgid "" "The MSN server will shut down for maintenance in %d minute. You will " @@ -5321,14 +5332,6 @@ msgid "Message may have not been sent because an unknown error occurred:" msgstr "" -#, c-format -msgid "%s has added you to his or her buddy list." -msgstr "" - -#, c-format -msgid "%s has removed you from his or her buddy list." -msgstr "" - msgid "Delete Buddy from Address Book?" msgstr "" @@ -5358,6 +5361,28 @@ msgstr "" #, c-format +msgid "%s is not a valid group." +msgstr "" + +#, c-format +msgid "%s on %s (%s)" +msgstr "" + +msgid "Unable to rename group" +msgstr "" + +msgid "Unable to delete group" +msgstr "" + +#, c-format +msgid "%s has added you to his or her buddy list." +msgstr "" + +#, c-format +msgid "%s has removed you from his or her buddy list." +msgstr "" + +#, c-format msgid "No such user: %s" msgstr "" @@ -5386,6 +5411,8 @@ msgstr "" #. Can't write _()'d strings in array initializers. Workaround. +#. khc: then use N_() in the array initializer and use _() when they are +#. used msgid "New mail messages" msgstr "" @@ -8939,6 +8966,30 @@ msgid "Add buddy rejected" msgstr "" +#. Some error in the received stream +msgid "Received invalid data" +msgstr "" + +#. Password incorrect +msgid "Incorrect Password" +msgstr "" + +#. security lock from too many failed login attempts +msgid "Account locked: Too many failed login attempts" +msgstr "" + +#. the username does not exist +msgid "Username does not exist" +msgstr "" + +#. indicates a lock of some description +msgid "Account locked: See the debug log" +msgstr "" + +#. username or password missing +msgid "Username or password missing" +msgstr "" + #, c-format msgid "" "The Yahoo server has requested the use of an unrecognized authentication " @@ -9776,15 +9827,16 @@ msgid "Please update the necessary fields." msgstr "" -msgid "Room _List" -msgstr "" +#, fuzzy +msgid "A_ccount" +msgstr "ບັນຊີທົວໄປ" msgid "" "Please enter the appropriate information about the chat you would like to " "join.\n" msgstr "" -msgid "_Account:" +msgid "Room _List" msgstr "" msgid "_Block" @@ -10695,6 +10747,9 @@ msgid "Hungarian" msgstr "" +msgid "Armenian" +msgstr "" + msgid "Indonesian" msgstr "" @@ -10791,6 +10846,9 @@ msgid "Swedish" msgstr "" +msgid "Swahili" +msgstr "" + msgid "Tamil" msgstr "" @@ -11183,11 +11241,9 @@ msgid "Save Image" msgstr "" -#, c-format msgid "_Save Image..." msgstr "" -#, c-format msgid "_Add Custom Smiley..." msgstr "" @@ -11551,6 +11607,9 @@ msgid "Pounce on Whom" msgstr "" +msgid "_Account:" +msgstr "" + msgid "_Buddy name:" msgstr "" @@ -12207,6 +12266,9 @@ msgid "Custom Smiley Manager" msgstr "" +msgid "Select Buddy Icon" +msgstr "" + msgid "Click to change your buddyicon for this account." msgstr "" diff -r fd78c7022f81 -r dc7ee92810a5 po/sl.po --- a/po/sl.po Tue May 26 16:12:53 2009 +0000 +++ b/po/sl.po Fri May 29 01:27:45 2009 +0000 @@ -6,11 +6,11 @@ # msgid "" msgstr "" -"Project-Id-Version: Pidgin 2.5.5\n" +"Project-Id-Version: Pidgin 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-04-30 10:40-0400\n" -"PO-Revision-Date: 2009-02-22 10:26+0100\n" -"Last-Translator: Martin Srebotnjak \n" +"POT-Creation-Date: 2009-05-26 22:19-0700\n" +"PO-Revision-Date: 2009-05-02 16:54+0100\n" +"Last-Translator: Martin Srebotnjak \n" "Language-Team: Martin Srebotnjak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -876,12 +876,11 @@ msgid "System Log" msgstr "Sistemski dnevnik" -#, fuzzy msgid "Calling ... " -msgstr "Preračunavanje ..." +msgstr "Klicanje ..." msgid "Hangup" -msgstr "" +msgstr "Odloži" #. Number of actions msgid "Accept" @@ -891,25 +890,24 @@ msgstr "Zavrni" msgid "Call in progress." -msgstr "" +msgstr "Klic je v teku." msgid "The call has been terminated." -msgstr "" +msgstr "Klic je bil končan." #, c-format msgid "%s wishes to start an audio session with you." -msgstr "" +msgstr "%s želi z vami začeti zvočno sejo." #, c-format msgid "%s is trying to start an unsupported media session type with you." -msgstr "" - -#, fuzzy +msgstr "%s poskuša z vami začeti sejo v nepodprtem mediju." + msgid "You have rejected the call." -msgstr "Zapustili ste kanal%s%s" +msgstr "Zavrnili ste klic." msgid "call: Make an audio call." -msgstr "" +msgstr "call: Opravite zvočni klic." msgid "Emails" msgstr "E-naslovi" @@ -1566,22 +1564,23 @@ "\n" "Fetching TinyURL..." msgstr "" +"\n" +"Pridobivanje TinyURL ..." msgid "Only create TinyURL for urls of this length or greater" -msgstr "" +msgstr "Ustvari TinyURL le za naslove URL te dolžina ali daljše" msgid "TinyURL (or other) address prefix" -msgstr "" - -#, fuzzy +msgstr "Predpona naslova TinyURL (ali drugega)" + msgid "TinyURL" -msgstr "URL skladbe" +msgstr "TinyURL" msgid "TinyURL plugin" -msgstr "" +msgstr "Vtičnik TinyURL" msgid "When receiving a message with URL(s), TinyURL for easier copying" -msgstr "" +msgstr "Ob prejemu sporočil z URL-ji uporabi TinyURL za enostavnejše kopiranje" msgid "accounts" msgstr "Računi" @@ -1785,6 +1784,8 @@ msgid "+++ %s signed off" msgstr "+++ %s se je odjavil(a)" +#. Unknown error +#. Unknown error! msgid "Unknown error" msgstr "Neznana napaka" @@ -1831,9 +1832,8 @@ msgid "%s left the room (%s)." msgstr "%s nas je zapustil (%s)." -#, fuzzy msgid "Invite to chat" -msgstr "Povabi na konferenčni pogovor" +msgstr "Povabi na klepet" #. Put our happy label in it. msgid "" @@ -2697,9 +2697,8 @@ msgid "Do not ask. Always save in pounce." msgstr "Ne sprašuj. Vedno shrani v opozorilo." -#, fuzzy msgid "One Time Password" -msgstr "Vnesi geslo" +msgstr "Enkratno geslo" #. *< type #. *< ui_requirement @@ -2708,13 +2707,13 @@ #. *< priority #. *< id msgid "One Time Password Support" -msgstr "" +msgstr "Podpora za enkratno geslo" #. *< name #. *< version #. * summary msgid "Enforce that passwords are used only once." -msgstr "" +msgstr "Vsilite, da se gesla uporabijo le enkrat." #. * description msgid "" @@ -2722,6 +2721,9 @@ "are only used in a single successful connection.\n" "Note: The account password must not be saved for this to work." msgstr "" +"Omogoča, da vsilite (posebej za vsak račun), da so neshranjena gesla " +"uporabljena le za posamezno uspešno povezavo.\n" +"Opomba: Geslo računa ni potrebno shraniti, da bi to delovalo." #. *< type #. *< ui_requirement @@ -2962,9 +2964,8 @@ msgstr "Vijolična oseba" #. Creating the options for the protocol -#, fuzzy msgid "Local Port" -msgstr "Okraj" +msgstr "Krajevna vrata" msgid "Bonjour" msgstr "Bonjour" @@ -3473,13 +3474,12 @@ #. We only want to do the following dance if the connection #. has not been successfully completed. If it has, just #. notify the user that their /nick command didn't go. -#, fuzzy, c-format +#, c-format msgid "The nickname \"%s\" is already being used." -msgstr "Ime za pomenek že obstaja" - -#, fuzzy +msgstr "Vzdevek \"%s\" že obstaja." + msgid "Nickname in use" -msgstr "Vzdevek" +msgstr "Vzdevek je zaseden" msgid "Cannot change nick" msgstr "Vzdevka ne morem spremeniti" @@ -3747,6 +3747,9 @@ msgid "Server does not use any supported authentication method" msgstr "Strežnik ne uporablja nobene podprte metode overovitve" +msgid "You require encryption, but it is not available on this server." +msgstr "Zahtevate šifriranje, vendar to na tem strežniku ni na voljo." + msgid "Invalid challenge from server" msgstr "Neveljaven poziv strežnika" @@ -3754,21 +3757,16 @@ msgstr "Napaka SASL" msgid "The BOSH connection manager terminated your session." -msgstr "" - -#, fuzzy +msgstr "Upravitelj povezave BOSH je zaključil vašo sejo." + msgid "No session ID given" -msgstr "Ni podanega razloga" - -#, fuzzy +msgstr "ID seje ni podan" + msgid "Unsupported version of BOSH protocol" -msgstr "Nepodprta različica" - -#, fuzzy +msgstr "Nepodprta različica protokola BOSH" + msgid "Unable to establish a connection with the server" -msgstr "" -"Povezave s strežnikom ni mogoče vzpostaviti:\n" -"%s" +msgstr "Povezave s strežnikom ni mogoče vzpostaviti" #, c-format msgid "" @@ -3778,9 +3776,8 @@ "Povezave s strežnikom ni mogoče vzpostaviti:\n" "%s" -#, fuzzy msgid "Unable to establish SSL connection" -msgstr "Povezave ni mogoče inicializirati" +msgstr "Povezave SSL ni mogoče vzpostaviti" msgid "Unable to create socket" msgstr "Ni mogoče ustvariti vtičnice" @@ -3852,9 +3849,8 @@ msgid "Operating System" msgstr "Operacijski sistem" -#, fuzzy msgid "Local Time" -msgstr "Lokalna datoteka:" +msgstr "Krajevni čas" msgid "Last Activity" msgstr "Zadnja dejavnost" @@ -4015,6 +4011,14 @@ msgid "Resource" msgstr "Vir" +#, c-format +msgid "%s ago" +msgstr "" + +#, fuzzy +msgid "Logged off" +msgstr "Prijavljeni" + msgid "Middle Name" msgstr "Drugo ime" @@ -4181,8 +4185,17 @@ msgid "Find Rooms" msgstr "Najdi sobe" -msgid "You require encryption, but it is not available on this server." -msgstr "Zahtevate šifriranje, vendar to na tem strežniku ni na voljo." +#, fuzzy +msgid "Affiliations:" +msgstr "Psevdonim:" + +#, fuzzy +msgid "No users found" +msgstr "Ni najdenih uporabnikov" + +#, fuzzy +msgid "Roles:" +msgstr "Funkcija" msgid "Ping timeout" msgstr "Časovna prekoračitev pinga" @@ -4195,6 +4208,8 @@ "Could not find alternative XMPP connection methods after failing to connect " "directly.\n" msgstr "" +"Po neuspehu neposredne povezave ni bilo mogoče najti drugih povezovalnih " +"metod XMPP.\n" msgid "Invalid XMPP ID" msgstr "Neveljaven ID za XMPP" @@ -4202,9 +4217,8 @@ msgid "Invalid XMPP ID. Domain must be set." msgstr "Neveljaven ID za XMPP. Domena mora biti določena." -#, fuzzy msgid "Malformed BOSH Connect Server" -msgstr "Povezava na strežnik neuspešna." +msgstr "Nepravilno oblikovan povezovalni strežnik BOSH" #, c-format msgid "Registration of %s@%s successful" @@ -4562,19 +4576,21 @@ msgid "Unable to ping user %s" msgstr "Uporabnika %s ni mogoče pingniti" -#, fuzzy, c-format +#, c-format msgid "Unable to buzz, because there is nothing known about %s." -msgstr "Ni mogoče stresti, saj o uporabniku %s ni ničesar znanega." - -#, fuzzy, c-format +msgstr "Ni mogoče stresti, saj o osebi %s ni ničesar znanega." + +#, c-format msgid "Unable to buzz, because %s might be offline." -msgstr "Ni mogoče stresti, saj je uporabnik %s morda nepovezan." - -#, fuzzy, c-format +msgstr "Ni mogoče stresti, saj je oseba %s morda nepovezana." + +#, c-format msgid "" "Unable to buzz, because %s does not support it or does not wish to receive " "buzzes now." -msgstr "Uporabnika %s ni mogoče stresti, ker tega dejanja ne podpira." +msgstr "" +"Osebe %s ni mogoče stresti, ker tega dejanja ne podpira ali zdaj ne želi " +"prejemati tresenja." #, c-format msgid "Buzzing %s..." @@ -4589,36 +4605,33 @@ msgid "%s has buzzed you!" msgstr "Uporabnik %s vas je stresel." -#, fuzzy, c-format +#, c-format msgid "Unable to initiate media with %s: invalid JID" -msgstr "Sporočila k %s ni mogoče poslati, neveljaven JID" - -#, fuzzy, c-format +msgstr "Medija z %s ni mogoče iniciirati: neveljaven JID" + +#, c-format msgid "Unable to initiate media with %s: user is not online" -msgstr "Datoteke %s ni mogoče poslati, ker uporabnik ni povezan" - -#, fuzzy, c-format +msgstr "Medija z %s ni mogoče iniciirati: uporabnik ni povezan" + +#, c-format msgid "Unable to initiate media with %s: not subscribed to user presence" msgstr "" -"Datoteke %s ni mogoče poslati, ker nimate dostopa do stanja uporabnikove " -"prisotnosti" - -#, fuzzy +"Medija %s ni mogoče iniciirati: niste naročeni na stanja prisotnosti osebe" + msgid "Media Initiation Failed" -msgstr "Napaka pri registraciji" - -#, fuzzy, c-format +msgstr "Iniciacija medija ni uspela" + +#, c-format msgid "" "Please select the resource of %s with which you would like to start a media " "session." -msgstr "Izberite, kateremu viru %s bi radi poslali datoteko" +msgstr "Izberite vir %s, s katerim bi radi začeli medijsko sejo." msgid "Select a Resource" msgstr "Izberite vir" -#, fuzzy msgid "Initiate Media" -msgstr "Začni _pogovor" +msgstr "Iniciiraj medij" msgid "config: Configure a chat room." msgstr "config: Nastavi pogovorno sobo." @@ -4638,16 +4651,18 @@ msgid "ban <user> [reason]: Ban a user from the room." msgstr "ban <uporabnik> [razlog]: Prepovej uporabnika v sobi." -msgid "" -"affiliate <user> <owner|admin|member|outcast|none>: Set a user's " -"affiliation with the room." +#, fuzzy +msgid "" +"affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: Get " +"the users with an affiliation or set users' affiliation with the room." msgstr "" "affiliate <uporabnik> <lastnik|skrbnik|član|izločenec|nihče>: " "Nastavitev uporabnikovega statusa v sobi." -msgid "" -"role <user> <moderator|participant|visitor|none>: Set a user's " -"role in the room." +#, fuzzy +msgid "" +"role <moderator|participant|visitor|none> [nick1] [nick2] ...: Get the " +"users with an role or set users' role with the room." msgstr "" "role <uporabnik> <moderator|participant|visitor|none>: " "Nastavitev uporabnikove vloge v sobi." @@ -4773,20 +4788,17 @@ msgid "Error in chat %s" msgstr "Napaka v pomenku %s" -#, fuzzy msgid "An error occured on the in-band bytestream transfer\n" -msgstr "Med odpiranjem datoteke je prišlo do napake." - -#, fuzzy +msgstr "V notranje pasovnem zlogovnem pretoku je prišlo do napake\n" + msgid "Transfer was closed." -msgstr "Prenos datoteke ni uspel" - -#, fuzzy +msgstr "Prenos je bil zaprt." + msgid "Failed to open the file" -msgstr "Datoteke '%s' ni mogoče odpreti: %s" +msgstr "Datoteke ni mogoče odpreti" msgid "Failed to open in-band bytestream" -msgstr "" +msgstr "Znotraj pasovnega zlogovnega pretoka ni uspelo odpreti" #, c-format msgid "Unable to send file to %s, user does not support file transfers" @@ -5459,28 +5471,20 @@ msgstr "Overjanje Windows Live ID: Neveljaven odziv" #, c-format -msgid "%s is not a valid group." -msgstr "%s ni veljavna skupina." - -msgid "Unknown error." -msgstr "Neznana napaka." - -#, c-format -msgid "%s on %s (%s)" -msgstr "%s na %s (%s)" - -#, c-format msgid "%s just sent you a Nudge!" msgstr "Uporabnik %s vam je ravnokar pomežiknil!" -#. char *adl = g_strndup(payload, len); -#, c-format -msgid "Unknown error (%d)" +#, fuzzy, c-format +msgid "Unknown error (%d): %s" msgstr "Neznana napaka (%d)" msgid "Unable to add user" msgstr "Ni mogoče dodati uporabnika" +#, c-format +msgid "Unknown error (%d)" +msgstr "Neznana napaka (%d)" + msgid "The following users are missing from your addressbook" msgstr "Naslednji uporabniki manjkajo v vašem adresarju" @@ -5507,15 +5511,12 @@ msgid "Service Temporarily Unavailable." msgstr "Storitev je trenutno nedosegljiva." +msgid "Unknown error." +msgstr "Neznana napaka." + msgid "Mobile message was not sent because it was too long." msgstr "Mobilnega sporočila ni mogoče poslati, ker je predolgo." -msgid "Unable to rename group" -msgstr "Skupine ni mogoče preimenovati" - -msgid "Unable to delete group" -msgstr "Skupine ni mogoče izbrisati" - #, c-format msgid "" "The MSN server will shut down for maintenance in %d minute. You will " @@ -5670,14 +5671,6 @@ msgid "Message may have not been sent because an unknown error occurred:" msgstr "Sporočila morda ni bilo poslano, ker je prišlo do neznane napake:" -#, c-format -msgid "%s has added you to his or her buddy list." -msgstr "%s vas je dodal(a) na svoj seznam prijateljev." - -#, c-format -msgid "%s has removed you from his or her buddy list." -msgstr "%s vas je odstranil(a) s svojega seznama prijateljev." - msgid "Delete Buddy from Address Book?" msgstr "Želite izbrisati prijatelja iz adresarja?" @@ -5707,6 +5700,28 @@ msgstr "Vtičnik za protokol MSN" #, c-format +msgid "%s is not a valid group." +msgstr "%s ni veljavna skupina." + +#, c-format +msgid "%s on %s (%s)" +msgstr "%s na %s (%s)" + +msgid "Unable to rename group" +msgstr "Skupine ni mogoče preimenovati" + +msgid "Unable to delete group" +msgstr "Skupine ni mogoče izbrisati" + +#, c-format +msgid "%s has added you to his or her buddy list." +msgstr "%s vas je dodal(a) na svoj seznam prijateljev." + +#, c-format +msgid "%s has removed you from his or her buddy list." +msgstr "%s vas je odstranil(a) s svojega seznama prijateljev." + +#, c-format msgid "No such user: %s" msgstr "Uporabnik ne obstaja: %s" @@ -5735,6 +5750,8 @@ msgstr "Izgubljena povezava s strežnikom" #. Can't write _()'d strings in array initializers. Workaround. +#. khc: then use N_() in the array initializer and use _() when they are +#. used msgid "New mail messages" msgstr "Nova prejeta sporočila" @@ -7467,30 +7484,26 @@ msgstr "Opomba" #. callback -#, fuzzy msgid "Buddy Memo" -msgstr "Ikona prijatelja" +msgstr "Zapisek prijatelja" msgid "Change his/her memo as you like" -msgstr "" - -#, fuzzy +msgstr "Spremenite njegov/njen zapisek, kakor vam je drago" + msgid "_Modify" -msgstr "Spremeni" - -#, fuzzy +msgstr "_Spremeni" + msgid "Memo Modify" -msgstr "Spremeni" - -#, fuzzy +msgstr "Spremeni zapisek" + msgid "Server says:" -msgstr "Strežnik je zaposlen" +msgstr "Strežnik pravi:" msgid "Your request was accepted." -msgstr "" +msgstr "Vaša zahteva je bila sprejeta." msgid "Your request was rejected." -msgstr "" +msgstr "Vaša zahteva je bila zavrnjena." #, c-format msgid "%u requires verification" @@ -7798,14 +7811,13 @@ msgstr "

Nori razvijalci obližev:
\n" msgid "

Acknowledgement:
\n" -msgstr "Zahvala:
\n" - -#, fuzzy +msgstr "Zahvale:
\n" + msgid "

Scrupulous Testers:
\n" -msgstr "

Prvotni avtor:
\n" +msgstr "

Tankovestni preizkuševalci:
\n" msgid "and more, please let me know... thank you!))" -msgstr "" +msgstr "in drugi, prosim, javite se ... hvala!))" msgid "

And, all the boys in the backroom...
\n" msgstr "

In vsi fantje iz ozadja ...
\n" @@ -7832,9 +7844,8 @@ msgid "About OpenQ" msgstr "O OpenQ" -#, fuzzy msgid "Modify Buddy Memo" -msgstr "Spremeni naslov" +msgstr "Spremeni zapisek prijatelja" #. *< type #. *< ui_requirement @@ -9532,7 +9543,7 @@ msgstr "%s vam je poslal povabilo s spletno kamero, kar še ni podprto." msgid "Your SMS was not delivered" -msgstr "" +msgstr "Vaš SMS ni bil dostavljen" msgid "Your Yahoo! message did not get sent." msgstr "Vaše sporočilo za Yahoo! ni bilo poslano." @@ -9557,6 +9568,34 @@ msgid "Add buddy rejected" msgstr "Dodajanje prijatelja zavrnjeno" +#. Some error in the received stream +#, fuzzy +msgid "Received invalid data" +msgstr "Na povezavi s strežnikom prejeti neveljavni podatki." + +#. Password incorrect +#, fuzzy +msgid "Incorrect Password" +msgstr "Neveljavno geslo" + +#. security lock from too many failed login attempts +msgid "Account locked: Too many failed login attempts" +msgstr "" + +#. the username does not exist +#, fuzzy +msgid "Username does not exist" +msgstr "Uporabnik ne obstaja" + +#. indicates a lock of some description +msgid "Account locked: See the debug log" +msgstr "" + +#. username or password missing +#, fuzzy +msgid "Username or password missing" +msgstr "Neveljavno uporabniško ime ali geslo" + #, c-format msgid "" "The Yahoo server has requested the use of an unrecognized authentication " @@ -10265,12 +10304,13 @@ msgid "Unable to connect to %s: %s" msgstr "Napaka pri povezovanju z %s: %s" -#, fuzzy, c-format +#, c-format msgid "" "Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support was " "found." msgstr "" -"Strežnik zahteva TLS/SSL za prijavo. Podpore za TLS/SSL ni mogoče najti." +"Povezava z %s ni uspela: strežnik zahteva TLS/SSL za prijavo, vendar podpore " +"za TLS/SSL ni mogoče najti." #, c-format msgid " - %s" @@ -10309,13 +10349,13 @@ msgid "Error Reading %s" msgstr "Napaka pri branju %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 "" -"Pri branju vašega %s je prišlo do napake, zato ni bil naložen. Stara " -"datoteka se je preimenovala v %s~." +"Pri branju vašega %s je prišlo do napake. Datoteka ni bial naložena, stara " +"datoteka pa je bila preimenovana v %s~." msgid "Internet Messenger" msgstr "Spletni sel" @@ -10422,9 +10462,8 @@ msgid "Create _this new account on the server" msgstr "_Ustvari ta nov račun na strežniku" -#, fuzzy msgid "_Proxy" -msgstr "Posredovalni strežnik" +msgstr "_Posredovalni strežnik" msgid "Enabled" msgstr "Omogočen" @@ -10475,16 +10514,17 @@ msgid "Please update the necessary fields." msgstr "Prosimo, posodobite potrebna polja." -msgid "Room _List" -msgstr "Se_znam sob" +#, fuzzy +msgid "A_ccount" +msgstr "Ra_čun:" msgid "" "Please enter the appropriate information about the chat you would like to " "join.\n" msgstr "Vnesite ustrezne informacije o pomenku, ki se mu želite pridružiti.\n" -msgid "_Account:" -msgstr "_Račun:" +msgid "Room _List" +msgstr "Se_znam sob" msgid "_Block" msgstr "_Zavrni" @@ -10501,16 +10541,14 @@ msgid "I_M" msgstr "_Sporoči" -#, fuzzy msgid "_Audio Call" -msgstr "_Dodaj pomenek" +msgstr "_Zvočni klic" msgid "Audio/_Video Call" -msgstr "" - -#, fuzzy +msgstr "Zvočni/_video klic" + msgid "_Video Call" -msgstr "Video.pomenek" +msgstr "_Video klic" msgid "_Send File..." msgstr "_Pošlji datoteko ..." @@ -10647,9 +10685,8 @@ msgid "/Tools/_Certificates" msgstr "/Orodja/_Digitalna potrdila" -#, fuzzy msgid "/Tools/Custom Smile_ys" -msgstr "/Orodja/Smej_ček" +msgstr "/Orodja/Smejč_ki po meri" msgid "/Tools/Plu_gins" msgstr "/Orodja/Vtični_ki" @@ -10780,7 +10817,7 @@ msgstr "po stanju" msgid "By recent log activity" -msgstr "" +msgstr "po zadnji dejavnosti" #, c-format msgid "%s disconnected" @@ -10797,7 +10834,7 @@ msgstr "Ponovno omogoči" msgid "SSL FAQs" -msgstr "" +msgstr "Pogosta vprašanja o SSL" msgid "Welcome back!" msgstr "Dobrodošli nazaj!" @@ -11019,21 +11056,17 @@ msgid "/Conversation/Clea_r Scrollback" msgstr "/Pogovor/Po_čisti pogovor" -#, fuzzy msgid "/Conversation/M_edia" -msgstr "/Pogovor/_Več" - -#, fuzzy +msgstr "/Pogovor/M_ediji" + msgid "/Conversation/Media/_Audio Call" -msgstr "/Pogovor/_Več" - -#, fuzzy +msgstr "/Pogovor/Mediji/_Zvočni klic" + msgid "/Conversation/Media/_Video Call" -msgstr "/Pogovor/_Več" - -#, fuzzy +msgstr "/Pogovor/Mediji/_Video klic" + msgid "/Conversation/Media/Audio\\/Video _Call" -msgstr "/Pogovor/Pokaži _dnevnik ..." +msgstr "/Pogovor/Mediji/Zvočni\\/Video _klic" msgid "/Conversation/Se_nd File..." msgstr "/Pogovor/_Pošlji datoteko ..." @@ -11107,17 +11140,14 @@ msgid "/Conversation/View Log" msgstr "/Pogovor/Pokaži dnevnik" -#, fuzzy msgid "/Conversation/Media/Audio Call" -msgstr "/Pogovor/Več" - -#, fuzzy +msgstr "/Pogovor/Mediji/Zvočni klic" + msgid "/Conversation/Media/Video Call" -msgstr "/Pogovor/Pokaži dnevnik" - -#, fuzzy +msgstr "/Pogovor/Mediji/Video klic" + msgid "/Conversation/Media/Audio\\/Video Call" -msgstr "/Pogovor/Več" +msgstr "/Pogovor/Mediji/Zvočni\\/Video klic" msgid "/Conversation/Send File..." msgstr "/Pogovor/Pošlji datoteko ..." @@ -11304,7 +11334,7 @@ msgstr "Ka-Hing Čung" msgid "voice and video" -msgstr "" +msgstr "glas in video" msgid "support" msgstr "podpora" @@ -11445,9 +11475,8 @@ msgid "Ubuntu Georgian Translators" msgstr "gruzijski prevajalci za Ubuntu" -#, fuzzy msgid "Khmer" -msgstr "Drugo" +msgstr "kmersko" msgid "Kannada" msgstr "kannadsko" @@ -11959,11 +11988,9 @@ msgid "Save Image" msgstr "Shrani sliko" -#, c-format msgid "_Save Image..." msgstr "_Shrani sliko ..." -#, c-format msgid "_Add Custom Smiley..." msgstr "_Dodaj smejčka po meri ..." @@ -12163,7 +12190,7 @@ msgid "%s %s. Try `%s -h' for more information.\n" msgstr "%s %s. Poskusite `%s -h' za več informacij.\n" -#, fuzzy, c-format +#, c-format msgid "" "%s %s\n" "Usage: %s [OPTION]...\n" @@ -12185,6 +12212,7 @@ "\n" " -c, --config=DIR uporabi DIR za nastavitvene datoteke\n" " -d, --debug izpiši sporočila za razhroščevanje na stdout\n" +" -f, --force-online vsili povezanost ne glede na stanje omrežja\n" " -h, --help izpiši to pomoč in končaj program\n" " -m, --multiple ne dovoljuj le enega zagnanega programa\n" " -n, --nologin brez samodejne prijave\n" @@ -12194,7 +12222,7 @@ " --display=DISPLAY zaslon X, ki naj bo uporabljen\n" " -v, --version izpiši trenutno različico in zapri program\n" -#, fuzzy, c-format +#, c-format msgid "" "%s %s\n" "Usage: %s [OPTION]...\n" @@ -12215,6 +12243,7 @@ "\n" " -c, --config=DIR uporabi DIR za nastavitvene datoteke\n" " -d, --debug izpiši sporočila za razhroščevanje na stdout\n" +" -f, --force-online vsili povezanost ne glede na stanje omrežja\n" " -h, --help izpiši to pomoč in končaj program\n" " -m, --multiple ne dovoljuj le enega zagnanega programa\n" " -n, --nologin brez samodejne prijave\n" @@ -12260,22 +12289,21 @@ msgstr "Program se bo zaprl, ker je že zagnan drug odjemalec libpurple.\n" msgid "/_Media" -msgstr "" +msgstr "/_Mediji" msgid "/Media/_Hangup" -msgstr "" - -#, fuzzy +msgstr "/Mediji/_Odloži" + msgid "Calling..." -msgstr "Preračunavanje ..." +msgstr "Klicanje ..." #, c-format msgid "%s wishes to start an audio/video session with you." -msgstr "" +msgstr "%s želi z vami začeti zvočno/video sejo." #, c-format msgid "%s wishes to start a video session with you." -msgstr "" +msgstr "%s želi z vami začeti video sejo." #, c-format msgid "%s has %d new message." @@ -12316,20 +12344,18 @@ msgid "You have mail!" msgstr "Dobili ste pošto!" -#, fuzzy msgid "New Pounces" -msgstr "Novo opozorilo prijatelja" +msgstr "Nova opozorila prijatelja" msgid "Dismiss" -msgstr "" - -#, fuzzy +msgstr "Opusti" + msgid "You have pounced!" -msgstr "Dobili ste pošto!" - -#, fuzzy +msgstr "" +"Dobili ste opozorilo prijatelja!" + msgid "No message" -msgstr "Neznano sporočilo" +msgstr "Ni sporočil" msgid "The following plugins will be unloaded." msgstr "Odloženi bodo naslednji vtičniki." @@ -12379,14 +12405,16 @@ msgid "Select a file" msgstr "Izberi datoteko" -#, fuzzy msgid "Modify Buddy Pounce" -msgstr "Uredi opozorilo prijatelja" +msgstr "Spremeni opozorilo prijatelja" #. Create the "Pounce on Whom" frame. msgid "Pounce on Whom" msgstr "Opozori koga" +msgid "_Account:" +msgstr "_Račun:" + msgid "_Buddy name:" msgstr "_Ime prijatelja:" @@ -12453,49 +12481,49 @@ msgid "Pounce Target" msgstr "Tarča opozorila" -#, fuzzy, c-format +#, c-format msgid "Started typing" -msgstr "začne tipkati" - -#, fuzzy, c-format +msgstr "Začel je tipkati" + +#, c-format msgid "Paused while typing" -msgstr "postane med tipkanjem" - -#, fuzzy, c-format +msgstr "Postal je med tipkanjem" + +#, c-format msgid "Signed on" -msgstr "se prijavi" - -#, fuzzy, c-format +msgstr "Prijavil se je" + +#, c-format msgid "Returned from being idle" -msgstr "%s je spet dejaven (%s)" - -#, fuzzy, c-format +msgstr "Postal je spet dejaven" + +#, c-format msgid "Returned from being away" -msgstr "se vrne iz odsotnosti" - -#, fuzzy, c-format +msgstr "Vrnil se je iz odsotnosti" + +#, c-format msgid "Stopped typing" -msgstr "Prenehal tipkati" - -#, fuzzy, c-format +msgstr "Prenehal je tipkati" + +#, c-format msgid "Signed off" -msgstr "se odjavi" - -#, fuzzy, c-format +msgstr "Odjavil se je" + +#, c-format msgid "Became idle" -msgstr "postane nedejaven" - -#, fuzzy, c-format +msgstr "Postal je nedejaven" + +#, c-format msgid "Went away" -msgstr "ob odsotnosti" - -#, fuzzy, c-format +msgstr "Odšel je" + +#, c-format msgid "Sent a message" -msgstr "Pošlji sporočilo" - -#, fuzzy, c-format +msgstr "Poslal je sporočilo" + +#, c-format msgid "Unknown.... Please report this!" -msgstr "Neznan dogodek opozorila. Poročajte o tem!" +msgstr "Neznano ... Poročajte o tem!" msgid "Smiley theme failed to unpack." msgstr "Teme smejčkov ni mogoče razpakirati." @@ -12520,9 +12548,8 @@ msgstr "_Zapri pomenke s tipko Esc" #. Buddy List Themes -#, fuzzy msgid "Buddy List Theme" -msgstr "Seznam prijateljev" +msgstr "Tema seznama prijateljev" #. System Tray msgid "System Tray Icon" @@ -12661,7 +12688,7 @@ #. TURN server msgid "Relay Server (TURN)" -msgstr "" +msgstr "Relejski strežnik (TURN)" msgid "Proxy Server & Browser" msgstr "Posredovalni strežnik in brskalnik" @@ -13023,12 +13050,10 @@ msgid "Please provide a shortcut to associate with the smiley." msgstr "Podajte tipke za bližnjico, ki bodo povezane s smejčkom." -#, fuzzy, c-format +#, c-format msgid "" "A custom smiley for '%s' already exists. Please use a different shortcut." -msgstr "" -"Smejček po meri za izbrano kombinacijo tipk že obstaja. Navedite druge tipke " -"za bližnjico." +msgstr "Smejček po meri za '%s' že obstaja. Navedite druge tipke za bližnjico." msgid "Duplicate Shortcut" msgstr "Podvojena tipka za bližnjico" @@ -13042,25 +13067,26 @@ msgid "Add Smiley" msgstr "Dodaj smejčka" -#, fuzzy msgid "_Image:" -msgstr "Sl_ika" +msgstr "Sl_ika:" #. Shortcut text -#, fuzzy msgid "S_hortcut text:" -msgstr "Tipke za bližnjico" +msgstr "_Besedilo za bližnjico:" msgid "Smiley" msgstr "Smejček" -#, fuzzy msgid "Shortcut Text" -msgstr "Tipke za bližnjico" +msgstr "Besedilo za bližnjico" msgid "Custom Smiley Manager" msgstr "Upravitelj smejčkov po meri" +#, fuzzy +msgid "Select Buddy Icon" +msgstr "Izberi prijatelja" + msgid "Click to change your buddyicon for this account." msgstr "Kliknite, če želite za ta račun spremeniti ikono prijatelja." @@ -13181,9 +13207,8 @@ msgstr "" "Sliko '%s' ni mogoče naložiti: razlog ni znan, najbrž je datoteka okvarjena" -#, fuzzy msgid "_Open Link" -msgstr "_Odpri povezavo v:" +msgstr "_Odpri povezavo" msgid "_Copy Link Location" msgstr "_Kopiraj lokacijo povezave" @@ -14832,9 +14857,6 @@ #~ "prijateljev. Vnesete lahko tudi psevdonim ali vzdevek prijatelja. Kjer bo " #~ "izvedljivo, bo namesto pojavnega imena prikazan vzdevek.\n" -#~ msgid "A_ccount:" -#~ msgstr "Ra_čun:" - #~ msgid "Pounce only when my status is not available" #~ msgstr "Opozori le tedaj, ko moje stanje ni na voljo" diff -r fd78c7022f81 -r dc7ee92810a5 po/sw.po --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/po/sw.po Fri May 29 01:27:45 2009 +0000 @@ -0,0 +1,13972 @@ +# Copyright (C) 2009 +# This file is distributed under the same license as the Pidgin package. +# , 2009. +msgid "" +msgstr "" +"Project-Id-Version: pidgin\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-26 19:54-0700\n" +"PO-Revision-Date: 2009-04-16 22:24+0300\n" +"Last-Translator: \n" +"Language-Team: American English \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 0.2\n" + +#. Translators may want to transliterate the name. +#. It is not to be translated. +#, fuzzy +msgid "Finch" +msgstr "Maliza" + +#, fuzzy, c-format +msgid "%s. Try `%s -h' for more information.\n" +msgstr "\n" + +#, c-format +msgid "" +"%s\n" +"Usage: %s [OPTION]...\n" +"\n" +" -c, --config=DIR use DIR for config files\n" +" -d, --debug print debugging messages to stderr\n" +" -h, --help display this help and exit\n" +" -n, --nologin don't automatically login\n" +" -v, --version display the current version and exit\n" +msgstr "" + +#, c-format +msgid "" +"%s encountered errors migrating your settings from %s to %s. Please " +"investigate and complete the migration by hand. Please report this error at " +"http://developer.pidgin.im" +msgstr "" + +msgid "Error" +msgstr "Hitikafu " + +msgid "Account was not added" +msgstr "" + +msgid "Username of an account must be non-empty." +msgstr "Jina la mtumiaji haliwezi kuwa wazi " + +#, fuzzy +msgid "New mail notifications" +msgstr "Arifisho la Jumla" + +#, fuzzy +msgid "Remember password" +msgstr "Ingiza tena nywila:" + +msgid "There are no protocol plugins installed." +msgstr "" + +msgid "(You probably forgot to 'make install'.)" +msgstr "" + +msgid "Modify Account" +msgstr "" + +msgid "New Account" +msgstr "" + +#, fuzzy +msgid "Protocol:" +msgstr "Itifaki" + +#, fuzzy +msgid "Username:" +msgstr "Jina la mtumiaji" + +msgid "Password:" +msgstr "Nywila:" + +msgid "Alias:" +msgstr "" + +#. Register checkbox +msgid "Create this account on the server" +msgstr "" + +#. Cancel button +#. Cancel +msgid "Cancel" +msgstr "Ghairi" + +#. Save button +#. Save +msgid "Save" +msgstr "Hifadhi" + +#, fuzzy, c-format +msgid "Are you sure you want to delete %s?" +msgstr "Una uhakika unataka kufuta ithibati yako?" + +#, fuzzy +msgid "Delete Account" +msgstr "Futa mwenyeji" + +#. Delete button +#, fuzzy +msgid "Delete" +msgstr "&Futa" + +msgid "Accounts" +msgstr "" + +msgid "You can enable/disable accounts from the following list." +msgstr "" + +#. Add button +msgid "Add" +msgstr "Ongeza" + +#. Modify button +#, fuzzy +msgid "Modify" +msgstr "R&ekebisha" + +#, c-format +msgid "%s%s%s%s has made %s his or her buddy%s%s" +msgstr "" + +msgid "Add buddy to your list?" +msgstr "" + +#, c-format +msgid "%s%s%s%s wants to add %s to his or her buddy list%s%s" +msgstr "" + +msgid "Authorize buddy?" +msgstr "" + +#, fuzzy +msgid "Authorize" +msgstr "Mamlaka" + +msgid "Deny" +msgstr "Kataa" + +#, c-format +msgid "" +"Online: %d\n" +"Total: %d" +msgstr "" + +#, c-format +msgid "Account: %s (%s)" +msgstr "" + +#, c-format +msgid "" +"\n" +"Last Seen: %s ago" +msgstr "" + +#, fuzzy +msgid "Default" +msgstr "chaguo-msingi" + +msgid "You must provide a username for the buddy." +msgstr "" + +msgid "You must provide a group." +msgstr "" + +msgid "You must select an account." +msgstr "" + +msgid "The selected account is not online." +msgstr "" + +msgid "Error adding buddy" +msgstr "" + +msgid "Username" +msgstr "Jina la mtumiaji" + +#, fuzzy +msgid "Alias (optional)" +msgstr "&Barua pepe (Uchaguzi):" + +msgid "Add in group" +msgstr "" + +msgid "Account" +msgstr "" + +msgid "Add Buddy" +msgstr "" + +msgid "Please enter buddy information." +msgstr "" + +#, fuzzy +msgid "Chats" +msgstr "Chad" + +#. Extract their Name and put it in +msgid "Name" +msgstr "Jina" + +msgid "Alias" +msgstr "" + +msgid "Group" +msgstr "" + +msgid "Auto-join" +msgstr "" + +msgid "Add Chat" +msgstr "" + +msgid "You can edit more information from the context menu later." +msgstr "" + +#, fuzzy +msgid "Error adding group" +msgstr "Hitilafu katika Kutuma Taarifa" + +msgid "You must give a name for the group to add." +msgstr "" + +msgid "Add Group" +msgstr "" + +msgid "Enter the name of the group" +msgstr "" + +msgid "Edit Chat" +msgstr "" + +msgid "Please Update the necessary fields." +msgstr "" + +#, fuzzy +msgid "Edit" +msgstr "&Hariri" + +#, fuzzy +msgid "Edit Settings" +msgstr "Vipimo" + +#, fuzzy +msgid "Information" +msgstr "Taarifa Zaidi" + +msgid "Retrieving..." +msgstr "" + +msgid "Get Info" +msgstr "" + +msgid "Add Buddy Pounce" +msgstr "" + +#, fuzzy +msgid "Send File" +msgstr "Tuma Kwa:" + +msgid "Blocked" +msgstr "Imezuiliwa" + +msgid "Show when offline" +msgstr "" + +#, c-format +msgid "Please enter the new name for %s" +msgstr "" + +#, fuzzy +msgid "Rename" +msgstr "&Badili jina" + +msgid "Set Alias" +msgstr "" + +msgid "Enter empty string to reset the name." +msgstr "" + +msgid "Removing this contact will also remove all the buddies in the contact" +msgstr "" + +msgid "Removing this group will also remove all the buddies in the group" +msgstr "" + +#, fuzzy, c-format +msgid "Are you sure you want to remove %s?" +msgstr "Una uhakika unataka kuondoa nywila zote?" + +#. XXX: anything to do with the returned ui-handle? +#, fuzzy +msgid "Confirm Remove" +msgstr "Thibitisha kufunga" + +msgid "Remove" +msgstr "Ondoa" + +#. Buddy List +msgid "Buddy List" +msgstr "" + +msgid "Place tagged" +msgstr "" + +msgid "Toggle Tag" +msgstr "" + +msgid "View Log" +msgstr "" + +#. General +msgid "Nickname" +msgstr "" + +#. Never know what those translations might end up like... +#. Idle stuff +msgid "Idle" +msgstr "" + +msgid "On Mobile" +msgstr "" + +msgid "New..." +msgstr "" + +msgid "Saved..." +msgstr "" + +msgid "Plugins" +msgstr "Programu tumizi" + +msgid "Block/Unblock" +msgstr "" + +msgid "Block" +msgstr "Zuia" + +msgid "Unblock" +msgstr "" + +msgid "" +"Please enter the username or alias of the person you would like to Block/" +"Unblock." +msgstr "" + +#. Not multiline +#. Not masked? +#. No hints? +msgid "OK" +msgstr "Sawa" + +msgid "New Instant Message" +msgstr "" + +msgid "Please enter the username or alias of the person you would like to IM." +msgstr "" + +#, fuzzy +msgid "Channel" +msgstr "Ghairi" + +msgid "Join a Chat" +msgstr "" + +msgid "Please enter the name of the chat you want to join." +msgstr "" + +msgid "Join" +msgstr "" + +msgid "" +"Please enter the username or alias of the person whose log you would like to " +"view." +msgstr "" + +#. Create the "Options" frame. +msgid "Options" +msgstr "Machaguo" + +msgid "Send IM..." +msgstr "" + +msgid "Block/Unblock..." +msgstr "" + +msgid "Join Chat..." +msgstr "" + +msgid "View Log..." +msgstr "" + +msgid "View All Logs" +msgstr "" + +#, fuzzy +msgid "Show" +msgstr "Onyesha:" + +msgid "Empty groups" +msgstr "" + +#, fuzzy +msgid "Offline buddies" +msgstr "Namna ya Nje ya mkondo" + +#, fuzzy +msgid "Sort" +msgstr "&Panga" + +#, fuzzy +msgid "By Status" +msgstr "Hali" + +msgid "Alphabetically" +msgstr "" + +msgid "By Log Size" +msgstr "" + +msgid "Buddy" +msgstr "" + +#, fuzzy +msgid "Chat" +msgstr "Chad" + +#, fuzzy +msgid "Grouping" +msgstr "Hakuna Mpangilio" + +#, fuzzy +msgid "Certificate Import" +msgstr "Hati ina" + +msgid "Specify a hostname" +msgstr "" + +msgid "Type the host name this certificate is for." +msgstr "" + +#, c-format +msgid "" +"File %s could not be imported.\n" +"Make sure that the file is readable and in PEM format.\n" +msgstr "" + +msgid "Certificate Import Error" +msgstr "" + +msgid "X.509 certificate import failed" +msgstr "" + +#, fuzzy +msgid "Select a PEM certificate" +msgstr "Teua Ithibati" + +#, c-format +msgid "" +"Export to file %s failed.\n" +"Check that you have write permission to the target path\n" +msgstr "" + +#, fuzzy +msgid "Certificate Export Error" +msgstr "Ithibati Ipo" + +msgid "X.509 certificate export failed" +msgstr "" + +#, fuzzy +msgid "PEM X.509 Certificate Export" +msgstr "X.509 Ithibati (PEM)" + +#, fuzzy, c-format +msgid "Certificate for %s" +msgstr "Hati ina" + +#, c-format +msgid "" +"Common name: %s\n" +"\n" +"SHA1 fingerprint:\n" +"%s" +msgstr "" + +#, fuzzy +msgid "SSL Host Certificate" +msgstr "Ithibati SSL ya Mteja" + +#, c-format +msgid "Really delete certificate for %s?" +msgstr "" + +msgid "Confirm certificate delete" +msgstr "" + +msgid "Certificate Manager" +msgstr "Meneja Ithibati" + +#. Creating the user splits +msgid "Hostname" +msgstr "" + +#, fuzzy +msgid "Info" +msgstr "Taarifa:" + +#. Close button +msgid "Close" +msgstr "Funga" + +#, fuzzy, c-format +msgid "%s (%s)" +msgstr "%S (%S)" + +#, c-format +msgid "%s disconnected." +msgstr "" + +#, c-format +msgid "" +"%s\n" +"\n" +"Finch will not attempt to reconnect the account until you correct the error " +"and re-enable the account." +msgstr "" + +msgid "Re-enable Account" +msgstr "" + +msgid "" +"The account has disconnected and you are no longer in this chat. You will be " +"automatically rejoined in the chat when the account reconnects." +msgstr "" + +msgid "No such command." +msgstr "" + +msgid "Syntax Error: You typed the wrong number of arguments to that command." +msgstr "" + +msgid "Your command failed for an unknown reason." +msgstr "" + +msgid "That command only works in chats, not IMs." +msgstr "" + +msgid "That command only works in IMs, not chats." +msgstr "" + +msgid "That command doesn't work on this protocol." +msgstr "" + +msgid "Message was not sent, because you are not signed on." +msgstr "" + +#, c-format +msgid "%s (%s -- %s)" +msgstr "" + +#, c-format +msgid "%s [%s]" +msgstr "" + +#, c-format +msgid "" +"\n" +"%s is typing..." +msgstr "" + +msgid "You have left this chat." +msgstr "" + +msgid "Logging started. Future messages in this conversation will be logged." +msgstr "" + +msgid "" +"Logging stopped. Future messages in this conversation will not be logged." +msgstr "" + +#, fuzzy +msgid "Send To" +msgstr "Tuma kwa:" + +#, fuzzy +msgid "Conversation" +msgstr "Unganisho" + +msgid "Clear Scrollback" +msgstr "" + +#, fuzzy +msgid "Show Timestamps" +msgstr "Onyesha Ufafanuzi" + +msgid "Add Buddy Pounce..." +msgstr "" + +msgid "Invite..." +msgstr "" + +msgid "Enable Logging" +msgstr "" + +msgid "Enable Sounds" +msgstr "" + +msgid " " +msgstr "" + +#, c-format +msgid "List of %d user:\n" +msgid_plural "List of %d users:\n" +msgstr[0] "" +msgstr[1] "" + +msgid "Supported debug options are: version" +msgstr "" + +msgid "No such command (in this context)." +msgstr "" + +msgid "" +"Use \"/help <command>\" for help on a specific command.\n" +"The following commands are available in this context:\n" +msgstr "" + +#, c-format +msgid "" +"%s is not a valid message class. See '/help msgcolor' for valid message " +"classes." +msgstr "" + +#, c-format +msgid "%s is not a valid color. See '/help msgcolor' for valid colors." +msgstr "" + +msgid "" +"say <message>: Send a message normally as if you weren't using a " +"command." +msgstr "" + +msgid "me <action>: Send an IRC style action to a buddy or chat." +msgstr "" + +msgid "" +"debug <option>: Send various debug information to the current " +"conversation." +msgstr "" + +msgid "clear: Clears the conversation scrollback." +msgstr "" + +msgid "help <command>: Help on a specific command." +msgstr "" + +msgid "users: Show the list of users in the chat." +msgstr "" + +msgid "plugins: Show the plugins window." +msgstr "" + +msgid "buddylist: Show the buddylist." +msgstr "" + +msgid "accounts: Show the accounts window." +msgstr "" + +msgid "debugwin: Show the debug window." +msgstr "" + +msgid "prefs: Show the preference window." +msgstr "" + +msgid "statuses: Show the savedstatuses window." +msgstr "" + +msgid "" +"msgcolor <class> <foreground> <background>: Set the color " +"for different classes of messages in the conversation window.
<" +"class>: receive, send, highlight, action, timestamp
<foreground/" +"background>: black, red, green, blue, white, gray, darkgray, magenta, " +"cyan, default

EXAMPLE:
msgcolor send cyan default" +msgstr "" + +#, fuzzy +msgid "Unable to open file." +msgstr "Nimeshindwa Kusasisha" + +#, fuzzy +msgid "Debug Window" +msgstr "Dirisha Jipya" + +#. XXX: Setting the GROW_Y for the following widgets don't make sense. But right now +#. * it's necessary to make the width of the debug window resizable ... like I said, +#. * it doesn't make sense. The bug is likely in the packing in gntbox.c. +#. +#, fuzzy +msgid "Clear" +msgstr "&Safisha" + +#, fuzzy +msgid "Filter:" +msgstr "Ch&uja:" + +msgid "Pause" +msgstr "Simamisha" + +#, c-format +msgid "File Transfers - %d%% of %d file" +msgid_plural "File Transfers - %d%% of %d files" +msgstr[0] "" +msgstr[1] "" + +#. Create the window. +msgid "File Transfers" +msgstr "" + +#, fuzzy +msgid "Progress" +msgstr "Hatua:" + +#, fuzzy +msgid "Filename" +msgstr "Jina la faili:" + +msgid "Size" +msgstr "Saizi" + +#, fuzzy +msgid "Speed" +msgstr "Kilishi mkono" + +#, fuzzy +msgid "Remaining" +msgstr "#1 imebakia" + +#. XXX: Use of ggp_str_to_uin() is an ugly hack! +msgid "Status" +msgstr "Hali" + +msgid "Close this window when all transfers finish" +msgstr "" + +msgid "Clear finished transfers" +msgstr "" + +#, fuzzy +msgid "Stop" +msgstr "&Simama" + +msgid "Waiting for transfer to begin" +msgstr "" + +msgid "Canceled" +msgstr "Imeghairishwa" + +msgid "Failed" +msgstr "Imeshindwa" + +#, c-format +msgid "%.2f KiB/s" +msgstr "" + +msgid "Sent" +msgstr "" + +msgid "Received" +msgstr "" + +msgid "Finished" +msgstr "Imemaliza" + +#, c-format +msgid "The file was saved as %s." +msgstr "" + +#, fuzzy +msgid "Sending" +msgstr "kuumbia" + +#, fuzzy +msgid "Receiving" +msgstr "teremua" + +#, c-format +msgid "Conversation in %s on %s" +msgstr "" + +#, c-format +msgid "Conversation with %s on %s" +msgstr "" + +#, fuzzy +msgid "%B %Y" +msgstr "%S %S" + +msgid "" +"System events will only be logged if the \"Log all status changes to system " +"log\" preference is enabled." +msgstr "" + +msgid "" +"Instant messages will only be logged if the \"Log all instant messages\" " +"preference is enabled." +msgstr "" + +msgid "" +"Chats will only be logged if the \"Log all chats\" preference is enabled." +msgstr "" + +#, fuzzy +msgid "No logs were found" +msgstr "Hakuna masasisho yaliyopatikana." + +msgid "Total log size:" +msgstr "" + +#. Search box ********* +msgid "Scroll/Search: " +msgstr "" + +#, c-format +msgid "Conversations in %s" +msgstr "" + +#, c-format +msgid "Conversations with %s" +msgstr "" + +msgid "All Conversations" +msgstr "" + +msgid "System Log" +msgstr "" + +msgid "Calling ... " +msgstr "" + +msgid "Hangup" +msgstr "" + +#. Number of actions +msgid "Accept" +msgstr "" + +#, fuzzy +msgid "Reject" +msgstr "Seti upya" + +msgid "Call in progress." +msgstr "" + +msgid "The call has been terminated." +msgstr "" + +#, c-format +msgid "%s wishes to start an audio session with you." +msgstr "" + +#, c-format +msgid "%s is trying to start an unsupported media session type with you." +msgstr "" + +msgid "You have rejected the call." +msgstr "" + +msgid "call: Make an audio call." +msgstr "" + +#, fuzzy +msgid "Emails" +msgstr "Barua pepe" + +msgid "You have mail!" +msgstr "" + +#, fuzzy +msgid "Sender" +msgstr "Seva" + +msgid "Subject" +msgstr "Mhusika" + +#, c-format +msgid "%s (%s) has %d new message." +msgid_plural "%s (%s) has %d new messages." +msgstr[0] "" +msgstr[1] "" + +#, fuzzy +msgid "New Mail" +msgstr "Tabo mpya" + +#, c-format +msgid "Info for %s" +msgstr "" + +#, fuzzy +msgid "Buddy Information" +msgstr "Fic&ha Taarifa" + +msgid "Continue" +msgstr "Endelea" + +msgid "IM" +msgstr "" + +msgid "Invite" +msgstr "" + +msgid "(none)" +msgstr "" + +msgid "URI" +msgstr "URI" + +msgid "ERROR" +msgstr "HITILAFU" + +msgid "loading plugin failed" +msgstr "" + +msgid "unloading plugin failed" +msgstr "" + +#, c-format +msgid "" +"Name: %s\n" +"Version: %s\n" +"Description: %s\n" +"Author: %s\n" +"Website: %s\n" +"Filename: %s\n" +msgstr "" + +msgid "Plugin need to be loaded before you can configure it." +msgstr "" + +msgid "No configuration options for this plugin." +msgstr "" + +msgid "Error loading plugin" +msgstr "" + +msgid "The selected file is not a valid plugin." +msgstr "" + +msgid "" +"Please open the debug window and try again to see the exact error message." +msgstr "" + +#, fuzzy +msgid "Select plugin to install" +msgstr "Chagua mandhari kusakinisha" + +msgid "You can (un)load plugins from the following list." +msgstr "" + +#, fuzzy +msgid "Install Plugin..." +msgstr "Usakinishaji Programu-jalizi" + +msgid "Configure Plugin" +msgstr "" + +#. copy the preferences to tmp values... +#. * I liked "take affect immediately" Oh well :-( +#. (that should have been "effect," right?) +#. Back to instant-apply! I win! BU-HAHAHA! +#. Create the window +msgid "Preferences" +msgstr "Mapendekezo" + +msgid "Please enter a buddy to pounce." +msgstr "" + +msgid "New Buddy Pounce" +msgstr "" + +msgid "Edit Buddy Pounce" +msgstr "" + +msgid "Pounce Who" +msgstr "" + +#. Account: +msgid "Account:" +msgstr "" + +msgid "Buddy name:" +msgstr "" + +#. Create the "Pounce When Buddy..." frame. +msgid "Pounce When Buddy..." +msgstr "" + +msgid "Signs on" +msgstr "" + +msgid "Signs off" +msgstr "" + +msgid "Goes away" +msgstr "" + +msgid "Returns from away" +msgstr "" + +msgid "Becomes idle" +msgstr "" + +msgid "Is no longer idle" +msgstr "" + +msgid "Starts typing" +msgstr "" + +msgid "Pauses while typing" +msgstr "" + +msgid "Stops typing" +msgstr "" + +msgid "Sends a message" +msgstr "" + +#. Create the "Action" frame. +#, fuzzy +msgid "Action" +msgstr "&Tendo" + +#, fuzzy +msgid "Open an IM window" +msgstr "Fungua dirisha jipya" + +msgid "Pop up a notification" +msgstr "" + +msgid "Send a message" +msgstr "" + +msgid "Execute a command" +msgstr "" + +msgid "Play a sound" +msgstr "" + +msgid "Pounce only when my status is not Available" +msgstr "" + +msgid "Recurring" +msgstr "" + +msgid "Cannot create pounce" +msgstr "" + +msgid "You do not have any accounts." +msgstr "" + +msgid "You must create an account first before you can create a pounce." +msgstr "" + +#, fuzzy, c-format +msgid "Are you sure you want to delete the pounce on %s for %s?" +msgstr "Je una uhakika uantaka kufuta ithibati hizi?" + +msgid "Buddy Pounces" +msgstr "" + +#, c-format +msgid "%s has started typing to you (%s)" +msgstr "" + +#, c-format +msgid "%s has paused while typing to you (%s)" +msgstr "" + +#, c-format +msgid "%s has signed on (%s)" +msgstr "" + +#, c-format +msgid "%s has returned from being idle (%s)" +msgstr "" + +#, c-format +msgid "%s has returned from being away (%s)" +msgstr "" + +#, c-format +msgid "%s has stopped typing to you (%s)" +msgstr "" + +#, c-format +msgid "%s has signed off (%s)" +msgstr "" + +#, c-format +msgid "%s has become idle (%s)" +msgstr "" + +#, c-format +msgid "%s has gone away. (%s)" +msgstr "" + +#, c-format +msgid "%s has sent you a message. (%s)" +msgstr "" + +msgid "Unknown pounce event. Please report this!" +msgstr "" + +msgid "Based on keyboard use" +msgstr "" + +msgid "From last sent message" +msgstr "" + +#, fuzzy +msgid "Never" +msgstr "Seva" + +msgid "Show Idle Time" +msgstr "" + +msgid "Show Offline Buddies" +msgstr "" + +msgid "Notify buddies when you are typing" +msgstr "" + +msgid "Log format" +msgstr "" + +#, fuzzy +msgid "Log IMs" +msgstr "I&ngia" + +msgid "Log chats" +msgstr "" + +msgid "Log status change events" +msgstr "" + +msgid "Report Idle time" +msgstr "" + +#, fuzzy +msgid "Change status when idle" +msgstr "&Badili matini ya ufito hali" + +msgid "Minutes before changing status" +msgstr "" + +#, fuzzy +msgid "Change status to" +msgstr "&Badili matini ya ufito hali" + +#, fuzzy +msgid "Conversations" +msgstr "Unganisho" + +#, fuzzy +msgid "Logging" +msgstr "Inapakia" + +msgid "You must fill all the required fields." +msgstr "" + +msgid "The required fields are underlined." +msgstr "" + +msgid "Not implemented yet." +msgstr "" + +#, fuzzy +msgid "Save File..." +msgstr "&Hifadhi faili" + +#, fuzzy +msgid "Open File..." +msgstr "Fungua Faili" + +msgid "Choose Location..." +msgstr "" + +msgid "Hit 'Enter' to find more rooms of this category." +msgstr "" + +msgid "Get" +msgstr "" + +#. Create the window. +msgid "Room List" +msgstr "" + +msgid "Buddy logs in" +msgstr "" + +msgid "Buddy logs out" +msgstr "" + +msgid "Message received" +msgstr "" + +msgid "Message received begins conversation" +msgstr "" + +#, fuzzy +msgid "Message sent" +msgstr "Ujumbe haujaenda." + +msgid "Person enters chat" +msgstr "" + +msgid "Person leaves chat" +msgstr "" + +msgid "You talk in chat" +msgstr "" + +msgid "Others talk in chat" +msgstr "" + +msgid "Someone says your username in chat" +msgstr "" + +msgid "GStreamer Failure" +msgstr "" + +msgid "GStreamer failed to initialize." +msgstr "" + +#, fuzzy +msgid "(default)" +msgstr "chaguo-msingi" + +msgid "Select Sound File ..." +msgstr "" + +#, fuzzy +msgid "Sound Preferences" +msgstr "&Mapendekezo ya Tovuti" + +#, fuzzy +msgid "Profiles" +msgstr "Mafaili_%S" + +msgid "Automatic" +msgstr "" + +msgid "Console Beep" +msgstr "" + +msgid "Command" +msgstr "" + +msgid "No Sound" +msgstr "" + +msgid "Sound Method" +msgstr "" + +msgid "Method: " +msgstr "" + +#, c-format +msgid "" +"Sound Command\n" +"(%s for filename)" +msgstr "" + +#. Sound options +msgid "Sound Options" +msgstr "" + +msgid "Sounds when conversation has focus" +msgstr "" + +#, fuzzy +msgid "Always" +msgstr "Uliza daima" + +msgid "Only when available" +msgstr "" + +msgid "Only when not available" +msgstr "" + +msgid "Volume(0-100):" +msgstr "" + +#. Sound events +msgid "Sound Events" +msgstr "" + +msgid "Event" +msgstr "" + +#, fuzzy +msgid "File" +msgstr "Faili:" + +#, fuzzy +msgid "Test" +msgstr "Matini" + +msgid "Reset" +msgstr "Seti upya" + +#, fuzzy +msgid "Choose..." +msgstr "Chagua…" + +#, fuzzy, c-format +msgid "Are you sure you want to delete \"%s\"" +msgstr "Una uhakika unataka kufuta ithibati yako?" + +#, fuzzy +msgid "Delete Status" +msgstr "Futa mwenyeji" + +msgid "Saved Statuses" +msgstr "" + +msgid "Title" +msgstr "Jina" + +msgid "Type" +msgstr "Aina" + +#. Statuses are almost all the same. Define a macro to reduce code repetition. +#. PurpleStatusPrimitive +#. id - use default +#. name - use default +#. saveable +#. user_settable +#. not independent +#. Attributes - each status can have a message. +msgid "Message" +msgstr "Ujumbe" + +#. Use +msgid "Use" +msgstr "" + +#, fuzzy +msgid "Invalid title" +msgstr "Kizuizi batili" + +msgid "Please enter a non-empty title for the status." +msgstr "" + +#, fuzzy +msgid "Duplicate title" +msgstr "sifa rudufu" + +msgid "Please enter a different title for the status." +msgstr "" + +#, fuzzy +msgid "Substatus" +msgstr "Hali" + +msgid "Status:" +msgstr "Hali:" + +#, fuzzy +msgid "Message:" +msgstr "Ujumbe" + +#, fuzzy +msgid "Edit Status" +msgstr "Marekani" + +msgid "Use different status for following accounts" +msgstr "" + +#. Save & Use +#, fuzzy +msgid "Save & Use" +msgstr "Hifadhi Kama" + +msgid "Certificates" +msgstr "Hati" + +msgid "Sounds" +msgstr "" + +#, fuzzy +msgid "Statuses" +msgstr "Hali" + +msgid "Error loading the plugin." +msgstr "" + +msgid "Couldn't find X display" +msgstr "" + +msgid "Couldn't find window" +msgstr "" + +msgid "This plugin cannot be loaded because it was not built with X11 support." +msgstr "" + +msgid "GntClipboard" +msgstr "" + +msgid "Clipboard plugin" +msgstr "" + +msgid "" +"When the gnt clipboard contents change, the contents are made available to " +"X, if possible." +msgstr "" + +#, c-format +msgid "%s just signed on" +msgstr "" + +#, c-format +msgid "%s just signed off" +msgstr "" + +#, c-format +msgid "%s sent you a message" +msgstr "" + +#, c-format +msgid "%s said your nick in %s" +msgstr "" + +#, c-format +msgid "%s sent a message in %s" +msgstr "" + +msgid "Buddy signs on/off" +msgstr "" + +msgid "You receive an IM" +msgstr "" + +msgid "Someone speaks in a chat" +msgstr "" + +msgid "Someone says your name in a chat" +msgstr "" + +msgid "Notify with a toaster when" +msgstr "" + +msgid "Beep too!" +msgstr "" + +msgid "Set URGENT for the terminal window." +msgstr "" + +msgid "GntGf" +msgstr "" + +msgid "Toaster plugin" +msgstr "" + +#, c-format +msgid "Conversation with %s on %s:
" +msgstr "" + +msgid "History Plugin Requires Logging" +msgstr "" + +msgid "" +"Logging can be enabled from Tools -> Preferences -> Logging.\n" +"\n" +"Enabling logs for instant messages and/or chats will activate history for " +"the same conversation type(s)." +msgstr "" + +#, fuzzy +msgid "GntHistory" +msgstr "Historia" + +msgid "Shows recently logged conversations in new conversations." +msgstr "" + +msgid "" +"When a new conversation is opened this plugin will insert the last " +"conversation into the current conversation." +msgstr "" + +#, fuzzy +msgid "Online" +msgstr "Nenda mkondoni" + +msgid "Offline" +msgstr "" + +msgid "Online Buddies" +msgstr "" + +#, fuzzy +msgid "Offline Buddies" +msgstr "Namna ya Nje ya mkondo" + +msgid "Online/Offline" +msgstr "" + +msgid "Meebo" +msgstr "" + +msgid "No Grouping" +msgstr "Hakuna Mpangilio" + +msgid "Nested Subgroup" +msgstr "" + +msgid "Nested Grouping (experimental)" +msgstr "" + +msgid "Provides alternate buddylist grouping options." +msgstr "" + +msgid "Lastlog" +msgstr "" + +#. Translator Note: The "backlog" is the conversation buffer/history. +msgid "lastlog: Searches for a substring in the backlog." +msgstr "" + +msgid "GntLastlog" +msgstr "" + +msgid "Lastlog plugin." +msgstr "" + +#, c-format +msgid "" +"\n" +"Fetching TinyURL..." +msgstr "" + +msgid "Only create TinyURL for urls of this length or greater" +msgstr "" + +msgid "TinyURL (or other) address prefix" +msgstr "" + +msgid "TinyURL" +msgstr "" + +msgid "TinyURL plugin" +msgstr "" + +msgid "When receiving a message with URL(s), TinyURL for easier copying" +msgstr "" + +msgid "accounts" +msgstr "" + +msgid "Password is required to sign on." +msgstr "" + +#, fuzzy, c-format +msgid "Enter password for %s (%s)" +msgstr "Ingiza nywila kwa ajili ya %1$S kwenye %2$S" + +#, fuzzy +msgid "Enter Password" +msgstr "Ingiza nywila mpya:" + +#, fuzzy +msgid "Save password" +msgstr "Nywila Zilizohifadhiwa" + +#, c-format +msgid "Missing protocol plugin for %s" +msgstr "" + +#, fuzzy +msgid "Connection Error" +msgstr "Hitilafu ya Sanidi" + +msgid "New passwords do not match." +msgstr "" + +msgid "Fill out all fields completely." +msgstr "" + +msgid "Original password" +msgstr "" + +#, fuzzy +msgid "New password" +msgstr "Nyilwa mpya:" + +#, fuzzy +msgid "New password (again)" +msgstr "Nywila mpya (tena):" + +#, c-format +msgid "Change password for %s" +msgstr "" + +msgid "Please enter your current password and your new password." +msgstr "" + +#, c-format +msgid "Change user information for %s" +msgstr "" + +msgid "Set User Info" +msgstr "" + +msgid "Unknown" +msgstr "Isiyojulikana" + +msgid "Buddies" +msgstr "" + +msgid "buddy list" +msgstr "" + +msgid "(DOES NOT MATCH)" +msgstr "" + +#. Make messages +#, c-format +msgid "%s has presented the following certificate for just-this-once use:" +msgstr "" + +#, c-format +msgid "" +"Common name: %s %s\n" +"Fingerprint (SHA1): %s" +msgstr "" + +#. TODO: Find what the handle ought to be +msgid "Single-use Certificate Verification" +msgstr "" + +#. Scheme name +#. Pool name +#, fuzzy +msgid "Certificate Authorities" +msgstr "Hatifisha Sera" + +#. Scheme name +#. Pool name +msgid "SSL Peers Cache" +msgstr "" + +#. Make messages +#, fuzzy, c-format +msgid "Accept certificate for %s?" +msgstr "Rekebisha cheli au ithibati ya uaminifu" + +#. TODO: Find what the handle ought to be +#, fuzzy +msgid "SSL Certificate Verification" +msgstr "Kagua Uhalisia wa Hati" + +#, fuzzy +msgid "_View Certificate..." +msgstr "Angalia Hati" + +#. Prompt the user to authenticate the certificate +#. vrq will be completed by user_auth +#, c-format +msgid "" +"The certificate presented by \"%s\" is self-signed. It cannot be " +"automatically checked." +msgstr "" + +#, c-format +msgid "The certificate chain presented for %s is not valid." +msgstr "" + +#. TODO: Make this error either block the ensuing SSL +#. connection error until the user dismisses this one, or +#. stifle it. +#. TODO: Probably wrong. +#. TODO: Probably wrong +#, fuzzy +msgid "SSL Certificate Error" +msgstr "Mamlaka ya Ithibati SSL" + +#, fuzzy +msgid "Invalid certificate chain" +msgstr "Hati Thibati" + +#. vrq will be completed by user_auth +msgid "" +"You have no database of root certificates, so this certificate cannot be " +"validated." +msgstr "" + +#. vrq will be completed by user_auth +msgid "" +"The root certificate this one claims to be issued by is unknown to Pidgin." +msgstr "" + +#, c-format +msgid "" +"The certificate chain presented by %s does not have a valid digital " +"signature from the Certificate Authority from which it claims to have a " +"signature." +msgstr "" + +msgid "Invalid certificate authority signature" +msgstr "" + +#. Prompt the user to authenticate the certificate +#. TODO: Provide the user with more guidance about why he is +#. being prompted +#. vrq will be completed by user_auth +#, c-format +msgid "" +"The certificate presented by \"%s\" claims to be from \"%s\" instead. This " +"could mean that you are not connecting to the service you believe you are." +msgstr "" + +#. Make messages +#, c-format +msgid "" +"Common name: %s\n" +"\n" +"Fingerprint (SHA1): %s\n" +"\n" +"Activation date: %s\n" +"Expiration date: %s\n" +msgstr "" + +#. TODO: Find what the handle ought to be +#, fuzzy +msgid "Certificate Information" +msgstr "Kagua Uhalisia wa Hati" + +#, fuzzy +msgid "Registration Error" +msgstr "Hitilafu ya Sanidi" + +#, fuzzy +msgid "Unregistration Error" +msgstr "Hitilafu ya Sanidi" + +#, c-format +msgid "+++ %s signed on" +msgstr "" + +#, c-format +msgid "+++ %s signed off" +msgstr "" + +#. Unknown error +#. Unknown error! +msgid "Unknown error" +msgstr "Hitilafu isiyojulikana" + +msgid "Unable to send message: The message is too large." +msgstr "" + +#, c-format +msgid "Unable to send message to %s." +msgstr "" + +msgid "The message is too large." +msgstr "" + +#, fuzzy +msgid "Unable to send message." +msgstr "Haiwezi kuongeza moduli" + +msgid "Send Message" +msgstr "" + +msgid "_Send Message" +msgstr "" + +#, c-format +msgid "%s entered the room." +msgstr "" + +#, c-format +msgid "%s [%s] entered the room." +msgstr "" + +#, c-format +msgid "You are now known as %s" +msgstr "" + +#, c-format +msgid "%s is now known as %s" +msgstr "" + +#, c-format +msgid "%s left the room." +msgstr "" + +#, c-format +msgid "%s left the room (%s)." +msgstr "" + +msgid "Invite to chat" +msgstr "" + +#. Put our happy label in it. +msgid "" +"Please enter the name of the user you wish to invite, along with an optional " +"invite message." +msgstr "" + +#, c-format +msgid "Failed to get connection: %s" +msgstr "" + +#, c-format +msgid "Failed to get name: %s" +msgstr "" + +#, c-format +msgid "Failed to get serv name: %s" +msgstr "" + +msgid "Purple's D-BUS server is not running for the reason listed below" +msgstr "" + +#, fuzzy +msgid "No name" +msgstr "Jina la DNS" + +msgid "Unable to create new resolver process\n" +msgstr "" + +msgid "Unable to send request to resolver process\n" +msgstr "" + +#, c-format +msgid "" +"Error resolving %s:\n" +"%s" +msgstr "" + +#, c-format +msgid "Error resolving %s: %d" +msgstr "" + +#, c-format +msgid "" +"Error reading from resolver process:\n" +"%s" +msgstr "" + +#, c-format +msgid "Resolver process exited without answering our request" +msgstr "" + +#, c-format +msgid "Thread creation failure: %s" +msgstr "" + +#, fuzzy +msgid "Unknown reason" +msgstr "Hitilafu isiyojulikana" + +#, c-format +msgid "" +"Error reading %s: \n" +"%s.\n" +msgstr "" + +#, c-format +msgid "" +"Error writing %s: \n" +"%s.\n" +msgstr "" + +#, fuzzy, c-format +msgid "" +"Error accessing %s: \n" +"%s.\n" +msgstr "Hitilafu katika kufikia %S" + +#, fuzzy +msgid "Directory is not writable." +msgstr "Faili %S haliandikiki." + +msgid "Cannot send a file of 0 bytes." +msgstr "" + +msgid "Cannot send a directory." +msgstr "" + +#, c-format +msgid "%s is not a regular file. Cowardly refusing to overwrite it.\n" +msgstr "" + +#, c-format +msgid "%s wants to send you %s (%s)" +msgstr "" + +#, c-format +msgid "%s wants to send you a file" +msgstr "" + +#, c-format +msgid "Accept file transfer request from %s?" +msgstr "" + +#, c-format +msgid "" +"A file is available for download from:\n" +"Remote host: %s\n" +"Remote port: %d" +msgstr "" + +#, c-format +msgid "%s is offering to send file %s" +msgstr "" + +#, c-format +msgid "%s is not a valid filename.\n" +msgstr "" + +#, c-format +msgid "Offering to send %s to %s" +msgstr "" + +#, c-format +msgid "Starting transfer of %s from %s" +msgstr "" + +#, c-format +msgid "Transfer of file %s complete" +msgstr "" + +msgid "File transfer complete" +msgstr "" + +#, c-format +msgid "You canceled the transfer of %s" +msgstr "" + +msgid "File transfer cancelled" +msgstr "" + +#, c-format +msgid "%s canceled the transfer of %s" +msgstr "" + +#, c-format +msgid "%s canceled the file transfer" +msgstr "" + +#, c-format +msgid "File transfer to %s failed." +msgstr "" + +#, c-format +msgid "File transfer from %s failed." +msgstr "" + +msgid "Run the command in a terminal" +msgstr "" + +msgid "The command used to handle \"aim\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"gg\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"icq\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"irc\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"msnim\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"sip\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"xmpp\" URLs, if enabled." +msgstr "" + +msgid "The command used to handle \"ymsgr\" URLs, if enabled." +msgstr "" + +msgid "The handler for \"aim\" URLs" +msgstr "" + +msgid "The handler for \"gg\" URLs" +msgstr "" + +msgid "The handler for \"icq\" URLs" +msgstr "" + +msgid "The handler for \"irc\" URLs" +msgstr "" + +msgid "The handler for \"msnim\" URLs" +msgstr "" + +msgid "The handler for \"sip\" URLs" +msgstr "" + +msgid "The handler for \"xmpp\" URLs" +msgstr "" + +msgid "The handler for \"ymsgr\" URLs" +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"aim\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"gg\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"icq\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"irc\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"msnim\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"sip\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"xmpp\" " +"URLs." +msgstr "" + +msgid "" +"True if the command specified in the \"command\" key should handle \"ymsgr\" " +"URLs." +msgstr "" + +msgid "" +"True if the command used to handle this type of URL should be run in a " +"terminal." +msgstr "" + +msgid "Whether the specified command should handle \"aim\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"gg\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"icq\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"irc\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"msnim\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"sip\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"xmpp\" URLs" +msgstr "" + +msgid "Whether the specified command should handle \"ymsgr\" URLs" +msgstr "" + +msgid "The logger has no read function" +msgstr "" + +msgid "HTML" +msgstr "" + +msgid "Plain text" +msgstr "" + +msgid "Old flat format" +msgstr "" + +msgid "Logging of this conversation failed." +msgstr "" + +msgid "XML" +msgstr "XML" + +#, c-format +msgid "" +"(%s) %s <AUTO-" +"REPLY>: %s
\n" +msgstr "" + +#, c-format +msgid "" +"(%s) %s <AUTO-" +"REPLY>: %s
\n" +msgstr "" + +msgid "Unable to find log path!" +msgstr "" + +#, c-format +msgid "Could not read file: %s" +msgstr "" + +#, c-format +msgid "(%s) %s : %s\n" +msgstr "" + +#, c-format +msgid "You are using %s, but this plugin requires %s." +msgstr "" + +msgid "This plugin has not defined an ID." +msgstr "" + +#, c-format +msgid "Plugin magic mismatch %d (need %d)" +msgstr "" + +#, c-format +msgid "ABI version mismatch %d.%d.x (need %d.%d.x)" +msgstr "" + +msgid "" +"Plugin does not implement all required functions (list_icon, login and close)" +msgstr "" + +#, c-format +msgid "" +"The required plugin %s was not found. Please install this plugin and try " +"again." +msgstr "" + +msgid "Unable to load the plugin" +msgstr "" + +#, c-format +msgid "The required plugin %s was unable to load." +msgstr "" + +msgid "Unable to load your plugin." +msgstr "" + +#, c-format +msgid "%s requires %s, but it failed to unload." +msgstr "" + +msgid "Autoaccept" +msgstr "" + +msgid "Auto-accept file transfer requests from selected users." +msgstr "" + +#, c-format +msgid "Autoaccepted file transfer of \"%s\" from \"%s\" completed." +msgstr "" + +msgid "Autoaccept complete" +msgstr "" + +#, c-format +msgid "When a file-transfer request arrives from %s" +msgstr "" + +msgid "Set Autoaccept Setting" +msgstr "" + +#, fuzzy +msgid "_Save" +msgstr "Hifadhi" + +#, fuzzy +msgid "_Cancel" +msgstr "Ghairi" + +msgid "Ask" +msgstr "" + +msgid "Auto Accept" +msgstr "" + +#, fuzzy +msgid "Auto Reject" +msgstr "Gungu&a Kiotomati" + +msgid "Autoaccept File Transfers..." +msgstr "" + +#. XXX: Is there a better way than this? There really should be. +msgid "" +"Path to save the files in\n" +"(Please provide the full path)" +msgstr "" + +msgid "Automatically reject from users not in buddy list" +msgstr "" + +msgid "" +"Notify with a popup when an autoaccepted file transfer is complete\n" +"(only when there's no conversation with the sender)" +msgstr "" + +msgid "Create a new directory for each user" +msgstr "" + +#, fuzzy +msgid "Notes" +msgstr "Hakuna vitu" + +msgid "Enter your notes below..." +msgstr "" + +msgid "Edit Notes..." +msgstr "" + +#. *< major version +#. *< minor version +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Buddy Notes" +msgstr "" + +#. *< name +#. *< version +msgid "Store notes on particular buddies." +msgstr "" + +#. *< summary +msgid "Adds the option to store notes for buddies on your buddy list." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Cipher Test" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Tests the ciphers that ship with libpurple." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "DBus Example" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "DBus Plugin Example" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "File Control" +msgstr "Fi&cha Visisimamizi" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Allows control by entering commands in a file." +msgstr "" + +msgid "Minutes" +msgstr "" + +#. This is a cultural reference. Dy'er Mak'er is a song by Led Zeppelin. +#. If that doesn't translate well into your language, drop the 's before translating. +msgid "I'dle Mak'er" +msgstr "" + +msgid "Set Account Idle Time" +msgstr "" + +msgid "_Set" +msgstr "" + +msgid "None of your accounts are idle." +msgstr "" + +msgid "Unset Account Idle Time" +msgstr "" + +msgid "_Unset" +msgstr "" + +msgid "Set Idle Time for All Accounts" +msgstr "" + +msgid "Unset Idle Time for All Idled Accounts" +msgstr "" + +msgid "Allows you to hand-configure how long you've been idle" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "IPC Test Client" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Test plugin IPC support, as a client." +msgstr "" + +#. * description +msgid "" +"Test plugin IPC support, as a client. This locates the server plugin and " +"calls the commands registered." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "IPC Test Server" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Test plugin IPC support, as a server." +msgstr "" + +#. * description +msgid "Test plugin IPC support, as a server. This registers the IPC commands." +msgstr "" + +msgid "Join/Part Hiding Configuration" +msgstr "" + +#, fuzzy +msgid "Minimum Room Size" +msgstr "Upe&ochini wa fonti size:" + +msgid "User Inactivity Timeout (in minutes)" +msgstr "" + +msgid "Apply hiding rules to buddies" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Join/Part Hiding" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Hides extraneous join/part messages." +msgstr "" + +#. * description +msgid "" +"This plugin hides join/part messages in large rooms, except for those users " +"actively taking part in a conversation." +msgstr "" + +#. This is used in the place of a timezone abbreviation if the +#. * offset is way off. The user should never really see it, but +#. * it's here just in case. The parens are to make it clear it's +#. * not a real timezone. +msgid "(UTC)" +msgstr "" + +msgid "User is offline." +msgstr "" + +msgid "Auto-response sent:" +msgstr "" + +#, c-format +msgid "%s has signed off." +msgstr "" + +msgid "One or more messages may have been undeliverable." +msgstr "" + +msgid "You were disconnected from the server." +msgstr "" + +msgid "" +"You are currently disconnected. Messages will not be received unless you are " +"logged in." +msgstr "" + +msgid "Message could not be sent because the maximum length was exceeded." +msgstr "" + +#, fuzzy +msgid "Message could not be sent." +msgstr "Ujumbe haujaenda." + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "Adium" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +#, fuzzy +msgid "Fire" +msgstr "Faili:" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "Messenger Plus!" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "QIP" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "MSN Messenger" +msgstr "" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +#, fuzzy +msgid "Trillian" +msgstr "Kifriul" + +#. The names of IM clients are marked for translation at the request of +#. translators who wanted to transliterate them. Many translators +#. choose to leave them alone. Choose what's best for your language. +msgid "aMSN" +msgstr "" + +#. Add general preferences. +msgid "General Log Reading Configuration" +msgstr "" + +msgid "Fast size calculations" +msgstr "" + +msgid "Use name heuristics" +msgstr "" + +#. Add Log Directory preferences. +msgid "Log Directory" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "Log Reader" +msgstr "Kichwa cha kushoto" + +#. *< name +#. *< version +#. * summary +msgid "Includes other IM clients' logs in the log viewer." +msgstr "" + +#. * description +msgid "" +"When viewing logs, this plugin will include logs from other IM clients. " +"Currently, this includes Adium, MSN Messenger, and Trillian.\n" +"\n" +"WARNING: This plugin is still alpha code and may crash frequently. Use it " +"at your own risk!" +msgstr "" + +msgid "Mono Plugin Loader" +msgstr "" + +msgid "Loads .NET plugins with Mono." +msgstr "" + +msgid "Add new line in IMs" +msgstr "" + +msgid "Add new line in Chats" +msgstr "" + +#. *< magic +#. *< major version +#. *< minor version +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "New Line" +msgstr "Dirisha jipya" + +#. *< name +#. *< version +msgid "Prepends a newline to displayed message." +msgstr "" + +#. *< summary +msgid "" +"Prepends a newline to messages so that the rest of the message appears below " +"the username in the conversation window." +msgstr "" + +msgid "Offline Message Emulation" +msgstr "" + +msgid "Save messages sent to an offline user as pounce." +msgstr "" + +msgid "" +"The rest of the messages will be saved as pounce. You can edit/delete the " +"pounce from the `Buddy Pounce' dialog." +msgstr "" + +#, c-format +msgid "" +"\"%s\" is currently offline. Do you want to save the rest of the messages in " +"a pounce and automatically send them when \"%s\" logs back in?" +msgstr "" + +#, fuzzy +msgid "Offline Message" +msgstr "Hifadhi ya nje ya Mkondo" + +msgid "You can edit/delete the pounce from the `Buddy Pounces' dialog" +msgstr "" + +msgid "Yes" +msgstr "Ndiyo" + +msgid "No" +msgstr "Hapana" + +msgid "Save offline messages in pounce" +msgstr "" + +msgid "Do not ask. Always save in pounce." +msgstr "" + +#, fuzzy +msgid "One Time Password" +msgstr "Ingiza Nywila Kuu" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "One Time Password Support" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Enforce that passwords are used only once." +msgstr "" + +#. * description +msgid "" +"Allows you to enforce on a per-account basis that passwords not being saved " +"are only used in a single successful connection.\n" +"Note: The account password must not be saved for this to work." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Perl Plugin Loader" +msgstr "" + +#. *< name +#. *< version +#. *< summary +msgid "Provides support for loading perl plugins." +msgstr "" + +msgid "Psychic Mode" +msgstr "" + +msgid "Psychic mode for incoming conversation" +msgstr "" + +msgid "" +"Causes conversation windows to appear as other users begin to message you. " +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "" + +msgid "You feel a disturbance in the force..." +msgstr "" + +msgid "Only enable for users on the buddy list" +msgstr "" + +msgid "Disable when away" +msgstr "" + +msgid "Display notification message in conversations" +msgstr "" + +msgid "Raise psychic conversations" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Signals Test" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Test to see that all signals are working properly." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Simple Plugin" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Tests to see that most things are working." +msgstr "" + +#. Scheme name +#, fuzzy +msgid "X.509 Certificates" +msgstr "X.509 Ithibati (PEM)" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "GNUTLS" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides SSL support through GNUTLS." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "NSS" +msgstr "RSS" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides SSL support through Mozilla NSS." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "SSL" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides a wrapper around SSL support libraries." +msgstr "" + +#, c-format +msgid "%s is no longer away." +msgstr "" + +#, c-format +msgid "%s has gone away." +msgstr "" + +#, c-format +msgid "%s has become idle." +msgstr "" + +#, c-format +msgid "%s is no longer idle." +msgstr "" + +#, c-format +msgid "%s has signed on." +msgstr "" + +msgid "Notify When" +msgstr "" + +msgid "Buddy Goes _Away" +msgstr "" + +msgid "Buddy Goes _Idle" +msgstr "" + +msgid "Buddy _Signs On/Off" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Buddy State Notification" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "" +"Notifies in a conversation window when a buddy goes or returns from away or " +"idle." +msgstr "" + +msgid "Tcl Plugin Loader" +msgstr "" + +msgid "Provides support for loading Tcl plugins" +msgstr "" + +msgid "" +"Unable to detect ActiveTCL installation. If you wish to use TCL plugins, " +"install ActiveTCL from http://www.activestate.com\n" +msgstr "" + +msgid "" +"The Apple Bonjour For Windows toolkit wasn't found, see the FAQ at: http://d." +"pidgin.im/BonjourWindows for more information." +msgstr "" + +msgid "Unable to listen for incoming IM connections\n" +msgstr "" + +msgid "" +"Unable to establish connection with the local mDNS server. Is it running?" +msgstr "" + +#, fuzzy +msgid "First name" +msgstr "Ukurasa wa kwanza" + +#, fuzzy +msgid "Last name" +msgstr "Ukurasa wa mwisho" + +msgid "Email" +msgstr "Barua pepe" + +msgid "AIM Account" +msgstr "" + +msgid "XMPP Account" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Bonjour Protocol Plugin" +msgstr "" + +msgid "Purple Person" +msgstr "" + +#. Creating the options for the protocol +msgid "Local Port" +msgstr "" + +msgid "Bonjour" +msgstr "" + +#, fuzzy, c-format +msgid "%s has closed the conversation." +msgstr "Mwenzi SSL imefunga uunganisho huu" + +msgid "Unable to send the message, the conversation couldn't be started." +msgstr "" + +#, fuzzy +msgid "Cannot open socket" +msgstr "Haiwezi kufungua %S" + +msgid "Could not bind socket to port" +msgstr "" + +msgid "Could not listen on socket" +msgstr "" + +msgid "Error communicating with local mDNSResponder." +msgstr "" + +msgid "Invalid proxy settings" +msgstr "" + +msgid "" +"Either the host name or port number specified for your given proxy type is " +"invalid." +msgstr "" + +#, fuzzy +msgid "Token Error" +msgstr "Hitilafu ya Faili" + +msgid "Unable to fetch the token.\n" +msgstr "" + +msgid "Save Buddylist..." +msgstr "" + +msgid "Your buddylist is empty, nothing was written to the file." +msgstr "" + +msgid "Buddylist saved successfully!" +msgstr "" + +#, c-format +msgid "Couldn't write buddy list for %s to %s" +msgstr "" + +msgid "Couldn't load buddylist" +msgstr "" + +msgid "Load Buddylist..." +msgstr "" + +msgid "Buddylist loaded successfully!" +msgstr "" + +msgid "Save buddylist..." +msgstr "" + +msgid "Load buddylist from file..." +msgstr "" + +msgid "Fill in the registration fields." +msgstr "" + +msgid "Passwords do not match." +msgstr "" + +msgid "Unable to register new account. Error occurred.\n" +msgstr "" + +msgid "New Gadu-Gadu Account Registered" +msgstr "" + +#, fuzzy +msgid "Registration completed successfully!" +msgstr "Sakinisho limemaliza kikamilifu" + +msgid "Password" +msgstr "Nywila" + +msgid "Password (retype)" +msgstr "" + +msgid "Enter current token" +msgstr "" + +msgid "Current token" +msgstr "" + +msgid "Register New Gadu-Gadu Account" +msgstr "" + +msgid "Please, fill in the following fields" +msgstr "" + +msgid "City" +msgstr "" + +msgid "Year of birth" +msgstr "" + +#, fuzzy +msgid "Gender" +msgstr "Katikati" + +msgid "Male or female" +msgstr "" + +#, fuzzy +msgid "Male" +msgstr "Mali" + +msgid "Female" +msgstr "" + +#, fuzzy +msgid "Only online" +msgstr "Baki Mkondoni" + +#, fuzzy +msgid "Find buddies" +msgstr "Ta&futa Masasisho" + +msgid "Please, enter your search criteria below" +msgstr "" + +msgid "Fill in the fields." +msgstr "" + +msgid "Your current password is different from the one that you specified." +msgstr "" + +msgid "Unable to change password. Error occurred.\n" +msgstr "" + +msgid "Change password for the Gadu-Gadu account" +msgstr "" + +msgid "Password was changed successfully!" +msgstr "" + +#, fuzzy +msgid "Current password" +msgstr "Nywila ya sasa hivi:" + +msgid "Please, enter your current password and your new password for UIN: " +msgstr "" + +#, fuzzy +msgid "Change Gadu-Gadu Password" +msgstr "Badilisha Nywila Kuu" + +#, c-format +msgid "Select a chat for buddy: %s" +msgstr "" + +msgid "Add to chat..." +msgstr "" + +#. Global +#, fuzzy +msgid "Available" +msgstr "Haipatikani" + +#. get_yahoo_status_from_purple_status() returns YAHOO_STATUS_CUSTOM for +#. * the generic away state (YAHOO_STATUS_TYPE_AWAY) with no message +#. Away stuff +msgid "Away" +msgstr "" + +#, fuzzy +msgid "UIN" +msgstr "UID" + +#, fuzzy +msgid "First Name" +msgstr "Ukurasa wa kwanza" + +msgid "Birth Year" +msgstr "" + +msgid "Unable to display the search results." +msgstr "" + +msgid "Gadu-Gadu Public Directory" +msgstr "" + +msgid "Search results" +msgstr "Tafuta matokeo" + +#, fuzzy +msgid "No matching users found" +msgstr "Hamna uwiyano sawa na CRL uliopatikana." + +msgid "There are no users matching your search criteria." +msgstr "" + +#, fuzzy +msgid "Unable to read socket" +msgstr "Haiwezi kuongeza moduli" + +msgid "Buddy list downloaded" +msgstr "" + +msgid "Your buddy list was downloaded from the server." +msgstr "" + +msgid "Buddy list uploaded" +msgstr "" + +msgid "Your buddy list was stored on the server." +msgstr "" + +#, fuzzy +msgid "Connection failed." +msgstr "Unganisho Limeshindikana" + +msgid "Add to chat" +msgstr "" + +msgid "Chat _name:" +msgstr "" + +#, fuzzy +msgid "Chat error" +msgstr "Kichamorro" + +msgid "This chat name is already in use" +msgstr "" + +msgid "Not connected to the server." +msgstr "" + +msgid "Find buddies..." +msgstr "" + +#, fuzzy +msgid "Change password..." +msgstr "Badil &Nywila" + +msgid "Upload buddylist to Server" +msgstr "" + +msgid "Download buddylist from Server" +msgstr "" + +msgid "Delete buddylist from Server" +msgstr "" + +msgid "Save buddylist to file..." +msgstr "" + +#. magic +#. major_version +#. minor_version +#. plugin type +#. ui_requirement +#. flags +#. dependencies +#. priority +#. id +#. name +#. version +msgid "Gadu-Gadu Protocol Plugin" +msgstr "" + +#. summary +msgid "Polish popular IM" +msgstr "" + +msgid "Gadu-Gadu User" +msgstr "" + +#, c-format +msgid "Unknown command: %s" +msgstr "" + +#, c-format +msgid "current topic is: %s" +msgstr "" + +#, fuzzy +msgid "No topic is set" +msgstr "Hakuna sifa zilizowekwa." + +msgid "File Transfer Failed" +msgstr "" + +msgid "Could not open a listening port." +msgstr "" + +msgid "Error displaying MOTD" +msgstr "" + +#, fuzzy +msgid "No MOTD available" +msgstr "Haipatikani" + +msgid "There is no MOTD associated with this connection." +msgstr "" + +#, c-format +msgid "MOTD for %s" +msgstr "" + +msgid "Server has disconnected" +msgstr "" + +msgid "View MOTD" +msgstr "" + +msgid "_Channel:" +msgstr "" + +#, fuzzy +msgid "_Password:" +msgstr "Nywila:" + +msgid "IRC nicks may not contain whitespace" +msgstr "" + +#. 1. connect to server +#. connect to the server +#, fuzzy +msgid "Connecting" +msgstr "Inaunganisha…" + +msgid "SSL support unavailable" +msgstr "" + +msgid "Couldn't create socket" +msgstr "" + +msgid "Couldn't connect to host" +msgstr "" + +msgid "Read error" +msgstr "" + +msgid "Users" +msgstr "" + +msgid "Topic" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +msgid "IRC Protocol Plugin" +msgstr "" + +#. * summary +msgid "The IRC Protocol Plugin that Sucks Less" +msgstr "" + +#. host to connect to +msgid "Server" +msgstr "Seva" + +#. port to connect to +#, fuzzy +msgid "Port" +msgstr "Lango:" + +#, fuzzy +msgid "Encodings" +msgstr "Kisimba:" + +msgid "Auto-detect incoming UTF-8" +msgstr "" + +#, fuzzy +msgid "Real name" +msgstr "class name" + +#. +#. option = purple_account_option_string_new(_("Quit message"), "quitmsg", IRC_DEFAULT_QUIT); +#. prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); +#. +#, fuzzy +msgid "Use SSL" +msgstr "Tumia %S" + +msgid "Bad mode" +msgstr "" + +#, c-format +msgid "Ban on %s by %s, set %s ago" +msgstr "" + +#, c-format +msgid "Ban on %s" +msgstr "" + +msgid "End of ban list" +msgstr "" + +#, c-format +msgid "You are banned from %s." +msgstr "" + +msgid "Banned" +msgstr "" + +#, c-format +msgid "Cannot ban %s: banlist is full" +msgstr "" + +msgid " (ircop)" +msgstr "" + +msgid " (identified)" +msgstr "" + +#, fuzzy +msgid "Nick" +msgstr "Bofya" + +msgid "Currently on" +msgstr "" + +msgid "Idle for" +msgstr "" + +msgid "Online since" +msgstr "" + +msgid "Defining adjective:" +msgstr "" + +msgid "Glorious" +msgstr "" + +#, c-format +msgid "%s has changed the topic to: %s" +msgstr "" + +#, c-format +msgid "%s has cleared the topic." +msgstr "" + +#, c-format +msgid "The topic for %s is: %s" +msgstr "" + +#, c-format +msgid "Unknown message '%s'" +msgstr "" + +#, fuzzy +msgid "Unknown message" +msgstr "Ukubwa usiojulikana" + +msgid "The IRC server received a message it did not understand." +msgstr "" + +#, c-format +msgid "Users on %s: %s" +msgstr "" + +msgid "Time Response" +msgstr "" + +msgid "The IRC server's local time is:" +msgstr "" + +msgid "No such channel" +msgstr "" + +#. does this happen? +msgid "no such channel" +msgstr "" + +msgid "User is not logged in" +msgstr "" + +msgid "No such nick or channel" +msgstr "" + +#, fuzzy +msgid "Could not send" +msgstr "\"Haikuweza kupakia: \"" + +#, c-format +msgid "Joining %s requires an invitation." +msgstr "" + +msgid "Invitation only" +msgstr "" + +#, c-format +msgid "You have been kicked by %s: (%s)" +msgstr "" + +#. Remove user from channel +#, c-format +msgid "Kicked by %s (%s)" +msgstr "" + +#, c-format +msgid "mode (%s %s) by %s" +msgstr "" + +#, fuzzy +msgid "Invalid nickname" +msgstr "Jina la profaili ni batili" + +msgid "" +"Your selected nickname was rejected by the server. It probably contains " +"invalid characters." +msgstr "" + +msgid "" +"Your selected account name was rejected by the server. It probably contains " +"invalid characters." +msgstr "" + +#. We only want to do the following dance if the connection +#. has not been successfully completed. If it has, just +#. notify the user that their /nick command didn't go. +#, c-format +msgid "The nickname \"%s\" is already being used." +msgstr "" + +msgid "Nickname in use" +msgstr "" + +msgid "Cannot change nick" +msgstr "" + +msgid "Could not change nick" +msgstr "" + +#, c-format +msgid "You have parted the channel%s%s" +msgstr "" + +msgid "Error: invalid PONG from server" +msgstr "" + +#, c-format +msgid "PING reply -- Lag: %lu seconds" +msgstr "" + +#, c-format +msgid "Cannot join %s: Registration is required." +msgstr "" + +msgid "Cannot join channel" +msgstr "" + +msgid "Nick or channel is temporarily unavailable." +msgstr "" + +#, c-format +msgid "Wallops from %s" +msgstr "" + +msgid "action <action to perform>: Perform an action." +msgstr "" + +msgid "" +"away [message]: Set an away message, or use no message to return from being " +"away." +msgstr "" + +msgid "ctcp : sends ctcp msg to nick." +msgstr "" + +msgid "chanserv: Send a command to chanserv" +msgstr "" + +msgid "" +"deop <nick1> [nick2] ...: Remove channel operator status from " +"someone. You must be a channel operator to do this." +msgstr "" + +msgid "" +"devoice <nick1> [nick2] ...: Remove channel voice status from " +"someone, preventing them from speaking if the channel is moderated (+m). You " +"must be a channel operator to do this." +msgstr "" + +msgid "" +"invite <nick> [room]: Invite someone to join you in the specified " +"channel, or the current channel." +msgstr "" + +msgid "" +"j <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more " +"channels, optionally providing a channel key for each if needed." +msgstr "" + +msgid "" +"join <room1>[,room2][,...] [key1[,key2][,...]]: Enter one or more " +"channels, optionally providing a channel key for each if needed." +msgstr "" + +msgid "" +"kick <nick> [message]: Remove someone from a channel. You must be a " +"channel operator to do this." +msgstr "" + +msgid "" +"list: Display a list of chat rooms on the network. Warning, some servers " +"may disconnect you upon doing this." +msgstr "" + +msgid "me <action to perform>: Perform an action." +msgstr "" + +msgid "memoserv: Send a command to memoserv" +msgstr "" + +msgid "" +"mode <+|-><A-Za-z> <nick|channel>: Set or unset a channel " +"or user mode." +msgstr "" + +msgid "" +"msg <nick> <message>: Send a private message to a user (as " +"opposed to a channel)." +msgstr "" + +msgid "names [channel]: List the users currently in a channel." +msgstr "" + +msgid "nick <new nickname>: Change your nickname." +msgstr "" + +msgid "nickserv: Send a command to nickserv" +msgstr "" + +msgid "notice <target<: Send a notice to a user or channel." +msgstr "" + +msgid "" +"op <nick1> [nick2] ...: Grant channel operator status to someone. You " +"must be a channel operator to do this." +msgstr "" + +msgid "" +"operwall <message>: If you don't know what this is, you probably " +"can't use it." +msgstr "" + +msgid "operserv: Send a command to operserv" +msgstr "" + +msgid "" +"part [room] [message]: Leave the current channel, or a specified channel, " +"with an optional message." +msgstr "" + +msgid "" +"ping [nick]: Asks how much lag a user (or the server if no user specified) " +"has." +msgstr "" + +msgid "" +"query <nick> <message>: Send a private message to a user (as " +"opposed to a channel)." +msgstr "" + +msgid "quit [message]: Disconnect from the server, with an optional message." +msgstr "" + +msgid "quote [...]: Send a raw command to the server." +msgstr "" + +msgid "" +"remove <nick> [message]: Remove someone from a room. You must be a " +"channel operator to do this." +msgstr "" + +msgid "time: Displays the current local time at the IRC server." +msgstr "" + +msgid "topic [new topic]: View or change the channel topic." +msgstr "" + +msgid "umode <+|-><A-Za-z>: Set or unset a user mode." +msgstr "" + +msgid "version [nick]: send CTCP VERSION request to a user" +msgstr "" + +msgid "" +"voice <nick1> [nick2] ...: Grant channel voice status to someone. You " +"must be a channel operator to do this." +msgstr "" + +msgid "" +"wallops <message>: If you don't know what this is, you probably can't " +"use it." +msgstr "" + +msgid "whois [server] <nick>: Get information on a user." +msgstr "" + +msgid "whowas <nick>: Get information on a user that has logged off." +msgstr "" + +#, c-format +msgid "Reply time from %s: %lu seconds" +msgstr "" + +msgid "PONG" +msgstr "" + +msgid "CTCP PING reply" +msgstr "" + +msgid "Disconnected." +msgstr "" + +msgid "Unknown Error" +msgstr "Hitilafu isiyojulikana" + +msgid "Ad-Hoc Command Failed" +msgstr "" + +msgid "execute" +msgstr "" + +msgid "Server requires TLS/SSL for login. No TLS/SSL support found." +msgstr "" + +msgid "You require encryption, but no TLS/SSL support found." +msgstr "" + +msgid "Server requires plaintext authentication over an unencrypted stream" +msgstr "" + +#, c-format +msgid "" +"%s requires plaintext authentication over an unencrypted connection. Allow " +"this and continue authentication?" +msgstr "" + +#, fuzzy +msgid "Plaintext Authentication" +msgstr "Ishara ya Uthibitisho Inayoulindwa" + +#, fuzzy +msgid "Invalid response from server." +msgstr "Mwitiko wa bila kutegemea kutoka kwa seva" + +msgid "Server does not use any supported authentication method" +msgstr "" + +msgid "You require encryption, but it is not available on this server." +msgstr "" + +msgid "Invalid challenge from server" +msgstr "" + +#, fuzzy +msgid "SASL error" +msgstr "SSL Seva" + +msgid "The BOSH connection manager terminated your session." +msgstr "" + +msgid "No session ID given" +msgstr "" + +#, fuzzy +msgid "Unsupported version of BOSH protocol" +msgstr "Kivunge kisichokubaliwa" + +#, fuzzy +msgid "Unable to establish a connection with the server" +msgstr "Firefox haiwezi kuzindua unganisho katika seva ya %S." + +#, fuzzy, c-format +msgid "" +"Could not establish a connection with the server:\n" +"%s" +msgstr "Firefox haiwezi kuzindua unganisho katika seva ya %S." + +#, fuzzy +msgid "Unable to establish SSL connection" +msgstr "Haikuweza kuunganishwa" + +#, fuzzy +msgid "Unable to create socket" +msgstr "Haikuweza kuunganishwa" + +#, fuzzy +msgid "Write error" +msgstr "Hitilafu ya Printa" + +#, fuzzy +msgid "Full Name" +msgstr "Jina la faili:" + +msgid "Family Name" +msgstr "" + +msgid "Given Name" +msgstr "" + +msgid "URL" +msgstr "URL" + +msgid "Street Address" +msgstr "" + +msgid "Extended Address" +msgstr "" + +#, fuzzy +msgid "Locality" +msgstr "Mahali" + +#, fuzzy +msgid "Region" +msgstr "Reunion" + +msgid "Postal Code" +msgstr "" + +#, fuzzy +msgid "Country" +msgstr "Hesabu" + +#. lots of clients (including purple) do this, but it's +#. * out of spec +msgid "Telephone" +msgstr "" + +#, fuzzy +msgid "Organization Name" +msgstr "Jumuiya(J)" + +#, fuzzy +msgid "Organization Unit" +msgstr "Jumuiya(J)" + +msgid "Role" +msgstr "" + +msgid "Birthday" +msgstr "" + +msgid "Description" +msgstr "Maelezo" + +msgid "Edit XMPP vCard" +msgstr "" + +msgid "" +"All items below are optional. Enter only the information with which you feel " +"comfortable." +msgstr "" + +msgid "Client" +msgstr "Mteja" + +msgid "Operating System" +msgstr "" + +#, fuzzy +msgid "Local Time" +msgstr "faili la kikweti" + +msgid "Last Activity" +msgstr "" + +msgid "Service Discovery Info" +msgstr "" + +msgid "Service Discovery Items" +msgstr "" + +msgid "Extended Stanza Addressing" +msgstr "" + +msgid "Multi-User Chat" +msgstr "" + +msgid "Multi-User Chat Extended Presence Information" +msgstr "" + +msgid "In-Band Bytestreams" +msgstr "" + +msgid "Ad-Hoc Commands" +msgstr "" + +msgid "PubSub Service" +msgstr "" + +msgid "SOCKS5 Bytestreams" +msgstr "" + +msgid "Out of Band Data" +msgstr "" + +msgid "XHTML-IM" +msgstr "" + +msgid "In-Band Registration" +msgstr "" + +#, fuzzy +msgid "User Location" +msgstr "Mapali pa &Tawanyiko:" + +msgid "User Avatar" +msgstr "" + +msgid "Chat State Notifications" +msgstr "" + +msgid "Software Version" +msgstr "" + +msgid "Stream Initiation" +msgstr "" + +msgid "File Transfer" +msgstr "" + +msgid "User Mood" +msgstr "" + +msgid "User Activity" +msgstr "" + +msgid "Entity Capabilities" +msgstr "" + +msgid "Encrypted Session Negotiations" +msgstr "" + +#, fuzzy +msgid "User Tune" +msgstr "Jina la Mtumiaji:" + +msgid "Roster Item Exchange" +msgstr "" + +msgid "Reachability Address" +msgstr "" + +#, fuzzy +msgid "User Profile" +msgstr "Notisi za Mtumiaji" + +msgid "Jingle" +msgstr "" + +msgid "Jingle Audio" +msgstr "" + +#, fuzzy +msgid "User Nickname" +msgstr "Jina la mtumiaji" + +msgid "Jingle ICE UDP" +msgstr "" + +msgid "Jingle ICE TCP" +msgstr "" + +msgid "Jingle Raw UDP" +msgstr "" + +msgid "Jingle Video" +msgstr "" + +msgid "Jingle DTMF" +msgstr "" + +msgid "Message Receipts" +msgstr "" + +msgid "Public Key Publishing" +msgstr "" + +msgid "User Chatting" +msgstr "" + +#, fuzzy +msgid "User Browsing" +msgstr "Kuvinjari kwa kareti" + +#, fuzzy +msgid "User Gaming" +msgstr "Jina la Mtumiaji:" + +msgid "User Viewing" +msgstr "" + +#, fuzzy +msgid "Ping" +msgstr "Chapisha" + +msgid "Stanza Encryption" +msgstr "" + +msgid "Entity Time" +msgstr "" + +msgid "Delayed Delivery" +msgstr "" + +msgid "Collaborative Data Objects" +msgstr "" + +msgid "File Repository and Sharing" +msgstr "" + +msgid "STUN Service Discovery for Jingle" +msgstr "" + +msgid "Simplified Encrypted Session Negotiation" +msgstr "" + +#, fuzzy +msgid "Hop Check" +msgstr "Usikague" + +msgid "Capabilities" +msgstr "" + +msgid "Priority" +msgstr "" + +#, fuzzy +msgid "Resource" +msgstr "#1 rasilimali" + +#, c-format +msgid "%s ago" +msgstr "" + +#, fuzzy +msgid "Logged off" +msgstr "Ingia" + +#, fuzzy +msgid "Middle Name" +msgstr "Jina la Moduli:" + +msgid "Address" +msgstr "Anuani" + +msgid "P.O. Box" +msgstr "" + +msgid "Photo" +msgstr "" + +#, fuzzy +msgid "Logo" +msgstr "Togo" + +msgid "Un-hide From" +msgstr "" + +msgid "Temporarily Hide From" +msgstr "" + +#. && NOT ME +msgid "Cancel Presence Notification" +msgstr "" + +msgid "(Re-)Request authorization" +msgstr "" + +#. if(NOT ME) +#. shouldn't this just happen automatically when the buddy is +#. removed? +#, fuzzy +msgid "Unsubscribe" +msgstr "Jiunge" + +#, fuzzy +msgid "Log In" +msgstr "I&ngia" + +#, fuzzy +msgid "Log Out" +msgstr "O&ndoka" + +msgid "Chatty" +msgstr "" + +msgid "Extended Away" +msgstr "" + +msgid "Do Not Disturb" +msgstr "" + +#, fuzzy +msgid "JID" +msgstr "UID" + +#, fuzzy +msgid "Last Name" +msgstr "Ukurasa wa mwisho" + +#, fuzzy +msgid "The following are the results of your search" +msgstr "Kuki zifuatazo zinalingana na unazotafuta:" + +#. current comment from Jabber User Directory users.jabber.org +msgid "" +"Find a contact by entering the search criteria in the given fields. Note: " +"Each field supports wild card searches (%)" +msgstr "" + +msgid "Directory Query Failed" +msgstr "" + +msgid "Could not query the directory server." +msgstr "" + +#. Try to translate the message (see static message +#. list in jabber_user_dir_comments[]) +#, c-format +msgid "Server Instructions: %s" +msgstr "" + +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "" + +msgid "Email Address" +msgstr "Anwani ya Barua pepe" + +msgid "Search for XMPP users" +msgstr "" + +#. "Search" +msgid "Search" +msgstr "Tafuta" + +msgid "Invalid Directory" +msgstr "" + +msgid "Enter a User Directory" +msgstr "" + +msgid "Select a user directory to search" +msgstr "" + +#, fuzzy +msgid "Search Directory" +msgstr "Tafuta historia" + +msgid "_Room:" +msgstr "" + +#, fuzzy +msgid "_Server:" +msgstr "Seva" + +msgid "_Handle:" +msgstr "" + +#, c-format +msgid "%s is not a valid room name" +msgstr "" + +#, fuzzy +msgid "Invalid Room Name" +msgstr "Jina batili la moduli." + +#, c-format +msgid "%s is not a valid server name" +msgstr "" + +#, fuzzy +msgid "Invalid Server Name" +msgstr "Jina batili la moduli." + +#, c-format +msgid "%s is not a valid room handle" +msgstr "" + +msgid "Invalid Room Handle" +msgstr "" + +#, fuzzy +msgid "Configuration error" +msgstr "Hitilafu ya Sanidi" + +#, fuzzy +msgid "Unable to configure" +msgstr "Haikuweza kuunganishwa" + +#, fuzzy +msgid "Room Configuration Error" +msgstr "Hitilafu ya Sanidi" + +msgid "This room is not capable of being configured" +msgstr "" + +#, fuzzy +msgid "Registration error" +msgstr "Hitilafu ya Sanidi" + +msgid "Nick changing not supported in non-MUC chatrooms" +msgstr "" + +msgid "Error retrieving room list" +msgstr "" + +#, fuzzy +msgid "Invalid Server" +msgstr "Anuani batili" + +msgid "Enter a Conference Server" +msgstr "" + +msgid "Select a conference server to query" +msgstr "" + +msgid "Find Rooms" +msgstr "" + +#, fuzzy +msgid "Affiliations:" +msgstr "Machaguo" + +#, fuzzy +msgid "No users found" +msgstr "Hamna uwiyano sawa na CRL uliopatikana." + +msgid "Roles:" +msgstr "" + +msgid "Ping timeout" +msgstr "" + +#, fuzzy +msgid "Read Error" +msgstr "Hitilafu ya Faili" + +#, c-format +msgid "" +"Could not find alternative XMPP connection methods after failing to connect " +"directly.\n" +msgstr "" + +#, fuzzy +msgid "Invalid XMPP ID" +msgstr "Kizuizi batili" + +msgid "Invalid XMPP ID. Domain must be set." +msgstr "" + +msgid "Malformed BOSH Connect Server" +msgstr "" + +#, c-format +msgid "Registration of %s@%s successful" +msgstr "" + +#, c-format +msgid "Registration to %s successful" +msgstr "" + +msgid "Registration Successful" +msgstr "" + +#, fuzzy +msgid "Registration Failed" +msgstr "Usajili wa Chrome Umeshindikana" + +#, c-format +msgid "Registration from %s successfully removed" +msgstr "" + +msgid "Unregistration Successful" +msgstr "" + +#, fuzzy +msgid "Unregistration Failed" +msgstr "Usajili wa Chrome Umeshindikana" + +#, fuzzy +msgid "Already Registered" +msgstr "Ipo" + +msgid "State" +msgstr "Hali" + +msgid "Postal code" +msgstr "" + +#, fuzzy +msgid "Phone" +msgstr "Bila" + +#, fuzzy +msgid "Date" +msgstr "Tarehe:" + +msgid "Unregister" +msgstr "" + +msgid "" +"Please fill out the information below to change your account registration." +msgstr "" + +msgid "Please fill out the information below to register your new account." +msgstr "" + +msgid "Register New XMPP Account" +msgstr "" + +#, fuzzy +msgid "Register" +msgstr "Mwandishi wa habari" + +#, c-format +msgid "Change Account Registration at %s" +msgstr "" + +#, c-format +msgid "Register New Account at %s" +msgstr "" + +#, fuzzy +msgid "Change Registration" +msgstr "Usajili wa Chrome Umeshindikana" + +#, fuzzy +msgid "Error unregistering account" +msgstr "Hitilafu katika kusajili DLL" + +msgid "Account successfully unregistered" +msgstr "" + +msgid "Initializing Stream" +msgstr "" + +msgid "Initializing SSL/TLS" +msgstr "" + +msgid "Authenticating" +msgstr "" + +msgid "Re-initializing Stream" +msgstr "" + +msgid "Server doesn't support blocking" +msgstr "" + +msgid "Not Authorized" +msgstr "" + +msgid "Mood" +msgstr "" + +msgid "Now Listening" +msgstr "" + +msgid "Both" +msgstr "" + +msgid "From (To pending)" +msgstr "" + +#, fuzzy +msgid "From" +msgstr "kutoka" + +#, fuzzy +msgid "To" +msgstr "Kwa:" + +msgid "None (To pending)" +msgstr "" + +msgid "None" +msgstr "Bila" + +#, fuzzy +msgid "Subscription" +msgstr "Maelezo" + +msgid "Mood Text" +msgstr "" + +msgid "Allow Buzz" +msgstr "" + +msgid "Tune Artist" +msgstr "" + +#, fuzzy +msgid "Tune Title" +msgstr "Mada Fupi" + +msgid "Tune Album" +msgstr "" + +msgid "Tune Genre" +msgstr "" + +msgid "Tune Comment" +msgstr "" + +msgid "Tune Track" +msgstr "" + +msgid "Tune Time" +msgstr "" + +msgid "Tune Year" +msgstr "" + +msgid "Tune URL" +msgstr "" + +#, fuzzy +msgid "Password Changed" +msgstr "Badilisho la Nywila limeshindikana" + +#, fuzzy +msgid "Your password has been changed." +msgstr "Nywila yako imesetiwa upya." + +msgid "Error changing password" +msgstr "" + +#, fuzzy +msgid "Password (again)" +msgstr "Nywila mpya (tena):" + +#, fuzzy +msgid "Change XMPP Password" +msgstr "Badil &Nywila" + +msgid "Please enter your new password" +msgstr "" + +msgid "Set User Info..." +msgstr "" + +#. if (js->protocol_options & CHANGE_PASSWORD) { +#, fuzzy +msgid "Change Password..." +msgstr "Badil &Nywila" + +#. } +msgid "Search for Users..." +msgstr "" + +msgid "Bad Request" +msgstr "" + +#, fuzzy +msgid "Conflict" +msgstr "Thibitisha" + +msgid "Feature Not Implemented" +msgstr "" + +msgid "Forbidden" +msgstr "" + +#, fuzzy +msgid "Gone" +msgstr "Bila" + +#, fuzzy +msgid "Internal Server Error" +msgstr "Hitilafu ya ndani ya seva (500)" + +#, fuzzy +msgid "Item Not Found" +msgstr "Faili halipatikani" + +msgid "Malformed XMPP ID" +msgstr "" + +#, fuzzy +msgid "Not Acceptable" +msgstr "Haipatikani" + +msgid "Not Allowed" +msgstr "" + +#, fuzzy +msgid "Payment Required" +msgstr "Nywila inatakiwa" + +msgid "Recipient Unavailable" +msgstr "" + +#, fuzzy +msgid "Registration Required" +msgstr "Uthibitisho unatakiwa" + +#, fuzzy +msgid "Remote Server Not Found" +msgstr "Wakala kompyuta tumishi hapatikani" + +msgid "Remote Server Timeout" +msgstr "" + +msgid "Server Overloaded" +msgstr "" + +msgid "Service Unavailable" +msgstr "" + +#, fuzzy +msgid "Subscription Required" +msgstr "Uthibitisho unatakiwa" + +msgid "Unexpected Request" +msgstr "" + +#, fuzzy +msgid "Authorization Aborted" +msgstr "Sainisho limetibuliwa" + +msgid "Incorrect encoding in authorization" +msgstr "" + +#, fuzzy +msgid "Invalid authzid" +msgstr "Njia batili" + +msgid "Invalid Authorization Mechanism" +msgstr "" + +msgid "Authorization mechanism too weak" +msgstr "" + +msgid "Temporary Authentication Failure" +msgstr "" + +#, fuzzy +msgid "Authentication Failure" +msgstr "Uthibitisho unatakiwa" + +#, fuzzy +msgid "Bad Format" +msgstr "Fomati" + +msgid "Bad Namespace Prefix" +msgstr "" + +msgid "Resource Conflict" +msgstr "" + +#, fuzzy +msgid "Connection Timeout" +msgstr "Muunganiko umepita muda" + +msgid "Host Gone" +msgstr "" + +msgid "Host Unknown" +msgstr "" + +msgid "Improper Addressing" +msgstr "" + +#, fuzzy +msgid "Invalid ID" +msgstr "Kizuizi batili" + +msgid "Invalid Namespace" +msgstr "" + +#, fuzzy +msgid "Invalid XML" +msgstr "Kizuizi batili" + +msgid "Non-matching Hosts" +msgstr "" + +msgid "Policy Violation" +msgstr "" + +#, fuzzy +msgid "Remote Connection Failed" +msgstr "Muunganiko salama umeshindikana" + +msgid "Resource Constraint" +msgstr "" + +msgid "Restricted XML" +msgstr "" + +msgid "See Other Host" +msgstr "" + +msgid "System Shutdown" +msgstr "" + +#, fuzzy +msgid "Undefined Condition" +msgstr "kitu ambacho hakijafafanuliwa" + +#, fuzzy +msgid "Unsupported Encoding" +msgstr "Kivunge kisichokubaliwa" + +#, fuzzy +msgid "Unsupported Stanza Type" +msgstr "Kivunge kisichokubaliwa" + +#, fuzzy +msgid "Unsupported Version" +msgstr "Kivunge kisichokubaliwa" + +msgid "XML Not Well Formed" +msgstr "" + +msgid "Stream Error" +msgstr "" + +#, c-format +msgid "Unable to ban user %s" +msgstr "" + +#, c-format +msgid "Unknown affiliation: \"%s\"" +msgstr "" + +#, c-format +msgid "Unable to affiliate user %s as \"%s\"" +msgstr "" + +#, c-format +msgid "Unknown role: \"%s\"" +msgstr "" + +#, c-format +msgid "Unable to set role \"%s\" for user: %s" +msgstr "" + +#, c-format +msgid "Unable to kick user %s" +msgstr "" + +#, c-format +msgid "Unable to ping user %s" +msgstr "" + +#, c-format +msgid "Unable to buzz, because there is nothing known about %s." +msgstr "" + +#, c-format +msgid "Unable to buzz, because %s might be offline." +msgstr "" + +#, c-format +msgid "" +"Unable to buzz, because %s does not support it or does not wish to receive " +"buzzes now." +msgstr "" + +#, c-format +msgid "Buzzing %s..." +msgstr "" + +#. Yahoo only supports one attention command: the 'buzz'. +#. This is index number YAHOO_BUZZ. +msgid "Buzz" +msgstr "" + +#, c-format +msgid "%s has buzzed you!" +msgstr "" + +#, c-format +msgid "Unable to initiate media with %s: invalid JID" +msgstr "" + +#, c-format +msgid "Unable to initiate media with %s: user is not online" +msgstr "" + +#, c-format +msgid "Unable to initiate media with %s: not subscribed to user presence" +msgstr "" + +msgid "Media Initiation Failed" +msgstr "" + +#, c-format +msgid "" +"Please select the resource of %s with which you would like to start a media " +"session." +msgstr "" + +msgid "Select a Resource" +msgstr "" + +msgid "Initiate Media" +msgstr "" + +msgid "config: Configure a chat room." +msgstr "" + +msgid "configure: Configure a chat room." +msgstr "" + +msgid "part [room]: Leave the room." +msgstr "" + +msgid "register: Register with a chat room." +msgstr "" + +msgid "topic [new topic]: View or change the topic." +msgstr "" + +msgid "ban <user> [reason]: Ban a user from the room." +msgstr "" + +msgid "" +"affiliate <owner|admin|member|outcast|none> [nick1] [nick2] ...: Get " +"the users with an affiliation or set users' affiliation with the room." +msgstr "" + +msgid "" +"role <moderator|participant|visitor|none> [nick1] [nick2] ...: Get the " +"users with an role or set users' role with the room." +msgstr "" + +msgid "invite <user> [message]: Invite a user to the room." +msgstr "" + +msgid "join: <room> [password]: Join a chat on this server." +msgstr "" + +msgid "kick <user> [reason]: Kick a user from the room." +msgstr "" + +msgid "" +"msg <user> <message>: Send a private message to another user." +msgstr "" + +msgid "ping <jid>:\tPing a user/component/server." +msgstr "" + +msgid "buzz: Buzz a user to get their attention" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "XMPP Protocol Plugin" +msgstr "" + +#. Translators: 'domain' is used here in the context of Internet domains, e.g. pidgin.im +#, fuzzy +msgid "Domain" +msgstr "Kikoa:" + +msgid "Require SSL/TLS" +msgstr "" + +msgid "Force old (port 5223) SSL" +msgstr "" + +msgid "Allow plaintext auth over unencrypted streams" +msgstr "" + +#, fuzzy +msgid "Connect port" +msgstr "Unganisho" + +#. TODO: default to automatically try different ports. Make the user be +#. * able to set the first port to try (like LastConnectedPort in Windows client). +#. Account options +msgid "Connect server" +msgstr "" + +msgid "File transfer proxies" +msgstr "" + +#. this should probably be part of global smiley theme settings later on, +#. shared with MSN +msgid "Show Custom Smileys" +msgstr "" + +#, c-format +msgid "%s has left the conversation." +msgstr "" + +#, c-format +msgid "Message from %s" +msgstr "" + +#, c-format +msgid "%s has set the topic to: %s" +msgstr "" + +#, c-format +msgid "The topic is: %s" +msgstr "" + +#, c-format +msgid "Message delivery to %s failed: %s" +msgstr "" + +msgid "XMPP Message Error" +msgstr "" + +#, c-format +msgid "(Code %s)" +msgstr "" + +msgid "XML Parse error" +msgstr "" + +msgid "Unknown Error in presence" +msgstr "" + +msgid "Create New Room" +msgstr "" + +msgid "" +"You are creating a new room. Would you like to configure it, or accept the " +"default settings?" +msgstr "" + +msgid "_Configure Room" +msgstr "" + +#, fuzzy +msgid "_Accept Defaults" +msgstr "Misingi ya mfumo" + +#, c-format +msgid "Error joining chat %s" +msgstr "" + +#, c-format +msgid "Error in chat %s" +msgstr "" + +msgid "An error occured on the in-band bytestream transfer\n" +msgstr "" + +msgid "Transfer was closed." +msgstr "" + +msgid "Failed to open the file" +msgstr "" + +msgid "Failed to open in-band bytestream" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, user does not support file transfers" +msgstr "" + +msgid "File Send Failed" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, invalid JID" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, user is not online" +msgstr "" + +#, c-format +msgid "Unable to send file to %s, not subscribed to user presence" +msgstr "" + +#, c-format +msgid "Please select the resource of %s to which you would like to send a file" +msgstr "" + +msgid "Edit User Mood" +msgstr "" + +msgid "Please select your mood from the list." +msgstr "" + +#, fuzzy +msgid "Set" +msgstr "Sep" + +msgid "Set Mood..." +msgstr "" + +msgid "Set User Nickname" +msgstr "" + +msgid "Please specify a new nickname for you." +msgstr "" + +msgid "" +"This information is visible to all contacts on your contact list, so choose " +"something appropriate." +msgstr "" + +msgid "Set Nickname..." +msgstr "" + +#, fuzzy +msgid "Actions" +msgstr "Machaguo" + +msgid "Select an action" +msgstr "" + +#. only notify the user about problems adding to the friends list +#. * maybe we should do something else for other lists, but it probably +#. * won't cause too many problems if we just ignore it +#, fuzzy, c-format +msgid "Unable to add \"%s\"." +msgstr "Haiwezi kuongeza moduli" + +msgid "Buddy Add error" +msgstr "" + +msgid "The username specified does not exist." +msgstr "" + +#, c-format +msgid "Buddy list synchronization issue in %s (%s)" +msgstr "" + +#, c-format +msgid "" +"%s on the local list is inside the group \"%s\" but not on the server list. " +"Do you want this buddy to be added?" +msgstr "" + +#, c-format +msgid "" +"%s is on the local list but not on the server list. Do you want this buddy " +"to be added?" +msgstr "" + +#, fuzzy, c-format +msgid "Unable to parse message" +msgstr "Haiwezi kuongeza moduli" + +#, c-format +msgid "Syntax Error (probably a client bug)" +msgstr "" + +#, fuzzy, c-format +msgid "Invalid email address" +msgstr "Anuani batili" + +#, fuzzy, c-format +msgid "User does not exist" +msgstr "Faili %S halipo" + +#, c-format +msgid "Fully qualified domain name missing" +msgstr "" + +#, c-format +msgid "Already logged in" +msgstr "" + +#, fuzzy, c-format +msgid "Invalid username" +msgstr "Jina batili la moduli." + +#, fuzzy, c-format +msgid "Invalid friendly name" +msgstr "Jina la profaili ni batili" + +#, c-format +msgid "List full" +msgstr "" + +#, c-format +msgid "Already there" +msgstr "" + +#, c-format +msgid "Not on list" +msgstr "" + +#, fuzzy, c-format +msgid "User is offline" +msgstr "Fanya &kazi nje ya mkondo" + +#, c-format +msgid "Already in the mode" +msgstr "" + +#, c-format +msgid "Already in opposite list" +msgstr "" + +#, c-format +msgid "Too many groups" +msgstr "" + +#, fuzzy, c-format +msgid "Invalid group" +msgstr "Ingizo batili" + +#, c-format +msgid "User not in group" +msgstr "" + +#, c-format +msgid "Group name too long" +msgstr "" + +#, c-format +msgid "Cannot remove group zero" +msgstr "" + +#, c-format +msgid "Tried to add a user to a group that doesn't exist" +msgstr "" + +#, c-format +msgid "Switchboard failed" +msgstr "" + +#, c-format +msgid "Notify transfer failed" +msgstr "" + +#, c-format +msgid "Required fields missing" +msgstr "" + +#, c-format +msgid "Too many hits to a FND" +msgstr "" + +#, fuzzy, c-format +msgid "Not logged in" +msgstr "Hajaingia" + +#, c-format +msgid "Service temporarily unavailable" +msgstr "" + +#, c-format +msgid "Database server error" +msgstr "" + +#, c-format +msgid "Command disabled" +msgstr "" + +#, c-format +msgid "File operation error" +msgstr "" + +#, c-format +msgid "Memory allocation error" +msgstr "" + +#, c-format +msgid "Wrong CHL value sent to server" +msgstr "" + +#, fuzzy, c-format +msgid "Server busy" +msgstr "Seva" + +#, c-format +msgid "Server unavailable" +msgstr "" + +#, c-format +msgid "Peer notification server down" +msgstr "" + +#, c-format +msgid "Database connect error" +msgstr "" + +#, c-format +msgid "Server is going down (abandon ship)" +msgstr "" + +#, fuzzy, c-format +msgid "Error creating connection" +msgstr "Hitilafu kwenye utengenezaji wa saraka:" + +#, c-format +msgid "CVR parameters are either unknown or not allowed" +msgstr "" + +#, fuzzy, c-format +msgid "Unable to write" +msgstr "Nimeshindwa Kusasisha" + +#, c-format +msgid "Session overload" +msgstr "" + +#, c-format +msgid "User is too active" +msgstr "" + +#, c-format +msgid "Too many sessions" +msgstr "" + +#, fuzzy, c-format +msgid "Passport not verified" +msgstr "(Mwandishi hajathibitishwa)" + +#, c-format +msgid "Bad friend file" +msgstr "" + +#, fuzzy, c-format +msgid "Not expected" +msgstr "Hakuna iliyochaguliwa" + +#, c-format +msgid "Friendly name changes too rapidly" +msgstr "" + +#, fuzzy, c-format +msgid "Server too busy" +msgstr "Seva haipatikani" + +#, fuzzy, c-format +msgid "Authentication failed" +msgstr "Uthibitisho unatakiwa" + +#, c-format +msgid "Not allowed when offline" +msgstr "" + +#, c-format +msgid "Not accepting new users" +msgstr "" + +#, c-format +msgid "Kids Passport without parental consent" +msgstr "" + +#, c-format +msgid "Passport account not yet verified" +msgstr "" + +msgid "Passport account suspended" +msgstr "" + +#, c-format +msgid "Bad ticket" +msgstr "" + +#, fuzzy, c-format +msgid "Unknown Error Code %d" +msgstr "Hitilafu isiyojulikana" + +#, c-format +msgid "MSN Error: %s\n" +msgstr "" + +#, fuzzy +msgid "Other Contacts" +msgstr "Lugha nyinginezo" + +msgid "Non-IM Contacts" +msgstr "" + +msgid "Nudge" +msgstr "" + +#, c-format +msgid "%s has nudged you!" +msgstr "" + +#, c-format +msgid "Nudging %s..." +msgstr "" + +#, fuzzy +msgid "Email Address..." +msgstr "Anwani ya Barua pepe" + +msgid "Your new MSN friendly name is too long." +msgstr "" + +msgid "Set your friendly name." +msgstr "" + +msgid "This is the name that other MSN buddies will see you as." +msgstr "" + +msgid "Set your home phone number." +msgstr "" + +msgid "Set your work phone number." +msgstr "" + +msgid "Set your mobile phone number." +msgstr "" + +msgid "Allow MSN Mobile pages?" +msgstr "" + +msgid "" +"Do you want to allow or disallow people on your buddy list to send you MSN " +"Mobile pages to your cell phone or other mobile device?" +msgstr "" + +msgid "Allow" +msgstr "Ruhusu" + +#, fuzzy +msgid "Disallow" +msgstr "Lemaza" + +#, c-format +msgid "Blocked Text for %s" +msgstr "" + +msgid "No text is blocked for this account." +msgstr "" + +#, c-format +msgid "" +"MSN servers are currently blocking the following regular expressions:
%s" +msgstr "" + +msgid "This account does not have email enabled." +msgstr "" + +msgid "Send a mobile message." +msgstr "" + +#, fuzzy +msgid "Page" +msgstr "Ukurasa wa #" + +msgid "Playing a game" +msgstr "" + +#, fuzzy +msgid "Working" +msgstr "Tahadhari:" + +msgid "Has you" +msgstr "" + +msgid "Home Phone Number" +msgstr "" + +msgid "Work Phone Number" +msgstr "" + +msgid "Mobile Phone Number" +msgstr "" + +msgid "Be Right Back" +msgstr "" + +msgid "Busy" +msgstr "" + +msgid "On the Phone" +msgstr "" + +msgid "Out to Lunch" +msgstr "" + +#. primitive +#. ID +#. name - use default +#. saveable +#. should be user_settable some day +#. independent +msgid "Artist" +msgstr "" + +msgid "Album" +msgstr "" + +#, fuzzy +msgid "Game Title" +msgstr "Mada Fupi" + +msgid "Office Title" +msgstr "" + +msgid "Set Friendly Name..." +msgstr "" + +msgid "Set Home Phone Number..." +msgstr "" + +msgid "Set Work Phone Number..." +msgstr "" + +msgid "Set Mobile Phone Number..." +msgstr "" + +msgid "Enable/Disable Mobile Devices..." +msgstr "" + +msgid "Allow/Disallow Mobile Pages..." +msgstr "" + +msgid "View Blocked Text..." +msgstr "" + +msgid "Open Hotmail Inbox" +msgstr "" + +msgid "Send to Mobile" +msgstr "" + +msgid "Initiate _Chat" +msgstr "" + +msgid "SSL support is needed for MSN. Please install a supported SSL library." +msgstr "" + +msgid "Failed to connect to server." +msgstr "" + +msgid "Error retrieving profile" +msgstr "" + +msgid "General" +msgstr "Ujumla" + +msgid "Age" +msgstr "" + +#, fuzzy +msgid "Occupation" +msgstr "Mahali" + +msgid "Location" +msgstr "Mahali" + +msgid "Hobbies and Interests" +msgstr "" + +msgid "A Little About Me" +msgstr "" + +msgid "Social" +msgstr "" + +msgid "Marital Status" +msgstr "" + +msgid "Interests" +msgstr "" + +#, fuzzy +msgid "Pets" +msgstr "Bonyeza" + +msgid "Hometown" +msgstr "" + +msgid "Places Lived" +msgstr "" + +msgid "Fashion" +msgstr "" + +msgid "Humor" +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Favorite Quote" +msgstr "" + +msgid "Contact Info" +msgstr "" + +#, fuzzy +msgid "Personal" +msgstr "Kipersia" + +msgid "Significant Other" +msgstr "" + +msgid "Home Phone" +msgstr "" + +msgid "Home Phone 2" +msgstr "" + +#, fuzzy +msgid "Home Address" +msgstr "Anwani-IP" + +msgid "Personal Mobile" +msgstr "" + +msgid "Home Fax" +msgstr "" + +msgid "Personal Email" +msgstr "" + +msgid "Personal IM" +msgstr "" + +#, fuzzy +msgid "Anniversary" +msgstr "Universal" + +#. Business +msgid "Work" +msgstr "" + +#, fuzzy +msgid "Job Title" +msgstr "Cheo cha &kazi:" + +msgid "Company" +msgstr "" + +msgid "Department" +msgstr "" + +msgid "Profession" +msgstr "" + +msgid "Work Phone" +msgstr "" + +msgid "Work Phone 2" +msgstr "" + +#, fuzzy +msgid "Work Address" +msgstr "Anwani-IP" + +msgid "Work Mobile" +msgstr "" + +msgid "Work Pager" +msgstr "" + +msgid "Work Fax" +msgstr "" + +msgid "Work Email" +msgstr "" + +msgid "Work IM" +msgstr "" + +#, fuzzy +msgid "Start Date" +msgstr "Anzisha Upya Baadae" + +#, fuzzy +msgid "Favorite Things" +msgstr "Vibwedo" + +#, fuzzy +msgid "Last Updated" +msgstr "Sasisho la mara ya mwisho" + +#, fuzzy +msgid "Homepage" +msgstr "Ukurasa wa &Nyumbani:" + +msgid "The user has not created a public profile." +msgstr "" + +msgid "" +"MSN reported not being able to find the user's profile. This either means " +"that the user does not exist, or that the user exists but has not created a " +"public profile." +msgstr "" + +msgid "" +"Could not find any information in the user's profile. The user most likely " +"does not exist." +msgstr "" + +msgid "View web profile" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. *< summary +msgid "Windows Live Messenger Protocol Plugin" +msgstr "" + +msgid "Use HTTP Method" +msgstr "" + +msgid "HTTP Method Server" +msgstr "" + +msgid "Show custom smileys" +msgstr "" + +msgid "nudge: nudge a user to get their attention" +msgstr "" + +msgid "Windows Live ID authentication:Unable to connect" +msgstr "" + +msgid "Windows Live ID authentication:Invalid response" +msgstr "" + +#, c-format +msgid "%s just sent you a Nudge!" +msgstr "" + +#, fuzzy, c-format +msgid "Unknown error (%d): %s" +msgstr "Hitilafu isiyojulikana" + +#, fuzzy +msgid "Unable to add user" +msgstr "Haiwezi kuongeza moduli" + +#, fuzzy, c-format +msgid "Unknown error (%d)" +msgstr "Hitilafu isiyojulikana" + +msgid "The following users are missing from your addressbook" +msgstr "" + +#, c-format +msgid "Unable to add user on %s (%s)" +msgstr "" + +#, c-format +msgid "Unable to block user on %s (%s)" +msgstr "" + +#, c-format +msgid "Unable to permit user on %s (%s)" +msgstr "" + +#, c-format +msgid "%s could not be added because your buddy list is full." +msgstr "" + +#, c-format +msgid "%s is not a valid passport account." +msgstr "" + +msgid "Service Temporarily Unavailable." +msgstr "" + +#, fuzzy +msgid "Unknown error." +msgstr "Hitilafu isiyojulikana" + +msgid "Mobile message was not sent because it was too long." +msgstr "" + +#, c-format +msgid "" +"The MSN server will shut down for maintenance in %d minute. You will " +"automatically be signed out at that time. Please finish any conversations " +"in progress.\n" +"\n" +"After the maintenance has been completed, you will be able to successfully " +"sign in." +msgid_plural "" +"The MSN server will shut down for maintenance in %d minutes. You will " +"automatically be signed out at that time. Please finish any conversations " +"in progress.\n" +"\n" +"After the maintenance has been completed, you will be able to successfully " +"sign in." +msgstr[0] "" +msgstr[1] "" + +msgid "" +"Message was not sent because the system is unavailable. This normally " +"happens when the user is blocked or does not exist." +msgstr "" + +msgid "Message was not sent because messages are being sent too quickly." +msgstr "" + +msgid "Message was not sent because an unknown encoding error occurred." +msgstr "" + +msgid "Message was not sent because an unknown error occurred." +msgstr "" + +msgid "Unable to connect" +msgstr "Haikuweza kuunganishwa" + +msgid "Writing error" +msgstr "" + +msgid "Reading error" +msgstr "" + +#, c-format +msgid "" +"Connection error from %s server:\n" +"%s" +msgstr "" + +msgid "Our protocol is not supported by the server." +msgstr "" + +msgid "Error parsing HTTP." +msgstr "" + +msgid "You have signed on from another location." +msgstr "" + +msgid "The MSN servers are temporarily unavailable. Please wait and try again." +msgstr "" + +msgid "The MSN servers are going down temporarily." +msgstr "" + +#, c-format +msgid "Unable to authenticate: %s" +msgstr "" + +msgid "" +"Your MSN buddy list is temporarily unavailable. Please wait and try again." +msgstr "" + +msgid "Handshaking" +msgstr "" + +msgid "Transferring" +msgstr "" + +msgid "Starting authentication" +msgstr "" + +#, fuzzy +msgid "Getting cookie" +msgstr "Anza" + +#, fuzzy +msgid "Sending cookie" +msgstr "Tuma Habari…" + +msgid "Retrieving buddy list" +msgstr "" + +msgid "Away From Computer" +msgstr "" + +msgid "On The Phone" +msgstr "" + +msgid "Out To Lunch" +msgstr "" + +msgid "Message may have not been sent because a timeout occurred:" +msgstr "" + +msgid "Message could not be sent, not allowed while invisible:" +msgstr "" + +msgid "Message could not be sent because the user is offline:" +msgstr "" + +msgid "Message could not be sent because a connection error occurred:" +msgstr "" + +msgid "Message could not be sent because we are sending too quickly:" +msgstr "" + +msgid "" +"Message could not be sent because we were unable to establish a session with " +"the server. This is likely a server problem, try again in a few minutes:" +msgstr "" + +msgid "" +"Message could not be sent because an error with the switchboard occurred:" +msgstr "" + +msgid "Message may have not been sent because an unknown error occurred:" +msgstr "" + +msgid "Delete Buddy from Address Book?" +msgstr "" + +msgid "Do you want to delete this buddy from your address book as well?" +msgstr "" + +#, fuzzy +msgid "The username specified is invalid." +msgstr "Nambari mstari iliyoingizwa ni batili." + +msgid "This Hotmail account may not be active." +msgstr "" + +#, fuzzy +msgid "Profile URL" +msgstr "Profile Linatumika" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "MSN Protocol Plugin" +msgstr "" + +#, c-format +msgid "%s is not a valid group." +msgstr "" + +#, c-format +msgid "%s on %s (%s)" +msgstr "" + +#, fuzzy +msgid "Unable to rename group" +msgstr "Haiwezi kufuta moduli" + +#, fuzzy +msgid "Unable to delete group" +msgstr "Haiwezi kufuta moduli" + +#, c-format +msgid "%s has added you to his or her buddy list." +msgstr "" + +#, c-format +msgid "%s has removed you from his or her buddy list." +msgstr "" + +#, c-format +msgid "No such user: %s" +msgstr "" + +msgid "User lookup" +msgstr "" + +msgid "Reading challenge" +msgstr "" + +#, fuzzy +msgid "Unexpected challenge length from server" +msgstr "Mwitiko wa bila kutegemea kutoka kwa seva" + +#, fuzzy +msgid "Logging in" +msgstr "Ingia" + +msgid "MySpaceIM - No Username Set" +msgstr "" + +msgid "You appear to have no MySpace username." +msgstr "" + +msgid "Would you like to set one now? (Note: THIS CANNOT BE CHANGED!)" +msgstr "" + +msgid "Lost connection with server" +msgstr "" + +#. Can't write _()'d strings in array initializers. Workaround. +#. khc: then use N_() in the array initializer and use _() when they are +#. used +msgid "New mail messages" +msgstr "" + +msgid "New blog comments" +msgstr "" + +msgid "New profile comments" +msgstr "" + +msgid "New friend requests!" +msgstr "" + +msgid "New picture comments" +msgstr "" + +#, fuzzy +msgid "MySpace" +msgstr "Nafasi" + +msgid "IM Friends" +msgstr "" + +#, c-format +msgid "" +"%d buddy was added or updated from the server (including buddies already on " +"the server-side list)" +msgid_plural "" +"%d buddies were added or updated from the server (including buddies already " +"on the server-side list)" +msgstr[0] "" +msgstr[1] "" + +msgid "Add contacts from server" +msgstr "" + +#. The session is now set up, ready to be connected. This emits the +#. * signedOn signal, so clients can now do anything with msimprpl, and +#. * we're ready for it (session key, userid, username all setup). +#, fuzzy +msgid "Connected" +msgstr "Unganisho" + +#, c-format +msgid "Protocol error, code %d: %s" +msgstr "" + +#, c-format +msgid "" +"%s Your password is %d characters, greater than the expected maximum length " +"of %d for MySpaceIM. Please shorten your password at http://profileedit." +"myspace.com/index.cfm?fuseaction=accountSettings.changePassword and try " +"again." +msgstr "" + +msgid "MySpaceIM Error" +msgstr "" + +msgid "Invalid input condition" +msgstr "" + +msgid "Read buffer full (2)" +msgstr "" + +msgid "Unparseable message" +msgstr "" + +#, c-format +msgid "Couldn't connect to host: %s (%d)" +msgstr "" + +msgid "Failed to add buddy" +msgstr "" + +msgid "'addbuddy' command failed." +msgstr "" + +msgid "persist command failed" +msgstr "" + +msgid "Failed to remove buddy" +msgstr "" + +msgid "'delbuddy' command failed" +msgstr "" + +msgid "blocklist command failed" +msgstr "" + +#, fuzzy +msgid "Missing Cipher" +msgstr "Faili linalokosekana" + +msgid "The RC4 cipher could not be found" +msgstr "" + +msgid "" +"Upgrade to a libpurple with RC4 support (>= 2.0.1). MySpaceIM plugin will " +"not be loaded." +msgstr "" + +msgid "Add friends from MySpace.com" +msgstr "" + +msgid "Importing friends failed" +msgstr "" + +#. TODO: find out how +msgid "Find people..." +msgstr "" + +msgid "Change IM name..." +msgstr "" + +msgid "myim URL handler" +msgstr "" + +msgid "No suitable MySpaceIM account could be found to open this myim URL." +msgstr "" + +msgid "Enable the proper MySpaceIM account and try again." +msgstr "" + +msgid "Show display name in status text" +msgstr "" + +msgid "Show headline in status text" +msgstr "" + +msgid "Send emoticons" +msgstr "" + +msgid "Screen resolution (dots per inch)" +msgstr "" + +msgid "Base font size (points)" +msgstr "" + +msgid "User" +msgstr "" + +msgid "Headline" +msgstr "" + +#, fuzzy +msgid "Song" +msgstr "Kitonga" + +msgid "Total Friends" +msgstr "" + +#, fuzzy +msgid "Client Version" +msgstr "Toleo Jipya" + +msgid "MySpaceIM - Username Available" +msgstr "" + +msgid "This username is available. Would you like to set it?" +msgstr "" + +msgid "ONCE SET, THIS CANNOT BE CHANGED!" +msgstr "" + +msgid "MySpaceIM - Please Set a Username" +msgstr "" + +msgid "This username is unavailable." +msgstr "" + +msgid "Please try another username:" +msgstr "" + +#. Protocol won't log in now without a username set.. Disconnect +msgid "No username set" +msgstr "" + +msgid "Please enter a username to check its availability:" +msgstr "" + +#. TODO: icons for each zap +#. Lots of comments for translators: +#. Zap means "to strike suddenly and forcefully as if with a +#. * projectile or weapon." This term often has an electrical +#. * connotation, for example, "he was zapped by electricity when +#. * he put a fork in the toaster." +msgid "Zap" +msgstr "" + +#, c-format +msgid "%s has zapped you!" +msgstr "" + +#, c-format +msgid "Zapping %s..." +msgstr "" + +#. Whack means "to hit or strike someone with a sharp blow" +#, fuzzy +msgid "Whack" +msgstr "Nyuma" + +#, c-format +msgid "%s has whacked you!" +msgstr "" + +#, c-format +msgid "Whacking %s..." +msgstr "" + +#. Torch means "to set on fire." Don't worry, this doesn't +#. * make a whole lot of sense in English, either. Feel free +#. * to translate it literally. +#, fuzzy +msgid "Torch" +msgstr "Machi" + +#, c-format +msgid "%s has torched you!" +msgstr "" + +#, c-format +msgid "Torching %s..." +msgstr "" + +#. Smooch means "to kiss someone, often enthusiastically" +msgid "Smooch" +msgstr "" + +#, c-format +msgid "%s has smooched you!" +msgstr "" + +#, c-format +msgid "Smooching %s..." +msgstr "" + +#. A hug is a display of affection; wrapping your arms around someone +#, fuzzy +msgid "Hug" +msgstr "Ago" + +#, c-format +msgid "%s has hugged you!" +msgstr "" + +#, c-format +msgid "Hugging %s..." +msgstr "" + +#. Slap means "to hit someone with an open/flat hand" +msgid "Slap" +msgstr "" + +#, c-format +msgid "%s has slapped you!" +msgstr "" + +#, c-format +msgid "Slapping %s..." +msgstr "" + +#. Goose means "to pinch someone on their butt" +#, fuzzy +msgid "Goose" +msgstr "Google" + +#, c-format +msgid "%s has goosed you!" +msgstr "" + +#, c-format +msgid "Goosing %s..." +msgstr "" + +#. A high-five is when two people's hands slap each other +#. * in the air above their heads. It is done to celebrate +#. * something, often a victory, or to congratulate someone. +msgid "High-five" +msgstr "" + +#, c-format +msgid "%s has high-fived you!" +msgstr "" + +#, c-format +msgid "High-fiving %s..." +msgstr "" + +#. We're not entirely sure what the MySpace people mean by +#. * this... but we think it's the equivalent of "prank." Or, for +#. * someone to perform a mischievous trick or practical joke. +msgid "Punk" +msgstr "" + +#, c-format +msgid "%s has punk'd you!" +msgstr "" + +#, c-format +msgid "Punking %s..." +msgstr "" + +#. Raspberry is a slang term for the vibrating sound made +#. * when you stick your tongue out of your mouth with your +#. * lips closed and blow. It is typically done when +#. * gloating or bragging. Nowadays it's a pretty silly +#. * gesture, so it does not carry a harsh negative +#. * connotation. It is generally used in a playful tone +#. * with friends. +msgid "Raspberry" +msgstr "" + +#, c-format +msgid "%s has raspberried you!" +msgstr "" + +#, c-format +msgid "Raspberrying %s..." +msgstr "" + +msgid "Required parameters not passed in" +msgstr "" + +msgid "Unable to write to network" +msgstr "" + +msgid "Unable to read from network" +msgstr "" + +msgid "Error communicating with server" +msgstr "" + +#, fuzzy +msgid "Conference not found" +msgstr "Mstari haujapatikana" + +#, fuzzy +msgid "Conference does not exist" +msgstr "Faili lililohitajiwa halipo" + +#, fuzzy +msgid "A folder with that name already exists" +msgstr "Ufunguo wenye lakabu kama hii tayari upo." + +#, fuzzy +msgid "Not supported" +msgstr "Haujaanza" + +#, fuzzy +msgid "Password has expired" +msgstr "Nywila inatakiwa" + +#, fuzzy +msgid "Incorrect password" +msgstr "Nywila ya sasa hivi:" + +#, fuzzy +msgid "User not found" +msgstr "Seva haipatikani" + +msgid "Account has been disabled" +msgstr "" + +msgid "The server could not access the directory" +msgstr "" + +msgid "Your system administrator has disabled this operation" +msgstr "" + +msgid "The server is unavailable; try again later" +msgstr "" + +msgid "Cannot add a contact to the same folder twice" +msgstr "" + +msgid "Cannot add yourself" +msgstr "" + +msgid "Master archive is misconfigured" +msgstr "" + +msgid "Incorrect username or password" +msgstr "" + +msgid "Could not recognize the host of the username you entered" +msgstr "" + +msgid "" +"Your account has been disabled because too many incorrect passwords were " +"entered" +msgstr "" + +msgid "You cannot add the same person twice to a conversation" +msgstr "" + +msgid "You have reached your limit for the number of contacts allowed" +msgstr "" + +msgid "You have entered an incorrect username" +msgstr "" + +msgid "An error occurred while updating the directory" +msgstr "" + +msgid "Incompatible protocol version" +msgstr "" + +msgid "The user has blocked you" +msgstr "" + +msgid "" +"This evaluation version does not allow more than ten users to log in at one " +"time" +msgstr "" + +msgid "The user is either offline or you are blocked" +msgstr "" + +#, fuzzy, c-format +msgid "Unknown error: 0x%X" +msgstr "Hitilafu isiyojulikana" + +#, c-format +msgid "Login failed (%s)." +msgstr "" + +#, c-format +msgid "Unable to send message. Could not get details for user (%s)." +msgstr "" + +#, c-format +msgid "Unable to add %s to your buddy list (%s)." +msgstr "" + +#. TODO: Improve this! message to who or for what conference? +#, c-format +msgid "Unable to send message (%s)." +msgstr "" + +#, c-format +msgid "Unable to invite user (%s)." +msgstr "" + +#, c-format +msgid "Unable to send message to %s. Could not create the conference (%s)." +msgstr "" + +#, c-format +msgid "Unable to send message. Could not create the conference (%s)." +msgstr "" + +#, c-format +msgid "" +"Unable to move user %s to folder %s in the server side list. Error while " +"creating folder (%s)." +msgstr "" + +#, c-format +msgid "" +"Unable to add %s to your buddy list. Error creating folder in server side " +"list (%s)." +msgstr "" + +#, c-format +msgid "Could not get details for user %s (%s)." +msgstr "" + +#, c-format +msgid "Unable to add user to privacy list (%s)." +msgstr "" + +#, c-format +msgid "Unable to add %s to deny list (%s)." +msgstr "" + +#, c-format +msgid "Unable to add %s to permit list (%s)." +msgstr "" + +#, c-format +msgid "Unable to remove %s from privacy list (%s)." +msgstr "" + +#, c-format +msgid "Unable to change server side privacy settings (%s)." +msgstr "" + +#, c-format +msgid "Unable to create conference (%s)." +msgstr "" + +msgid "Error communicating with server. Closing connection." +msgstr "" + +msgid "Telephone Number" +msgstr "" + +msgid "Personal Title" +msgstr "" + +msgid "Mailstop" +msgstr "" + +msgid "User ID" +msgstr "" + +#. tag = _("DN"); +#. value = nm_user_record_get_dn(user_record); +#. if (value) { +#. purple_notify_user_info_add_pair(user_info, tag, value); +#. } +#. +#, fuzzy +msgid "Full name" +msgstr "Jina la faili:" + +#, c-format +msgid "GroupWise Conference %d" +msgstr "" + +msgid "Authenticating..." +msgstr "" + +#, fuzzy +msgid "Unable to connect to server." +msgstr "Imeshindwa kuipata seva wakala" + +msgid "Waiting for response..." +msgstr "" + +#, c-format +msgid "%s has been invited to this conversation." +msgstr "" + +msgid "Invitation to Conversation" +msgstr "" + +#, c-format +msgid "" +"Invitation from: %s\n" +"\n" +"Sent: %s" +msgstr "" + +#, fuzzy +msgid "Would you like to join the conversation?" +msgstr "Ungependa kuhifadhi faili hili?" + +msgid "You have been logged out because you logged in at another workstation." +msgstr "" + +#, c-format +msgid "" +"%s appears to be offline and did not receive the message that you just sent." +msgstr "" + +msgid "" +"Unable to connect to server. Please enter the address of the server you wish " +"to connect to." +msgstr "" + +msgid "Error. SSL support is not installed." +msgstr "" + +msgid "This conference has been closed. No more messages can be sent." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Novell GroupWise Messenger Protocol Plugin" +msgstr "" + +msgid "Server address" +msgstr "" + +msgid "Server port" +msgstr "" + +msgid "Could not join chat room" +msgstr "" + +msgid "Invalid chat room name" +msgstr "" + +#, fuzzy +msgid "Server closed the connection." +msgstr "Mwenzi SSL imefunga uunganisho huu" + +#, c-format +msgid "" +"Lost connection with server:\n" +"%s" +msgstr "" + +msgid "Received invalid data on connection with server." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "AIM Protocol Plugin" +msgstr "" + +msgid "ICQ UIN..." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "ICQ Protocol Plugin" +msgstr "" + +#, fuzzy +msgid "Encoding" +msgstr "Kisimba:" + +#, fuzzy +msgid "The remote user has closed the connection." +msgstr "Mwenzi SSL imefunga uunganisho huu" + +msgid "The remote user has declined your request." +msgstr "" + +#, c-format +msgid "Lost connection with the remote user:
%s" +msgstr "" + +msgid "Received invalid data on connection with remote user." +msgstr "" + +msgid "Could not establish a connection with the remote user." +msgstr "" + +msgid "Direct IM established" +msgstr "" + +#, c-format +msgid "" +"%s tried to send you a %s file, but we only allow files up to %s over Direct " +"IM. Try using file transfer instead.\n" +msgstr "" + +#, c-format +msgid "File %s is %s, which is larger than the maximum size of %s." +msgstr "" + +#, fuzzy +msgid "Invalid error" +msgstr "Kizuizi batili" + +#, fuzzy +msgid "Invalid SNAC" +msgstr "Kizuizi batili" + +msgid "Rate to host" +msgstr "" + +msgid "Rate to client" +msgstr "" + +msgid "Service unavailable" +msgstr "" + +msgid "Service not defined" +msgstr "" + +msgid "Obsolete SNAC" +msgstr "" + +msgid "Not supported by host" +msgstr "" + +msgid "Not supported by client" +msgstr "" + +msgid "Refused by client" +msgstr "" + +msgid "Reply too big" +msgstr "" + +msgid "Responses lost" +msgstr "" + +#, fuzzy +msgid "Request denied" +msgstr "Ufikio umekataliwa" + +msgid "Busted SNAC payload" +msgstr "" + +msgid "Insufficient rights" +msgstr "" + +msgid "In local permit/deny" +msgstr "" + +msgid "Warning level too high (sender)" +msgstr "" + +msgid "Warning level too high (receiver)" +msgstr "" + +msgid "User temporarily unavailable" +msgstr "" + +#, fuzzy +msgid "No match" +msgstr "%S oanisho" + +msgid "List overflow" +msgstr "" + +msgid "Request ambiguous" +msgstr "" + +msgid "Queue full" +msgstr "" + +msgid "Not while on AOL" +msgstr "" + +msgid "" +"(There was an error receiving this message. The buddy you are speaking with " +"is probably using a different encoding than expected. If you know what " +"encoding he is using, you can specify it in the advanced account options for " +"your AIM/ICQ account.)" +msgstr "" + +#, c-format +msgid "" +"(There was an error receiving this message. Either you and %s have " +"different encodings selected, or %s has a buggy client.)" +msgstr "" + +#. Label +msgid "Buddy Icon" +msgstr "" + +msgid "Voice" +msgstr "" + +msgid "AIM Direct IM" +msgstr "" + +#, fuzzy +msgid "Get File" +msgstr "Mafaili ya Matini" + +#, fuzzy +msgid "Games" +msgstr "Jina" + +#, fuzzy +msgid "Add-Ins" +msgstr "Nyongeza" + +msgid "Send Buddy List" +msgstr "" + +msgid "ICQ Direct Connect" +msgstr "" + +msgid "AP User" +msgstr "" + +msgid "ICQ RTF" +msgstr "" + +msgid "Nihilist" +msgstr "" + +msgid "ICQ Server Relay" +msgstr "" + +msgid "Old ICQ UTF8" +msgstr "" + +msgid "Trillian Encryption" +msgstr "" + +msgid "ICQ UTF8" +msgstr "" + +msgid "Hiptop" +msgstr "" + +#, fuzzy +msgid "Security Enabled" +msgstr "Levo ya Usalama" + +#, fuzzy +msgid "Video Chat" +msgstr "Podikasti Video" + +msgid "iChat AV" +msgstr "" + +#, fuzzy +msgid "Live Video" +msgstr "Hifadhi video" + +#, fuzzy +msgid "Camera" +msgstr "Cameroon" + +msgid "Screen Sharing" +msgstr "" + +msgid "Free For Chat" +msgstr "" + +msgid "Not Available" +msgstr "Haipatikani" + +msgid "Occupied" +msgstr "" + +msgid "Web Aware" +msgstr "" + +msgid "Invisible" +msgstr "" + +msgid "IP Address" +msgstr "Anwani-IP" + +#, fuzzy +msgid "Warning Level" +msgstr "Jumbe za tahadhari" + +msgid "Buddy Comment" +msgstr "" + +#, c-format +msgid "" +"Could not connect to authentication server:\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"Could not connect to BOS server:\n" +"%s" +msgstr "" + +#, fuzzy +msgid "Username sent" +msgstr "Jina la mtumiaji" + +msgid "Connection established, cookie sent" +msgstr "" + +#. TODO: Don't call this with ssi +msgid "Finalizing connection" +msgstr "" + +#, c-format +msgid "" +"Unable to login: Could not sign on as %s because the username is invalid. " +"Usernames must be a valid email address, or start with a letter and contain " +"only letters, numbers and spaces, or contain only numbers." +msgstr "" + +#. Unregistered username +#. uid is not exist +#, fuzzy +msgid "Invalid username." +msgstr "Jina batili la moduli." + +#, fuzzy +msgid "Incorrect password." +msgstr "Nywila ya sasa hivi:" + +#. Suspended account +msgid "Your account is currently suspended." +msgstr "" + +#. service temporarily unavailable +msgid "The AOL Instant Messenger service is temporarily unavailable." +msgstr "" + +#. username connecting too frequently +#. IP address connecting too frequently +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 "" + +#, c-format +msgid "The client version you are using is too old. Please upgrade at %s" +msgstr "" + +#, fuzzy +msgid "Could Not Connect" +msgstr "Imeshindwa kuunganisha" + +msgid "Received authorization" +msgstr "" + +#, fuzzy +msgid "The SecurID key entered is invalid." +msgstr "Nambari mstari iliyoingizwa ni batili." + +msgid "Enter SecurID" +msgstr "" + +msgid "Enter the 6 digit number from the digital display." +msgstr "" + +#. * +#. * A wrapper for purple_request_action() that uses @c OK and @c Cancel buttons. +#. +#, fuzzy +msgid "_OK" +msgstr "Sawa" + +#, c-format +msgid "You may be disconnected shortly. If so, check %s for updates." +msgstr "" + +msgid "Unable to get a valid AIM login hash." +msgstr "" + +#, c-format +msgid "You may be disconnected shortly. Check %s for updates." +msgstr "" + +msgid "Unable to get a valid login hash." +msgstr "" + +#, fuzzy +msgid "Password sent" +msgstr "Nywila" + +msgid "Unable to initialize connection" +msgstr "" + +msgid "Please authorize me so I can add you to my buddy list." +msgstr "" + +msgid "Authorization Request Message:" +msgstr "" + +msgid "Please authorize me!" +msgstr "" + +msgid "No reason given." +msgstr "" + +msgid "Authorization Denied Message:" +msgstr "" + +#, c-format +msgid "" +"The user %u has denied your request to add them to your buddy list for the " +"following reason:\n" +"%s" +msgstr "" + +msgid "ICQ authorization denied." +msgstr "" + +#. Someone has granted you authorization +#, c-format +msgid "The user %u has granted your request to add them to your buddy list." +msgstr "" + +#, c-format +msgid "" +"You have received a special message\n" +"\n" +"From: %s [%s]\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"You have received an ICQ page\n" +"\n" +"From: %s [%s]\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"You have received an ICQ email from %s [%s]\n" +"\n" +"Message is:\n" +"%s" +msgstr "" + +#, c-format +msgid "ICQ user %u has sent you a buddy: %s (%s)" +msgstr "" + +msgid "Do you want to add this buddy to your buddy list?" +msgstr "" + +#, fuzzy +msgid "_Add" +msgstr "Ongeza" + +msgid "_Decline" +msgstr "" + +#, c-format +msgid "You missed %hu message from %s because it was invalid." +msgid_plural "You missed %hu messages from %s because they were invalid." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "You missed %hu message from %s because it was too large." +msgid_plural "You missed %hu messages from %s because they were too large." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "" +"You missed %hu message from %s because the rate limit has been exceeded." +msgid_plural "" +"You missed %hu messages from %s because the rate limit has been exceeded." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "" +"You missed %hu message from %s because his/her warning level is too high." +msgid_plural "" +"You missed %hu messages from %s because his/her warning level is too high." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "You missed %hu message from %s because your warning level is too high." +msgid_plural "" +"You missed %hu messages from %s because your warning level is too high." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "You missed %hu message from %s for an unknown reason." +msgid_plural "You missed %hu messages from %s for an unknown reason." +msgstr[0] "" +msgstr[1] "" + +#. Data is assumed to be the destination bn +#, c-format +msgid "Unable to send message: %s" +msgstr "" + +#, fuzzy +msgid "Unknown reason." +msgstr "Hitilafu isiyojulikana" + +#, c-format +msgid "Unable to send message to %s:" +msgstr "" + +#, c-format +msgid "User information not available: %s" +msgstr "" + +msgid "Online Since" +msgstr "" + +msgid "Member Since" +msgstr "" + +msgid "Profile" +msgstr "" + +msgid "Your AIM connection may be lost." +msgstr "" + +#. The conversion failed! +msgid "" +"[Unable to display a message from this user because it contained invalid " +"characters.]" +msgstr "" + +msgid "" +"The last action you attempted could not be performed because you are over " +"the rate limit. Please wait 10 seconds and try again." +msgstr "" + +#, c-format +msgid "You have been disconnected from chat room %s." +msgstr "" + +msgid "Mobile Phone" +msgstr "" + +msgid "Personal Web Page" +msgstr "" + +#. aim_userinfo_t +#. strip_html_tags +#, fuzzy +msgid "Additional Information" +msgstr "Inachunguza taarifa" + +msgid "Zip Code" +msgstr "" + +#, fuzzy +msgid "Work Information" +msgstr "Taarifa Zaidi" + +msgid "Division" +msgstr "" + +#, fuzzy +msgid "Position" +msgstr "Nafasi:" + +msgid "Web Page" +msgstr "" + +msgid "Pop-Up Message" +msgstr "" + +#, c-format +msgid "The following username is associated with %s" +msgid_plural "The following usernames are associated with %s" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "No results found for email address %s" +msgstr "" + +#, c-format +msgid "You should receive an email asking to confirm %s." +msgstr "" + +msgid "Account Confirmation Requested" +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to format username because the requested name differs " +"from the original." +msgstr "" + +#, c-format +msgid "Error 0x%04x: Unable to format username because it is invalid." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to format username because the requested name is too " +"long." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to change email address because there is already a " +"request pending for this username." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to change email address because the given address has " +"too many usernames associated with it." +msgstr "" + +#, c-format +msgid "" +"Error 0x%04x: Unable to change email address because the given address is " +"invalid." +msgstr "" + +#, c-format +msgid "Error 0x%04x: Unknown error." +msgstr "" + +msgid "Error Changing Account Info" +msgstr "" + +#, c-format +msgid "The email address for %s is %s" +msgstr "" + +msgid "Account Info" +msgstr "" + +msgid "" +"Your IM Image was not sent. You must be Direct Connected to send IM Images." +msgstr "" + +msgid "Unable to set AIM profile." +msgstr "" + +msgid "" +"You have probably requested to set your profile before the login procedure " +"completed. Your profile remains unset; try setting it again when you are " +"fully connected." +msgstr "" + +#, c-format +msgid "" +"The maximum profile length of %d byte has been exceeded. It has been " +"truncated for you." +msgid_plural "" +"The maximum profile length of %d bytes has been exceeded. It has been " +"truncated for you." +msgstr[0] "" +msgstr[1] "" + +msgid "Profile too long." +msgstr "" + +#, c-format +msgid "" +"The maximum away message length of %d byte has been exceeded. It has been " +"truncated for you." +msgid_plural "" +"The maximum away message length of %d bytes has been exceeded. It has been " +"truncated for you." +msgstr[0] "" +msgstr[1] "" + +msgid "Away message too long." +msgstr "" + +#, c-format +msgid "" +"Could not add the buddy %s because the username is invalid. Usernames must " +"be a valid email address, or start with a letter and contain only letters, " +"numbers and spaces, or contain only numbers." +msgstr "" + +#, fuzzy +msgid "Unable to Add" +msgstr "Nimeshindwa Kusasisha" + +msgid "Unable to Retrieve Buddy List" +msgstr "" + +msgid "" +"The AIM servers were temporarily unable to send your buddy list. Your buddy " +"list is not lost, and will probably become available in a few minutes." +msgstr "" + +msgid "Orphans" +msgstr "" + +#, c-format +msgid "" +"Could not add the buddy %s because you have too many buddies in your buddy " +"list. Please remove one and try again." +msgstr "" + +#, fuzzy +msgid "(no name)" +msgstr "(hakuna lakabu)" + +#, c-format +msgid "Could not add the buddy %s for an unknown reason." +msgstr "" + +#, c-format +msgid "" +"The user %s has given you permission to add him or her to your buddy list. " +"Do you want to add this user?" +msgstr "" + +msgid "Authorization Given" +msgstr "" + +#. Granted +#, c-format +msgid "The user %s has granted your request to add them to your buddy list." +msgstr "" + +msgid "Authorization Granted" +msgstr "" + +#. Denied +#, c-format +msgid "" +"The user %s has denied your request to add them to your buddy list for the " +"following reason:\n" +"%s" +msgstr "" + +#, fuzzy +msgid "Authorization Denied" +msgstr "Uthibitisho unatakiwa" + +msgid "_Exchange:" +msgstr "" + +msgid "Your IM Image was not sent. You cannot send IM Images in AIM chats." +msgstr "" + +msgid "iTunes Music Store Link" +msgstr "" + +#, c-format +msgid "Buddy Comment for %s" +msgstr "" + +msgid "Buddy Comment:" +msgstr "" + +#, c-format +msgid "You have selected to open a Direct IM connection with %s." +msgstr "" + +msgid "" +"Because this reveals your IP address, it may be considered a security risk. " +"Do you wish to continue?" +msgstr "" + +#, fuzzy +msgid "C_onnect" +msgstr "Yaliyomo" + +msgid "Get AIM Info" +msgstr "" + +#. We only do this if the user is in our buddy list +msgid "Edit Buddy Comment" +msgstr "" + +msgid "Get Status Msg" +msgstr "" + +#, fuzzy +msgid "Direct IM" +msgstr "Mwelekeo" + +msgid "Re-request Authorization" +msgstr "" + +msgid "Require authorization" +msgstr "" + +msgid "Web aware (enabling this will cause you to receive SPAM!)" +msgstr "" + +msgid "ICQ Privacy Options" +msgstr "" + +msgid "The new formatting is invalid." +msgstr "" + +msgid "Username formatting can change only capitalization and whitespace." +msgstr "" + +msgid "Change Address To:" +msgstr "" + +msgid "you are not waiting for authorization" +msgstr "" + +msgid "You are awaiting authorization from the following buddies" +msgstr "" + +msgid "" +"You can re-request authorization from these buddies by right-clicking on " +"them and selecting \"Re-request Authorization.\"" +msgstr "" + +msgid "Find Buddy by Email" +msgstr "" + +msgid "Search for a buddy by email address" +msgstr "" + +msgid "Type the email address of the buddy you are searching for." +msgstr "" + +#, fuzzy +msgid "_Search" +msgstr "Tafuta" + +msgid "Set User Info (web)..." +msgstr "" + +#, fuzzy +msgid "Change Password (web)" +msgstr "Badil &Nywila" + +msgid "Configure IM Forwarding (web)" +msgstr "" + +#. ICQ actions +msgid "Set Privacy Options..." +msgstr "" + +#. AIM actions +#, fuzzy +msgid "Confirm Account" +msgstr "Thibitisha kufunga" + +msgid "Display Currently Registered Email Address" +msgstr "" + +msgid "Change Currently Registered Email Address..." +msgstr "" + +msgid "Show Buddies Awaiting Authorization" +msgstr "" + +msgid "Search for Buddy by Email Address..." +msgstr "" + +msgid "Search for Buddy by Information" +msgstr "" + +msgid "" +"Always use AIM/ICQ proxy server for\n" +"file transfers and direct IM (slower,\n" +"but does not reveal your IP address)" +msgstr "" + +msgid "Allow multiple simultaneous logins" +msgstr "" + +#, c-format +msgid "Asking %s to connect to us at %s:%hu for Direct IM." +msgstr "" + +#, c-format +msgid "Attempting to connect to %s:%hu." +msgstr "" + +msgid "Attempting to connect via proxy server." +msgstr "" + +#, c-format +msgid "%s has just asked to directly connect to %s" +msgstr "" + +msgid "" +"This requires a direct connection between the two computers and is necessary " +"for IM Images. Because your IP address will be revealed, this may be " +"considered a privacy risk." +msgstr "" + +msgid "Aquarius" +msgstr "" + +msgid "Pisces" +msgstr "" + +msgid "Aries" +msgstr "" + +#, fuzzy +msgid "Taurus" +msgstr "Kinauru" + +msgid "Gemini" +msgstr "" + +#, fuzzy +msgid "Cancer" +msgstr "Ghairi" + +#, fuzzy +msgid "Leo" +msgstr "Lao" + +msgid "Virgo" +msgstr "" + +#, fuzzy +msgid "Libra" +msgstr "Libya" + +msgid "Scorpio" +msgstr "" + +msgid "Sagittarius" +msgstr "" + +msgid "Capricorn" +msgstr "" + +#, fuzzy +msgid "Rat" +msgstr "Jmosi" + +msgid "Ox" +msgstr "" + +#, fuzzy +msgid "Tiger" +msgstr "Niger" + +#, fuzzy +msgid "Rabbit" +msgstr "Mibbit" + +msgid "Dragon" +msgstr "" + +#, fuzzy +msgid "Snake" +msgstr "Hifadhi" + +#, fuzzy +msgid "Horse" +msgstr "Nyumbani" + +msgid "Goat" +msgstr "" + +#, fuzzy +msgid "Monkey" +msgstr "Jumatatu" + +#, fuzzy +msgid "Rooster" +msgstr "Mwandishi wa habari" + +msgid "Dog" +msgstr "" + +msgid "Pig" +msgstr "" + +#, fuzzy +msgid "Other" +msgstr "Wengine" + +#, fuzzy +msgid "Visible" +msgstr "Lemaza" + +msgid "Friend Only" +msgstr "" + +#, fuzzy +msgid "Private" +msgstr "Faragha" + +msgid "QQ Number" +msgstr "" + +msgid "Country/Region" +msgstr "" + +msgid "Province/State" +msgstr "" + +#, fuzzy +msgid "Zipcode" +msgstr "Folda la Zipu" + +msgid "Phone Number" +msgstr "" + +msgid "Authorize adding" +msgstr "" + +msgid "Cellphone Number" +msgstr "" + +msgid "Personal Introduction" +msgstr "" + +msgid "City/Area" +msgstr "" + +msgid "Publish Mobile" +msgstr "" + +msgid "Publish Contact" +msgstr "" + +#, fuzzy +msgid "College" +msgstr "Kunja" + +msgid "Horoscope" +msgstr "" + +msgid "Zodiac" +msgstr "" + +#, fuzzy +msgid "Blood" +msgstr "Zuia" + +#, fuzzy +msgid "True" +msgstr "Jnne" + +#, fuzzy +msgid "False" +msgstr "si kweli" + +msgid "Modify Contact" +msgstr "" + +#, fuzzy +msgid "Modify Address" +msgstr "Anwani ya Barua pepe" + +msgid "Modify Extended Information" +msgstr "" + +#, fuzzy +msgid "Modify Information" +msgstr "Taarifa Zaidi" + +msgid "Update" +msgstr "Sasisha" + +msgid "Could not change buddy information." +msgstr "" + +#, fuzzy +msgid "Mobile" +msgstr "Moduli" + +#, fuzzy +msgid "Note" +msgstr "Bila" + +#. callback +msgid "Buddy Memo" +msgstr "" + +msgid "Change his/her memo as you like" +msgstr "" + +#, fuzzy +msgid "_Modify" +msgstr "R&ekebisha" + +msgid "Memo Modify" +msgstr "" + +msgid "Server says:" +msgstr "" + +msgid "Your request was accepted." +msgstr "" + +msgid "Your request was rejected." +msgstr "" + +#, c-format +msgid "%u requires verification" +msgstr "" + +msgid "Add buddy question" +msgstr "" + +#, fuzzy +msgid "Enter answer here" +msgstr "Ingiza neno tafuti:" + +#, fuzzy +msgid "Send" +msgstr "Kivenda" + +#, fuzzy +msgid "Invalid answer." +msgstr "Agumenti batili" + +msgid "Authorization denied message:" +msgstr "" + +msgid "Sorry, you're not my style." +msgstr "" + +#, c-format +msgid "%u needs authorization" +msgstr "" + +msgid "Add buddy authorize" +msgstr "" + +msgid "Enter request here" +msgstr "" + +msgid "Would you be my friend?" +msgstr "" + +msgid "QQ Buddy" +msgstr "" + +msgid "Add buddy" +msgstr "" + +msgid "Invalid QQ Number" +msgstr "" + +msgid "Failed sending authorize" +msgstr "" + +#, c-format +msgid "Failed removing buddy %u" +msgstr "" + +#, c-format +msgid "Failed removing me from %d's buddy list" +msgstr "" + +msgid "No reason given" +msgstr "" + +#. only need to get value +#, c-format +msgid "You have been added by %s" +msgstr "" + +#, fuzzy +msgid "Would you like to add him?" +msgstr "Ungependa kuhifadhi faili hili?" + +#, c-format +msgid "Rejected by %s" +msgstr "" + +#, fuzzy, c-format +msgid "Message: %s" +msgstr "Ujumbe" + +msgid "ID: " +msgstr "" + +#, fuzzy +msgid "Group ID" +msgstr "Kusanya kwa:" + +msgid "QQ Qun" +msgstr "" + +msgid "Please enter Qun number" +msgstr "" + +msgid "You can only search for permanent Qun\n" +msgstr "" + +msgid "(Invalid UTF-8 string)" +msgstr "" + +#, fuzzy +msgid "Not member" +msgstr "Novemba" + +#, fuzzy +msgid "Member" +msgstr "Novemba" + +msgid "Requesting" +msgstr "" + +msgid "Admin" +msgstr "" + +msgid "Notice" +msgstr "" + +#, fuzzy +msgid "Detail" +msgstr "Ufafanuzi" + +msgid "Creator" +msgstr "" + +#, fuzzy +msgid "About me" +msgstr "Kuhusu %S" + +msgid "Category" +msgstr "" + +msgid "The Qun does not allow others to join" +msgstr "" + +msgid "Join QQ Qun" +msgstr "" + +msgid "Input request here" +msgstr "" + +#, c-format +msgid "Successfully joined Qun %s (%u)" +msgstr "" + +#, fuzzy +msgid "Successfully joined Qun" +msgstr "Imesakinishwa kimafanikio %S." + +#, c-format +msgid "Qun %u denied from joining" +msgstr "" + +msgid "QQ Qun Operation" +msgstr "" + +#, fuzzy +msgid "Failed:" +msgstr "Imeshindwa" + +msgid "Join Qun, Unknown Reply" +msgstr "" + +#, fuzzy +msgid "Quit Qun" +msgstr "Funga %s" + +msgid "" +"Note, if you are the creator, \n" +"this operation will eventually remove this Qun." +msgstr "" + +msgid "Sorry, you are not our style" +msgstr "" + +msgid "Successfully changed Qun members" +msgstr "" + +msgid "Successfully changed Qun information" +msgstr "" + +msgid "You have successfully created a Qun" +msgstr "" + +msgid "Would you like to set up detailed information now?" +msgstr "" + +#, fuzzy +msgid "Setup" +msgstr "Sep" + +#, c-format +msgid "%u requested to join Qun %u for %s" +msgstr "" + +#, c-format +msgid "%u request to join Qun %u" +msgstr "" + +#, c-format +msgid "Failed to join Qun %u, operated by admin %u" +msgstr "" + +#, c-format +msgid "Joining Qun %u is approved by admin %u for %s" +msgstr "" + +#, c-format +msgid "Removed buddy %u." +msgstr "" + +#, c-format +msgid "New buddy %u joined." +msgstr "" + +#, fuzzy, c-format +msgid "Unknown-%d" +msgstr "Isiyojulikana: %S" + +#, fuzzy +msgid "Level" +msgstr "Lebo" + +msgid " VIP" +msgstr "" + +msgid " TCP" +msgstr "" + +msgid " FromMobile" +msgstr "" + +msgid " BindMobile" +msgstr "" + +#, fuzzy +msgid " Video" +msgstr "Hifadhi video" + +#, fuzzy +msgid " Zone" +msgstr "Bila" + +#, fuzzy +msgid "Flag" +msgstr "Kifulah" + +msgid "Ver" +msgstr "" + +#, fuzzy +msgid "Invalid name" +msgstr "Njia batili" + +msgid "Select icon..." +msgstr "" + +#, c-format +msgid "Login time: %d-%d-%d, %d:%d:%d
\n" +msgstr "" + +#, c-format +msgid "Total Online Buddies: %d
\n" +msgstr "" + +#, c-format +msgid "Last Refresh: %d-%d-%d, %d:%d:%d
\n" +msgstr "" + +#, c-format +msgid "Server: %s
\n" +msgstr "" + +#, c-format +msgid "Client Tag: %s
\n" +msgstr "" + +#, c-format +msgid "Connection Mode: %s
\n" +msgstr "" + +#, c-format +msgid "My Internet IP: %s:%d
\n" +msgstr "" + +#, c-format +msgid "Sent: %lu
\n" +msgstr "" + +#, c-format +msgid "Resend: %lu
\n" +msgstr "" + +#, c-format +msgid "Lost: %lu
\n" +msgstr "" + +#, c-format +msgid "Received: %lu
\n" +msgstr "" + +#, c-format +msgid "Received Duplicate: %lu
\n" +msgstr "" + +#, c-format +msgid "Time: %d-%d-%d, %d:%d:%d
\n" +msgstr "" + +#, c-format +msgid "IP: %s
\n" +msgstr "" + +#, fuzzy +msgid "Login Information" +msgstr "Taarifa Zaidi" + +msgid "

Original Author:
\n" +msgstr "" + +msgid "

Code Contributors:
\n" +msgstr "" + +msgid "

Lovely Patch Writers:
\n" +msgstr "" + +msgid "

Acknowledgement:
\n" +msgstr "" + +msgid "

Scrupulous Testers:
\n" +msgstr "" + +msgid "and more, please let me know... thank you!))" +msgstr "" + +msgid "

And, all the boys in the backroom...
\n" +msgstr "" + +msgid "Feel free to join us! :)" +msgstr "" + +#, c-format +msgid "About OpenQ %s" +msgstr "" + +msgid "Change Icon" +msgstr "" + +#, fuzzy +msgid "Change Password" +msgstr "Badil &Nywila" + +#, fuzzy +msgid "Account Information" +msgstr "Inachunguza taarifa" + +msgid "Update all QQ Quns" +msgstr "" + +msgid "About OpenQ" +msgstr "" + +msgid "Modify Buddy Memo" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "QQ Protocol Plugin" +msgstr "" + +msgid "Auto" +msgstr "" + +#, fuzzy +msgid "Select Server" +msgstr "SSL Seva" + +msgid "QQ2005" +msgstr "" + +msgid "QQ2007" +msgstr "" + +msgid "QQ2008" +msgstr "" + +msgid "Connect by TCP" +msgstr "" + +msgid "Show server notice" +msgstr "" + +msgid "Show server news" +msgstr "" + +msgid "Show chat room when msg comes" +msgstr "" + +msgid "Keep alive interval (seconds)" +msgstr "" + +msgid "Update interval (seconds)" +msgstr "" + +msgid "Cannot decrypt server reply" +msgstr "" + +#, c-format +msgid "Failed requesting token, 0x%02X" +msgstr "" + +#, c-format +msgid "Invalid token len, %d" +msgstr "" + +#. extend redirect used in QQ2006 +msgid "Redirect_EX is not currently supported" +msgstr "" + +#. need activation +#. need activation +#. need activation +#, fuzzy +msgid "Activation required" +msgstr "Uthibitisho unatakiwa" + +#, c-format +msgid "Unknown reply code when logging in (0x%02X)" +msgstr "" + +msgid "Could not decrypt server reply" +msgstr "" + +msgid "Requesting captcha" +msgstr "" + +msgid "Checking captcha" +msgstr "" + +msgid "Failed captcha verification" +msgstr "" + +#, fuzzy +msgid "Captcha Image" +msgstr "Naki&li Picha" + +msgid "Enter code" +msgstr "" + +msgid "QQ Captcha Verification" +msgstr "" + +msgid "Enter the text from the image" +msgstr "" + +#, c-format +msgid "Unknown reply when checking password (0x%02X)" +msgstr "" + +#, c-format +msgid "" +"Unknown reply code when logging in (0x%02X):\n" +"%s" +msgstr "" + +#, fuzzy +msgid "Unable to connect." +msgstr "Haikuweza kuunganishwa" + +#, fuzzy +msgid "Socket error" +msgstr "Hitilafu ya hati" + +msgid "Unable to read from socket" +msgstr "" + +#, fuzzy +msgid "Write Error" +msgstr "Hitilafu ya Printa" + +#, fuzzy +msgid "Connection lost" +msgstr "Unganisho" + +#, fuzzy +msgid "Getting server" +msgstr "Anza" + +msgid "Requesting token" +msgstr "" + +msgid "Couldn't resolve host" +msgstr "" + +msgid "Invalid server or port" +msgstr "" + +#, fuzzy +msgid "Connecting to server" +msgstr "Naunganisha na %1$S…" + +#, fuzzy +msgid "QQ Error" +msgstr "Hitikafu " + +#, c-format +msgid "" +"Server News:\n" +"%s\n" +"%s\n" +"%s" +msgstr "" + +#, c-format +msgid "%s:%s" +msgstr "" + +#, fuzzy, c-format +msgid "From %s:" +msgstr "Kutoka %S" + +#, c-format +msgid "" +"Server notice From %s: \n" +"%s" +msgstr "" + +msgid "Unknown SERVER CMD" +msgstr "" + +#, c-format +msgid "" +"Error reply of %s(0x%02X)\n" +"Room %u, reply 0x%02X" +msgstr "" + +msgid "QQ Qun Command" +msgstr "" + +msgid "Could not decrypt login reply" +msgstr "" + +msgid "Unknown LOGIN CMD" +msgstr "" + +msgid "Unknown CLIENT CMD" +msgstr "" + +#, c-format +msgid "%d has declined the file %s" +msgstr "" + +msgid "File Send" +msgstr "" + +#, c-format +msgid "%d canceled the transfer of %s" +msgstr "" + +msgid "Connection closed (writing)" +msgstr "" + +#, c-format +msgid "Group Title: %s
" +msgstr "" + +#, c-format +msgid "Notes Group ID: %s
" +msgstr "" + +#, c-format +msgid "Info for Group %s" +msgstr "" + +msgid "Notes Address Book Information" +msgstr "" + +msgid "Invite Group to Conference..." +msgstr "" + +msgid "Get Notes Address Book Info" +msgstr "" + +msgid "Sending Handshake" +msgstr "" + +msgid "Waiting for Handshake Acknowledgement" +msgstr "" + +msgid "Handshake Acknowledged, Sending Login" +msgstr "" + +msgid "Waiting for Login Acknowledgement" +msgstr "" + +msgid "Login Redirected" +msgstr "" + +msgid "Forcing Login" +msgstr "" + +msgid "Login Acknowledged" +msgstr "" + +msgid "Starting Services" +msgstr "" + +#, c-format +msgid "" +"A Sametime administrator has issued the following announcement on server %s" +msgstr "" + +msgid "Sametime Administrator Announcement" +msgstr "" + +#, fuzzy +msgid "Connection reset" +msgstr "Muunganisho ulikataliwa" + +#, fuzzy, c-format +msgid "Error reading from socket: %s" +msgstr "Hitilafu ya upakiaji lahamtindo: %S" + +#. this is a regular connect, error out +#, fuzzy +msgid "Unable to connect to host" +msgstr "Haikuweza kuunganishwa" + +#, c-format +msgid "Announcement from %s" +msgstr "" + +msgid "Conference Closed" +msgstr "" + +msgid "Unable to send message: " +msgstr "" + +msgid "Place Closed" +msgstr "" + +msgid "Microphone" +msgstr "" + +#, fuzzy +msgid "Speakers" +msgstr "Seva" + +#, fuzzy +msgid "Video Camera" +msgstr "Kicheza Video" + +msgid "Supports" +msgstr "" + +msgid "External User" +msgstr "" + +msgid "Create conference with user" +msgstr "" + +#, c-format +msgid "" +"Please enter a topic for the new conference, and an invitation message to be " +"sent to %s" +msgstr "" + +msgid "New Conference" +msgstr "" + +#, fuzzy +msgid "Create" +msgstr "Kicree" + +#, fuzzy +msgid "Available Conferences" +msgstr "Profaili Zipatikanazo" + +msgid "Create New Conference..." +msgstr "" + +msgid "Invite user to a conference" +msgstr "" + +#, c-format +msgid "" +"Select a conference from the list below to send an invite to user %s. Select " +"\"Create New Conference\" if you'd like to create a new conference to invite " +"this user to." +msgstr "" + +msgid "Invite to Conference" +msgstr "" + +msgid "Invite to Conference..." +msgstr "" + +msgid "Send TEST Announcement" +msgstr "" + +msgid "Topic:" +msgstr "" + +msgid "No Sametime Community Server specified" +msgstr "" + +#, c-format +msgid "" +"No host or IP address has been configured for the Meanwhile account %s. " +"Please enter one below to continue logging in." +msgstr "" + +msgid "Meanwhile Connection Setup" +msgstr "" + +msgid "No Sametime Community Server Specified" +msgstr "" + +#, fuzzy +msgid "Connect" +msgstr "Yaliyomo" + +#, c-format +msgid "Unknown (0x%04x)
" +msgstr "" + +msgid "Last Known Client" +msgstr "" + +#, fuzzy +msgid "User Name" +msgstr "Jina la Mtumiaji:" + +msgid "Sametime ID" +msgstr "" + +msgid "An ambiguous user ID was entered" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' may possibly refer to any of the following users. Please " +"select the correct user from the list below to add them to your buddy list." +msgstr "" + +#, fuzzy +msgid "Select User" +msgstr "Chagua &Yote" + +msgid "Unable to add user: user not found" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' did not match any users in your Sametime community. This " +"entry has been removed from your buddy list." +msgstr "" + +#, c-format +msgid "" +"Error reading file %s: \n" +"%s\n" +msgstr "" + +msgid "Remotely Stored Buddy List" +msgstr "" + +msgid "Buddy List Storage Mode" +msgstr "" + +msgid "Local Buddy List Only" +msgstr "" + +msgid "Merge List from Server" +msgstr "" + +msgid "Merge and Save List to Server" +msgstr "" + +msgid "Synchronize List with Server" +msgstr "" + +#, c-format +msgid "Import Sametime List for Account %s" +msgstr "" + +#, c-format +msgid "Export Sametime List for Account %s" +msgstr "" + +msgid "Unable to add group: group exists" +msgstr "" + +#, c-format +msgid "A group named '%s' already exists in your buddy list." +msgstr "" + +#, fuzzy +msgid "Unable to add group" +msgstr "Haiwezi kuongeza moduli" + +msgid "Possible Matches" +msgstr "" + +msgid "Notes Address Book group results" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' may possibly refer to any of the following Notes Address " +"Book groups. Please select the correct group from the list below to add it " +"to your buddy list." +msgstr "" + +msgid "Select Notes Address Book" +msgstr "" + +msgid "Unable to add group: group not found" +msgstr "" + +#, c-format +msgid "" +"The identifier '%s' did not match any Notes Address Book groups in your " +"Sametime community." +msgstr "" + +msgid "Notes Address Book Group" +msgstr "" + +msgid "" +"Enter the name of a Notes Address Book group in the field below to add the " +"group and its members to your buddy list." +msgstr "" + +#, fuzzy, c-format +msgid "Search results for '%s'" +msgstr "Majibu ya kutafutwa kwa" + +#, c-format +msgid "" +"The identifier '%s' may possibly refer to any of the following users. You " +"may add these users to your buddy list or send them messages with the action " +"buttons below." +msgstr "" + +#, fuzzy +msgid "Search Results" +msgstr "Tafuta matokeo" + +#, fuzzy +msgid "No matches" +msgstr "%S maoanisho" + +#, c-format +msgid "The identifier '%s' did not match any users in your Sametime community." +msgstr "" + +#, fuzzy +msgid "No Matches" +msgstr "%S maoanisho" + +msgid "Search for a user" +msgstr "" + +msgid "" +"Enter a name or partial ID in the field below to search for matching users " +"in your Sametime community." +msgstr "" + +#, fuzzy +msgid "User Search" +msgstr "Tafuti Mpya" + +msgid "Import Sametime List..." +msgstr "" + +msgid "Export Sametime List..." +msgstr "" + +msgid "Add Notes Address Book Group..." +msgstr "" + +msgid "User Search..." +msgstr "" + +msgid "Force login (ignore server redirects)" +msgstr "" + +#. pretend to be Sametime Connect +msgid "Hide client identity" +msgstr "" + +#, c-format +msgid "User %s is not present in the network" +msgstr "" + +msgid "Key Agreement" +msgstr "Makubaliano Muhimu" + +msgid "Cannot perform the key agreement" +msgstr "" + +msgid "Error occurred during key agreement" +msgstr "" + +#, fuzzy +msgid "Key Agreement failed" +msgstr "Makubaliano Muhimu" + +msgid "Timeout during key agreement" +msgstr "" + +msgid "Key agreement was aborted" +msgstr "" + +msgid "Key agreement is already started" +msgstr "" + +msgid "Key agreement cannot be started with yourself" +msgstr "" + +msgid "The remote user is not present in the network any more" +msgstr "" + +#, c-format +msgid "" +"Key agreement request received from %s. Would you like to perform the key " +"agreement?" +msgstr "" + +#, c-format +msgid "" +"The remote user is waiting key agreement on:\n" +"Remote host: %s\n" +"Remote port: %d" +msgstr "" + +#, fuzzy +msgid "Key Agreement Request" +msgstr "Makubaliano Muhimu" + +msgid "IM With Password" +msgstr "" + +msgid "Cannot set IM key" +msgstr "" + +#, fuzzy +msgid "Set IM Password" +msgstr "Onyesha Nywila" + +#, fuzzy +msgid "Get Public Key" +msgstr "Ufunguo Huria wa Muhusika" + +msgid "Cannot fetch the public key" +msgstr "" + +#, fuzzy +msgid "Show Public Key" +msgstr "Ufunguo Huria wa Muhusika" + +msgid "Could not load public key" +msgstr "" + +#, fuzzy +msgid "User Information" +msgstr "Taarifa Zaidi" + +msgid "Cannot get user information" +msgstr "" + +#, c-format +msgid "The %s buddy is not trusted" +msgstr "" + +msgid "" +"You cannot receive buddy notifications until you import his/her public key. " +"You can use the Get Public Key command to get the public key." +msgstr "" + +#. Open file selector to select the public key. +msgid "Open..." +msgstr "" + +#, c-format +msgid "The %s buddy is not present in the network" +msgstr "" + +msgid "" +"To add the buddy you must import his/her public key. Press Import to import " +"a public key." +msgstr "" + +#, fuzzy +msgid "_Import..." +msgstr "&Leta…" + +msgid "Select correct user" +msgstr "" + +msgid "" +"More than one user was found with the same public key. Select the correct " +"user from the list to add to the buddy list." +msgstr "" + +msgid "" +"More than one user was found with the same name. Select the correct user " +"from the list to add to the buddy list." +msgstr "" + +#, fuzzy +msgid "Detached" +msgstr "Haijakechiwa" + +msgid "Indisposed" +msgstr "" + +msgid "Wake Me Up" +msgstr "" + +msgid "Hyper Active" +msgstr "" + +msgid "Robot" +msgstr "" + +msgid "Happy" +msgstr "" + +#, fuzzy +msgid "Sad" +msgstr "Jm" + +msgid "Angry" +msgstr "" + +msgid "Jealous" +msgstr "" + +#, fuzzy +msgid "Ashamed" +msgstr "Kiassame" + +msgid "Invincible" +msgstr "" + +msgid "In Love" +msgstr "" + +msgid "Sleepy" +msgstr "" + +msgid "Bored" +msgstr "" + +msgid "Excited" +msgstr "" + +msgid "Anxious" +msgstr "" + +#, fuzzy +msgid "User Modes" +msgstr "Jina la Mtumiaji:" + +msgid "Preferred Contact" +msgstr "" + +msgid "Preferred Language" +msgstr "" + +#, fuzzy +msgid "Device" +msgstr "Huduma" + +msgid "Timezone" +msgstr "" + +#, fuzzy +msgid "Geolocation" +msgstr "Mahali" + +msgid "Reset IM Key" +msgstr "" + +msgid "IM with Key Exchange" +msgstr "" + +msgid "IM with Password" +msgstr "" + +msgid "Get Public Key..." +msgstr "" + +msgid "Kill User" +msgstr "" + +msgid "Draw On Whiteboard" +msgstr "" + +msgid "_Passphrase:" +msgstr "" + +#, c-format +msgid "Channel %s does not exist in the network" +msgstr "" + +#, fuzzy +msgid "Channel Information" +msgstr "Inachunguza taarifa" + +msgid "Cannot get channel information" +msgstr "" + +#, c-format +msgid "Channel Name: %s" +msgstr "" + +#, c-format +msgid "
User Count: %d" +msgstr "" + +#, c-format +msgid "
Channel Founder: %s" +msgstr "" + +#, c-format +msgid "
Channel Cipher: %s" +msgstr "" + +#. Definition of HMAC: http://en.wikipedia.org/wiki/HMAC +#, c-format +msgid "
Channel HMAC: %s" +msgstr "" + +#, c-format +msgid "
Channel Topic:
%s" +msgstr "" + +#, c-format +msgid "
Channel Modes: " +msgstr "" + +#, c-format +msgid "
Founder Key Fingerprint:
%s" +msgstr "" + +#, c-format +msgid "
Founder Key Babbleprint:
%s" +msgstr "" + +msgid "Add Channel Public Key" +msgstr "" + +#. Add new public key +msgid "Open Public Key..." +msgstr "" + +msgid "Channel Passphrase" +msgstr "" + +msgid "Channel Public Keys List" +msgstr "" + +#, c-format +msgid "" +"Channel authentication is used to secure the channel from unauthorized " +"access. The authentication may be based on passphrase and digital " +"signatures. If passphrase is set, it is required to be able to join. If " +"channel public keys are set then only users whose public keys are listed are " +"able to join." +msgstr "" + +msgid "Channel Authentication" +msgstr "" + +msgid "Add / Remove" +msgstr "" + +#, fuzzy +msgid "Group Name" +msgstr "Kusanya kwa:" + +#, fuzzy +msgid "Passphrase" +msgstr "Nywila" + +#, c-format +msgid "Please enter the %s channel private group name and passphrase." +msgstr "" + +msgid "Add Channel Private Group" +msgstr "" + +#, fuzzy +msgid "User Limit" +msgstr "Jina la Mtumiaji:" + +msgid "Set user limit on channel. Set to zero to reset user limit." +msgstr "" + +msgid "Invite List" +msgstr "" + +msgid "Ban List" +msgstr "" + +msgid "Add Private Group" +msgstr "" + +#, fuzzy +msgid "Reset Permanent" +msgstr "Kudumu" + +#, fuzzy +msgid "Set Permanent" +msgstr "Kudumu" + +msgid "Set User Limit" +msgstr "" + +msgid "Reset Topic Restriction" +msgstr "" + +msgid "Set Topic Restriction" +msgstr "" + +msgid "Reset Private Channel" +msgstr "" + +msgid "Set Private Channel" +msgstr "" + +msgid "Reset Secret Channel" +msgstr "" + +msgid "Set Secret Channel" +msgstr "" + +#, c-format +msgid "" +"You have to join the %s channel before you are able to join the private group" +msgstr "" + +msgid "Join Private Group" +msgstr "" + +msgid "Cannot join private group" +msgstr "" + +msgid "Call Command" +msgstr "" + +msgid "Cannot call command" +msgstr "" + +msgid "Unknown command" +msgstr "" + +msgid "Secure File Transfer" +msgstr "" + +msgid "Error during file transfer" +msgstr "" + +msgid "Remote disconnected" +msgstr "" + +msgid "Permission denied" +msgstr "" + +#, fuzzy +msgid "Key agreement failed" +msgstr "Makubaliano Muhimu" + +msgid "Connection timed out" +msgstr "Muunganiko umepita muda" + +#, fuzzy +msgid "Creating connection failed" +msgstr "Muunganiko salama umeshindikana" + +msgid "File transfer session does not exist" +msgstr "" + +msgid "No file transfer session active" +msgstr "" + +msgid "File transfer already started" +msgstr "" + +msgid "Could not perform key agreement for file transfer" +msgstr "" + +msgid "Could not start the file transfer" +msgstr "" + +msgid "Cannot send file" +msgstr "" + +msgid "Error occurred" +msgstr "" + +#, c-format +msgid "%s has changed the topic of %s to: %s" +msgstr "" + +#, c-format +msgid "%s set channel %s modes to: %s" +msgstr "" + +#, c-format +msgid "%s removed all channel %s modes" +msgstr "" + +#, c-format +msgid "%s set %s's modes to: %s" +msgstr "" + +#, c-format +msgid "%s removed all %s's modes" +msgstr "" + +#, c-format +msgid "You have been kicked off %s by %s (%s)" +msgstr "" + +#, c-format +msgid "You have been killed by %s (%s)" +msgstr "" + +#, c-format +msgid "Killed by %s (%s)" +msgstr "" + +msgid "Server signoff" +msgstr "" + +#, fuzzy +msgid "Personal Information" +msgstr "Taarifa Zaidi" + +msgid "Birth Day" +msgstr "" + +msgid "Job Role" +msgstr "" + +#, fuzzy +msgid "Organization" +msgstr "Shirika:" + +#, fuzzy +msgid "Unit" +msgstr "Kizio:" + +msgid "Join Chat" +msgstr "" + +#, c-format +msgid "You are channel founder on %s" +msgstr "" + +#, c-format +msgid "Channel founder on %s is %s" +msgstr "" + +msgid "Real Name" +msgstr "" + +#, fuzzy +msgid "Status Text" +msgstr "M&wambaa Hali" + +msgid "Public Key Fingerprint" +msgstr "" + +msgid "Public Key Babbleprint" +msgstr "" + +msgid "_More..." +msgstr "" + +msgid "Detach From Server" +msgstr "" + +msgid "Cannot detach" +msgstr "" + +msgid "Cannot set topic" +msgstr "" + +msgid "Failed to change nickname" +msgstr "" + +msgid "Roomlist" +msgstr "" + +msgid "Cannot get room list" +msgstr "" + +#, fuzzy +msgid "Network is empty" +msgstr "Muda wa mtandao umeisha" + +msgid "No public key was received" +msgstr "" + +#, fuzzy +msgid "Server Information" +msgstr "Taarifa Zaidi" + +msgid "Cannot get server information" +msgstr "" + +msgid "Server Statistics" +msgstr "" + +msgid "Cannot get server statistics" +msgstr "" + +#, c-format +msgid "" +"Local server start time: %s\n" +"Local server uptime: %s\n" +"Local server clients: %d\n" +"Local server channels: %d\n" +"Local server operators: %d\n" +"Local router operators: %d\n" +"Local cell clients: %d\n" +"Local cell channels: %d\n" +"Local cell servers: %d\n" +"Total clients: %d\n" +"Total channels: %d\n" +"Total servers: %d\n" +"Total routers: %d\n" +"Total server operators: %d\n" +"Total router operators: %d\n" +msgstr "" + +msgid "Network Statistics" +msgstr "" + +#, fuzzy +msgid "Ping failed" +msgstr "Imeshindwa kunakili" + +msgid "Ping reply received from server" +msgstr "" + +msgid "Could not kill user" +msgstr "" + +msgid "WATCH" +msgstr "" + +msgid "Cannot watch user" +msgstr "" + +#, fuzzy +msgid "Resuming session" +msgstr "Rejesha Awamu" + +msgid "Authenticating connection" +msgstr "" + +msgid "Verifying server public key" +msgstr "" + +#, fuzzy +msgid "Passphrase required" +msgstr "Nywila inatakiwa" + +#, c-format +msgid "" +"Received %s's public key. Your local copy does not match this key. Would you " +"still like to accept this public key?" +msgstr "" + +#, c-format +msgid "Received %s's public key. Would you like to accept this public key?" +msgstr "" + +#, c-format +msgid "" +"Fingerprint and babbleprint for the %s key are:\n" +"\n" +"%s\n" +"%s\n" +msgstr "" + +#, fuzzy +msgid "Verify Public Key" +msgstr "Ufunguo Huria wa Muhusika" + +msgid "_View..." +msgstr "" + +#, fuzzy +msgid "Unsupported public key type" +msgstr "Aina ya faili isiyo stahimiliwa." + +msgid "Disconnected by server" +msgstr "" + +msgid "Error during connecting to SILC Server" +msgstr "" + +msgid "Key Exchange failed" +msgstr "" + +msgid "" +"Resuming detached session failed. Press Reconnect to create new connection." +msgstr "" + +#, fuzzy +msgid "Connection failed" +msgstr "Unganisho Limeshindikana" + +msgid "Performing key exchange" +msgstr "" + +#, fuzzy +msgid "Unable to create connection" +msgstr "Haikuweza kuunganishwa" + +msgid "Could not load SILC key pair" +msgstr "" + +#. Progress +#, fuzzy +msgid "Connecting to SILC Server" +msgstr "Inaunganisha kwenye seva ya sasisho…" + +msgid "Out of memory" +msgstr "Nje ya kumbukumbu" + +msgid "Cannot initialize SILC protocol" +msgstr "" + +msgid "Error loading SILC key pair" +msgstr "" + +#, fuzzy, c-format +msgid "Download %s: %s" +msgstr "Inapakua: %S" + +msgid "Your Current Mood" +msgstr "" + +#, fuzzy, c-format +msgid "Normal" +msgstr "&Kawaida" + +msgid "In love" +msgstr "" + +msgid "" +"\n" +"Your Preferred Contact Methods" +msgstr "" + +msgid "SMS" +msgstr "" + +msgid "MMS" +msgstr "" + +msgid "Video conferencing" +msgstr "" + +msgid "Your Current Status" +msgstr "" + +#, fuzzy +msgid "Online Services" +msgstr "Huduma za tovuti" + +msgid "Let others see what services you are using" +msgstr "" + +msgid "Let others see what computer you are using" +msgstr "" + +msgid "Your VCard File" +msgstr "" + +msgid "Timezone (UTC)" +msgstr "" + +msgid "User Online Status Attributes" +msgstr "" + +msgid "" +"You can let other users see your online status information and your personal " +"information. Please fill the information you would like other users to see " +"about yourself." +msgstr "" + +msgid "Message of the Day" +msgstr "" + +msgid "No Message of the Day available" +msgstr "" + +msgid "There is no Message of the Day associated with this connection" +msgstr "" + +msgid "Create New SILC Key Pair" +msgstr "" + +msgid "Passphrases do not match" +msgstr "" + +msgid "Key Pair Generation failed" +msgstr "" + +msgid "Key length" +msgstr "" + +msgid "Public key file" +msgstr "" + +msgid "Private key file" +msgstr "" + +msgid "Passphrase (retype)" +msgstr "" + +msgid "Generate Key Pair" +msgstr "" + +#, fuzzy +msgid "Online Status" +msgstr "Marekani" + +msgid "View Message of the Day" +msgstr "" + +msgid "Create SILC Key Pair..." +msgstr "" + +#, c-format +msgid "User %s is not present in the network" +msgstr "" + +msgid "Topic too long" +msgstr "" + +msgid "You must specify a nick" +msgstr "" + +#, fuzzy, c-format +msgid "channel %s not found" +msgstr "Mstari haujapatikana" + +#, c-format +msgid "channel modes for %s: %s" +msgstr "" + +#, c-format +msgid "no channel modes are set on %s" +msgstr "" + +#, c-format +msgid "Failed to set cmodes for %s" +msgstr "" + +#, c-format +msgid "Unknown command: %s, (may be a client bug)" +msgstr "" + +msgid "part [channel]: Leave the chat" +msgstr "" + +msgid "leave [channel]: Leave the chat" +msgstr "" + +msgid "topic [<new topic>]: View or change the topic" +msgstr "" + +msgid "join <channel> [<password>]: Join a chat on this network" +msgstr "" + +msgid "list: List channels on this network" +msgstr "" + +msgid "whois <nick>: View nick's information" +msgstr "" + +msgid "msg <nick> <message>: Send a private message to a user" +msgstr "" + +msgid "query <nick> [<message>]: Send a private message to a user" +msgstr "" + +msgid "motd: View the server's Message Of The Day" +msgstr "" + +msgid "detach: Detach this session" +msgstr "" + +msgid "quit [message]: Disconnect from the server, with an optional message" +msgstr "" + +msgid "call <command>: Call any silc client command" +msgstr "" + +msgid "kill <nick> [-pubkey|<reason>]: Kill nick" +msgstr "" + +msgid "nick <newnick>: Change your nickname" +msgstr "" + +msgid "whowas <nick>: View nick's information" +msgstr "" + +msgid "" +"cmode <channel> [+|-<modes>] [arguments]: Change or display " +"channel modes" +msgstr "" + +msgid "" +"cumode <channel> +|-<modes> <nick>: Change nick's modes " +"on channel" +msgstr "" + +msgid "umode <usermodes>: Set your modes in the network" +msgstr "" + +msgid "oper <nick> [-pubkey]: Get server operator privileges" +msgstr "" + +msgid "" +"invite <channel> [-|+]<nick>: invite nick or add/remove from " +"channel invite list" +msgstr "" + +msgid "kick <channel> <nick> [comment]: Kick client from channel" +msgstr "" + +msgid "info [server]: View server administrative details" +msgstr "" + +msgid "ban [<channel> +|-<nick>]: Ban client from channel" +msgstr "" + +msgid "getkey <nick|server>: Retrieve client's or server's public key" +msgstr "" + +msgid "stats: View server and network statistics" +msgstr "" + +msgid "ping: Send PING to the connected server" +msgstr "" + +msgid "users <channel>: List users in channel" +msgstr "" + +msgid "" +"names [-count|-ops|-halfops|-voices|-normal] <channel(s)>: List " +"specific users in channel(s)" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +msgid "SILC Protocol Plugin" +msgstr "" + +#. * description +msgid "Secure Internet Live Conferencing (SILC) Protocol" +msgstr "" + +msgid "Network" +msgstr "Mtandao" + +msgid "Public Key file" +msgstr "" + +msgid "Private Key file" +msgstr "" + +msgid "Cipher" +msgstr "" + +msgid "HMAC" +msgstr "" + +msgid "Use Perfect Forward Secrecy" +msgstr "" + +#, fuzzy +msgid "Public key authentication" +msgstr "Ishara ya Uthibitisho Inayoulindwa" + +msgid "Block IMs without Key Exchange" +msgstr "" + +msgid "Block messages to whiteboard" +msgstr "" + +msgid "Automatically open whiteboard" +msgstr "" + +msgid "Digitally sign and verify all messages" +msgstr "" + +msgid "Creating SILC key pair..." +msgstr "" + +msgid "Cannot create SILC key pair\n" +msgstr "" + +#. Hint for translators: Please check the tabulator width here and in +#. the next strings (short strings: 2 tabs, longer strings 1 tab, +#. sum: 3 tabs or 24 characters) +#, c-format +msgid "Real Name: \t%s\n" +msgstr "" + +#, fuzzy, c-format +msgid "User Name: \t%s\n" +msgstr "Jina la Mtumiaji:" + +#, c-format +msgid "Email: \t\t%s\n" +msgstr "" + +#, c-format +msgid "Host Name: \t%s\n" +msgstr "" + +#, fuzzy, c-format +msgid "Organization: \t%s\n" +msgstr "Jumuiya: \"%S\"" + +#, c-format +msgid "Country: \t%s\n" +msgstr "" + +#, c-format +msgid "Algorithm: \t%s\n" +msgstr "" + +#, c-format +msgid "Key Length: \t%d bits\n" +msgstr "" + +#, fuzzy, c-format +msgid "Version: \t%s\n" +msgstr "Toleo la 1" + +#, c-format +msgid "" +"Public Key Fingerprint:\n" +"%s\n" +"\n" +msgstr "" + +#, c-format +msgid "" +"Public Key Babbleprint:\n" +"%s" +msgstr "" + +#, fuzzy +msgid "Public Key Information" +msgstr "Fic&ha Taarifa" + +#, fuzzy +msgid "Paging" +msgstr "Inahifadhi" + +msgid "Video Conferencing" +msgstr "" + +#, fuzzy +msgid "Computer" +msgstr "Imemaliza" + +msgid "PDA" +msgstr "" + +msgid "Terminal" +msgstr "" + +#, c-format +msgid "%s sent message to whiteboard. Would you like to open the whiteboard?" +msgstr "" + +#, c-format +msgid "" +"%s sent message to whiteboard on %s channel. Would you like to open the " +"whiteboard?" +msgstr "" + +msgid "Whiteboard" +msgstr "" + +msgid "No server statistics available" +msgstr "" + +#, c-format +msgid "Failure: Version mismatch, upgrade your client" +msgstr "" + +#, c-format +msgid "Failure: Remote does not trust/support your public key" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed KE group" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed cipher" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed PKCS" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed hash function" +msgstr "" + +#, c-format +msgid "Failure: Remote does not support proposed HMAC" +msgstr "" + +#, c-format +msgid "Failure: Incorrect signature" +msgstr "" + +#, c-format +msgid "Failure: Invalid cookie" +msgstr "" + +#, c-format +msgid "Failure: Authentication failed" +msgstr "" + +msgid "Cannot initialize SILC Client connection" +msgstr "" + +msgid "John Noname" +msgstr "" + +#, c-format +msgid "Could not load SILC key pair: %s" +msgstr "" + +msgid "Could not write" +msgstr "" + +#, fuzzy +msgid "Could not connect" +msgstr "\"Haikuweza kupakia: \"" + +msgid "Unknown server response." +msgstr "" + +msgid "Could not create listen socket" +msgstr "" + +msgid "Could not resolve hostname" +msgstr "" + +msgid "SIP usernames may not contain whitespaces or @ symbols" +msgstr "" + +msgid "SIP connect server not specified" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +msgid "SIP/SIMPLE Protocol Plugin" +msgstr "" + +#. * summary +msgid "The SIP/SIMPLE Protocol Plugin" +msgstr "" + +msgid "Publish status (note: everyone may watch you)" +msgstr "" + +msgid "Use UDP" +msgstr "" + +msgid "Use proxy" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Auth User" +msgstr "" + +msgid "Auth Domain" +msgstr "" + +#, c-format +msgid "%s has sent you a webcam invite, which is not yet supported." +msgstr "" + +msgid "Your SMS was not delivered" +msgstr "" + +msgid "Your Yahoo! message did not get sent." +msgstr "" + +#, c-format +msgid "Yahoo! system message for %s:" +msgstr "" + +#, c-format +msgid "" +"%s has (retroactively) denied your request to add them to your list for the " +"following reason: %s." +msgstr "" + +#, c-format +msgid "%s has (retroactively) denied your request to add them to your list." +msgstr "" + +msgid "Add buddy rejected" +msgstr "" + +#. Some error in the received stream +msgid "Received invalid data" +msgstr "" + +#. Password incorrect +#, fuzzy +msgid "Incorrect Password" +msgstr "Nywila ya sasa hivi:" + +#. security lock from too many failed login attempts +msgid "Account locked: Too many failed login attempts" +msgstr "" + +#. the username does not exist +#, fuzzy +msgid "Username does not exist" +msgstr "Faili %S halipo" + +#. indicates a lock of some description +msgid "Account locked: See the debug log" +msgstr "" + +#. username or password missing +msgid "Username or password missing" +msgstr "" + +#, c-format +msgid "" +"The Yahoo server has requested the use of an unrecognized authentication " +"method. You will probably not be able to successfully sign on to Yahoo. " +"Check %s for updates." +msgstr "" + +msgid "Failed Yahoo! Authentication" +msgstr "" + +#, c-format +msgid "" +"You have tried to ignore %s, but the user is on your buddy list. Clicking " +"\"Yes\" will remove and ignore the buddy." +msgstr "" + +msgid "Ignore buddy?" +msgstr "" + +msgid "Your account is locked, please log in to the Yahoo! website." +msgstr "" + +#, c-format +msgid "Unknown error number %d. Logging into the Yahoo! website may fix this." +msgstr "" + +#, c-format +msgid "Could not add buddy %s to group %s to the server list on account %s." +msgstr "" + +msgid "Could not add buddy to server list" +msgstr "" + +#, c-format +msgid "[ Audible %s/%s/%s.swf ] %s" +msgstr "" + +#, fuzzy +msgid "Received unexpected HTTP response from server." +msgstr "Mwitiko wa bila kutegemea kutoka kwa seva" + +#, fuzzy +msgid "Connection problem" +msgstr "Unganisho Limeshindikana" + +#, c-format +msgid "" +"Lost connection with %s:\n" +"%s" +msgstr "" + +#, c-format +msgid "" +"Could not establish a connection with %s:\n" +"%s" +msgstr "" + +msgid "Not at Home" +msgstr "" + +msgid "Not at Desk" +msgstr "" + +msgid "Not in Office" +msgstr "" + +#, fuzzy +msgid "On Vacation" +msgstr "Fungua &Mahali…" + +msgid "Stepped Out" +msgstr "" + +msgid "Not on server list" +msgstr "" + +#, fuzzy +msgid "Appear Online" +msgstr "Baki Mkondoni" + +msgid "Appear Permanently Offline" +msgstr "" + +#, fuzzy +msgid "Presence" +msgstr "Mapendekezo" + +msgid "Appear Offline" +msgstr "" + +msgid "Don't Appear Permanently Offline" +msgstr "" + +msgid "Join in Chat" +msgstr "" + +msgid "Initiate Conference" +msgstr "" + +msgid "Presence Settings" +msgstr "" + +msgid "Start Doodling" +msgstr "" + +msgid "Activate which ID?" +msgstr "" + +msgid "Join whom in chat?" +msgstr "" + +msgid "Activate ID..." +msgstr "" + +msgid "Join User in Chat..." +msgstr "" + +#, fuzzy +msgid "Open Inbox" +msgstr "Fungua katika:" + +msgid "join <room>: Join a chat room on the Yahoo network" +msgstr "" + +msgid "list: List rooms on the Yahoo network" +msgstr "" + +msgid "doodle: Request user to start a Doodle session" +msgstr "" + +msgid "Yahoo ID..." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Yahoo Protocol Plugin" +msgstr "" + +msgid "Yahoo Japan" +msgstr "" + +msgid "Pager server" +msgstr "" + +msgid "Japan Pager server" +msgstr "" + +#, fuzzy +msgid "Pager port" +msgstr "Page Down" + +msgid "File transfer server" +msgstr "" + +msgid "Japan file transfer server" +msgstr "" + +msgid "File transfer port" +msgstr "" + +msgid "Chat room locale" +msgstr "" + +msgid "Ignore conference and chatroom invitations" +msgstr "" + +msgid "Chat room list URL" +msgstr "" + +msgid "Yahoo Chat server" +msgstr "" + +msgid "Yahoo Chat port" +msgstr "" + +#. Write a local message to this conversation showing that a request for a +#. * Doodle session has been made +#. +msgid "Sent Doodle request." +msgstr "" + +msgid "Unable to establish file descriptor." +msgstr "" + +#, c-format +msgid "%s is trying to send you a group of %d files.\n" +msgstr "" + +msgid "Yahoo! Japan Profile" +msgstr "" + +#, fuzzy +msgid "Yahoo! Profile" +msgstr "Yahoo! Barua" + +msgid "" +"Sorry, profiles marked as containing adult content are not supported at this " +"time." +msgstr "" + +msgid "" +"If you wish to view this profile, you will need to visit this link in your " +"web browser:" +msgstr "" + +#, fuzzy +msgid "Yahoo! ID" +msgstr "Yahoo! Barua" + +msgid "Hobbies" +msgstr "" + +msgid "Latest News" +msgstr "" + +#, fuzzy +msgid "Home Page" +msgstr "Ukurasa wa &Nyumbani:" + +msgid "Cool Link 1" +msgstr "" + +msgid "Cool Link 2" +msgstr "" + +msgid "Cool Link 3" +msgstr "" + +msgid "Last Update" +msgstr "Sasisho la mara ya mwisho" + +msgid "" +"This profile is in a language or format that is not supported at this time." +msgstr "" + +msgid "" +"Could not retrieve the user's profile. This most likely is a temporary " +"server-side problem. Please try again later." +msgstr "" + +msgid "" +"Could not retrieve the user's profile. This most likely means that the user " +"does not exist; however, Yahoo! sometimes does fail to find a user's " +"profile. If you know that the user exists, please try again later." +msgstr "" + +msgid "The user's profile is empty." +msgstr "" + +#, c-format +msgid "%s declined your conference invitation to room \"%s\" because \"%s\"." +msgstr "" + +msgid "Invitation Rejected" +msgstr "" + +#, fuzzy +msgid "Failed to join chat" +msgstr "Imeshindwa kuunganisha" + +#. -6 +#, fuzzy +msgid "Unknown room" +msgstr "Hitilafu isiyojulikana" + +#. -15 +msgid "Maybe the room is full" +msgstr "" + +#. -35 +msgid "Not available" +msgstr "Haipatikani" + +msgid "" +"Unknown error. You may need to logout and wait five minutes before being " +"able to rejoin a chatroom" +msgstr "" + +#, c-format +msgid "You are now chatting in %s." +msgstr "" + +msgid "Failed to join buddy in chat" +msgstr "" + +msgid "Maybe they're not in a chat?" +msgstr "" + +msgid "Fetching the room list failed." +msgstr "" + +msgid "Voices" +msgstr "" + +msgid "Webcams" +msgstr "" + +msgid "Unable to fetch room list." +msgstr "" + +msgid "User Rooms" +msgstr "" + +msgid "Connection problem with the YCHT server." +msgstr "" + +#, c-format +msgid "" +"Lost connection with server\n" +"%s" +msgstr "" + +msgid "" +"(There was an error converting this message.\t Check the 'Encoding' option " +"in the Account Editor)" +msgstr "" + +#, c-format +msgid "Unable to send to chat %s,%s,%s" +msgstr "" + +msgid "Hidden or not logged-in" +msgstr "" + +#, c-format +msgid "
At %s since %s" +msgstr "" + +msgid "Anyone" +msgstr "" + +msgid "_Class:" +msgstr "" + +#, fuzzy +msgid "_Instance:" +msgstr "Imesakinishwa" + +msgid "_Recipient:" +msgstr "" + +#, c-format +msgid "Attempt to subscribe to %s,%s,%s failed" +msgstr "" + +msgid "zlocate <nick>: Locate user" +msgstr "" + +msgid "zl <nick>: Locate user" +msgstr "" + +msgid "instance <instance>: Set the instance to be used on this class" +msgstr "" + +msgid "inst <instance>: Set the instance to be used on this class" +msgstr "" + +msgid "topic <instance>: Set the instance to be used on this class" +msgstr "" + +msgid "sub <class> <instance> <recipient>: Join a new chat" +msgstr "" + +msgid "" +"zi <instance>: Send a message to <message,instance,*>" +msgstr "" + +msgid "" +"zci <class> <instance>: Send a message to <class," +"instance,*>" +msgstr "" + +msgid "" +"zcir <class> <instance> <recipient>: Send a message to <" +"class,instance,recipient>" +msgstr "" + +msgid "" +"zir <instance> <recipient>: Send a message to <MESSAGE," +"instance,recipient>" +msgstr "" + +msgid "zc <class>: Send a message to <class,PERSONAL,*>" +msgstr "" + +#, fuzzy +msgid "Resubscribe" +msgstr "Jiunge" + +msgid "Retrieve subscriptions from server" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +#. * summary +#. * description +msgid "Zephyr Protocol Plugin" +msgstr "" + +msgid "Use tzc" +msgstr "" + +msgid "tzc command" +msgstr "" + +msgid "Export to .anyone" +msgstr "" + +msgid "Export to .zephyr.subs" +msgstr "" + +msgid "Import from .anyone" +msgstr "" + +msgid "Import from .zephyr.subs" +msgstr "" + +#, fuzzy +msgid "Realm" +msgstr "Tayari" + +msgid "Exposure" +msgstr "" + +#, c-format +msgid "" +"Unable to create socket:\n" +"%s" +msgstr "" + +#, c-format +msgid "Unable to parse response from HTTP proxy: %s\n" +msgstr "" + +#, c-format +msgid "HTTP proxy connection error %d" +msgstr "" + +#, c-format +msgid "Access denied: HTTP proxy server forbids port %d tunneling." +msgstr "" + +#, fuzzy, c-format +msgid "Error resolving %s" +msgstr "Hitilafu katika kuhifadhi %S" + +msgid "Could not resolve host name" +msgstr "" + +#, c-format +msgid "Requesting %s's attention..." +msgstr "" + +#, c-format +msgid "%s has requested your attention!" +msgstr "" + +#. * +#. * A wrapper for purple_request_action() that uses @c Yes and @c No buttons. +#. +#, fuzzy +msgid "_Yes" +msgstr "Ndiyo" + +#, fuzzy +msgid "_No" +msgstr "Hapana" + +#. * +#. * A wrapper for purple_request_action() that uses Accept and Cancel buttons. +#. +msgid "_Accept" +msgstr "" + +#. * +#. * The default message to use when the user becomes auto-away. +#. +msgid "I'm not here right now" +msgstr "" + +msgid "saved statuses" +msgstr "" + +#, c-format +msgid "%s is now known as %s.\n" +msgstr "" + +#, c-format +msgid "" +"%s has invited %s to the chat room %s:\n" +"%s" +msgstr "" + +#, c-format +msgid "%s has invited %s to the chat room %s\n" +msgstr "" + +msgid "Accept chat invitation?" +msgstr "" + +#. Shortcut +msgid "Shortcut" +msgstr "" + +msgid "The text-shortcut for the smiley" +msgstr "" + +#. Stored Image +#, fuzzy +msgid "Stored Image" +msgstr "Hifadhi Taswira" + +msgid "Stored Image. (that'll have to do for now)" +msgstr "" + +#, fuzzy +msgid "SSL Connection Failed" +msgstr "Unganisho Limeshindikana" + +msgid "SSL Handshake Failed" +msgstr "" + +msgid "SSL peer presented an invalid certificate" +msgstr "" + +#, fuzzy +msgid "Unknown SSL error" +msgstr "Hitilafu isiyojulikana" + +#, fuzzy +msgid "Unset" +msgstr "Haitumiki" + +msgid "Do not disturb" +msgstr "" + +msgid "Extended away" +msgstr "" + +msgid "Listening to music" +msgstr "" + +#, c-format +msgid "%s (%s) changed status from %s to %s" +msgstr "" + +#, c-format +msgid "%s (%s) is now %s" +msgstr "" + +#, c-format +msgid "%s (%s) is no longer %s" +msgstr "" + +#, c-format +msgid "%s became idle" +msgstr "" + +#, c-format +msgid "%s became unidle" +msgstr "" + +#, c-format +msgid "+++ %s became idle" +msgstr "" + +#, c-format +msgid "+++ %s became unidle" +msgstr "" + +#. +#. * This string determines how some dates are displayed. The default +#. * string "%x %X" shows the date then the time. Translators can +#. * change this to "%X %x" if they want the time to be shown first, +#. * followed by the date. +#. +#, fuzzy, c-format +msgid "%x %X" +msgstr "%S %S" + +msgid "Calculating..." +msgstr "" + +#, fuzzy +msgid "Unknown." +msgstr "Isiyojulikana" + +#, c-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%s, %d hour" +msgid_plural "%s, %d hours" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%s, %d minute" +msgid_plural "%s, %d minutes" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "Could not open %s: Redirected too many times" +msgstr "" + +#, fuzzy, c-format +msgid "Unable to connect to %s" +msgstr "Haikuweza kuunganishwa" + +#, c-format +msgid "Error reading from %s: response too long (%d bytes limit)" +msgstr "" + +#, c-format +msgid "" +"Unable to allocate enough memory to hold the contents from %s. The web " +"server may be trying something malicious." +msgstr "" + +#, c-format +msgid "Error reading from %s: %s" +msgstr "" + +#, c-format +msgid "Error writing to %s: %s" +msgstr "" + +#, fuzzy, c-format +msgid "Unable to connect to %s: %s" +msgstr "Haikuweza kuunganishwa" + +#, c-format +msgid "" +"Unable to connect to %s: Server requires TLS/SSL, but no TLS/SSL support was " +"found." +msgstr "" + +#, c-format +msgid " - %s" +msgstr "" + +#, fuzzy, c-format +msgid " (%s)" +msgstr "(%S)" + +#. 10053 +#, c-format +msgid "Connection interrupted by other software on your computer." +msgstr "" + +#. 10054 +#, fuzzy, c-format +msgid "Remote host closed connection." +msgstr "Mwenzi SSL imefunga uunganisho huu" + +#. 10060 +#, fuzzy, c-format +msgid "Connection timed out." +msgstr "Muunganiko umepita muda" + +#. 10061 +#, fuzzy, c-format +msgid "Connection refused." +msgstr "Muunganisho ulikataliwa" + +#. 10048 +#, c-format +msgid "Address already in use." +msgstr "" + +#, fuzzy, c-format +msgid "Error Reading %s" +msgstr "Hitilafu wakati natengeneza %S" + +#, 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 "" + +#, fuzzy +msgid "Internet Messenger" +msgstr "Internet Explorer" + +msgid "Pidgin Internet Messenger" +msgstr "" + +msgid "Send instant messages over multiple protocols" +msgstr "" + +#, fuzzy +msgid "Orientation" +msgstr "Mkao:" + +msgid "The orientation of the tray." +msgstr "" + +#. Build the login options frame. +msgid "Login Options" +msgstr "" + +#, fuzzy +msgid "Pro_tocol:" +msgstr "Itifaki" + +#, fuzzy +msgid "_Username:" +msgstr "Jina la mtumiaji" + +#, fuzzy +msgid "Remember pass_word" +msgstr "Ingiza tena nywila:" + +#. Build the user options frame. +#, fuzzy +msgid "User Options" +msgstr "Machaguo ya Mtandao" + +msgid "_Local alias:" +msgstr "" + +#, fuzzy +msgid "New _mail notifications" +msgstr "Arifisho la Jumla" + +#. Buddy icon +msgid "Use this buddy _icon for this account:" +msgstr "" + +#, fuzzy +msgid "_Advanced" +msgstr "Pevu" + +#, fuzzy +msgid "Use GNOME Proxy Settings" +msgstr "&Tumia vipimo vya wakala vya mfumo" + +#, fuzzy +msgid "Use Global Proxy Settings" +msgstr "&Tumia vipimo vya wakala vya mfumo" + +#, fuzzy +msgid "No Proxy" +msgstr "Hakuna waka&la" + +msgid "HTTP" +msgstr "" + +#, fuzzy +msgid "SOCKS 4" +msgstr "SOC&KS v4" + +#, fuzzy +msgid "SOCKS 5" +msgstr "SOCKS &v5" + +msgid "Use Environmental Settings" +msgstr "" + +#. This is an easter egg. +#. It means one of two things, both intended as humourus: +#. A) your network is really slow and you have nothing better to do than +#. look at butterflies. +#. B)You are looking really closely at something that shouldn't matter. +msgid "If you look real closely" +msgstr "" + +#. This is an easter egg. See the comment on the previous line in the source. +msgid "you can see the butterflies mating" +msgstr "" + +msgid "Proxy _type:" +msgstr "" + +#, fuzzy +msgid "_Host:" +msgstr "Mwenyeji:" + +#, fuzzy +msgid "_Port:" +msgstr "Lango:" + +#, fuzzy +msgid "Pa_ssword:" +msgstr "Nywila:" + +msgid "Unable to save new account" +msgstr "" + +msgid "An account already exists with the specified criteria." +msgstr "" + +msgid "Add Account" +msgstr "" + +msgid "_Basic" +msgstr "" + +msgid "Create _this new account on the server" +msgstr "" + +msgid "_Proxy" +msgstr "" + +msgid "Enabled" +msgstr "Imeamshwa" + +#, fuzzy +msgid "Protocol" +msgstr "Itifaki" + +#, c-format +msgid "" +"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" +"\n" +"You can come back to this window to add, edit, or remove accounts from " +"Accounts->Manage Accounts in the Buddy List window" +msgstr "" + +#, c-format +msgid "You have %d contact named %s. Would you like to merge them?" +msgid_plural "" +"You currently have %d contacts named %s. Would you like to merge them?" +msgstr[0] "" +msgstr[1] "" + +msgid "" +"Merging these contacts will cause them to share a single entry on the buddy " +"list and use a single conversation window. You can separate them again by " +"choosing 'Expand' from the contact's context menu" +msgstr "" + +msgid "Please update the necessary fields." +msgstr "" + +#, fuzzy +msgid "A_ccount" +msgstr "hesabu ya matembeleo" + +msgid "" +"Please enter the appropriate information about the chat you would like to " +"join.\n" +msgstr "" + +msgid "Room _List" +msgstr "" + +#, fuzzy +msgid "_Block" +msgstr "Zuia" + +msgid "Un_block" +msgstr "" + +#, fuzzy +msgid "Move to" +msgstr "Sogeza kwenda:" + +msgid "Get _Info" +msgstr "" + +msgid "I_M" +msgstr "" + +msgid "_Audio Call" +msgstr "" + +msgid "Audio/_Video Call" +msgstr "" + +msgid "_Video Call" +msgstr "" + +msgid "_Send File..." +msgstr "" + +msgid "Add Buddy _Pounce..." +msgstr "" + +msgid "View _Log" +msgstr "" + +msgid "Hide when offline" +msgstr "" + +msgid "_Alias..." +msgstr "" + +#, fuzzy +msgid "_Remove" +msgstr "Ondoa" + +msgid "Set Custom Icon" +msgstr "" + +msgid "Remove Custom Icon" +msgstr "" + +msgid "Add _Buddy..." +msgstr "" + +msgid "Add C_hat..." +msgstr "" + +#, fuzzy +msgid "_Delete Group" +msgstr "Futa mwenyeji" + +#, fuzzy +msgid "_Rename" +msgstr "&Badili jina" + +#. join button +msgid "_Join" +msgstr "" + +msgid "Auto-Join" +msgstr "" + +#, fuzzy +msgid "Persistent" +msgstr "Kipersia" + +msgid "_Edit Settings..." +msgstr "" + +#, fuzzy +msgid "_Collapse" +msgstr "Kunja" + +#, fuzzy +msgid "_Expand" +msgstr "Tanua" + +msgid "/Tools/Mute Sounds" +msgstr "" + +msgid "" +"You are not currently signed on with an account that can add that buddy." +msgstr "" + +#. I don't believe this can happen currently, I think +#. * everything that calls this function checks for one of the +#. * above node types first. +#, fuzzy +msgid "Unknown node type" +msgstr "Utambulisho usiojulikana" + +#. Buddies menu +msgid "/_Buddies" +msgstr "" + +msgid "/Buddies/New Instant _Message..." +msgstr "" + +msgid "/Buddies/Join a _Chat..." +msgstr "" + +msgid "/Buddies/Get User _Info..." +msgstr "" + +msgid "/Buddies/View User _Log..." +msgstr "" + +msgid "/Buddies/Sh_ow" +msgstr "" + +msgid "/Buddies/Show/_Offline Buddies" +msgstr "" + +msgid "/Buddies/Show/_Empty Groups" +msgstr "" + +msgid "/Buddies/Show/Buddy _Details" +msgstr "" + +msgid "/Buddies/Show/Idle _Times" +msgstr "" + +msgid "/Buddies/Show/_Protocol Icons" +msgstr "" + +msgid "/Buddies/_Sort Buddies" +msgstr "" + +msgid "/Buddies/_Add Buddy..." +msgstr "" + +msgid "/Buddies/Add C_hat..." +msgstr "" + +msgid "/Buddies/Add _Group..." +msgstr "" + +msgid "/Buddies/_Quit" +msgstr "" + +#. Accounts menu +msgid "/_Accounts" +msgstr "" + +msgid "/Accounts/Manage Accounts" +msgstr "" + +#. Tools +#, fuzzy +msgid "/_Tools" +msgstr "&Zana" + +msgid "/Tools/Buddy _Pounces" +msgstr "" + +#, fuzzy +msgid "/Tools/_Certificates" +msgstr "Ithibati Zako" + +msgid "/Tools/Custom Smile_ys" +msgstr "" + +msgid "/Tools/Plu_gins" +msgstr "" + +msgid "/Tools/Pr_eferences" +msgstr "" + +msgid "/Tools/Pr_ivacy" +msgstr "" + +msgid "/Tools/_File Transfers" +msgstr "" + +msgid "/Tools/R_oom List" +msgstr "" + +msgid "/Tools/System _Log" +msgstr "" + +msgid "/Tools/Mute _Sounds" +msgstr "" + +#. Help +#, fuzzy +msgid "/_Help" +msgstr "Msaada" + +msgid "/Help/Online _Help" +msgstr "" + +msgid "/Help/_Debug Window" +msgstr "" + +msgid "/Help/_About" +msgstr "" + +#, c-format +msgid "Account: %s" +msgstr "" + +#, c-format +msgid "" +"\n" +"Occupants: %d" +msgstr "" + +#, c-format +msgid "" +"\n" +"Topic: %s" +msgstr "" + +#, fuzzy +msgid "(no topic set)" +msgstr "(haijawekwa)" + +msgid "Buddy Alias" +msgstr "" + +msgid "Logged In" +msgstr "Ingia" + +msgid "Last Seen" +msgstr "" + +msgid "Spooky" +msgstr "" + +msgid "Awesome" +msgstr "" + +msgid "Rockin'" +msgstr "" + +msgid "Total Buddies" +msgstr "" + +#, c-format +msgid "Idle %dd %dh %02dm" +msgstr "" + +#, c-format +msgid "Idle %dh %02dm" +msgstr "" + +#, c-format +msgid "Idle %dm" +msgstr "" + +msgid "/Buddies/New Instant Message..." +msgstr "" + +msgid "/Buddies/Join a Chat..." +msgstr "" + +msgid "/Buddies/Get User Info..." +msgstr "" + +msgid "/Buddies/Add Buddy..." +msgstr "" + +msgid "/Buddies/Add Chat..." +msgstr "" + +msgid "/Buddies/Add Group..." +msgstr "" + +msgid "/Tools/Privacy" +msgstr "" + +msgid "/Tools/Room List" +msgstr "" + +#, c-format +msgid "%d unread message from %s\n" +msgid_plural "%d unread messages from %s\n" +msgstr[0] "" +msgstr[1] "" + +#, fuzzy +msgid "Manually" +msgstr "Januari" + +msgid "By status" +msgstr "" + +msgid "By recent log activity" +msgstr "" + +#, c-format +msgid "%s disconnected" +msgstr "" + +#, fuzzy, c-format +msgid "%s disabled" +msgstr "Imelemazwa" + +msgid "Reconnect" +msgstr "" + +msgid "Re-enable" +msgstr "" + +#, fuzzy +msgid "SSL FAQs" +msgstr "SSL CA" + +#, fuzzy +msgid "Welcome back!" +msgstr "Karibu Wanadamu!" + +#, c-format +msgid "%d account was disabled because you signed on from another location:" +msgid_plural "" +"%d accounts were disabled because you signed on from another location:" +msgstr[0] "" +msgstr[1] "" + +msgid "Username:" +msgstr "" + +msgid "Password:" +msgstr "" + +msgid "_Login" +msgstr "" + +msgid "/Accounts" +msgstr "" + +#. Translators: Please maintain the use of -> and <- to refer to menu heirarchy +#, c-format +msgid "" +"Welcome to %s!\n" +"\n" +"You have no accounts enabled. Enable your IM accounts from the Accounts window at Accounts->Manage Accounts. Once you enable accounts, " +"you'll be able to sign on, set your status, and talk to your friends." +msgstr "" + +#. set the Show Offline Buddies option. must be done +#. * after the treeview or faceprint gets mad. -Robot101 +#. +msgid "/Buddies/Show/Offline Buddies" +msgstr "" + +msgid "/Buddies/Show/Empty Groups" +msgstr "" + +msgid "/Buddies/Show/Buddy Details" +msgstr "" + +msgid "/Buddies/Show/Idle Times" +msgstr "" + +msgid "/Buddies/Show/Protocol Icons" +msgstr "" + +msgid "Add a buddy.\n" +msgstr "" + +msgid "Buddy's _username:" +msgstr "" + +msgid "(Optional) A_lias:" +msgstr "" + +msgid "Add buddy to _group:" +msgstr "" + +msgid "This protocol does not support chat rooms." +msgstr "" + +msgid "" +"You are not currently signed on with any protocols that have the ability to " +"chat." +msgstr "" + +msgid "" +"Please enter an alias, and the appropriate information about the chat you " +"would like to add to your buddy list.\n" +msgstr "" + +msgid "A_lias:" +msgstr "" + +msgid "_Group:" +msgstr "" + +msgid "Auto_join when account becomes online." +msgstr "" + +msgid "_Remain in chat after window is closed." +msgstr "" + +msgid "Please enter the name of the group to be added." +msgstr "" + +msgid "Enable Account" +msgstr "" + +msgid "/Accounts/Enable Account" +msgstr "" + +msgid "/Accounts/" +msgstr "" + +#, fuzzy +msgid "_Edit Account" +msgstr "hesabu ya matembeleo" + +#, fuzzy +msgid "No actions available" +msgstr "Haipatikani" + +#, fuzzy +msgid "_Disable" +msgstr "Lemaza" + +#, fuzzy +msgid "/Tools" +msgstr "&Zana" + +msgid "/Buddies/Sort Buddies" +msgstr "" + +#. Widget creation function +#, fuzzy +msgid "SSL Servers" +msgstr "SSL Seva" + +msgid "Unknown command." +msgstr "" + +msgid "That buddy is not on the same protocol as this chat." +msgstr "" + +msgid "" +"You are not currently signed on with an account that can invite that buddy." +msgstr "" + +msgid "Invite Buddy Into Chat Room" +msgstr "" + +msgid "_Buddy:" +msgstr "" + +#, fuzzy +msgid "_Message:" +msgstr "Ujumbe" + +#, c-format +msgid "

Conversation with %s

\n" +msgstr "" + +msgid "Save Conversation" +msgstr "" + +msgid "Find" +msgstr "Tafuta" + +msgid "_Search for:" +msgstr "" + +msgid "Un-Ignore" +msgstr "" + +msgid "Ignore" +msgstr "" + +msgid "Get Away Message" +msgstr "" + +#, fuzzy +msgid "Last said" +msgstr "Ukurasa wa mwisho" + +msgid "Unable to save icon file to disk." +msgstr "" + +#, fuzzy +msgid "Save Icon" +msgstr "Hifadhi Taswira" + +#, fuzzy +msgid "Animate" +msgstr "Fanya hai" + +msgid "Hide Icon" +msgstr "" + +msgid "Save Icon As..." +msgstr "" + +msgid "Set Custom Icon..." +msgstr "" + +msgid "Change Size" +msgstr "" + +msgid "Show All" +msgstr "Onyesha Zote" + +#. Conversation menu +msgid "/_Conversation" +msgstr "" + +msgid "/Conversation/New Instant _Message..." +msgstr "" + +msgid "/Conversation/_Find..." +msgstr "" + +msgid "/Conversation/View _Log" +msgstr "" + +msgid "/Conversation/_Save As..." +msgstr "" + +msgid "/Conversation/Clea_r Scrollback" +msgstr "" + +msgid "/Conversation/M_edia" +msgstr "" + +msgid "/Conversation/Media/_Audio Call" +msgstr "" + +msgid "/Conversation/Media/_Video Call" +msgstr "" + +msgid "/Conversation/Media/Audio\\/Video _Call" +msgstr "" + +msgid "/Conversation/Se_nd File..." +msgstr "" + +msgid "/Conversation/Add Buddy _Pounce..." +msgstr "" + +msgid "/Conversation/_Get Info" +msgstr "" + +msgid "/Conversation/In_vite..." +msgstr "" + +msgid "/Conversation/M_ore" +msgstr "" + +msgid "/Conversation/Al_ias..." +msgstr "" + +msgid "/Conversation/_Block..." +msgstr "" + +msgid "/Conversation/_Unblock..." +msgstr "" + +msgid "/Conversation/_Add..." +msgstr "" + +msgid "/Conversation/_Remove..." +msgstr "" + +msgid "/Conversation/Insert Lin_k..." +msgstr "" + +msgid "/Conversation/Insert Imag_e..." +msgstr "" + +msgid "/Conversation/_Close" +msgstr "" + +#. Options +#, fuzzy +msgid "/_Options" +msgstr "Machaguo" + +msgid "/Options/Enable _Logging" +msgstr "" + +msgid "/Options/Enable _Sounds" +msgstr "" + +msgid "/Options/Show Formatting _Toolbars" +msgstr "" + +msgid "/Options/Show Ti_mestamps" +msgstr "" + +msgid "/Conversation/More" +msgstr "" + +#, fuzzy +msgid "/Options" +msgstr "Machaguo" + +#. The menubar has been deactivated. Make sure the 'More' submenu is regenerated next time +#. * the 'Conversation' menu pops up. +#. Make sure the 'Conversation -> More' menuitems are regenerated whenever +#. * the 'Conversation' menu pops up because the entries can change after the +#. * conversation is created. +#, fuzzy +msgid "/Conversation" +msgstr "Unganisho" + +msgid "/Conversation/View Log" +msgstr "" + +msgid "/Conversation/Media/Audio Call" +msgstr "" + +msgid "/Conversation/Media/Video Call" +msgstr "" + +msgid "/Conversation/Media/Audio\\/Video Call" +msgstr "" + +msgid "/Conversation/Send File..." +msgstr "" + +msgid "/Conversation/Add Buddy Pounce..." +msgstr "" + +msgid "/Conversation/Get Info" +msgstr "" + +msgid "/Conversation/Invite..." +msgstr "" + +msgid "/Conversation/Alias..." +msgstr "" + +msgid "/Conversation/Block..." +msgstr "" + +msgid "/Conversation/Unblock..." +msgstr "" + +msgid "/Conversation/Add..." +msgstr "" + +msgid "/Conversation/Remove..." +msgstr "" + +msgid "/Conversation/Insert Link..." +msgstr "" + +msgid "/Conversation/Insert Image..." +msgstr "" + +msgid "/Options/Enable Logging" +msgstr "" + +msgid "/Options/Enable Sounds" +msgstr "" + +msgid "/Options/Show Formatting Toolbars" +msgstr "" + +msgid "/Options/Show Timestamps" +msgstr "" + +msgid "User is typing..." +msgstr "" + +#, c-format +msgid "" +"\n" +"%s has stopped typing" +msgstr "" + +#. Build the Send To menu +#, fuzzy +msgid "S_end To" +msgstr "Tuma kwa:" + +msgid "_Send" +msgstr "" + +#. Setup the label telling how many people are in the room. +msgid "0 people in room" +msgstr "" + +#, c-format +msgid "%d person in room" +msgid_plural "%d people in room" +msgstr[0] "" +msgstr[1] "" + +msgid "Typing" +msgstr "" + +msgid "Stopped Typing" +msgstr "" + +msgid "Nick Said" +msgstr "" + +#, fuzzy +msgid "Unread Messages" +msgstr "Jumbe za tahadhari" + +msgid "New Event" +msgstr "" + +msgid "clear: Clears all conversation scrollbacks." +msgstr "" + +msgid "Confirm close" +msgstr "Thibitisha kufunga" + +msgid "You have unread messages. Are you sure you want to close the window?" +msgstr "" + +#, fuzzy +msgid "Close other tabs" +msgstr "Funga Tab&o Nyingine" + +#, fuzzy +msgid "Close all tabs" +msgstr "Funga tabo" + +msgid "Detach this tab" +msgstr "" + +#, fuzzy +msgid "Close this tab" +msgstr "Funga ujumbe huu" + +msgid "Close conversation" +msgstr "" + +msgid "Last created window" +msgstr "" + +msgid "Separate IM and Chat windows" +msgstr "" + +msgid "New window" +msgstr "Dirisha jipya" + +msgid "By group" +msgstr "" + +msgid "By account" +msgstr "" + +msgid "Save Debug Log" +msgstr "" + +msgid "Invert" +msgstr "" + +#, fuzzy +msgid "Highlight matches" +msgstr "&Angaza yote" + +msgid "_Icon Only" +msgstr "" + +#, fuzzy +msgid "_Text Only" +msgstr "Kuza Saizi ya Maandishi &Tu" + +msgid "_Both Icon & Text" +msgstr "" + +#, fuzzy +msgid "Filter" +msgstr "Ch&uja:" + +msgid "Right click for more options." +msgstr "" + +msgid "Level " +msgstr "" + +msgid "Select the debug filter level." +msgstr "" + +#, fuzzy +msgid "All" +msgstr "&Yote" + +msgid "Misc" +msgstr "" + +#, fuzzy +msgid "Warning" +msgstr "Tahadhari:" + +#, fuzzy +msgid "Error " +msgstr "Hitikafu " + +#, fuzzy +msgid "Fatal Error" +msgstr "Hitilafu katika kusakinisha" + +msgid "bug master" +msgstr "" + +msgid "artist" +msgstr "" + +#. feel free to not translate this +msgid "Ka-Hing Cheung" +msgstr "" + +msgid "voice and video" +msgstr "" + +msgid "support" +msgstr "" + +msgid "webmaster" +msgstr "" + +msgid "Senior Contributor/QA" +msgstr "" + +msgid "win32 port" +msgstr "" + +msgid "maintainer" +msgstr "" + +msgid "libfaim maintainer" +msgstr "" + +#. If "lazy bum" translates literally into a serious insult, use something else or omit it. +msgid "hacker and designated driver [lazy bum]" +msgstr "" + +msgid "support/QA" +msgstr "" + +msgid "XMPP" +msgstr "" + +msgid "original author" +msgstr "" + +msgid "lead developer" +msgstr "" + +msgid "Afrikaans" +msgstr "Kiafriakansi" + +msgid "Arabic" +msgstr "Kiarabu" + +#, fuzzy +msgid "Belarusian Latin" +msgstr "Kibelarusi" + +msgid "Bulgarian" +msgstr "Kibulgaria" + +msgid "Bengali" +msgstr "Kibengalia" + +msgid "Bosnian" +msgstr "Kibosnia" + +msgid "Catalan" +msgstr "Kicatala" + +msgid "Valencian-Catalan" +msgstr "" + +msgid "Czech" +msgstr "Kiczech" + +msgid "Danish" +msgstr "Kidanishi" + +msgid "German" +msgstr "Kijerumani" + +msgid "Dzongkha" +msgstr "Kidzongkha" + +msgid "Greek" +msgstr "Kigiriki" + +msgid "Australian English" +msgstr "" + +msgid "Canadian English" +msgstr "" + +msgid "British English" +msgstr "" + +msgid "Esperanto" +msgstr "Kiesperanto" + +msgid "Spanish" +msgstr "Kihispania" + +msgid "Estonian" +msgstr "Kiestonia" + +msgid "Euskera(Basque)" +msgstr "" + +msgid "Persian" +msgstr "Kipersia" + +msgid "Finnish" +msgstr "Kifinishi" + +msgid "French" +msgstr "Kifaransa" + +msgid "Irish" +msgstr "Kiirishi" + +msgid "Galician" +msgstr "Kigalacy" + +msgid "Gujarati" +msgstr "Kigujarati" + +msgid "Gujarati Language Team" +msgstr "" + +msgid "Hebrew" +msgstr "Kiebrania" + +msgid "Hindi" +msgstr "Kihindi" + +msgid "Hungarian" +msgstr "Kihungaria" + +msgid "Indonesian" +msgstr "Kindonesia" + +msgid "Italian" +msgstr "Kiitalia" + +msgid "Japanese" +msgstr "Kijapani" + +msgid "Georgian" +msgstr "Kigeorgia" + +msgid "Ubuntu Georgian Translators" +msgstr "" + +msgid "Khmer" +msgstr "Kihemeri" + +msgid "Kannada" +msgstr "Kikanada" + +msgid "Kannada Translation team" +msgstr "" + +msgid "Korean" +msgstr "Kikorea" + +msgid "Kurdish" +msgstr "Kikurdi" + +msgid "Lao" +msgstr "Lao" + +msgid "Lithuanian" +msgstr "Kilithuania" + +msgid "Macedonian" +msgstr "Kimacedonia" + +msgid "Mongolian" +msgstr "Kimongolia" + +msgid "Bokmål Norwegian" +msgstr "" + +msgid "Nepali" +msgstr "Kinepali" + +msgid "Dutch, Flemish" +msgstr "" + +msgid "Norwegian Nynorsk" +msgstr "Kinynorsk cha Norway" + +msgid "Occitan" +msgstr "Kioccita" + +msgid "Punjabi" +msgstr "Kipunjabi" + +msgid "Polish" +msgstr "Kipolishi" + +msgid "Portuguese" +msgstr "Kireno" + +msgid "Portuguese-Brazil" +msgstr "" + +msgid "Pashto" +msgstr "Kipashto" + +msgid "Romanian" +msgstr "Kiromania" + +msgid "Russian" +msgstr "Kirusi" + +msgid "Slovak" +msgstr "Kislovaki" + +msgid "Slovenian" +msgstr "Kislovenia" + +msgid "Albanian" +msgstr "Kialbania" + +msgid "Serbian" +msgstr "Kiserbia" + +msgid "Sinhala" +msgstr "Kisinihala" + +msgid "Swedish" +msgstr "Kiswidi" + +msgid "Swahili Tanzania" +msgstr "" + +msgid "Tamil" +msgstr "Kitamilia" + +msgid "Telugu" +msgstr "Kitelugu" + +msgid "Thai" +msgstr "Kitai" + +msgid "Turkish" +msgstr "Kituruki" + +msgid "Urdu" +msgstr "Kiurdu" + +msgid "Vietnamese" +msgstr "Kivietnamu" + +msgid "T.M.Thanh and the Gnome-Vi Team" +msgstr "" + +msgid "Simplified Chinese" +msgstr "Kichina Rahisi" + +msgid "Hong Kong Chinese" +msgstr "" + +msgid "Traditional Chinese" +msgstr "Kichina Asili" + +msgid "Amharic" +msgstr "Kiamharic" + +#, fuzzy, c-format +msgid "About %s" +msgstr "Kuhusu %S" + +#, c-format +msgid "" +"%s is a graphical modular messaging client based on libpurple which is " +"capable of connecting to AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, " +"Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, MySpaceIM, Gadu-Gadu, and " +"QQ all at once. It is written using GTK+.

You may modify and " +"redistribute the program under the terms of the GPL (version 2 or later). A " +"copy of the GPL is contained in the 'COPYING' file distributed with %s. %s " +"is copyrighted by its contributors. See the 'COPYRIGHT' file for the " +"complete list of contributors. We provide no warranty for this program." +"

" +msgstr "" + +#, c-format +msgid "" +"FAQ: http://developer.pidgin.im/wiki/FAQ

" +msgstr "" + +#, c-format +msgid "" +"Help via e-mail: support@pidgin.im

" +msgstr "" + +#, c-format +msgid "" +"IRC Channel: #pidgin on irc.freenode.net

" +msgstr "" + +#, c-format +msgid "XMPP MUC: devel@conference.pidgin.im

" +msgstr "" + +msgid "Current Developers" +msgstr "" + +msgid "Crazy Patch Writers" +msgstr "" + +msgid "Retired Developers" +msgstr "" + +msgid "Retired Crazy Patch Writers" +msgstr "" + +msgid "Current Translators" +msgstr "" + +#, fuzzy +msgid "Past Translators" +msgstr "Watafsiri:" + +#, fuzzy +msgid "Debugging Information" +msgstr "Inachunguza taarifa" + +#, fuzzy +msgid "_Name" +msgstr "Jina" + +msgid "_Account" +msgstr "" + +msgid "Get User Info" +msgstr "" + +msgid "" +"Please enter the username or alias of the person whose info you would like " +"to view." +msgstr "" + +msgid "View User Log" +msgstr "" + +msgid "Alias Contact" +msgstr "" + +msgid "Enter an alias for this contact." +msgstr "" + +#, c-format +msgid "Enter an alias for %s." +msgstr "" + +msgid "Alias Buddy" +msgstr "" + +msgid "Alias Chat" +msgstr "" + +msgid "Enter an alias for this chat." +msgstr "" + +#, c-format +msgid "" +"You are about to remove the contact containing %s and %d other buddy from " +"your buddy list. Do you want to continue?" +msgid_plural "" +"You are about to remove the contact containing %s and %d other buddies from " +"your buddy list. Do you want to continue?" +msgstr[0] "" +msgstr[1] "" + +#, fuzzy +msgid "Remove Contact" +msgstr "Ondoa Kuki" + +#, fuzzy +msgid "_Remove Contact" +msgstr "Ondoa Kuki" + +#, c-format +msgid "" +"You are about to merge the group called %s into the group called %s. Do you " +"want to continue?" +msgstr "" + +msgid "Merge Groups" +msgstr "" + +msgid "_Merge Groups" +msgstr "" + +#, c-format +msgid "" +"You are about to remove the group %s and all its members from your buddy " +"list. Do you want to continue?" +msgstr "" + +#, fuzzy +msgid "Remove Group" +msgstr "Ondoa Kuki" + +msgid "_Remove Group" +msgstr "" + +#, fuzzy, c-format +msgid "" +"You are about to remove %s from your buddy list. Do you want to continue?" +msgstr "Unakaribia kufunga tabo ya %S. Unauhakika unataka kuendelea?" + +msgid "Remove Buddy" +msgstr "" + +msgid "_Remove Buddy" +msgstr "" + +#, fuzzy, c-format +msgid "" +"You are about to remove the chat %s from your buddy list. Do you want to " +"continue?" +msgstr "Unakaribia kufunga tabo ya %S. Unauhakika unataka kuendelea?" + +#, fuzzy +msgid "Remove Chat" +msgstr "Ondoa &All" + +msgid "_Remove Chat" +msgstr "" + +msgid "Right-click for more unread messages...\n" +msgstr "" + +msgid "_Change Status" +msgstr "" + +msgid "Show Buddy _List" +msgstr "" + +msgid "_Unread Messages" +msgstr "" + +msgid "New _Message..." +msgstr "" + +msgid "_Accounts" +msgstr "" + +#, fuzzy +msgid "Plu_gins" +msgstr "Programu tumizi" + +#, fuzzy +msgid "Pr_eferences" +msgstr "Mapendekezo" + +msgid "Mute _Sounds" +msgstr "" + +msgid "_Blink on New Message" +msgstr "" + +#, fuzzy +msgid "_Quit" +msgstr "&Funga" + +#, fuzzy +msgid "Not started" +msgstr "Haujaanza" + +msgid "Receiving As:" +msgstr "" + +msgid "Receiving From:" +msgstr "" + +msgid "Sending To:" +msgstr "" + +msgid "Sending As:" +msgstr "" + +msgid "There is no application configured to open this type of file." +msgstr "" + +msgid "An error occurred while opening the file." +msgstr "" + +#, c-format +msgid "Error launching %s: %s" +msgstr "" + +#, fuzzy, c-format +msgid "Error running %s" +msgstr "Hitilafu katika kufungua %S" + +#, c-format +msgid "Process returned error code %d" +msgstr "" + +#, fuzzy +msgid "Filename:" +msgstr "Jina la faili:" + +#, fuzzy +msgid "Local File:" +msgstr "faili la kikweti" + +msgid "Speed:" +msgstr "" + +msgid "Time Elapsed:" +msgstr "Muda Uliotumika:" + +#, fuzzy +msgid "Time Remaining:" +msgstr "#1 imebakia" + +msgid "Close this window when all transfers _finish" +msgstr "" + +msgid "C_lear finished transfers" +msgstr "" + +#. "Download Details" arrow +msgid "File transfer _details" +msgstr "" + +#. Pause button +#, fuzzy +msgid "_Pause" +msgstr "Simamisha" + +#. Resume button +#, fuzzy +msgid "_Resume" +msgstr "Endelea" + +msgid "Paste as Plain _Text" +msgstr "" + +msgid "_Reset formatting" +msgstr "" + +msgid "Disable _smileys in selected text" +msgstr "" + +msgid "Hyperlink color" +msgstr "" + +msgid "Color to draw hyperlinks." +msgstr "" + +msgid "Hyperlink visited color" +msgstr "" + +msgid "Color to draw hyperlinks after it has been visited (or activated)." +msgstr "" + +msgid "Hyperlink prelight color" +msgstr "" + +msgid "Color to draw hyperlinks when mouse is over them." +msgstr "" + +msgid "Sent Message Name Color" +msgstr "" + +msgid "Color to draw the name of a message you sent." +msgstr "" + +msgid "Received Message Name Color" +msgstr "" + +msgid "Color to draw the name of a message you received." +msgstr "" + +msgid "\"Attention\" Name Color" +msgstr "" + +msgid "Color to draw the name of a message you received containing your name." +msgstr "" + +msgid "Action Message Name Color" +msgstr "" + +msgid "Color to draw the name of an action message." +msgstr "" + +msgid "Action Message Name Color for Whispered Message" +msgstr "" + +msgid "Whisper Message Name Color" +msgstr "" + +msgid "Typing notification color" +msgstr "" + +msgid "The color to use for the typing notification font" +msgstr "" + +msgid "Typing notification font" +msgstr "" + +msgid "The font to use for the typing notification" +msgstr "" + +msgid "Enable typing notification" +msgstr "" + +msgid "" +"Unrecognized file type\n" +"\n" +"Defaulting to PNG." +msgstr "" + +msgid "" +"Unrecognized file type\n" +"\n" +"Defaulting to PNG." +msgstr "" + +#, c-format +msgid "" +"Error saving image\n" +"\n" +"%s" +msgstr "" + +#, fuzzy, c-format +msgid "" +"Error saving image\n" +"\n" +"%s" +msgstr "Hitilafu katika kuhifadhi %S" + +msgid "Save Image" +msgstr "Hifadhi Taswira" + +#, fuzzy +msgid "_Save Image..." +msgstr "Hifadhi Taswira" + +msgid "_Add Custom Smiley..." +msgstr "" + +#, fuzzy +msgid "Select Font" +msgstr "&Uchanguzi" + +msgid "Select Text Color" +msgstr "" + +#, fuzzy +msgid "Select Background Color" +msgstr "Chapisha rangi za usuli" + +#, fuzzy +msgid "_URL" +msgstr "URL" + +#, fuzzy +msgid "_Description" +msgstr "Maelezo" + +msgid "" +"Please enter the URL and description of the link that you want to insert. " +"The description is optional." +msgstr "" + +msgid "Please enter the URL of the link that you want to insert." +msgstr "" + +msgid "Insert Link" +msgstr "" + +msgid "_Insert" +msgstr "" + +#, c-format +msgid "Failed to store image: %s\n" +msgstr "" + +msgid "Insert Image" +msgstr "" + +#, c-format +msgid "" +"This smiley is disabled because a custom smiley exists for this shortcut:\n" +" %s" +msgstr "" + +msgid "Smile!" +msgstr "" + +msgid "_Manage custom smileys" +msgstr "" + +msgid "This theme has no available smileys." +msgstr "" + +#, fuzzy +msgid "_Font" +msgstr "Fonti" + +msgid "Group Items" +msgstr "" + +msgid "Ungroup Items" +msgstr "" + +msgid "Bold" +msgstr "" + +#, fuzzy +msgid "Italic" +msgstr "Kiitalia" + +#, fuzzy +msgid "Underline" +msgstr "Interlingue" + +msgid "Strikethrough" +msgstr "" + +msgid "Increase Font Size" +msgstr "" + +msgid "Decrease Font Size" +msgstr "" + +msgid "Font Face" +msgstr "" + +#, fuzzy +msgid "Background Color" +msgstr "Chapisha rangi za usuli" + +msgid "Foreground Color" +msgstr "" + +msgid "Reset Formatting" +msgstr "" + +msgid "Insert IM Image" +msgstr "" + +msgid "Insert Smiley" +msgstr "" + +msgid "_Bold" +msgstr "" + +msgid "_Italic" +msgstr "" + +msgid "_Underline" +msgstr "" + +msgid "Strikethrough" +msgstr "" + +msgid "_Larger" +msgstr "" + +#, fuzzy +msgid "_Normal" +msgstr "&Kawaida" + +msgid "_Smaller" +msgstr "" + +#. If we want to show the formatting for the following items, we would +#. * need to update them when formatting changes. The above items don't need +#. * no updating nor nothin' +msgid "_Font face" +msgstr "" + +msgid "Foreground _color" +msgstr "" + +msgid "Bac_kground color" +msgstr "" + +#, fuzzy +msgid "_Image" +msgstr "Taswira" + +msgid "_Link" +msgstr "" + +msgid "_Horizontal rule" +msgstr "" + +msgid "_Smile!" +msgstr "" + +#, fuzzy +msgid "Log Deletion Failed" +msgstr "Unganisho Limeshindikana" + +msgid "Check permissions and try again." +msgstr "" + +#, c-format +msgid "" +"Are you sure you want to permanently delete the log of the conversation with " +"%s which started at %s?" +msgstr "" + +#, c-format +msgid "" +"Are you sure you want to permanently delete the log of the conversation in %" +"s which started at %s?" +msgstr "" + +#, c-format +msgid "" +"Are you sure you want to permanently delete the system log which started at %" +"s?" +msgstr "" + +#, fuzzy +msgid "Delete Log?" +msgstr "Futa mwenyeji" + +#, fuzzy +msgid "Delete Log..." +msgstr "Futa mwenyeji" + +#, c-format +msgid "Conversation in %s on %s" +msgstr "" + +#, c-format +msgid "Conversation with %s on %s" +msgstr "" + +#. Steal the "HELP" response and use it to trigger browsing to the logs folder +msgid "_Browse logs folder" +msgstr "" + +#, fuzzy, c-format +msgid "%s %s. Try `%s -h' for more information.\n" +msgstr "\n" + +#, c-format +msgid "" +"%s %s\n" +"Usage: %s [OPTION]...\n" +"\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" +" -l, --login[=NAME] enable specified account(s) (optional argument NAME\n" +" specifies account(s) to use, separated by commas.\n" +" Without this only the first account will be enabled).\n" +" --display=DISPLAY X display to use\n" +" -v, --version display the current version and exit\n" +msgstr "" + +#, c-format +msgid "" +"%s %s\n" +"Usage: %s [OPTION]...\n" +"\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" +" -l, --login[=NAME] enable specified account(s) (optional argument NAME\n" +" specifies account(s) to use, separated by commas.\n" +" Without this only the first account will be enabled).\n" +" -v, --version display the current version and exit\n" +msgstr "" + +#, 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" +"no fault of your own.\n" +"\n" +"If you can reproduce the crash, please notify the developers\n" +"by reporting a bug at:\n" +"%ssimpleticket/\n" +"\n" +"Please make sure to specify what you were doing at the time\n" +"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" +msgstr "" + +#. Translators may want to transliterate the name. +#. It is not to be translated. +#, fuzzy +msgid "Pidgin" +msgstr "Programu-unganishi" + +#, c-format +msgid "Exiting because another libpurple client is already running.\n" +msgstr "" + +#, fuzzy +msgid "/_Media" +msgstr "Media" + +msgid "/Media/_Hangup" +msgstr "" + +msgid "Calling..." +msgstr "" + +#, c-format +msgid "%s wishes to start an audio/video session with you." +msgstr "" + +#, c-format +msgid "%s wishes to start a video session with you." +msgstr "" + +#, c-format +msgid "%s has %d new message." +msgid_plural "%s has %d new messages." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "%d new email." +msgid_plural "%d new emails." +msgstr[0] "" +msgstr[1] "" + +#, c-format +msgid "The browser command \"%s\" is invalid." +msgstr "" + +#, fuzzy +msgid "Unable to open URL" +msgstr "Nimeshindwa Kusasisha" + +#, c-format +msgid "Error launching \"%s\": %s" +msgstr "" + +msgid "" +"The 'Manual' browser command has been chosen, but no command has been set." +msgstr "" + +#, fuzzy +msgid "Open All Messages" +msgstr "Fungua kwenye Tabo zote" + +msgid "You have mail!" +msgstr "" + +msgid "New Pounces" +msgstr "" + +msgid "Dismiss" +msgstr "" + +msgid "You have pounced!" +msgstr "" + +#, fuzzy +msgid "No message" +msgstr "Ujumbe" + +#, fuzzy +msgid "The following plugins will be unloaded." +msgstr "Programu-jalizi zifuatazo zinapatikana:" + +msgid "Multiple plugins will be unloaded." +msgstr "" + +#, fuzzy +msgid "Unload Plugins" +msgstr "Kuhusu Program-jalizi" + +msgid "Could not unload plugin" +msgstr "" + +msgid "" +"The plugin could not be unloaded now, but will be disabled at the next " +"startup." +msgstr "" + +#, c-format +msgid "" +"Error: %s\n" +"Check the plugin website for an update." +msgstr "" + +msgid "Author" +msgstr "" + +msgid "Written by:" +msgstr "" + +msgid "Web site:" +msgstr "" + +msgid "Filename:" +msgstr "" + +msgid "Configure Pl_ugin" +msgstr "" + +msgid "Plugin Details" +msgstr "" + +#, fuzzy +msgid "Select a file" +msgstr "Chagua Profaili" + +msgid "Modify Buddy Pounce" +msgstr "" + +#. Create the "Pounce on Whom" frame. +msgid "Pounce on Whom" +msgstr "" + +msgid "_Account:" +msgstr "" + +msgid "_Buddy name:" +msgstr "" + +msgid "Si_gns on" +msgstr "" + +msgid "Signs o_ff" +msgstr "" + +msgid "Goes a_way" +msgstr "" + +msgid "Ret_urns from away" +msgstr "" + +msgid "Becomes _idle" +msgstr "" + +msgid "Is no longer i_dle" +msgstr "" + +msgid "Starts _typing" +msgstr "" + +msgid "P_auses while typing" +msgstr "" + +msgid "Stops t_yping" +msgstr "" + +msgid "Sends a _message" +msgstr "" + +#, fuzzy +msgid "Ope_n an IM window" +msgstr "Fungua dirisha jipya" + +msgid "_Pop up a notification" +msgstr "" + +msgid "Send a _message" +msgstr "" + +msgid "E_xecute a command" +msgstr "" + +msgid "P_lay a sound" +msgstr "" + +#, fuzzy +msgid "Brows_e..." +msgstr "Vinjari…" + +#, fuzzy +msgid "Br_owse..." +msgstr "Vinjari…" + +#, fuzzy +msgid "Pre_view" +msgstr "Hakiki" + +msgid "P_ounce only when my status is not Available" +msgstr "" + +msgid "_Recurring" +msgstr "" + +msgid "Pounce Target" +msgstr "" + +#, c-format +msgid "Started typing" +msgstr "" + +#, c-format +msgid "Paused while typing" +msgstr "" + +#, c-format +msgid "Signed on" +msgstr "" + +#, c-format +msgid "Returned from being idle" +msgstr "" + +#, c-format +msgid "Returned from being away" +msgstr "" + +#, c-format +msgid "Stopped typing" +msgstr "" + +#, c-format +msgid "Signed off" +msgstr "" + +#, c-format +msgid "Became idle" +msgstr "" + +#, c-format +msgid "Went away" +msgstr "" + +#, fuzzy, c-format +msgid "Sent a message" +msgstr "Weka Ukurasa Nyumbani" + +#, c-format +msgid "Unknown.... Please report this!" +msgstr "" + +msgid "Smiley theme failed to unpack." +msgstr "" + +#, fuzzy +msgid "Install Theme" +msgstr "Sakinisha Mandhari" + +msgid "" +"Select a smiley theme that you would like to use from the list below. New " +"themes can be installed by dragging and dropping them onto the theme list." +msgstr "" + +msgid "Icon" +msgstr "Ikoni" + +#, fuzzy +msgid "Keyboard Shortcuts" +msgstr "Uwekaji wa Mikato" + +msgid "Cl_ose conversations with the Escape key" +msgstr "" + +#. Buddy List Themes +msgid "Buddy List Theme" +msgstr "" + +#. System Tray +msgid "System Tray Icon" +msgstr "" + +msgid "_Show system tray icon:" +msgstr "" + +msgid "On unread messages" +msgstr "" + +msgid "Conversation Window Hiding" +msgstr "" + +msgid "_Hide new IM conversations:" +msgstr "" + +msgid "When away" +msgstr "" + +#. All the tab options! +msgid "Tabs" +msgstr "Tabo" + +msgid "Show IMs and chats in _tabbed windows" +msgstr "" + +msgid "Show close b_utton on tabs" +msgstr "" + +msgid "_Placement:" +msgstr "" + +#, fuzzy +msgid "Top" +msgstr "Kwa:" + +#, fuzzy +msgid "Bottom" +msgstr "&Chini:" + +msgid "Left" +msgstr "Kushoto" + +msgid "Right" +msgstr "Kulia" + +msgid "Left Vertical" +msgstr "" + +msgid "Right Vertical" +msgstr "" + +msgid "N_ew conversations:" +msgstr "" + +msgid "Show _formatting on incoming messages" +msgstr "" + +msgid "Close IMs immediately when the tab is closed" +msgstr "" + +msgid "Show _detailed information" +msgstr "" + +msgid "Enable buddy ic_on animation" +msgstr "" + +msgid "_Notify buddies that you are typing to them" +msgstr "" + +msgid "Highlight _misspelled words" +msgstr "" + +#, fuzzy +msgid "Use smooth-scrolling" +msgstr "Tu&mia ubiringizaji taratibu" + +msgid "F_lash window when IMs are received" +msgstr "" + +msgid "Minimi_ze new conversation windows" +msgstr "" + +msgid "Minimum input area height in lines:" +msgstr "" + +#, fuzzy +msgid "Font" +msgstr "Fonti" + +msgid "Use document font from _theme" +msgstr "" + +msgid "Use font from _theme" +msgstr "" + +msgid "Conversation _font:" +msgstr "" + +msgid "Default Formatting" +msgstr "" + +msgid "" +"This is how your outgoing message text will appear when you use protocols " +"that support formatting." +msgstr "" + +msgid "Cannot start proxy configuration program." +msgstr "" + +msgid "Cannot start browser configuration program." +msgstr "" + +msgid "Example: stunserver.org" +msgstr "" + +msgid "_Autodetect IP address" +msgstr "" + +msgid "Public _IP:" +msgstr "" + +#, fuzzy +msgid "Ports" +msgstr "Lango:" + +msgid "_Enable automatic router port forwarding" +msgstr "" + +msgid "_Manually specify range of ports to listen on" +msgstr "" + +msgid "_Start port:" +msgstr "" + +#, fuzzy +msgid "_End port:" +msgstr "Tuma Kwa:" + +#. TURN server +msgid "Relay Server (TURN)" +msgstr "" + +msgid "Proxy Server & Browser" +msgstr "" + +msgid "Proxy configuration program was not found." +msgstr "" + +msgid "Browser configuration program was not found." +msgstr "" + +msgid "" +"Proxy & Browser preferences are configured\n" +"in GNOME Preferences" +msgstr "" + +msgid "Configure _Proxy" +msgstr "" + +msgid "Configure _Browser" +msgstr "" + +msgid "Proxy Server" +msgstr "" + +#, fuzzy +msgid "No proxy" +msgstr "Hakuna waka&la" + +#. This is a global option that affects SOCKS4 usage even with account-specific proxy settings +msgid "Use remote DNS with SOCKS4 proxies" +msgstr "" + +msgid "_User:" +msgstr "" + +msgid "Seamonkey" +msgstr "" + +msgid "Opera" +msgstr "Opera" + +#, fuzzy +msgid "Netscape" +msgstr "Netscape 4" + +msgid "Mozilla" +msgstr "Mozilla" + +msgid "Konqueror" +msgstr "Konqueror" + +#, fuzzy +msgid "Desktop Default" +msgstr "Rejesha Misingi" + +#, fuzzy +msgid "GNOME Default" +msgstr "WPS Msingi" + +msgid "Galeon" +msgstr "Galeon" + +msgid "Firefox" +msgstr "Firefox" + +msgid "Firebird" +msgstr "" + +msgid "Epiphany" +msgstr "Epiphany" + +msgid "Manual" +msgstr "" + +msgid "Browser Selection" +msgstr "" + +#, fuzzy +msgid "_Browser:" +msgstr "Vinjari…" + +msgid "_Open link in:" +msgstr "" + +#, fuzzy +msgid "Browser default" +msgstr "Tumia Msingi" + +msgid "Existing window" +msgstr "" + +msgid "New tab" +msgstr "Tabo mpya" + +#, c-format +msgid "" +"_Manual:\n" +"(%s for URL)" +msgstr "" + +msgid "Log _format:" +msgstr "" + +msgid "Log all _instant messages" +msgstr "" + +msgid "Log all c_hats" +msgstr "" + +msgid "Log all _status changes to system log" +msgstr "" + +#, fuzzy +msgid "Sound Selection" +msgstr "&Uchanguzi" + +#, c-format +msgid "Quietest" +msgstr "" + +#, c-format +msgid "Quieter" +msgstr "" + +#, fuzzy, c-format +msgid "Quiet" +msgstr "&Funga" + +#, fuzzy, c-format +msgid "Loud" +msgstr "&Pakia upya" + +#, fuzzy, c-format +msgid "Louder" +msgstr "folda" + +#, c-format +msgid "Loudest" +msgstr "" + +msgid "_Method:" +msgstr "" + +msgid "Console beep" +msgstr "" + +msgid "No sounds" +msgstr "" + +#, c-format +msgid "" +"Sound c_ommand:\n" +"(%s for filename)" +msgstr "" + +msgid "M_ute sounds" +msgstr "" + +msgid "Sounds when conversation has _focus" +msgstr "" + +msgid "_Enable sounds:" +msgstr "" + +#, fuzzy +msgid "V_olume:" +msgstr "Safu-wima:" + +#, fuzzy +msgid "Play" +msgstr "Che&za" + +#, fuzzy +msgid "_Browse..." +msgstr "Vinjari…" + +#, fuzzy +msgid "_Reset" +msgstr "Seti upya" + +msgid "_Report idle time:" +msgstr "" + +msgid "Based on keyboard or mouse use" +msgstr "" + +msgid "_Auto-reply:" +msgstr "" + +msgid "When both away and idle" +msgstr "" + +#. Auto-away stuff +msgid "Auto-away" +msgstr "" + +msgid "_Minutes before becoming idle:" +msgstr "" + +msgid "Change status when _idle" +msgstr "" + +#, fuzzy +msgid "Change _status to:" +msgstr "&Badili matini ya ufito hali" + +#. Signon status stuff +msgid "Status at Startup" +msgstr "" + +msgid "Use status from last _exit at startup" +msgstr "" + +msgid "Status to a_pply at startup:" +msgstr "" + +msgid "Interface" +msgstr "" + +#, fuzzy +msgid "Smiley Themes" +msgstr "Pata Mandhari" + +#, fuzzy +msgid "Browser" +msgstr "Vinjari…" + +msgid "Status / Idle" +msgstr "" + +msgid "Allow all users to contact me" +msgstr "" + +msgid "Allow only the users on my buddy list" +msgstr "" + +msgid "Allow only the users below" +msgstr "" + +msgid "Block all users" +msgstr "" + +msgid "Block only the users below" +msgstr "" + +msgid "Privacy" +msgstr "Faragha" + +msgid "Changes to privacy settings take effect immediately." +msgstr "" + +msgid "Set privacy for:" +msgstr "" + +#. Remove All button +#, fuzzy +msgid "Remove Al_l" +msgstr "Ondoa &All" + +msgid "Permit User" +msgstr "" + +msgid "Type a user you permit to contact you." +msgstr "" + +msgid "Please enter the name of the user you wish to be able to contact you." +msgstr "" + +msgid "_Permit" +msgstr "" + +#, c-format +msgid "Allow %s to contact you?" +msgstr "" + +#, fuzzy, c-format +msgid "Are you sure you wish to allow %s to contact you?" +msgstr "Una uhakika unataka kuOnyesha nywila zako?" + +#, fuzzy +msgid "Block User" +msgstr "Imezuiliwa" + +msgid "Type a user to block." +msgstr "" + +msgid "Please enter the name of the user you wish to block." +msgstr "" + +#, c-format +msgid "Block %s?" +msgstr "" + +#, c-format +msgid "Are you sure you want to block %s?" +msgstr "" + +msgid "Apply" +msgstr "" + +#, fuzzy +msgid "That file already exists" +msgstr "Ithibati tayari ipo." + +#, fuzzy +msgid "Would you like to overwrite it?" +msgstr "Ungependa kuhifadhi faili hili?" + +msgid "Overwrite" +msgstr "" + +#, fuzzy +msgid "Choose New Name" +msgstr "Jina la Kuki" + +#, fuzzy +msgid "Select Folder..." +msgstr "Fold&a Lililochaguliwa" + +#. list button +msgid "_Get List" +msgstr "" + +#. add button +msgid "_Add Chat" +msgstr "" + +#, fuzzy +msgid "Are you sure you want to delete the selected saved statuses?" +msgstr "Je una uhakika uantaka kufuta ithibati hizi?" + +#. Use button +msgid "_Use" +msgstr "" + +msgid "Title already in use. You must choose a unique title." +msgstr "" + +msgid "Different" +msgstr "" + +#, fuzzy +msgid "_Title:" +msgstr "Jina:" + +#, fuzzy +msgid "_Status:" +msgstr "Hali:" + +#. Different status message expander +msgid "Use a _different status for some accounts" +msgstr "" + +#. Save & Use button +msgid "Sa_ve & Use" +msgstr "" + +#, c-format +msgid "Status for %s" +msgstr "" + +#. +#. * TODO: We should enable/disable the add button based on +#. * whether the user has entered all required data. That +#. * would eliminate the need for this check and provide a +#. * better user experience. +#. +#, fuzzy +msgid "Custom Smiley" +msgstr "Kipimo cha kaida..." + +msgid "More Data needed" +msgstr "" + +msgid "Please provide a shortcut to associate with the smiley." +msgstr "" + +#, c-format +msgid "" +"A custom smiley for '%s' already exists. Please use a different shortcut." +msgstr "" + +#, fuzzy +msgid "Duplicate Shortcut" +msgstr "sifa rudufu" + +msgid "Please select an image for the smiley." +msgstr "" + +msgid "Edit Smiley" +msgstr "" + +msgid "Add Smiley" +msgstr "" + +#, fuzzy +msgid "_Image:" +msgstr "Taswira" + +#. Shortcut text +msgid "S_hortcut text:" +msgstr "" + +msgid "Smiley" +msgstr "" + +msgid "Shortcut Text" +msgstr "" + +msgid "Custom Smiley Manager" +msgstr "" + +#, fuzzy +msgid "Select Buddy Icon" +msgstr "&Uchanguzi" + +msgid "Click to change your buddyicon for this account." +msgstr "" + +msgid "Click to change your buddyicon for all accounts." +msgstr "" + +msgid "Waiting for network connection" +msgstr "" + +msgid "New status..." +msgstr "" + +msgid "Saved statuses..." +msgstr "" + +msgid "Status Selector" +msgstr "" + +msgid "Google Talk" +msgstr "" + +#, c-format +msgid "The following error has occurred loading %s: %s" +msgstr "" + +#, fuzzy +msgid "Failed to load image" +msgstr "Imeshindwa Kuingia" + +#, c-format +msgid "Cannot send folder %s." +msgstr "" + +#, c-format +msgid "" +"%s cannot transfer a folder. You will need to send the files within " +"individually." +msgstr "" + +msgid "You have dragged an image" +msgstr "" + +msgid "" +"You can send this image as a file transfer, embed it into this message, or " +"use it as the buddy icon for this user." +msgstr "" + +msgid "Set as buddy icon" +msgstr "" + +msgid "Send image file" +msgstr "" + +#, fuzzy +msgid "Insert in message" +msgstr "Funga ujumbe huu" + +msgid "Would you like to set it as the buddy icon for this user?" +msgstr "" + +msgid "" +"You can send this image as a file transfer, or use it as the buddy icon for " +"this user." +msgstr "" + +msgid "" +"You can insert this image into this message, or use it as the buddy icon for " +"this user" +msgstr "" + +#. I don't know if we really want to do anything here. Most of the desktop item types are crap like +#. * "MIME Type" (I have no clue how that would be a desktop item) and "Comment"... nothing we can really +#. * send. The only logical one is "Application," but do we really want to send a binary and nothing else? +#. * Probably not. I'll just give an error and return. +#. The original patch sent the icon used by the launcher. That's probably wrong +msgid "Cannot send launcher" +msgstr "" + +msgid "" +"You dragged a desktop launcher. Most likely you wanted to send whatever this " +"launcher points to instead of this launcher itself." +msgstr "" + +#, c-format +msgid "" +"File: %s\n" +"File size: %s\n" +"Image size: %dx%d" +msgstr "" + +#, c-format +msgid "The file '%s' is too large for %s. Please try a smaller image.\n" +msgstr "" + +#, fuzzy +msgid "Icon Error" +msgstr "Hitilafu isiyojulikana" + +msgid "Could not set icon" +msgstr "" + +#, c-format +msgid "Failed to open file '%s': %s" +msgstr "" + +#, c-format +msgid "" +"Failed to load image '%s': reason not known, probably a corrupt image file" +msgstr "" + +#, fuzzy +msgid "_Open Link" +msgstr "Fungua katika:" + +#, fuzzy +msgid "_Copy Link Location" +msgstr "&Nakili Mahali pa Kiungo" + +#, fuzzy +msgid "_Copy Email Address" +msgstr "Nakili Anwani ya Barua-p&epe" + +#, fuzzy +msgid "Save File" +msgstr "&Hifadhi faili" + +#, fuzzy +msgid "Select color" +msgstr "Chagua &Yote" + +msgid "_Alias" +msgstr "" + +#, fuzzy +msgid "Close _tabs" +msgstr "Funga tabo" + +msgid "_Get Info" +msgstr "" + +msgid "_Invite" +msgstr "" + +#, fuzzy +msgid "_Modify..." +msgstr "R&ekebisha" + +msgid "_Add..." +msgstr "" + +#, fuzzy +msgid "_Open Mail" +msgstr "Fungua tabo" + +#, fuzzy +msgid "_Edit" +msgstr "&Hariri" + +msgid "Pidgin Tooltip" +msgstr "" + +msgid "Pidgin smileys" +msgstr "" + +msgid "Penguin Pimps" +msgstr "" + +msgid "Selecting this disables graphical emoticons." +msgstr "" + +#, fuzzy +msgid "none" +msgstr "Bila" + +#, fuzzy +msgid "Small" +msgstr "Kisomali" + +msgid "Smaller versions of the default smilies" +msgstr "" + +msgid "Response Probability:" +msgstr "" + +msgid "Statistics Configuration" +msgstr "" + +#. msg_difference spinner +msgid "Maximum response timeout:" +msgstr "" + +msgid "minutes" +msgstr "" + +#. last_seen spinner +msgid "Maximum last-seen difference:" +msgstr "" + +#. threshold spinner +msgid "Threshold:" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Contact Availability Prediction" +msgstr "" + +#. *< name +#. *< version +msgid "Contact Availability Prediction plugin." +msgstr "" + +#. * summary +msgid "Displays statistical information about your buddies' availability" +msgstr "" + +msgid "Buddy is idle" +msgstr "" + +msgid "Buddy is away" +msgstr "" + +msgid "Buddy is \"extended\" away" +msgstr "" + +#. Not used yet. +msgid "Buddy is mobile" +msgstr "" + +msgid "Buddy is offline" +msgstr "" + +msgid "Point values to use when..." +msgstr "" + +msgid "" +"The buddy with the largest score is the buddy who will have priority " +"in the contact.\n" +msgstr "" + +msgid "Use last buddy when scores are equal" +msgstr "" + +msgid "Point values to use for account..." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Contact Priority" +msgstr "" + +#. *< name +#. *< version +#. *< summary +msgid "" +"Allows for controlling the values associated with different buddy states." +msgstr "" + +#. *< description +msgid "" +"Allows for changing the point values of idle/away/offline states for buddies " +"in contact priority computations." +msgstr "" + +msgid "Conversation Colors" +msgstr "" + +msgid "Customize colors in the conversation window" +msgstr "" + +#, fuzzy +msgid "Error Messages" +msgstr "Ufafanuzi wa Hitilafu" + +msgid "Highlighted Messages" +msgstr "" + +#, fuzzy +msgid "System Messages" +msgstr "Misingi ya mfumo" + +#, fuzzy +msgid "Sent Messages" +msgstr "Jumbe za tahadhari" + +msgid "Received Messages" +msgstr "" + +#, c-format +msgid "Select Color for %s" +msgstr "" + +msgid "Ignore incoming format" +msgstr "" + +msgid "Apply in Chats" +msgstr "" + +msgid "Apply in IMs" +msgstr "" + +msgid "By conversation count" +msgstr "" + +msgid "Conversation Placement" +msgstr "" + +#. Translators: "New conversations" should match the text in the preferences dialog and "By conversation count" should be the same text used above +msgid "" +"Note: The preference for \"New conversations\" must be set to \"By " +"conversation count\"." +msgstr "" + +msgid "Number of conversations per window" +msgstr "" + +msgid "Separate IM and Chat windows when placing by number" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "ExtPlacement" +msgstr "" + +#. *< name +#. *< version +msgid "Extra conversation placement options." +msgstr "" + +#. *< summary +#. * description +msgid "" +"Restrict the number of conversations per windows, optionally separating IMs " +"and Chats" +msgstr "" + +#. Configuration frame +msgid "Mouse Gestures Configuration" +msgstr "" + +msgid "Middle mouse button" +msgstr "" + +msgid "Right mouse button" +msgstr "" + +#. "Visual gesture display" checkbox +msgid "_Visual gesture display" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Mouse Gestures" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Provides support for mouse gestures" +msgstr "" + +#. * description +msgid "" +"Allows support for mouse gestures in conversation windows. Drag the middle " +"mouse button to perform certain actions:\n" +" • Drag down and then to the right to close a conversation.\n" +" • Drag up and then to the left to switch to the previous conversation.\n" +" • Drag up and then to the right to switch to the next conversation." +msgstr "" + +msgid "Instant Messaging" +msgstr "" + +#. Add the label. +msgid "Select a person from your address book below, or add a new person." +msgstr "" + +#, fuzzy +msgid "Group:" +msgstr "Kusanya kwa:" + +#. "New Person" button +#, fuzzy +msgid "New Person" +msgstr "Toleo Jipya" + +#. "Select Buddy" button +msgid "Select Buddy" +msgstr "" + +#. Add the label. +msgid "" +"Select a person from your address book to add this buddy to, or create a new " +"person." +msgstr "" + +#. Add the expander +#, fuzzy +msgid "User _details" +msgstr "Onyesha &ufafanuzi" + +#. "Associate Buddy" button +msgid "_Associate Buddy" +msgstr "" + +#, fuzzy +msgid "Unable to send email" +msgstr "Haiwezi kufuta moduli" + +msgid "The evolution executable was not found in the PATH." +msgstr "" + +msgid "An email address was not found for this buddy." +msgstr "" + +msgid "Add to Address Book" +msgstr "" + +msgid "Send Email" +msgstr "" + +#. Configuration frame +msgid "Evolution Integration Configuration" +msgstr "" + +#. Label +msgid "Select all accounts that buddies should be auto-added to." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Evolution Integration" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides integration with Evolution." +msgstr "" + +msgid "Please enter the person's information below." +msgstr "" + +msgid "Please enter the buddy's username and account type below." +msgstr "" + +msgid "Account type:" +msgstr "" + +#. Optional Information section +#, fuzzy +msgid "Optional information:" +msgstr "Taarifa zaidi" + +#, fuzzy +msgid "First name:" +msgstr "Ukurasa wa kwanza" + +#, fuzzy +msgid "Last name:" +msgstr "Ukurasa wa mwisho" + +#, fuzzy +msgid "Email:" +msgstr "Barua pepe" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "GTK Signals Test" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Test to see that all ui signals are working properly." +msgstr "" + +#, c-format +msgid "" +"\n" +"Buddy Note: %s" +msgstr "" + +msgid "History" +msgstr "Historia" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Iconify on Away" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Iconifies the buddy list and your conversations when you go away." +msgstr "" + +msgid "Mail Checker" +msgstr "" + +msgid "Checks for new local mail." +msgstr "" + +msgid "Adds a small box to the buddy list that shows if you have new mail." +msgstr "" + +msgid "Markerline" +msgstr "" + +msgid "Draw a line to indicate new messages in a conversation." +msgstr "" + +msgid "Jump to markerline" +msgstr "" + +msgid "Draw Markerline in " +msgstr "" + +#, fuzzy +msgid "_IM windows" +msgstr "Dirisha jipya" + +msgid "C_hat windows" +msgstr "" + +msgid "" +"A music messaging session has been requested. Please click the MM icon to " +"accept." +msgstr "" + +msgid "Music messaging session confirmed." +msgstr "" + +msgid "Music Messaging" +msgstr "" + +msgid "There was a conflict in running the command:" +msgstr "" + +#, fuzzy +msgid "Error Running Editor" +msgstr "Hitilafu katika Kutuma Taarifa" + +msgid "The following error has occurred:" +msgstr "" + +#. Configuration frame +msgid "Music Messaging Configuration" +msgstr "" + +msgid "Score Editor Path" +msgstr "" + +msgid "_Apply" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#. *< name +#. *< version +msgid "Music Messaging Plugin for collaborative composition." +msgstr "" + +#. * summary +msgid "" +"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." +msgstr "" + +#. ---------- "Notify For" ---------- +msgid "Notify For" +msgstr "" + +msgid "\t_Only when someone says your username" +msgstr "" + +msgid "_Focused windows" +msgstr "" + +#. ---------- "Notification Methods" ---------- +msgid "Notification Methods" +msgstr "" + +msgid "Prepend _string into window title:" +msgstr "" + +#. Count method button +msgid "Insert c_ount of new messages into window title" +msgstr "" + +#. Count xprop method button +msgid "Insert count of new message into _X property" +msgstr "" + +#. Urgent method button +msgid "Set window manager \"_URGENT\" hint" +msgstr "" + +#, fuzzy +msgid "_Flash window" +msgstr "Dirisha sawa" + +#. Raise window method button +msgid "R_aise conversation window" +msgstr "" + +#. Present conversation method button +msgid "_Present conversation window" +msgstr "" + +#. ---------- "Notification Removals" ---------- +msgid "Notification Removal" +msgstr "" + +#. Remove on focus button +msgid "Remove when conversation window _gains focus" +msgstr "" + +#. Remove on click button +msgid "Remove when conversation window _receives click" +msgstr "" + +#. Remove on type button +msgid "Remove when _typing in conversation window" +msgstr "" + +#. Remove on message send button +msgid "Remove when a _message gets sent" +msgstr "" + +#. Remove on conversation switch button +msgid "Remove on switch to conversation ta_b" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "Message Notification" +msgstr "Arifisho la Jumla" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "Provides a variety of ways of notifying you of unread messages." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Pidgin Demonstration Plugin" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "An example plugin that does stuff - see the description." +msgstr "" + +#. * description +msgid "" +"This is a really cool plugin that does a lot of stuff:\n" +"- It tells you who wrote the program when you log in\n" +"- It reverses all incoming text\n" +"- It sends a message to people on your list immediately when they sign on" +msgstr "" + +msgid "Cursor Color" +msgstr "" + +msgid "Secondary Cursor Color" +msgstr "" + +msgid "Hyperlink Color" +msgstr "" + +msgid "Visited Hyperlink Color" +msgstr "" + +msgid "Highlighted Message Name Color" +msgstr "" + +msgid "GtkTreeView Horizontal Separation" +msgstr "" + +msgid "Conversation Entry" +msgstr "" + +msgid "Request Dialog" +msgstr "" + +msgid "Notify Dialog" +msgstr "" + +#, fuzzy +msgid "Select Color" +msgstr "Chagua &Yote" + +#, c-format +msgid "Select Interface Font" +msgstr "" + +#, c-format +msgid "Select Font for %s" +msgstr "" + +msgid "GTK+ Interface Font" +msgstr "" + +msgid "GTK+ Text Shortcut Theme" +msgstr "" + +#. +#. for (i = 0; i < G_N_ELEMENTS(widget_bool_prefs); i++) { +#. hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_CAT_SPACE); +#. gtk_box_pack_start(GTK_BOX(frame), hbox, FALSE, FALSE, 0); +#. +#. check = pidgin_prefs_checkbox(_(widget_bool_names[i]), +#. widget_bool_prefs_set[i], hbox); +#. gtk_size_group_add_widget(labelsg, check); +#. +#. widget_bool_widgets[i] = pidgin_prefs_checkbox("", widget_bool_prefs[i], hbox); +#. * +#. gtk_size_group_add_widget(widgetsb, widget_bool_widgets[i]); +#. * +#. gtk_widget_set_sensitive(widget_bool_widgets[i], +#. purple_prefs_get_bool(widget_bool_prefs_set[i])); +#. g_signal_connect(G_OBJECT(check), "toggled", +#. G_CALLBACK(pidgin_toggle_sensitive), +#. widget_bool_widgets[i]); +#. } +#. +msgid "Interface colors" +msgstr "" + +msgid "Widget Sizes" +msgstr "" + +msgid "Fonts" +msgstr "Fonti" + +msgid "Gtkrc File Tools" +msgstr "" + +#, c-format +msgid "Write settings to %s%sgtkrc-2.0" +msgstr "" + +msgid "Re-read gtkrc files" +msgstr "" + +msgid "Pidgin GTK+ Theme Control" +msgstr "" + +msgid "Provides access to commonly used gtkrc settings." +msgstr "" + +msgid "Raw" +msgstr "" + +msgid "Lets you send raw input to text-based protocols." +msgstr "" + +msgid "" +"Lets you send raw input to text-based protocols (XMPP, MSN, IRC, TOC). Hit " +"'Enter' in the entry box to send. Watch the debug window." +msgstr "" + +#, c-format +msgid "You can upgrade to %s %s today." +msgstr "" + +msgid "New Version Available" +msgstr "Toleo Jipya Linapatikana" + +msgid "Later" +msgstr "Baadae" + +#, fuzzy +msgid "Download Now" +msgstr "Hitilafu ya upakuzi" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "Release Notification" +msgstr "Arifisho la Jumla" + +#. *< name +#. *< version +#. * summary +msgid "Checks periodically for new releases." +msgstr "" + +#. * description +msgid "" +"Checks periodically for new releases and notifies the user with the " +"ChangeLog." +msgstr "" + +#. *< major version +#. *< minor version +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "Send Button" +msgstr "Tuma kwa:" + +#. *< name +#. *< version +msgid "Conversation Window Send Button." +msgstr "" + +#. *< summary +msgid "" +"Adds a Send button to the entry area of the conversation window. Intended " +"for when no physical keyboard is present." +msgstr "" + +msgid "Duplicate Correction" +msgstr "" + +msgid "The specified word already exists in the correction list." +msgstr "" + +msgid "Text Replacements" +msgstr "" + +#, fuzzy +msgid "You type" +msgstr "Aina ya uunganishi" + +msgid "You send" +msgstr "" + +msgid "Whole words only" +msgstr "" + +#, fuzzy +msgid "Case sensitive" +msgstr "(Nyepesi huhisi herufi kubwa au ndogo)" + +msgid "Add a new text replacement" +msgstr "" + +msgid "You _type:" +msgstr "" + +msgid "You _send:" +msgstr "" + +#. Created here so it can be passed to whole_words_button_toggled. +msgid "_Exact case match (uncheck for automatic case handling)" +msgstr "" + +msgid "Only replace _whole words" +msgstr "" + +msgid "General Text Replacement Options" +msgstr "" + +msgid "Enable replacement of last word on send" +msgstr "" + +msgid "Text replacement" +msgstr "" + +msgid "Replaces text in outgoing messages according to user-defined rules." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Buddy Ticker" +msgstr "" + +#. *< name +#. *< version +#. * summary +#. * description +msgid "A horizontal scrolling version of the buddy list." +msgstr "" + +msgid "Display Timestamps Every" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "Timestamp" +msgstr "Uchapaji wa Muda" + +#. *< name +#. *< version +#. * summary +msgid "Display iChat-style timestamps" +msgstr "" + +#. * description +msgid "Display iChat-style timestamps every N minutes." +msgstr "" + +msgid "Timestamp Format Options" +msgstr "" + +#, c-format +msgid "_Force 24-hour time format" +msgstr "" + +msgid "Show dates in..." +msgstr "" + +msgid "Co_nversations:" +msgstr "" + +msgid "For delayed messages" +msgstr "" + +msgid "For delayed messages and in chats" +msgstr "" + +msgid "_Message Logs:" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Message Timestamp Formats" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Customizes the message timestamp formats." +msgstr "" + +#. * description +msgid "" +"This plugin allows the user to customize conversation and logging message " +"timestamp formats." +msgstr "" + +msgid "Opacity:" +msgstr "" + +#. IM Convo trans options +msgid "IM Conversation Windows" +msgstr "" + +msgid "_IM window transparency" +msgstr "" + +msgid "_Show slider bar in IM window" +msgstr "" + +msgid "Remove IM window transparency on focus" +msgstr "" + +#, fuzzy +msgid "Always on top" +msgstr "&Juu Daima" + +#. Buddy List trans options +msgid "Buddy List Window" +msgstr "" + +msgid "_Buddy List window transparency" +msgstr "" + +msgid "Remove Buddy List window transparency on focus" +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +msgid "Transparency" +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Variable Transparency for the buddy list and conversations." +msgstr "" + +#. * description +msgid "" +"This plugin enables variable alpha transparency on conversation windows and " +"the buddy list.\n" +"\n" +"* Note: This plugin requires Win2000 or greater." +msgstr "" + +msgid "GTK+ Runtime Version" +msgstr "" + +#. Autostart +msgid "Startup" +msgstr "Kila unapoanzisha" + +#, c-format +msgid "_Start %s on Windows startup" +msgstr "" + +msgid "_Dockable Buddy List" +msgstr "" + +#. Blist On Top +msgid "_Keep Buddy List window on top:" +msgstr "" + +#. XXX: Did this ever work? +msgid "Only when docked" +msgstr "" + +msgid "Windows Pidgin Options" +msgstr "" + +msgid "Options specific to Pidgin for Windows." +msgstr "" + +msgid "" +"Provides options specific to Pidgin for Windows , such as buddy list docking." +msgstr "" + +msgid "Logged out." +msgstr "" + +#. *< type +#. *< ui_requirement +#. *< flags +#. *< dependencies +#. *< priority +#. *< id +#, fuzzy +msgid "XMPP Console" +msgstr "Kiweko cha Hitilafu" + +msgid "Account: " +msgstr "" + +msgid "Not connected to XMPP" +msgstr "" + +msgid "Insert an stanza." +msgstr "" + +msgid "Insert a stanza." +msgstr "" + +msgid "Insert a stanza." +msgstr "" + +#. *< name +#. *< version +#. * summary +msgid "Send and receive raw XMPP stanzas." +msgstr "" + +#. * description +msgid "This plugin is useful for debbuging XMPP servers or clients." +msgstr ""