Tue, 01 May 2007 14:09:24 +0000
merge of '24a044bc4e165af19360b899e45e5f059397b13a'
and '20baadca265c16cfd45938d251d3a9579ef6c230'
| pidgin.spec.in | file | annotate | diff | comparison | revisions |
--- a/AUTHORS Tue May 01 14:02:55 2007 +0000 +++ b/AUTHORS Tue May 01 14:09:24 2007 +0000 @@ -14,7 +14,7 @@ ICQ: 96642211 Yahoo: SeanEgn MSN: seanegn@hotmail.com - Jabber: seanegn@jabber.org + XMPP: seanegn@jabber.org Gadu-Gadu: 1511497 Daniel 'datallah' Atallah @@ -52,7 +52,7 @@ Rob Flynn <gaim@robflynn.com> - maintainer Adam Fritzler - libfaim maintainer Syd Logan - hacker and designated driver [lazy bum] -Jim Seymour - Jabber developer +Jim Seymour - XMPP developer Mark Spencer <markster@marko.net> - original author Eric Warmenhoven <eric@warmenhoven.org> - lead developer
--- a/README Tue May 01 14:02:55 2007 +0000 +++ b/README Tue May 01 14:09:24 2007 +0000 @@ -4,7 +4,7 @@ libpurple is a library intended to be used by programmers seeking to write an IM client that connects to many IM networks. It supports -AIM, ICQ, Jabber, MSN and Yahoo!, among others. +AIM, ICQ, XMPP, MSN and Yahoo!, among others. Pidgin is an graphical IM client written in C which uses the GTK+ toolkit.
--- a/doc/finch.1.in Tue May 01 14:02:55 2007 +0000 +++ b/doc/finch.1.in Tue May 01 14:09:24 2007 +0000 @@ -30,7 +30,7 @@ .SH DESCRIPTION .PP \fBfinch\fR is a console-based modular messaging client capable of using -AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, +AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, and QQ all at once. It has many common features found in other clients, as well as many unique features. Finch is not endorsed by or affiliated with America Online, ICQ, Microsoft, or Yahoo.
--- a/doc/pidgin.1.in Tue May 01 14:02:55 2007 +0000 +++ b/doc/pidgin.1.in Tue May 01 14:09:24 2007 +0000 @@ -28,7 +28,7 @@ .SH DESCRIPTION .PP -Pidgin is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, +Pidgin is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It has many common features found in other clients, as well as many unique features. Pidgin is not endorsed by or
--- a/libpurple/plugins/perl/Makefile.am Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/Makefile.am Tue May 01 14:09:24 2007 +0000 @@ -73,9 +73,9 @@ common/Util.xs \ common/XMLNode.xs \ common/module.h \ - common/typemap \ - common/fallback/const-c.inc \ - common/fallback/const-xs.inc + common/typemap +# common/fallback/const-c.inc \ +# common/fallback/const-xs.inc EXTRA_DIST = \ Makefile.mingw \ @@ -139,7 +139,7 @@ done @rm -f Makefile - @rm -f common/const-c.inc common/const-xs.inc +# @rm -f common/const-c.inc common/const-xs.inc @if test "x${top_srcdir}" != "x${top_builddir}"; then \ for f in ${common_sources}; do \
--- a/libpurple/plugins/perl/common/BuddyList.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/BuddyList.xs Tue May 01 14:09:24 2007 +0000 @@ -4,6 +4,26 @@ MODULE = Purple::BuddyList PACKAGE = Purple PREFIX = purple_ PROTOTYPES: ENABLE +BOOT: +{ + HV *stash = gv_stashpv("Purple::BuddyList::Node", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_BLIST_##name##_NODE} + const_iv(GROUP), + const_iv(CONTACT), + const_iv(BUDDY), + const_iv(CHAT), + const_iv(OTHER), +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_BLIST_NODE_FLAG_##name} + const_iv(NO_SAVE), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} + Purple::BuddyList purple_get_blist() @@ -30,15 +50,18 @@ XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::BuddyList::Buddy"))); } +Purple::BuddyList::Group +purple_find_group(name) + const char *name + +MODULE = Purple::BuddyList PACKAGE = Purple::Find PREFIX = purple_ +PROTOTYPES: ENABLE + gboolean purple_group_on_account(group, account) Purple::BuddyList::Group group Purple::Account account -Purple::BuddyList::Group -purple_find_group(name) - const char *name - MODULE = Purple::BuddyList PACKAGE = Purple::BuddyList::Contact PREFIX = purple_contact_ PROTOTYPES: ENABLE
--- a/libpurple/plugins/perl/common/Cmds.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Cmds.xs Tue May 01 14:09:24 2007 +0000 @@ -4,6 +4,63 @@ MODULE = Purple::Cmd PACKAGE = Purple::Cmd PREFIX = purple_cmd_ PROTOTYPES: ENABLE +BOOT: +{ + HV *status_stash = gv_stashpv("Purple::Cmd::Status", 1); + HV *ret_stash = gv_stashpv("Purple::Cmd::Return", 1); + HV *p_stash = gv_stashpv("Purple::Cmd::Priority", 1); + HV *flag_stash = gv_stashpv("Purple::Cmd::Flag", 1); + + static const constiv *civ, status_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_CMD_STATUS_##name} + const_iv(OK), + const_iv(FAILED), + const_iv(NOT_FOUND), + const_iv(WRONG_ARGS), + const_iv(WRONG_PRPL), + const_iv(WRONG_TYPE), + }; + static const constiv ret_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_CMD_RET_##name} + const_iv(OK), + const_iv(FAILED), + const_iv(CONTINUE), + }; + static const constiv p_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_CMD_P_##name} + const_iv(VERY_LOW), + const_iv(LOW), + const_iv(DEFAULT), + const_iv(PRPL), + const_iv(PLUGIN), + const_iv(ALIAS), + const_iv(HIGH), + const_iv(VERY_HIGH), + }; + static const constiv flag_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_CMD_FLAG_##name} + const_iv(IM), + const_iv(CHAT), + const_iv(PRPL_ONLY), + const_iv(ALLOW_WRONG_ARGS), + }; + + for (civ = status_const_iv + sizeof(status_const_iv) / sizeof(status_const_iv[0]); civ-- > status_const_iv;) + newCONSTSUB(status_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = ret_const_iv + sizeof(ret_const_iv) / sizeof(ret_const_iv[0]); civ-- > ret_const_iv;) + newCONSTSUB(ret_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = p_const_iv + sizeof(p_const_iv) / sizeof(p_const_iv[0]); civ-- > p_const_iv;) + newCONSTSUB(p_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = flag_const_iv + sizeof(flag_const_iv) / sizeof(flag_const_iv[0]); civ-- > flag_const_iv;) + newCONSTSUB(flag_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_cmd_help(conv, command) Purple::Conversation conv
--- a/libpurple/plugins/perl/common/Connection.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Connection.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,21 @@ MODULE = Purple::Connection PACKAGE = Purple::Connection PREFIX = purple_connection_ PROTOTYPES: ENABLE +BOOT: +{ + HV *stash = gv_stashpv("Purple::Connection::State", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_##name} + const_iv(DISCONNECTED), + const_iv(CONNECTED), + const_iv(CONNECTING), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} + Purple::Account purple_connection_get_account(gc) Purple::Connection gc
--- a/libpurple/plugins/perl/common/Conversation.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Conversation.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,93 @@ MODULE = Purple::Conversation PACKAGE = Purple PREFIX = purple_ PROTOTYPES: ENABLE +BOOT: +{ + HV *type_stash = gv_stashpv("Purple::Conversation::Type", 1); + HV *update_stash = gv_stashpv("Purple::Conversation::Update::Type", 1); + HV *typing_stash = gv_stashpv("Purple::Conversation::TypingState", 1); + HV *flags_stash = gv_stashpv("Purple::Conversation::Flags", 1); + HV *cbflags_stash = gv_stashpv("Purple::Conversation::ChatBuddy::Flags", 1); + + static const constiv *civ, type_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_CONV_TYPE_##name} + const_iv(UNKNOWN), + const_iv(IM), + const_iv(CHAT), + const_iv(MISC), + const_iv(ANY), + }; + static const constiv update_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_CONV_UPDATE_##name} + const_iv(ADD), + const_iv(REMOVE), + const_iv(ACCOUNT), + const_iv(TYPING), + const_iv(UNSEEN), + const_iv(LOGGING), + const_iv(TOPIC), +/* + const_iv(ONLINE), + const_iv(OFFLINE), +*/ + const_iv(AWAY), + const_iv(ICON), + const_iv(TITLE), + const_iv(CHATLEFT), + const_iv(FEATURES), + }; + static const constiv typing_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_##name} + const_iv(NOT_TYPING), + const_iv(TYPING), + const_iv(TYPED), + }; + static const constiv flags_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_MESSAGE_##name} + const_iv(SEND), + const_iv(RECV), + const_iv(SYSTEM), + const_iv(AUTO_RESP), + const_iv(ACTIVE_ONLY), + const_iv(NICK), + const_iv(NO_LOG), + const_iv(WHISPER), + const_iv(ERROR), + const_iv(DELAYED), + const_iv(RAW), + const_iv(IMAGES), + const_iv(NOTIFY), + }; + static const constiv cbflags_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_CBFLAGS_##name} + const_iv(NONE), + const_iv(VOICE), + const_iv(HALFOP), + const_iv(OP), + const_iv(FOUNDER), + const_iv(TYPING), + }; + + for (civ = type_const_iv + sizeof(type_const_iv) / sizeof(type_const_iv[0]); civ-- > type_const_iv; ) + newCONSTSUB(type_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = update_const_iv + sizeof(update_const_iv) / sizeof(update_const_iv[0]); civ-- > update_const_iv; ) + newCONSTSUB(update_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = typing_const_iv + sizeof(typing_const_iv) / sizeof(typing_const_iv[0]); civ-- > typing_const_iv; ) + newCONSTSUB(typing_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = flags_const_iv + sizeof(flags_const_iv) / sizeof(flags_const_iv[0]); civ-- > flags_const_iv; ) + newCONSTSUB(flags_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = cbflags_const_iv + sizeof(cbflags_const_iv) / sizeof(cbflags_const_iv[0]); civ-- > cbflags_const_iv; ) + newCONSTSUB(cbflags_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_get_ims() PREINIT:
--- a/libpurple/plugins/perl/common/Debug.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Debug.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,24 @@ MODULE = Purple::Debug PACKAGE = Purple::Debug PREFIX = purple_debug_ PROTOTYPES: ENABLE +BOOT: +{ + HV *stash = gv_stashpv("Purple::Debug", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_DEBUG_##name} + const_iv(ALL), + const_iv(MISC), + const_iv(INFO), + const_iv(WARNING), + const_iv(ERROR), + const_iv(FATAL), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_debug(level, category, string) Purple::DebugLevel level
--- a/libpurple/plugins/perl/common/FT.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/FT.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,36 @@ MODULE = Purple::Xfer PACKAGE = Purple::Xfer PREFIX = purple_xfer_ PROTOTYPES: ENABLE +BOOT: +{ + HV *type_stash = gv_stashpv("Purple::Xfer::Type", 1); + HV *status_stash = gv_stashpv("Purple::Xfer::Status", 1); + + static const constiv *civ, type_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_XFER_##name} + const_iv(UNKNOWN), + const_iv(SEND), + const_iv(RECEIVE), + }; + static const constiv status_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_XFER_STATUS_##name} + const_iv(UNKNOWN), + const_iv(NOT_STARTED), + const_iv(ACCEPTED), + const_iv(STARTED), + const_iv(DONE), + const_iv(CANCEL_LOCAL), + const_iv(CANCEL_REMOTE), + }; + + for (civ = type_const_iv + sizeof(type_const_iv) / sizeof(type_const_iv[0]); civ-- > type_const_iv; ) + newCONSTSUB(type_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = status_const_iv + sizeof(status_const_iv) / sizeof(status_const_iv[0]); civ-- > status_const_iv; ) + newCONSTSUB(status_stash, (char *)civ->name, newSViv(civ->iv)); +} + Purple::Xfer purple_xfer_new(class, account, type, who) Purple::Account account
--- a/libpurple/plugins/perl/common/Log.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Log.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,30 @@ MODULE = Purple::Log PACKAGE = Purple::Log PREFIX = purple_log_ PROTOTYPES: ENABLE +BOOT: +{ + HV *type_stash = gv_stashpv("Purple::Log::Type", 1); + HV *flags_stash = gv_stashpv("Purple::Log:ReadFlags::", 1); + + static const constiv *civ, type_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_LOG_##name} + const_iv(IM), + const_iv(CHAT), + const_iv(SYSTEM), + }; + static const constiv flags_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_LOG_READ_##name} + const_iv(NO_NEWLINE), + }; + + for (civ = type_const_iv + sizeof(type_const_iv) / sizeof(type_const_iv[0]); civ-- > type_const_iv; ) + newCONSTSUB(type_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = flags_const_iv + sizeof(flags_const_iv) / sizeof(flags_const_iv[0]); civ-- > flags_const_iv; ) + newCONSTSUB(flags_stash, (char *)civ->name, newSViv(civ->iv)); +} + int purple_log_common_sizer(log) Purple::Log log
--- a/libpurple/plugins/perl/common/Makefile.PL.in Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Makefile.PL.in Tue May 01 14:09:24 2007 +0000 @@ -14,26 +14,3 @@ 'OBJECT' => '$(O_FILES)', # link all the C files too # 'OPTIMIZE' => '-g', # For debugging ); - -if (eval {require ExtUtils::Constant; 1}) { - foreach (qw(PURPLE_DEBUG_ALL PURPLE_DEBUG_MISC PURPLE_DEBUG_INFO - PURPLE_DEBUG_WARNING PURPLE_DEBUG_ERROR PURPLE_DEBUG_FATAL)) { - push @names, {name => $_, type => "IV", macro => 1}; - } - - ExtUtils::Constant::WriteConstants( - NAME => 'Purple::DebugLevel', - NAMES => \@names, - C_FILE => 'const-c.inc', - XS_FILE => 'const-xs.inc' - ); -} -else { - use File::Copy; - use File::Spec; - - foreach my $file ('const-c.inc', 'const-xs.inc') { - my $fallback = File::Spec->catfile('fallback', $file); - copy ($fallback, $file) or die "Can't copy $fallback to $file: $!"; - } -}
--- a/libpurple/plugins/perl/common/Makefile.mingw Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Makefile.mingw Tue May 01 14:09:24 2007 +0000 @@ -68,7 +68,7 @@ Util.xs \ XMLNode.xs -FALLBACKS = const-c.inc const-xs.inc +#FALLBACKS = const-c.inc const-xs.inc C_FILES = $(XS_FILES:%.xs=%.c) OBJECTS = $(C_FILES:%.c=%.o)
--- a/libpurple/plugins/perl/common/Notify.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Notify.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,47 @@ MODULE = Purple::Notify PACKAGE = Purple::Notify PREFIX = purple_notify_ PROTOTYPES: ENABLE +BOOT: +{ + HV *type_stash = gv_stashpv("Purple::Notify::Type", 1); + HV *msg_type_stash = gv_stashpv("Purple::Notify:Msg", 1); + HV *user_info_stash = gv_stashpv("Purple::NotifyUserInfo::Type", 1); + + static const constiv *civ, type_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_NOTIFY_##name} + const_iv(MESSAGE), + const_iv(EMAIL), + const_iv(EMAILS), + const_iv(FORMATTED), + const_iv(SEARCHRESULTS), + const_iv(USERINFO), + const_iv(URI), + }; + static const constiv msg_type_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_NOTIFY_MSG_##name} + const_iv(ERROR), + const_iv(WARNING), + const_iv(INFO), + }; + static const constiv user_info_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_NOTIFY_USER_INFO_ENTRY_##name} + const_iv(PAIR), + const_iv(SECTION_BREAK), + const_iv(SECTION_HEADER), + }; + + for (civ = type_const_iv + sizeof(type_const_iv) / sizeof(type_const_iv[0]); civ-- > type_const_iv; ) + newCONSTSUB(type_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = msg_type_const_iv + sizeof(msg_type_const_iv) / sizeof(msg_type_const_iv[0]); civ-- > msg_type_const_iv; ) + newCONSTSUB(msg_type_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = user_info_const_iv + sizeof(user_info_const_iv) / sizeof(user_info_const_iv[0]); civ-- > user_info_const_iv; ) + newCONSTSUB(user_info_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_notify_close(type, ui_handle) Purple::NotifyType type @@ -52,8 +93,44 @@ Purple::NotifyCloseCallback cb gpointer user_data +Purple::NotifyUiOps +purple_notify_get_ui_ops() + +void +purple_notify_set_ui_ops(ops) + Purple::NotifyUiOps ops + +void * +purple_notify_message(handle, type, title, primary, secondary, cb, user_data) + void * handle + Purple::NotifyMsgType type + const char *title + const char *primary + const char *secondary + Purple::NotifyCloseCallback cb + gpointer user_data + +void * +purple_notify_searchresults(gc, title, primary, secondary, results, cb, user_data) + Purple::Connection gc + const char *title + const char *primary + const char *secondary + Purple::NotifySearchResults results + Purple::NotifyCloseCallback cb + gpointer user_data + +void * +purple_notify_uri(handle, uri) + void * handle + const char *uri + +MODULE = Purple::Notify PACKAGE = Purple::NotifyUserInfo PREFIX = purple_notify_user_info_ +PROTOTYPES: ENABLE + Purple::NotifyUserInfo -purple_notify_user_info_new() +purple_notify_user_info_new(class) + C_ARGS: /* void */ void purple_notify_user_info_destroy(user_info) @@ -102,37 +179,3 @@ gchar * purple_notify_user_info_entry_get_value(user_info_entry) Purple::NotifyUserInfoEntry user_info_entry - -Purple::NotifyUiOps -purple_notify_get_ui_ops() - - -void * -purple_notify_message(handle, type, title, primary, secondary, cb, user_data) - void * handle - Purple::NotifyMsgType type - const char *title - const char *primary - const char *secondary - Purple::NotifyCloseCallback cb - gpointer user_data - -void * -purple_notify_searchresults(gc, title, primary, secondary, results, cb, user_data) - Purple::Connection gc - const char *title - const char *primary - const char *secondary - Purple::NotifySearchResults results - Purple::NotifyCloseCallback cb - gpointer user_data - -void -purple_notify_set_ui_ops(ops) - Purple::NotifyUiOps ops - -void * -purple_notify_uri(handle, uri) - void * handle - const char *uri -
--- a/libpurple/plugins/perl/common/Plugin.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Plugin.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,22 @@ MODULE = Purple::Plugin PACKAGE = Purple::Plugin PREFIX = purple_plugin_ PROTOTYPES: ENABLE +BOOT: +{ + HV *stash = gv_stashpv("Purple::Plugin::Type", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_PLUGIN_##name} + const_iv(UNKNOWN), + const_iv(STANDARD), + const_iv(LOADER), + const_iv(PROTOCOL), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} + Purple::Plugin purple_plugin_new(native, path) gboolean native
--- a/libpurple/plugins/perl/common/PluginPref.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/PluginPref.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,33 @@ MODULE = Purple::PluginPref PACKAGE = Purple::PluginPref::Frame PREFIX = purple_plugin_pref_frame_ PROTOTYPES: ENABLE +BOOT: +{ + HV *string_format_stash = gv_stashpv("Purple::String::Format::Type", 1); + HV *plugin_pref_stash = gv_stashpv("Purple::PluginPref::Type", 1); + + static const constiv *civ, string_format_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_STRING_FORMAT_TYPE_##name} + const_iv(NONE), + const_iv(MULTILINE), + const_iv(HTML), + }; + static const constiv plugin_pref_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_PLUGIN_PREF_##name} + const_iv(NONE), + const_iv(CHOICE), + const_iv(INFO), + const_iv(STRING_FORMAT), + }; + + for (civ = string_format_const_iv + sizeof(string_format_const_iv) / sizeof(string_format_const_iv[0]); civ-- > string_format_const_iv; ) + newCONSTSUB(string_format_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = plugin_pref_const_iv + sizeof(plugin_pref_const_iv) / sizeof(plugin_pref_const_iv[0]); civ-- > plugin_pref_const_iv; ) + newCONSTSUB(plugin_pref_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_plugin_pref_frame_add(frame, pref) Purple::PluginPref::Frame frame
--- a/libpurple/plugins/perl/common/Pounce.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Pounce.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,39 @@ MODULE = Purple::Pounce PACKAGE = Purple::Pounce PREFIX = purple_pounce_ PROTOTYPES: ENABLE +BOOT: +{ + HV *event_stash = gv_stashpv("Purple::Pounce::Event", 1); + HV *option_stash = gv_stashpv("Purple::Pounce::Option", 1); + + static const constiv *civ, event_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_POUNCE_##name} + const_iv(NONE), + const_iv(SIGNON), + const_iv(SIGNOFF), + const_iv(AWAY), + const_iv(AWAY_RETURN), + const_iv(IDLE), + const_iv(IDLE_RETURN), + const_iv(TYPING), + const_iv(TYPED), + const_iv(TYPING_STOPPED), + const_iv(MESSAGE_RECEIVED), + }; + static const constiv option_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_POUNCE_OPTION_##name} + const_iv(NONE), + const_iv(AWAY), + }; + + for (civ = event_const_iv + sizeof(event_const_iv) / sizeof(event_const_iv[0]); civ-- > event_const_iv; ) + newCONSTSUB(event_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = option_const_iv + sizeof(option_const_iv) / sizeof(option_const_iv[0]); civ-- > option_const_iv; ) + newCONSTSUB(option_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_pounce_action_register(pounce, name) Purple::Pounce pounce
--- a/libpurple/plugins/perl/common/Prefs.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Prefs.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,25 @@ MODULE = Purple::Prefs PACKAGE = Purple::Prefs PREFIX = purple_prefs_ PROTOTYPES: ENABLE +BOOT: +{ + HV *stash = gv_stashpv("Purple::Pref::Type", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_PREF_##name} + const_iv(NONE), + const_iv(BOOLEAN), + const_iv(INT), + const_iv(STRING), + const_iv(STRING_LIST), + const_iv(PATH), + const_iv(PATH_LIST), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_prefs_add_bool(name, value) const char *name
--- a/libpurple/plugins/perl/common/Proxy.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Proxy.xs Tue May 01 14:09:24 2007 +0000 @@ -3,13 +3,34 @@ MODULE = Purple::Proxy PACKAGE = Purple::Proxy PREFIX = purple_proxy_ PROTOTYPES: ENABLE -Purple::ProxyInfo -purple_global_proxy_get_info() +BOOT: +{ + HV *stash = gv_stashpv("Purple::ProxyType::", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_PROXY_##name} + const_iv(USE_GLOBAL), + const_iv(NONE), + const_iv(HTTP), + const_iv(SOCKS4), + const_iv(SOCKS5), + const_iv(USE_ENVVAR), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} Purple::Handle purple_proxy_get_handle() void +purple_proxy_init() + +MODULE = Purple::Proxy PACKAGE = Purple::ProxyInfo PREFIX = purple_proxy_info_ +PROTOTYPES: ENABLE + +void purple_proxy_info_destroy(info) Purple::ProxyInfo info @@ -61,5 +82,8 @@ Purple::ProxyInfo info const char *username -void -purple_proxy_init() +MODULE = Purple::Proxy PACKAGE = Purple::Proxy PREFIX = purple_ +PROTOTYPES: ENABLE + +Purple::ProxyInfo +purple_global_proxy_get_info()
--- a/libpurple/plugins/perl/common/Purple.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Purple.xs Tue May 01 14:09:24 2007 +0000 @@ -1,6 +1,5 @@ #include "module.h" #include "../perl-handlers.h" -#include "const-c.inc" /* Prototypes for the BOOT section below. */ PURPLE_PERL_BOOT_PROTO(Account); @@ -40,8 +39,6 @@ MODULE = Purple PACKAGE = Purple PREFIX = purple_ PROTOTYPES: ENABLE -INCLUDE: const-xs.inc - BOOT: PURPLE_PERL_BOOT(Account); PURPLE_PERL_BOOT(Account__Option);
--- a/libpurple/plugins/perl/common/Request.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Request.xs Tue May 01 14:09:24 2007 +0000 @@ -80,6 +80,41 @@ MODULE = Purple::Request PACKAGE = Purple::Request PREFIX = purple_request_ PROTOTYPES: ENABLE +BOOT: +{ + HV *request_stash = gv_stashpv("Purple::RequestType", 1); + HV *request_field_stash = gv_stashpv("Purple::RequestFieldType", 1); + + static const constiv *civ, request_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_REQUEST_##name} + const_iv(INPUT), + const_iv(CHOICE), + const_iv(ACTION), + const_iv(FIELDS), + const_iv(FILE), + const_iv(FOLDER), + }; + static const constiv request_field_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_REQUEST_FIELD_##name} + const_iv(NONE), + const_iv(STRING), + const_iv(INTEGER), + const_iv(BOOLEAN), + const_iv(CHOICE), + const_iv(LIST), + const_iv(LABEL), + const_iv(IMAGE), + const_iv(ACCOUNT), + }; + + for (civ = request_const_iv + sizeof(request_const_iv) / sizeof(request_const_iv[0]); civ-- > request_const_iv; ) + newCONSTSUB(request_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = request_field_const_iv + sizeof(request_field_const_iv) / sizeof(request_field_const_iv[0]); civ-- > request_field_const_iv; ) + newCONSTSUB(request_field_stash, (char *)civ->name, newSViv(civ->iv)); +} + void * purple_request_input(handle, title, primary, secondary, default_value, multiline, masked, hint, ok_text, ok_cb, cancel_text, cancel_cb) Purple::Plugin handle @@ -170,9 +205,22 @@ purple_request_close_with_handle(handle) void * handle +Purple::Request::UiOps +purple_request_get_ui_ops() + +void +purple_request_set_ui_ops(ops) + Purple::Request::UiOps ops + MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ PROTOTYPES: ENABLE +Purple::Request::Field +purple_request_field_account_new(id, text, account = NULL) + const char *id + const char *text + Purple::Account account + Purple::Account purple_request_field_account_get_default_value(field) Purple::Request::Field field @@ -193,12 +241,6 @@ purple_request_field_account_get_value(field) Purple::Request::Field field -Purple::Request::Field -purple_request_field_account_new(id, text, account = NULL) - const char *id - const char *text - Purple::Account account - void purple_request_field_account_set_default_value(field, default_value) Purple::Request::Field field @@ -214,6 +256,15 @@ Purple::Request::Field field Purple::Account value +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE + +Purple::Request::Field +purple_request_field_bool_new(id, text, default_value = TRUE) + const char *id + const char *text + gboolean default_value + gboolean purple_request_field_bool_get_default_value(field) Purple::Request::Field field @@ -222,12 +273,6 @@ purple_request_field_bool_get_value(field) Purple::Request::Field field -Purple::Request::Field -purple_request_field_bool_new(id, text, default_value = TRUE) - const char *id - const char *text - gboolean default_value - void purple_request_field_bool_set_default_value(field, default_value) Purple::Request::Field field @@ -238,6 +283,15 @@ Purple::Request::Field field gboolean value +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE + +Purple::Request::Field +purple_request_field_choice_new(id, text, default_value = 0) + const char *id + const char *text + int default_value + void purple_request_field_choice_add(field, label) Purple::Request::Field field @@ -261,12 +315,6 @@ purple_request_field_choice_get_value(field) Purple::Request::Field field -Purple::Request::Field -purple_request_field_choice_new(id, text, default_value = 0) - const char *id - const char *text - int default_value - void purple_request_field_choice_set_default_value(field, default_value) Purple::Request::Field field @@ -277,25 +325,14 @@ Purple::Request::Field field int value -void -purple_request_field_destroy(field) - Purple::Request::Field field - -const char * -purple_request_field_get_id(field) - Purple::Request::Field field +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE -const char * -purple_request_field_get_label(field) - Purple::Request::Field field - -Purple::RequestFieldType -purple_request_field_get_type(field) - Purple::Request::Field field - -const char * -purple_request_field_get_type_hint(field) - Purple::Request::Field field +Purple::Request::Field +purple_request_field_int_new(id, text, default_value = 0) + const char *id + const char *text + int default_value int purple_request_field_int_get_default_value(field) @@ -305,12 +342,6 @@ purple_request_field_int_get_value(field) Purple::Request::Field field -Purple::Request::Field -purple_request_field_int_new(id, text, default_value = 0) - const char *id - const char *text - int default_value - void purple_request_field_int_set_default_value(field, default_value) Purple::Request::Field field @@ -325,15 +356,22 @@ purple_request_field_is_required(field) Purple::Request::Field field -gboolean -purple_request_field_is_visible(field) - Purple::Request::Field field +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE Purple::Request::Field purple_request_field_label_new(id, text) const char *id const char *text +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE + +Purple::Request::Field +purple_request_field_list_new(id, text) + const char *id + const char *text + void purple_request_field_list_add(field, item, data) Purple::Request::Field field @@ -383,16 +421,14 @@ Purple::Request::Field field const char *item -Purple::Request::Field -purple_request_field_list_new(id, text) - const char *id - const char *text - void purple_request_field_list_set_multi_select(field, multi_select) Purple::Request::Field field gboolean multi_select +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE + Purple::Request::Field purple_request_field_new(id, text, type) const char *id @@ -419,6 +455,16 @@ Purple::Request::Field field gboolean visible +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE + +Purple::Request::Field +purple_request_field_string_new(id, text, default_value, multiline) + const char *id + const char *text + const char *default_value + gboolean multiline + const char * purple_request_field_string_get_default_value(field) Purple::Request::Field field @@ -439,13 +485,6 @@ purple_request_field_string_is_multiline(field) Purple::Request::Field field -Purple::Request::Field -purple_request_field_string_new(id, text, default_value, multiline) - const char *id - const char *text - const char *default_value - gboolean multiline - void purple_request_field_string_set_default_value(field, default_value) Purple::Request::Field field @@ -466,13 +505,6 @@ Purple::Request::Field field const char *value -Purple::Request::UiOps -purple_request_get_ui_ops() - -void -purple_request_set_ui_ops(ops) - Purple::Request::UiOps ops - MODULE = Purple::Request PACKAGE = Purple::Request::Field::Group PREFIX = purple_request_field_group_ PROTOTYPES: ENABLE @@ -503,9 +535,39 @@ purple_request_field_group_new(title) const char *title +MODULE = Purple::Request PACKAGE = Purple::Request::Field PREFIX = purple_request_field_ +PROTOTYPES: ENABLE + +void +purple_request_field_destroy(field) + Purple::Request::Field field + +const char * +purple_request_field_get_id(field) + Purple::Request::Field field + +const char * +purple_request_field_get_label(field) + Purple::Request::Field field + +Purple::RequestFieldType +purple_request_field_get_type(field) + Purple::Request::Field field + +const char * +purple_request_field_get_type_hint(field) + Purple::Request::Field field + +gboolean +purple_request_field_is_visible(field) + Purple::Request::Field field + MODULE = Purple::Request PACKAGE = Purple::Request::Fields PREFIX = purple_request_fields_ PROTOTYPES: ENABLE +Purple::Request::Fields +purple_request_fields_new() + void purple_request_fields_add_group(fields, group) Purple::Request::Fields fields @@ -578,6 +640,3 @@ purple_request_fields_is_field_required(fields, id) Purple::Request::Fields fields const char *id - -Purple::Request::Fields -purple_request_fields_new()
--- a/libpurple/plugins/perl/common/Roomlist.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Roomlist.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,31 @@ MODULE = Purple::Roomlist PACKAGE = Purple::Roomlist PREFIX = purple_roomlist_ PROTOTYPES: ENABLE +BOOT: +{ + HV *room_stash = gv_stashpv("Purple::Roomlist::Room::Type", 1); + HV *field_stash = gv_stashpv("Purple::Roomlist::Field::Type", 1); + + static const constiv *civ, room_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_ROOMLIST_ROOMTYPE_##name} + const_iv(CATEGORY), + const_iv(ROOM), + }; + static const constiv field_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_ROOMLIST_FIELD_##name} + const_iv(BOOL), + const_iv(INT), + const_iv(STRING), + }; + + for (civ = room_const_iv + sizeof(room_const_iv) / sizeof(room_const_iv[0]); civ-- > room_const_iv; ) + newCONSTSUB(room_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = field_const_iv + sizeof(field_const_iv) / sizeof(field_const_iv[0]); civ-- > field_const_iv; ) + newCONSTSUB(field_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_roomlist_cancel_get_list(list) Purple::Roomlist list
--- a/libpurple/plugins/perl/common/Sound.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Sound.xs Tue May 01 14:09:24 2007 +0000 @@ -3,6 +3,29 @@ MODULE = Purple::Sound PACKAGE = Purple::Sound PREFIX = purple_sound_ PROTOTYPES: ENABLE +BOOT: +{ + HV *stash = gv_stashpv("Purple::SoundEventID", 1); + + static const constiv *civ, const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_SOUND_##name} + const_iv(BUDDY_ARRIVE), + const_iv(BUDDY_LEAVE), + const_iv(RECEIVE), + const_iv(FIRST_RECEIVE), + const_iv(SEND), + const_iv(CHAT_JOIN), + const_iv(CHAT_LEAVE), + const_iv(CHAT_YOU_SAY), + const_iv(CHAT_SAY), + const_iv(POUNCE_DEFAULT), + const_iv(CHAT_NICK), + }; + + for (civ = const_iv + sizeof(const_iv) / sizeof(const_iv[0]); civ-- > const_iv; ) + newCONSTSUB(stash, (char *)civ->name, newSViv(civ->iv)); +} + Purple::Sound::UiOps purple_sound_get_ui_ops()
--- a/libpurple/plugins/perl/common/Status.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Status.xs Tue May 01 14:09:24 2007 +0000 @@ -42,6 +42,38 @@ MODULE = Purple::Status PACKAGE = Purple::Presence PREFIX = purple_presence_ PROTOTYPES: ENABLE +BOOT: +{ + HV *context_stash = gv_stashpv("Purple::Presence::Context", 1); + HV *primitive_stash = gv_stashpv("Purple::Status::Primitive", 1); + + static const constiv *civ, context_const_iv[] = { +#define const_iv(name) {#name, (IV)PURPLE_PRESENCE_CONTEXT_##name} + const_iv(UNSET), + const_iv(ACCOUNT), + const_iv(CONV), + const_iv(BUDDY), + }; + static const constiv primitive_const_iv[] = { +#undef const_iv +#define const_iv(name) {#name, (IV)PURPLE_STATUS_##name} + const_iv(UNSET), + const_iv(OFFLINE), + const_iv(AVAILABLE), + const_iv(UNAVAILABLE), + const_iv(INVISIBLE), + const_iv(AWAY), + const_iv(EXTENDED_AWAY), + const_iv(MOBILE), + }; + + for (civ = context_const_iv + sizeof(context_const_iv) / sizeof(context_const_iv[0]); civ-- > context_const_iv; ) + newCONSTSUB(context_stash, (char *)civ->name, newSViv(civ->iv)); + + for (civ = primitive_const_iv + sizeof(primitive_const_iv) / sizeof(primitive_const_iv[0]); civ-- > primitive_const_iv; ) + newCONSTSUB(primitive_stash, (char *)civ->name, newSViv(civ->iv)); +} + void purple_presence_add_list(presence, source_list) Purple::Presence presence
--- a/libpurple/plugins/perl/common/Util.xs Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/Util.xs Tue May 01 14:09:24 2007 +0000 @@ -28,44 +28,11 @@ MODULE = Purple::Util PACKAGE = Purple::Util PREFIX = purple_ PROTOTYPES: ENABLE -void -purple_util_fetch_url(handle, url, full, user_agent, http11, cb) - Purple::Plugin handle - const char *url - gboolean full - const char *user_agent - gboolean http11 - SV * cb -CODE: - PurplePerlUrlData *gpr; - STRLEN len; - char *basename; - - basename = g_path_get_basename(handle->path); - purple_perl_normalize_script_name(basename); - gpr = g_new(PurplePerlUrlData, 1); - - gpr->cb = g_strdup_printf("Purple::Script::%s::%s", basename, SvPV(cb, len)); - g_free(basename); - purple_util_fetch_url(url, full, user_agent, http11, purple_perl_util_url_cb, gpr); - int purple_build_dir(path, mode) const char *path int mode -const char * -purple_date_format_full(tm) - const struct tm *tm - -const char * -purple_date_format_long(tm) - const struct tm *tm - -const char * -purple_date_format_short(tm) - const struct tm *tm - gboolean purple_email_is_valid(address) const char *address @@ -82,53 +49,6 @@ purple_home_dir() gboolean -purple_markup_extract_info_field(str, len, user_info, start_token, skip, end_token, check_value, no_value_token, display_name, is_link, link_prefix, format_cb) - const char *str - int len - Purple::NotifyUserInfo user_info - const char *start_token - int skip - const char *end_token - char check_value - const char *no_value_token - const char *display_name - gboolean is_link - const char *link_prefix - Purple::Util::InfoFieldFormatCallback format_cb - -gboolean -purple_markup_find_tag(needle, haystack, start, end, attributes) - const char *needle - const char *haystack - const char **start - const char **end - GData **attributes - -gchar_own * -purple_markup_get_tag_name(tag) - const char *tag - -void -purple_markup_html_to_xhtml(html, dest_xhtml, dest_plain) - const char *html - char **dest_xhtml - char **dest_plain - -gchar_own * -purple_markup_linkify(str) - const char *str - -gchar_own * -purple_markup_slice(str, x, y) - const char *str - guint x - guint y - -gchar_own * -purple_markup_strip_html(str) - const char *str - -gboolean purple_message_meify(message, len) char *message size_t len @@ -148,46 +68,6 @@ const char *program gchar_own * -purple_str_add_cr(str) - const char *str - -gchar_own * -purple_str_binary_to_ascii(binary, len) - const unsigned char *binary - guint len - -gboolean -purple_str_has_prefix(s, p) - const char *s - const char *p - -gboolean -purple_str_has_suffix(s, x) - const char *s - const char *x - -gchar_own * -purple_str_seconds_to_string(sec) - guint sec - -gchar_own * -purple_str_size_to_units(size) - size_t size - -void -purple_str_strip_char(str, thechar) - char *str - char thechar - -time_t -purple_str_to_time(timestamp, utc = FALSE, tm = NULL, tz_off = NULL, rest = NULL) - const char *timestamp - gboolean utc - struct tm *tm - long *tz_off - const char **rest - -gchar_own * purple_strcasereplace(string, delimiter, replacement) const char *string const char *delimiter @@ -256,6 +136,138 @@ const char * purple_utf8_strftime(const char *format, const struct tm *tm); +MODULE = Purple::Util PACKAGE = Purple::Util::Str PREFIX = purple_str_ +PROTOTYPES: ENABLE + +gchar_own * +purple_str_add_cr(str) + const char *str + +gchar_own * +purple_str_binary_to_ascii(binary, len) + const unsigned char *binary + guint len + +gboolean +purple_str_has_prefix(s, p) + const char *s + const char *p + +gboolean +purple_str_has_suffix(s, x) + const char *s + const char *x + +gchar_own * +purple_str_seconds_to_string(sec) + guint sec + +gchar_own * +purple_str_size_to_units(size) + size_t size + +void +purple_str_strip_char(str, thechar) + char *str + char thechar + +time_t +purple_str_to_time(timestamp, utc = FALSE, tm = NULL, tz_off = NULL, rest = NULL) + const char *timestamp + gboolean utc + struct tm *tm + long *tz_off + const char **rest + +MODULE = Purple::Util PACKAGE = Purple::Util::Date PREFIX = purple_date_ +PROTOTYPES: ENABLE + +const char * +purple_date_format_full(tm) + const struct tm *tm + +const char * +purple_date_format_long(tm) + const struct tm *tm + +const char * +purple_date_format_short(tm) + const struct tm *tm + +MODULE = Purple::Util PACKAGE = Purple::Util::Markup PREFIX = purple_markup_ +PROTOTYPES: ENABLE + +gboolean +purple_markup_extract_info_field(str, len, user_info, start_token, skip, end_token, check_value, no_value_token, display_name, is_link, link_prefix, format_cb) + const char *str + int len + Purple::NotifyUserInfo user_info + const char *start_token + int skip + const char *end_token + char check_value + const char *no_value_token + const char *display_name + gboolean is_link + const char *link_prefix + Purple::Util::InfoFieldFormatCallback format_cb + +gboolean +purple_markup_find_tag(needle, haystack, start, end, attributes) + const char *needle + const char *haystack + const char **start + const char **end + GData **attributes + +gchar_own * +purple_markup_get_tag_name(tag) + const char *tag + +void +purple_markup_html_to_xhtml(html, dest_xhtml, dest_plain) + const char *html + char **dest_xhtml + char **dest_plain + +gchar_own * +purple_markup_linkify(str) + const char *str + +gchar_own * +purple_markup_slice(str, x, y) + const char *str + guint x + guint y + +gchar_own * +purple_markup_strip_html(str) + const char *str + +MODULE = Purple::Util PACKAGE = Purple::Util PREFIX = purple_util_ +PROTOTYPES: ENABLE + +void +purple_util_fetch_url(handle, url, full, user_agent, http11, cb) + Purple::Plugin handle + const char *url + gboolean full + const char *user_agent + gboolean http11 + SV * cb +CODE: + PurplePerlUrlData *gpr; + STRLEN len; + char *basename; + + basename = g_path_get_basename(handle->path); + purple_perl_normalize_script_name(basename); + gpr = g_new(PurplePerlUrlData, 1); + + gpr->cb = g_strdup_printf("Purple::Script::%s::%s", basename, SvPV(cb, len)); + g_free(basename); + purple_util_fetch_url(url, full, user_agent, http11, purple_perl_util_url_cb, gpr); + void purple_util_set_user_dir(dir) const char *dir
--- a/libpurple/plugins/perl/common/module.h Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/perl/common/module.h Tue May 01 14:09:24 2007 +0000 @@ -276,3 +276,7 @@ typedef gchar gchar_own; +typedef struct _constiv { + const char *name; + IV iv; +} constiv;
--- a/libpurple/plugins/psychic.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/plugins/psychic.c Tue May 01 14:09:24 2007 +0000 @@ -21,7 +21,7 @@ #define PLUGIN_SUMMARY N_("Psychic mode for incoming conversation") #define PLUGIN_DESC N_("Causes conversation windows to appear as other" \ " users begin to message you. This works for" \ - " AIM, ICQ, Jabber, Sametime, and Yahoo!") + " AIM, ICQ, XMPP, Sametime, and Yahoo!") #define PLUGIN_AUTHOR "Christopher O'Brien <siege@preoccupied.net>"
--- a/libpurple/protocols/bonjour/bonjour.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/protocols/bonjour/bonjour.c Tue May 01 14:09:24 2007 +0000 @@ -592,7 +592,7 @@ option = purple_account_option_string_new(_("AIM Account"), "AIM", ""); prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); - option = purple_account_option_string_new(_("Jabber Account"), "jid", ""); + option = purple_account_option_string_new(_("XMPP Account"), "jid", ""); prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, option); my_protocol = plugin;
--- a/libpurple/protocols/jabber/buddy.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/protocols/jabber/buddy.c Tue May 01 14:09:24 2007 +0000 @@ -575,8 +575,8 @@ if(x_vc_data != NULL) xmlnode_free(x_vc_data); - purple_request_fields(gc, _("Edit Jabber vCard"), - _("Edit Jabber vCard"), + purple_request_fields(gc, _("Edit XMPP vCard"), + _("Edit XMPP vCard"), _("All items below are optional. Enter only the " "information with which you feel comfortable."), fields, @@ -1729,7 +1729,7 @@ if(!instructions) { instructions = g_strdup(_("Fill in one or more fields to search " - "for any matching Jabber users.")); + "for any matching XMPP users.")); } if(xmlnode_get_child(query, "first")) { @@ -1757,8 +1757,8 @@ usi->js = js; usi->directory_server = g_strdup(from); - purple_request_fields(js->gc, _("Search for Jabber users"), - _("Search for Jabber users"), instructions, fields, + purple_request_fields(js->gc, _("Search for XMPP users"), + _("Search for XMPP users"), instructions, fields, _("Search"), G_CALLBACK(user_search_cb), _("Cancel"), G_CALLBACK(user_search_cancel_cb), NULL, NULL, NULL,
--- a/libpurple/protocols/jabber/jabber.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/protocols/jabber/jabber.c Tue May 01 14:09:24 2007 +0000 @@ -562,7 +562,7 @@ js->write_buffer = purple_circ_buffer_new(512); if(!js->user) { - purple_connection_error(gc, _("Invalid Jabber ID")); + purple_connection_error(gc, _("Invalid XMPP ID")); return; } @@ -868,8 +868,8 @@ instructions = g_strdup(_("Please fill out the information below " "to register your new account.")); - purple_request_fields(js->gc, _("Register New Jabber Account"), - _("Register New Jabber Account"), instructions, fields, + purple_request_fields(js->gc, _("Register New XMPP Account"), + _("Register New XMPP Account"), instructions, fields, _("Register"), G_CALLBACK(jabber_register_cb), _("Cancel"), G_CALLBACK(jabber_register_cancel_cb), purple_connection_get_account(js->gc), NULL, NULL, @@ -907,7 +907,7 @@ js->next_id = g_random_int(); if(!js->user) { - purple_connection_error(gc, _("Invalid Jabber ID")); + purple_connection_error(gc, _("Invalid XMPP ID")); return; } @@ -1365,8 +1365,8 @@ purple_request_field_string_set_masked(field, TRUE); purple_request_field_group_add_field(group, field); - purple_request_fields(js->gc, _("Change Jabber Password"), - _("Change Jabber Password"), _("Please enter your new password"), + purple_request_fields(js->gc, _("Change XMPP Password"), + _("Change XMPP Password"), _("Please enter your new password"), fields, _("OK"), G_CALLBACK(jabber_password_change_cb), _("Cancel"), NULL, purple_connection_get_account(gc), NULL, NULL, @@ -1480,7 +1480,7 @@ } else if(xmlnode_get_child(error, "item-not-found")) { text = _("Item Not Found"); } else if(xmlnode_get_child(error, "jid-malformed")) { - text = _("Malformed Jabber ID"); + text = _("Malformed XMPP ID"); } else if(xmlnode_get_child(error, "not-acceptable")) { text = _("Not Acceptable"); } else if(xmlnode_get_child(error, "not-allowed")) {
--- a/libpurple/protocols/jabber/libxmpp.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/protocols/jabber/libxmpp.c Tue May 01 14:09:24 2007 +0000 @@ -163,9 +163,9 @@ "XMPP", /**< name */ VERSION, /**< version */ /** summary */ - N_("Jabber Protocol Plugin"), + N_("XMPP Protocol Plugin"), /** description */ - N_("Jabber Protocol Plugin"), + N_("XMPP Protocol Plugin"), NULL, /**< author */ PURPLE_WEBSITE, /**< homepage */
--- a/libpurple/protocols/jabber/message.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/protocols/jabber/message.c Tue May 01 14:09:24 2007 +0000 @@ -269,7 +269,7 @@ buf = g_strdup_printf(_("Message delivery to %s failed: %s"), jm->from, jm->error ? jm->error : ""); - purple_notify_formatted(jm->js->gc, _("Jabber Message Error"), _("Jabber Message Error"), buf, + purple_notify_formatted(jm->js->gc, _("XMPP Message Error"), _("XMPP Message Error"), buf, jm->xhtml ? jm->xhtml : jm->body, NULL, NULL); g_free(buf);
--- a/libpurple/prpl.h Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/prpl.h Tue May 01 14:09:24 2007 +0000 @@ -99,7 +99,7 @@ /** * Use a unique name, not an alias, for chat rooms. * - * Jabber lets you choose what name you want for chat. + * XMPP lets you choose what name you want for chat. * So it shouldn't be pulling the alias for when you're in chat; * it gets annoying. */ @@ -108,7 +108,7 @@ /** * Chat rooms have topics. * - * IRC and Jabber support this. + * IRC and XMPP support this. */ OPT_PROTO_CHAT_TOPIC = 0x00000008, @@ -145,7 +145,7 @@ /** * Allows font size to be specified in sane point size * - * Probably just Jabber and Y!M + * Probably just XMPP and Y!M */ OPT_PROTO_USE_POINTSIZE = 0x00000100,
--- a/libpurple/server.c Tue May 01 14:02:55 2007 +0000 +++ b/libpurple/server.c Tue May 01 14:09:24 2007 +0000 @@ -20,6 +20,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ + +/* This file is the fullcrap */ + #include "internal.h" #include "blist.h" #include "conversation.h"
--- a/pidgin.apspec.in Tue May 01 14:02:55 2007 +0000 +++ b/pidgin.apspec.in Tue May 01 14:09:24 2007 +0000 @@ -14,7 +14,7 @@ [Description] Pidgin allows you to talk to anyone using a variety of messaging protocols, -including AIM (Oscar and TOC), ICQ, IRC, Yahoo!, MSN Messenger, Jabber, +including AIM (Oscar and TOC), ICQ, IRC, Yahoo!, MSN Messenger, XMPP, Gadu-Gadu, and Zephyr. These protocols are implemented using a modular, easy to use design. To use a protocol, just add an account using the account editor.
--- a/pidgin.spec.in Tue May 01 14:02:55 2007 +0000 +++ b/pidgin.spec.in Tue May 01 14:09:24 2007 +0000 @@ -129,7 +129,7 @@ %description Pidgin allows you to talk to anyone using a variety of messaging -protocols including AIM, MSN, Yahoo!, Jabber, Bonjour, Gadu-Gadu, +protocols including AIM, MSN, Yahoo!, XMPP, Bonjour, Gadu-Gadu, ICQ, IRC, Novell Groupwise, QQ, Lotus Sametime, SILC, Simple and Zephyr. These protocols are implemented using a modular, easy to use design. To use a protocol, just add an account using the @@ -151,7 +151,7 @@ and Finch. libpurple supports a variety of messaging protocols including AIM, MSN, -Yahoo!, Jabber, Bonjour, Gadu-Gadu, ICQ, IRC, Novell Groupwise, QQ, +Yahoo!, XMPP, Bonjour, Gadu-Gadu, ICQ, IRC, Novell Groupwise, QQ, Lotus Sametime, SILC, Simple and Zephyr. %description -n libpurple-devel
--- a/pidgin/gtkdialogs.c Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/gtkdialogs.c Tue May 01 14:09:24 2007 +0000 @@ -112,7 +112,7 @@ {"Adam Fritzler", N_("libfaim maintainer"), NULL}, /* If "lazy bum" translates literally into a serious insult, use something else or omit it. */ {"Syd Logan", N_("hacker and designated driver [lazy bum]"), NULL}, - {"Jim Seymour", N_("Jabber developer"), NULL}, + {"Jim Seymour", N_("XMPP developer"), NULL}, {"Mark Spencer", N_("original author"), "markster@marko.net"}, {"Eric Warmenhoven", N_("lead developer"), "warmenhoven@yahoo.com"}, {NULL, NULL, NULL} @@ -361,7 +361,7 @@ g_string_append_printf(str, _("%s is a modular messaging client capable of using " - "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, " + "AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, " "Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, " "Gadu-Gadu, and QQ all at once. " "It is written using GTK+.<BR><BR>"
--- a/pidgin/gtkmain.c Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/gtkmain.c Tue May 01 14:09:24 2007 +0000 @@ -318,6 +318,7 @@ pidgin_xfers_init(); pidgin_roomlist_init(); pidgin_log_init(); + pidgin_docklet_init(); } static void @@ -745,7 +746,6 @@ /* load plugins we had when we quit */ purple_plugins_load_saved(PIDGIN_PREFS_ROOT "/plugins/loaded"); - pidgin_docklet_init(); /* TODO: Move pounces loading into purple_pounces_init() */ purple_pounces_load();
--- a/pidgin/pixmaps/Makefile.mingw Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/pixmaps/Makefile.mingw Tue May 01 14:09:24 2007 +0000 @@ -22,20 +22,8 @@ mkdir -p $(pidginbuttonpixdir); \ cp $(pidginbuttonpix_DATA) $(pidginbuttonpixdir); \ fi; - if test '$(pidgindialogpix_DATA)'; then \ - mkdir -p $(pidgindialogpixdir); \ - cp $(pidgindialogpix_DATA) $(pidgindialogpixdir); \ - fi; - if test '$(pidginiconpix_DATA)'; then \ - mkdir -p $(pidginiconpixdir); \ - cp $(pidginiconpix_DATA) $(pidginiconpixdir); \ - fi; if test '$(pidgindistpix_DATA)'; then \ mkdir -p $(pidgindistpixdir); \ cp $(pidgindistpix_DATA) $(pidgindistpixdir); \ fi; -# if test '$(distpixmap_DATA)'; then \ -# mkdir -p $(distpixmapdir); \ -# cp $(distpixmap_DATA) $(distpixmapdir); \ -# fi;
--- a/pidgin/plugins/perl/common/GtkFt.xs Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/plugins/perl/common/GtkFt.xs Tue May 01 14:09:24 2007 +0000 @@ -1,6 +1,6 @@ #include "gtkmodule.h" -MODULE = Pidgin::Xfer PACKAGE = Pidgin::Xfer PREFIX = pidgin_xfer_ +MODULE = Pidgin::Xfer PACKAGE = Pidgin::Xfer PREFIX = pidgin_ PROTOTYPES: ENABLE void
--- a/pidgin/plugins/raw.c Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/plugins/raw.c Tue May 01 14:09:24 2007 +0000 @@ -175,7 +175,7 @@ N_("Raw"), VERSION, N_("Lets you send raw input to text-based protocols."), - N_("Lets you send raw input to text-based protocols (Jabber, MSN, IRC, " + N_("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."), "Eric Warmenhoven <eric@warmenhoven.org>", PURPLE_WEBSITE,
--- a/pidgin/plugins/win32/winprefs/winprefs.c Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/plugins/win32/winprefs/winprefs.c Tue May 01 14:09:24 2007 +0000 @@ -1,7 +1,7 @@ /* - * purple - WinPurple Options Plugin + * pidgin - Windows Pidgin Options Plugin * - * Purple is the legal property of its developers, whose names are too numerous + * Pidgin is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * @@ -204,11 +204,11 @@ char *runval = NULL; if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(w))) - runval = g_strdup_printf("%s" G_DIR_SEPARATOR_S "purple.exe", wpurple_install_dir()); + runval = g_strdup_printf("%s" G_DIR_SEPARATOR_S "pidgin.exe", wpurple_install_dir()); - if(!wpurple_write_reg_string(HKEY_CURRENT_USER, RUNKEY, "Purple", runval) + if(!wpurple_write_reg_string(HKEY_CURRENT_USER, RUNKEY, "Pidgin", runval) /* For Win98 */ - && !wpurple_write_reg_string(HKEY_LOCAL_MACHINE, RUNKEY, "Purple", runval)) + && !wpurple_write_reg_string(HKEY_LOCAL_MACHINE, RUNKEY, "Pidgin", runval)) purple_debug_error(WINPREFS_PLUGIN_ID, "Could not set registry key value\n"); g_free(runval); @@ -318,8 +318,8 @@ g_free(tmp); gtk_box_pack_start(GTK_BOX(vbox), button, FALSE, FALSE, 0); - if ((run_key_val = wpurple_read_reg_string(HKEY_CURRENT_USER, RUNKEY, "Purple")) - || (run_key_val = wpurple_read_reg_string(HKEY_LOCAL_MACHINE, RUNKEY, "Purple"))) { + if ((run_key_val = wpurple_read_reg_string(HKEY_CURRENT_USER, RUNKEY, "Pidgin")) + || (run_key_val = wpurple_read_reg_string(HKEY_LOCAL_MACHINE, RUNKEY, "Pidgin"))) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); g_free(run_key_val); } @@ -372,7 +372,7 @@ NULL, PURPLE_PRIORITY_DEFAULT, WINPREFS_PLUGIN_ID, - N_("Pidgwin Options"), + N_("Windows Pidgin Options"), VERSION, N_("Options specific to Pidgin for Windows."), N_("Provides options specific to Pidgin for Windows , such as buddy list docking."),
--- a/pidgin/win32/winpidgin.c Tue May 01 14:02:55 2007 +0000 +++ b/pidgin/win32/winpidgin.c Tue May 01 14:09:24 2007 +0000 @@ -136,11 +136,11 @@ if (path) { /* Set up the settings dir base to be \\path\to - * The actual settings dir will be \\path\to\.pidgin */ - char settingsdir[strlen(path) + strlen("PIDGINHOME=") + 1]; + * The actual settings dir will be \\path\to\.purple */ + char settingsdir[strlen(path) + strlen("PURPLEHOME=") + 1]; char aspelldir[strlen(path) + strlen("PIDGIN_ASPELL_DIR=\\Aspell\\bin") + 1]; - snprintf(settingsdir, sizeof(settingsdir), "PIDGINHOME=%s", path); + snprintf(settingsdir, sizeof(settingsdir), "PURPLEHOME=%s", path); printf("Setting settings dir: %s\n", settingsdir); putenv(settingsdir);
--- a/po/af.po Tue May 01 14:02:55 2007 +0000 +++ b/po/af.po Tue May 01 14:09:24 2007 +0000 @@ -2285,8 +2285,8 @@ msgstr "" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Jabber-programmeerder" +msgid "XMPP developer" +msgstr "XMPP-programmeerder" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2518,7 +2518,7 @@ #: ../gtk/gtkdialogs.c:335 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2526,7 +2526,7 @@ "the 'COPYRIGHT' file for the complete list of contributors. We provide no " "warranty for this program.<BR><BR>" msgstr "" -"Gaim is 'n modulêre geselskliënt wat AIM, MSN, Yahoo!, Jabber, ICQ, IRC, " +"Gaim is 'n modulêre geselskliënt wat AIM, MSN, Yahoo!, XMPP, ICQ, IRC, " "SILC, SIP/SIMPLENovell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-" "Gadu, en QQ als gelyktydig kan gebruik. Dit is geskryf met GTK+.<BR><BR>U " "mag die program aanpas en herversprei onderhewig aan die voorwaardes van die " @@ -5084,7 +5084,7 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -6587,7 +6587,7 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" #: ../libgaim/plugins/psychic.c:66 @@ -6836,8 +6836,8 @@ msgstr "AIM-rekening" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Jabber-rekening" +msgid "XMPP Account" +msgstr "XMPP-rekening" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -7908,8 +7908,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Wysig Jabber-vCard" +msgid "Edit XMPP vCard" +msgstr "Wysig XMPP-vCard" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8024,7 +8024,7 @@ msgid "The following are the results of your search" msgstr "Die volgende is die resultate van u soektog" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8047,8 +8047,8 @@ msgstr "Bedienerinstruksies: %s" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Vul een of meer velde in om te soek vir passende Jabber-gebruikers." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Vul een of meer velde in om te soek vir passende XMPP-gebruikers." #: ../libgaim/protocols/jabber/buddy.c:1749 #: ../libgaim/protocols/novell/novell.c:1488 @@ -8059,8 +8059,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Soek vir Jabber-gebruikers" +msgid "Search for XMPP users" +msgstr "Soek vir XMPP-gebruikers" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8189,8 +8189,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "Ongeldige Jabber-ID" +msgid "Invalid XMPP ID" +msgstr "Ongeldige XMPP-ID" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8243,8 +8243,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Registreer 'n nuwe Jabber-rekening" +msgid "Register New XMPP Account" +msgstr "Registreer 'n nuwe XMPP-rekening" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8307,8 +8307,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Verander Jabber-wagwoord" +msgid "Change XMPP Password" +msgstr "Verander XMPP-wagwoord" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8362,8 +8362,8 @@ msgstr "Item nie gevind nie" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "Misvormde Jabber-ID" +msgid "Malformed XMPP ID" +msgstr "Misvormde XMPP-ID" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -8625,8 +8625,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Inprop vir Jabber-protokol" +msgid "XMPP Protocol Plugin" +msgstr "Inprop vir XMPP-protokol" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -8668,8 +8668,8 @@ msgstr "Boodskapaflewering na %s het misluk: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Jabber-boodskapfout" +msgid "XMPP Message Error" +msgstr "XMPP-boodskapfout" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/am.po Tue May 01 14:02:55 2007 +0000 +++ b/po/am.po Tue May 01 14:09:24 2007 +0000 @@ -828,7 +828,7 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -2743,8 +2743,8 @@ #: src/gtkdialogs.c:92 #, fuzzy -msgid "Jabber developer" -msgstr "የJabber ስህተት %s" +msgid "XMPP developer" +msgstr "የXMPP ስህተት %s" #: src/gtkdialogs.c:93 #, fuzzy @@ -2921,7 +2921,7 @@ #: src/gtkdialogs.c:226 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" @@ -5570,7 +5570,7 @@ msgstr "የልደት በዓል" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" +msgid "Edit XMPP vCard" msgstr "" #: src/protocols/jabber/buddy.c:569 @@ -5580,7 +5580,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" +msgid "XMPP ID" msgstr "" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 @@ -5664,7 +5664,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -5683,7 +5683,7 @@ msgstr "ኢሜያል አድራሻ" #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "" #: src/protocols/jabber/buddy.c:1370 @@ -5816,7 +5816,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "" #: src/protocols/jabber/jabber.c:473 @@ -5866,7 +5866,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "" #: src/protocols/jabber/jabber.c:842 @@ -5946,7 +5946,7 @@ #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 #, fuzzy -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "ሚስጢራዊ ቃልን ለውጥ" #: src/protocols/jabber/jabber.c:1161 @@ -6001,7 +6001,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "" #: src/protocols/jabber/jabber.c:1273 @@ -6254,7 +6254,7 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr "" #: src/protocols/jabber/jabber.c:1714 @@ -6306,8 +6306,8 @@ #: src/protocols/jabber/message.c:233 #, fuzzy -msgid "Jabber Message Error" -msgstr "የJabber ስህተት %s" +msgid "XMPP Message Error" +msgstr "የXMPP ስህተት %s" #: src/protocols/jabber/message.c:297 #, c-format @@ -6782,7 +6782,7 @@ #: src/protocols/msn/msn.c:1471 #, fuzzy msgid "MSN Profile" -msgstr "የJabber ስህተት %s" +msgstr "የXMPP ስህተት %s" #: src/protocols/msn/msn.c:1476 src/protocols/msn/msn.c:1727 #: src/protocols/yahoo/yahoo_profile.c:760 @@ -10598,7 +10598,7 @@ #: src/protocols/yahoo/yahoo_profile.c:749 #, fuzzy msgid "Yahoo! Profile" -msgstr "የJabber ስህተት %s" +msgstr "የXMPP ስህተት %s" #: src/protocols/yahoo/yahoo_profile.c:793 msgid "" @@ -11193,8 +11193,8 @@ #~ msgstr "ቅጽል፦" #, fuzzy -#~ msgid "Jabber Profile" -#~ msgstr "የJabber ስህተት %s" +#~ msgid "XMPP Profile" +#~ msgstr "የXMPP ስህተት %s" #, fuzzy #~ msgid "Roomlist Error"
--- a/po/ar.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ar.po Tue May 01 14:09:24 2007 +0000 @@ -1321,7 +1321,7 @@ msgstr "" #: ../plugins/psychic.c:21 -msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" #. This is a quote from Star Wars. You should @@ -1355,7 +1355,7 @@ msgstr "" #: ../plugins/raw.c:178 -msgid "Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window." +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 "" #: ../plugins/relnot.c:63 @@ -3600,7 +3600,7 @@ msgstr "" #: ../src/gtkdialogs.c:102 -msgid "Jabber developer" +msgid "XMPP developer" msgstr "" #: ../src/gtkdialogs.c:103 @@ -3893,7 +3893,7 @@ msgstr " FileZilla عن" #: ../src/gtkdialogs.c:271 -msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, and Gadu-Gadu all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" +msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, and Gadu-Gadu all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" msgstr "" #: ../src/gtkdialogs.c:285 @@ -6034,7 +6034,7 @@ #: ../src/protocols/bonjour/bonjour.c:592 #, fuzzy -msgid "Jabber Account" +msgid "XMPP Account" msgstr "حساب سهم" #: ../src/protocols/bonjour/bonjour.h:35 @@ -7243,7 +7243,7 @@ #: ../src/protocols/jabber/buddy.c:588 #: ../src/protocols/jabber/buddy.c:589 #, fuzzy -msgid "Edit Jabber vCard" +msgid "Edit XMPP vCard" msgstr "... ID3 تحرير وسوم" #: ../src/protocols/jabber/buddy.c:590 @@ -7368,7 +7368,7 @@ msgid "The following are the results of your search" msgstr "" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../src/protocols/jabber/buddy.c:1633 msgid "Find a contact by entering the search criteria in the given fields. Note: Each field supports wild card searches (%)" msgstr "" @@ -7391,7 +7391,7 @@ msgstr "نوع &الخادم:" #: ../src/protocols/jabber/buddy.c:1695 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../src/protocols/jabber/buddy.c:1715 @@ -7404,7 +7404,7 @@ #: ../src/protocols/jabber/buddy.c:1724 #: ../src/protocols/jabber/buddy.c:1725 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "" #: ../src/protocols/jabber/buddy.c:1739 @@ -7552,7 +7552,7 @@ #: ../src/protocols/jabber/jabber.c:535 #: ../src/protocols/jabber/jabber.c:873 #, fuzzy -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "الـURI '%s' غير سليم" #: ../src/protocols/jabber/jabber.c:605 @@ -7612,7 +7612,7 @@ #: ../src/protocols/jabber/jabber.c:836 #: ../src/protocols/jabber/jabber.c:837 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "" #: ../src/protocols/jabber/jabber.c:999 @@ -7698,7 +7698,7 @@ #: ../src/protocols/jabber/jabber.c:1337 #: ../src/protocols/jabber/jabber.c:1338 #, fuzzy -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "طلب كلمة المرور" #: ../src/protocols/jabber/jabber.c:1338 @@ -7764,7 +7764,7 @@ #: ../src/protocols/jabber/jabber.c:1448 #, fuzzy -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "Malformed chunk data: %s" #: ../src/protocols/jabber/jabber.c:1450 @@ -8053,7 +8053,7 @@ #: ../src/protocols/jabber/jabber.c:1903 #: ../src/protocols/jabber/jabber.c:1905 #, fuzzy -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr ":غير موجود MP3 مقبس تصدير " #: ../src/protocols/jabber/jabber.c:1931 @@ -8107,7 +8107,7 @@ #: ../src/protocols/jabber/message.c:236 #, fuzzy -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "خطأ أثناء التحويل: %s" #: ../src/protocols/jabber/message.c:316
--- a/po/az.po Tue May 01 14:02:55 2007 +0000 +++ b/po/az.po Tue May 01 14:09:24 2007 +0000 @@ -823,7 +823,7 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -2749,8 +2749,8 @@ #: src/gtkdialogs.c:92 #, fuzzy -msgid "Jabber developer" -msgstr "Jabber Profili" +msgid "XMPP developer" +msgstr "XMPP Profili" #: src/gtkdialogs.c:93 msgid "original author" @@ -2922,7 +2922,7 @@ #: src/gtkdialogs.c:226 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" @@ -5552,7 +5552,7 @@ msgstr "Ad Günü" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" +msgid "Edit XMPP vCard" msgstr "" #: src/protocols/jabber/buddy.c:569 @@ -5562,8 +5562,8 @@ msgstr "" #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" -msgstr "Jabber ID-si" +msgid "XMPP ID" +msgstr "XMPP ID-si" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 msgid "Resource" @@ -5641,7 +5641,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -5659,7 +5659,7 @@ msgstr "E-Poçt Ünvanı" #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "" #: src/protocols/jabber/buddy.c:1370 @@ -5783,7 +5783,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "" #: src/protocols/jabber/jabber.c:473 @@ -5830,7 +5830,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "" #: src/protocols/jabber/jabber.c:842 @@ -5903,7 +5903,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "" #: src/protocols/jabber/jabber.c:1161 @@ -5954,7 +5954,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "" #: src/protocols/jabber/jabber.c:1273 @@ -6199,7 +6199,7 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr "" #: src/protocols/jabber/jabber.c:1714 @@ -6249,7 +6249,7 @@ msgstr "" #: src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "" #: src/protocols/jabber/message.c:297
--- a/po/bg.po Tue May 01 14:02:55 2007 +0000 +++ b/po/bg.po Tue May 01 14:09:24 2007 +0000 @@ -2345,8 +2345,8 @@ msgstr "" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Разработчик на Jabber" +msgid "XMPP developer" +msgstr "Разработчик на XMPP" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2586,7 +2586,7 @@ #, fuzzy msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2595,7 +2595,7 @@ "warranty for this program.<BR><BR>" msgstr "" "Gaim програма за изпращане на съобщения чрез протоколите AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, и " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, и " "Gadu-Gadu едновременно. Написан е чрез Gtk+.<BR><BR> Имате право да " "променяте и разпространявате програмата под условията на лиценза GPL " "(версия 1 или по-нова) Копие на GPL може да бъде намерен във файла \"COPYING" @@ -5226,11 +5226,11 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" "Позволява изпращането на необработени данни до текстово-базирани протоколи " -"(Jabber, MSN, IRC, TOC). За изпращане - натиснете „Enter“ в полето за " +"(XMPP, MSN, IRC, TOC). За изпращане - натиснете „Enter“ в полето за " "писане. Обърнете внимание на прозореца за отстраняване на грешки." #: ../gtk/plugins/relnot.c:69 @@ -6849,7 +6849,7 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" #: ../libgaim/plugins/psychic.c:66 @@ -7109,7 +7109,7 @@ #: ../libgaim/protocols/bonjour/bonjour.c:594 #, fuzzy -msgid "Jabber Account" +msgid "XMPP Account" msgstr "Активиране на акаунт" #: ../libgaim/protocols/bonjour/bonjour.h:35 @@ -8191,8 +8191,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Редактиране на Jabber-визитка" +msgid "Edit XMPP vCard" +msgstr "Редактиране на XMPP-визитка" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8306,7 +8306,7 @@ msgid "The following are the results of your search" msgstr "" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8331,7 +8331,7 @@ msgstr "Данни за сървъра" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../libgaim/protocols/jabber/buddy.c:1749 @@ -8343,8 +8343,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Търсене за потребители на Jabber" +msgid "Search for XMPP users" +msgstr "Търсене за потребители на XMPP" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8475,8 +8475,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "Невалиден ID за Jabber" +msgid "Invalid XMPP ID" +msgstr "Невалиден ID за XMPP" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8530,8 +8530,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Регистриране на нов Jabber-абонамент" +msgid "Register New XMPP Account" +msgstr "Регистриране на нов XMPP-абонамент" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8594,8 +8594,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Смяна на парола за Jabber" +msgid "Change XMPP Password" +msgstr "Смяна на парола за XMPP" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8649,7 +8649,7 @@ msgstr "Записът не е намерен" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1475 @@ -8916,8 +8916,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Модул за протокола Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Модул за протокола XMPP" #: ../libgaim/protocols/jabber/jabber.c:1990 #, fuzzy @@ -8960,8 +8960,8 @@ msgstr "Съобщението не можа да достигне до %s: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Грешка в Jabber-съобщение" +msgid "XMPP Message Error" +msgstr "Грешка в XMPP-съобщение" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/bn.po Tue May 01 14:02:55 2007 +0000 +++ b/po/bn.po Tue May 01 14:09:24 2007 +0000 @@ -2538,7 +2538,7 @@ msgstr "হ্যাকার ও নিয়োজিত ড্রাইভার [কুঁড়ের হদ্দো]" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" +msgid "XMPP developer" msgstr "জ্যাবার ডেভেলপার" #: ../gtk/gtkdialogs.c:109 @@ -2817,7 +2817,7 @@ msgstr "গেইম সম্বন্ধে" #: ../gtk/gtkdialogs.c:335 -msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" +msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" msgstr "" #: ../gtk/gtkdialogs.c:350 @@ -5388,7 +5388,7 @@ msgstr "টেক্সট-ভিত্তিক প্রোটকলে অরুপান্তরিত ইনপুট পাঠাতে সহায়তা করে।" #: ../gtk/plugins/raw.c:178 -msgid "Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window." +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 "টেক্সট-ভিত্তিক প্রোটকলগুলোতে অরুপান্তরিত ইনপুট পাঠাতে সহায়তা করে (জ্যাবার, MSN, IRC, TOC)। পাঠাতে হলে এন্ট্রি বক্সে 'Enter' চাপুন। ডিবাগ উইন্ডোটিতে খেয়াল রাখুন।" #: ../gtk/plugins/relnot.c:69 @@ -6949,7 +6949,7 @@ msgstr "আগত আইএম সংযোগ শুনতে ব্যর্থ\n" #: ../libgaim/plugins/psychic.c:21 -msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" #: ../libgaim/plugins/psychic.c:66 @@ -7205,7 +7205,7 @@ msgstr "এআইএম অ্যাকাউন্ট" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" +msgid "XMPP Account" msgstr "জ্যাবার অ্যাকাউন্ট" #: ../libgaim/protocols/bonjour/bonjour.h:35 @@ -8297,8 +8297,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard সম্পাদন" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard সম্পাদন" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "All items below are optional. Enter only the information with which you feel comfortable." @@ -8410,7 +8410,7 @@ msgid "The following are the results of your search" msgstr "আপনার অনুসন্ধান এর নিম্নক্ত ফলাফল পাওয়া গেছে" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1672 msgid "Find a contact by entering the search criteria in the given fields. Note: Each field supports wild card searches (%)" msgstr "" @@ -8433,7 +8433,7 @@ msgstr "সার্ভার সংক্রান্ত তথ্য" #: ../libgaim/protocols/jabber/buddy.c:1734 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "জ্যাবার ব্যবহারকারীর মিল অনুসন্ধান করতে এক বা একাধিক ক্ষেত্র পূরন করুন।" #: ../libgaim/protocols/jabber/buddy.c:1754 @@ -8445,7 +8445,7 @@ #: ../libgaim/protocols/jabber/buddy.c:1763 #: ../libgaim/protocols/jabber/buddy.c:1764 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "জ্যাবার ব্যবহারকারী অনুসন্ধান" #: ../libgaim/protocols/jabber/buddy.c:1778 @@ -8576,7 +8576,7 @@ #: ../libgaim/protocols/jabber/jabber.c:555 #: ../libgaim/protocols/jabber/jabber.c:898 -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "অবৈধ জ্যাবার আইডি" #: ../libgaim/protocols/jabber/jabber.c:626 @@ -8631,7 +8631,7 @@ #: ../libgaim/protocols/jabber/jabber.c:861 #: ../libgaim/protocols/jabber/jabber.c:862 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "নতুন জ্যাবার অ্যাকাউন্ট রেজিষ্ট্রেশন করুন" #: ../libgaim/protocols/jabber/jabber.c:1030 @@ -8695,7 +8695,7 @@ #: ../libgaim/protocols/jabber/jabber.c:1367 #: ../libgaim/protocols/jabber/jabber.c:1368 -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "জ্যাবার পাসওয়ার্ড পরিবর্তন" #: ../libgaim/protocols/jabber/jabber.c:1368 @@ -8750,7 +8750,7 @@ msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1478 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1480 @@ -9008,7 +9008,7 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1967 #: ../libgaim/protocols/jabber/jabber.c:1969 -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr "জ্যাবার প্রোটোকল প্লাগইন" #: ../libgaim/protocols/jabber/jabber.c:1995 @@ -9051,7 +9051,7 @@ msgstr "%s কে বার্তা পাঠানো ব্যর্থ হয়েছে: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "জ্যবার বার্তা ত্রুটি" #: ../libgaim/protocols/jabber/message.c:316
--- a/po/bs.po Tue May 01 14:02:55 2007 +0000 +++ b/po/bs.po Tue May 01 14:09:24 2007 +0000 @@ -847,10 +847,10 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Dopušta slanje sirovih podataka u tekst-bazirane protokole (Jabber, MSN, IRC, TOC). Pritisnite " +"Dopušta slanje sirovih podataka u tekst-bazirane protokole (XMPP, MSN, IRC, TOC). Pritisnite " "'Enter' u upisno polje da biste poslali. Gledajte debug prozor." #: plugins/relnot.c:63 @@ -2976,8 +2976,8 @@ msgstr "bivši održavatelj" #: src/gtkdialogs.c:93 -msgid "former Jabber developer" -msgstr "bivši Jabber razvijatelj" +msgid "former XMPP developer" +msgstr "bivši XMPP razvijatelj" #: src/gtkdialogs.c:94 msgid "original author" @@ -3179,11 +3179,11 @@ #: src/gtkdialogs.c:244 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using Gtk+ and is licensed under the GPL.<BR><BR>" msgstr "" "Gaim je modularni klijent za poruke, koji je u mogucnosti da koristi u isto vrijeme " -" AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, i Gadu-Gadu. " +" AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, i Gadu-Gadu. " "Napisan je koristeci Gtk+ i licenciran pod GPL. <BR><BR>" #: src/gtkdialogs.c:254 @@ -5827,8 +5827,8 @@ msgstr "Rodendan" #: src/protocols/jabber/buddy.c:509 src/protocols/jabber/buddy.c:510 -msgid "Edit Jabber vCard" -msgstr "Uredi Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "Uredi XMPP vCard" #: src/protocols/jabber/buddy.c:511 msgid "" @@ -5838,8 +5838,8 @@ "Sve tacke niže su opcionalne. Unesite samo informacije koje hocete." #: src/protocols/jabber/buddy.c:556 -msgid "Jabber ID" -msgstr "Jabber ID" +msgid "XMPP ID" +msgstr "XMPP ID" #: src/protocols/jabber/buddy.c:566 src/protocols/jabber/buddy.c:573 #: src/protocols/jabber/buddy.c:586 src/protocols/jabber/jabber.c:971 @@ -5873,8 +5873,8 @@ msgstr "Logo" #: src/protocols/jabber/buddy.c:786 -msgid "Jabber Profile" -msgstr "Jabber profil" +msgid "XMPP Profile" +msgstr "XMPP profil" #: src/protocols/jabber/buddy.c:941 msgid "Un-hide From" @@ -6012,8 +6012,8 @@ msgstr "SSL rukovanje nije uspjelo" #: src/protocols/jabber/jabber.c:378 src/protocols/jabber/jabber.c:711 -msgid "Invalid Jabber ID" -msgstr "Pogrešan Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Pogrešan XMPP ID" #: src/protocols/jabber/jabber.c:409 src/protocols/jabber/jabber.c:741 msgid "SSL support unavailable" @@ -6074,8 +6074,8 @@ msgstr "Popunite informacije niže, da registrujete vaš novi account." #: src/protocols/jabber/jabber.c:675 src/protocols/jabber/jabber.c:676 -msgid "Register New Jabber Account" -msgstr "Registruj novi Jabber account" +msgid "Register New XMPP Account" +msgstr "Registruj novi XMPP account" #: src/protocols/jabber/jabber.c:759 msgid "Logged out" @@ -6161,8 +6161,8 @@ msgstr "Lozinka (ponovo)" #: src/protocols/jabber/jabber.c:1084 src/protocols/jabber/jabber.c:1085 -msgid "Change Jabber Password" -msgstr "Promjeni Jabber lozinku" +msgid "Change XMPP Password" +msgstr "Promjeni XMPP lozinku" #: src/protocols/jabber/jabber.c:1085 msgid "Please enter your new password" @@ -6201,8 +6201,8 @@ msgstr "Unos nije pronaden" #: src/protocols/jabber/jabber.c:1191 -msgid "Malformed Jabber ID" -msgstr "Pogrešno formiran Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Pogrešno formiran XMPP ID" #: src/protocols/jabber/jabber.c:1193 msgid "Not Acceptable" @@ -6435,8 +6435,8 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1595 src/protocols/jabber/jabber.c:1597 -msgid "Jabber Protocol Plugin" -msgstr "Jabber protokol plugin" +msgid "XMPP Protocol Plugin" +msgstr "XMPP protokol plugin" #: src/protocols/jabber/jabber.c:1620 msgid "Resource" @@ -6480,8 +6480,8 @@ msgstr "Dostava poruke prema %s nije uspjela: %s" #: src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" -msgstr "Greška Jabber poruke" +msgid "XMPP Message Error" +msgstr "Greška XMPP poruke" #: src/protocols/jabber/message.c:297 #, c-format
--- a/po/ca.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ca.po Tue May 01 14:09:24 2007 +0000 @@ -2758,10 +2758,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Fa que apareguin finestres de conversa així que altres usuaris us comencin a " -"enviar missatges. Funciona per a AIM, ICQ, Jabber, Sametime, i Yahoo!" +"enviar missatges. Funciona per a AIM, ICQ, XMPP, Sametime, i Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -3039,8 +3039,8 @@ msgstr "Compte AIM" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Compte Jabber" +msgid "XMPP Account" +msgstr "Compte XMPP" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4217,8 +4217,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Edita la vCard del Jabber" +msgid "Edit XMPP vCard" +msgstr "Edita la vCard del XMPP" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4331,7 +4331,7 @@ msgid "The following are the results of your search" msgstr "El que segueix són els resultats de la vostra cerca" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4354,7 +4354,7 @@ msgstr "Instruccions del servidor: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "Introduïu un o més camps per cercar usuaris que hi coincideixin." #: ../libpurple/protocols/jabber/buddy.c:1756 @@ -4366,8 +4366,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Cerca usuaris de Jabber" +msgid "Search for XMPP users" +msgstr "Cerca usuaris de XMPP" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4510,8 +4510,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "ID Jabber invàlid" +msgid "Invalid XMPP ID" +msgstr "ID XMPP invàlid" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4565,8 +4565,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Registra un compte Jabber nou" +msgid "Register New XMPP Account" +msgstr "Registra un compte XMPP nou" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4640,8 +4640,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Canvia la contrasenya per al Jabber" +msgid "Change XMPP Password" +msgstr "Canvia la contrasenya per al XMPP" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4695,8 +4695,8 @@ msgstr "No s'ha trobat l'element" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "l'ID Jabber està mal format" +msgid "Malformed XMPP ID" +msgstr "l'ID XMPP està mal format" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4965,8 +4965,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "Connector per al protocol Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Connector per al protocol XMPP" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -5008,8 +5008,8 @@ msgstr "No s'ha pogut fer arribar el missatge a %s: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Missatge d'error de Jabber" +msgid "XMPP Message Error" +msgstr "Missatge d'error de XMPP" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12399,8 +12399,8 @@ msgstr "hacker i conductor designat" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "Desenvolupador de Jabber" +msgid "XMPP developer" +msgstr "Desenvolupador de XMPP" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12675,7 +12675,7 @@ #: ../pidgin/gtkdialogs.c:359 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12683,7 +12683,7 @@ "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.<BR><BR>" -msgstr "El %s és un client de missatgeria instantània modular, capaç d'utilitzar els protocols AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, i QQ, tots alhora. Utilitza la biblioteca de programació GTK+.<BR><BR>Podeu modificar i redistribuir el programa sota els termes de la GPL (versió 2 o posterior). Hi ha una còpia de la GPL dins del fitxer 'COPYING' que es distribueix amb el %s. Els drets d'autor del %s pertanyen als seus col·laboradors. El fitxer 'COPYRIGHT' conté una llista completa de tots els contribuïdors. No us proporcionem cap mena de garantia amb aquest programa.<BR><BR>" +msgstr "El %s és un client de missatgeria instantània modular, capaç d'utilitzar els protocols AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, i QQ, tots alhora. Utilitza la biblioteca de programació GTK+.<BR><BR>Podeu modificar i redistribuir el programa sota els termes de la GPL (versió 2 o posterior). Hi ha una còpia de la GPL dins del fitxer 'COPYING' que es distribueix amb el %s. Els drets d'autor del %s pertanyen als seus col·laboradors. El fitxer 'COPYRIGHT' conté una llista completa de tots els contribuïdors. No us proporcionem cap mena de garantia amb aquest programa.<BR><BR>" #: ../pidgin/gtkdialogs.c:374 msgid "<FONT SIZE=\"4\">IRC:</FONT> #pidgwin on irc.freenode.net<BR><BR>" @@ -15079,10 +15079,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Permet enviar dades en brut als protocols en mode text (Jabber, MSN, IRC, " +"Permet enviar dades en brut als protocols en mode text (XMPP, MSN, IRC, " "TOC). Premeu la tecla de retorn a la caixa d'entrada per enviar-les. " "Observeu la finestra de depuració." @@ -16327,8 +16327,8 @@ #~ msgid "Change password" #~ msgstr "Canvia la contrasenya" -#~ msgid "Jabber ID" -#~ msgstr "ID per al Jabber" +#~ msgid "XMPP ID" +#~ msgstr "ID per al XMPP" #~ msgid "Error processing event or response (%s)." #~ msgstr "S'ha produït un error en processar una incidència o resposta (%s)." @@ -16468,8 +16468,8 @@ #~ msgid "Buddy Information for %s" #~ msgstr "Informació d'amic per a %s" -#~ msgid "Jabber Profile" -#~ msgstr "Perfil Jabber" +#~ msgid "XMPP Profile" +#~ msgstr "Perfil XMPP" #~ msgid "User Properties" #~ msgstr "Propietat de l'usuari"
--- a/po/ca@valencia.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ca@valencia.po Tue May 01 14:09:24 2007 +0000 @@ -2570,8 +2570,8 @@ msgstr "hacker i conductor designat" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Desenvolupador de Jabber" +msgid "XMPP developer" +msgstr "Desenvolupador de XMPP" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2849,8 +2849,8 @@ msgstr "Quant al Gaim" #: ../gtk/gtkdialogs.c:335 -msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" -msgstr "El Gaim és un client missatgeria instantània modular, capaç d'utilitzar els protocols AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, i QQ, tots alhora. Utilitza la biblioteca de programació GTK+.<BR><BR>Podeu modificar i redistribuir el programa sota els termes de la GPL (versió 2 o posterior). Hi ha una còpia de la GPL dins del fitxer 'COPYING' que es distribueix amb el Gaim. Els drets d'autor del Gaim pertany als seus col·laboradors. El fitxer 'COPYRIGHT' conté una llista completa de tots els contribuïdors. No us proporcionem cap mena de garantia amb este programa.<BR><BR>" +msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" +msgstr "El Gaim és un client missatgeria instantània modular, capaç d'utilitzar els protocols AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, i QQ, tots alhora. Utilitza la biblioteca de programació GTK+.<BR><BR>Podeu modificar i redistribuir el programa sota els termes de la GPL (versió 2 o posterior). Hi ha una còpia de la GPL dins del fitxer 'COPYING' que es distribueix amb el Gaim. Els drets d'autor del Gaim pertany als seus col·laboradors. El fitxer 'COPYRIGHT' conté una llista completa de tots els contribuïdors. No us proporcionem cap mena de garantia amb este programa.<BR><BR>" #: ../gtk/gtkdialogs.c:350 msgid "<FONT SIZE=\"4\">IRC:</FONT> #wingaim on irc.freenode.net<BR><BR>" @@ -5431,8 +5431,8 @@ msgstr "Vos permet enviar dades en brut als protocols en mode text." #: ../gtk/plugins/raw.c:178 -msgid "Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window." -msgstr "Permet enviar dades en brut als protocols en mode text (Jabber, MSN, IRC, TOC). Premeu la tecla de retorn a la caixa d'entrada per a enviar-les. Observeu la finestra de depuració." +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 "Permet enviar dades en brut als protocols en mode text (XMPP, MSN, IRC, TOC). Premeu la tecla de retorn a la caixa d'entrada per a enviar-les. Observeu la finestra de depuració." #: ../gtk/plugins/relnot.c:69 #, c-format @@ -6984,8 +6984,8 @@ msgstr "Mode psíquic per a converses entrants" #: ../libgaim/plugins/psychic.c:21 -msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" -msgstr "Fa que apareguen finestres de conversa així que altres usuaris vos comencen a enviar missatges. Funciona per a AIM, ICQ, Jabber, Sametime, i Yahoo!" +msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "Fa que apareguen finestres de conversa així que altres usuaris vos comencen a enviar missatges. Funciona per a AIM, ICQ, XMPP, Sametime, i Yahoo!" #: ../libgaim/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -7238,8 +7238,8 @@ msgstr "Compte AIM" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Compte Jabber" +msgid "XMPP Account" +msgstr "Compte XMPP" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8325,8 +8325,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Edita la vCard del Jabber" +msgid "Edit XMPP vCard" +msgstr "Edita la vCard del XMPP" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "All items below are optional. Enter only the information with which you feel comfortable." @@ -8438,7 +8438,7 @@ msgid "The following are the results of your search" msgstr "El que segueix són els resultats de la vostra cerca" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1672 msgid "Find a contact by entering the search criteria in the given fields. Note: Each field supports wild card searches (%)" msgstr "Trobeu un contacte entrant el criteri de la cerca en els camps indicats. Nota: cada camp permet caràcters que actuen de comodí (%)" @@ -8459,7 +8459,7 @@ msgstr "Instruccions del servidor: %s" #: ../libgaim/protocols/jabber/buddy.c:1734 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "Introduïu un o més camps per cercar usuaris que hi coincidisquen." #: ../libgaim/protocols/jabber/buddy.c:1754 @@ -8471,8 +8471,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1763 #: ../libgaim/protocols/jabber/buddy.c:1764 -msgid "Search for Jabber users" -msgstr "Cerca usuaris de Jabber" +msgid "Search for XMPP users" +msgstr "Cerca usuaris de XMPP" #: ../libgaim/protocols/jabber/buddy.c:1778 msgid "Invalid Directory" @@ -8602,8 +8602,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "ID Jabber invàlid" +msgid "Invalid XMPP ID" +msgstr "ID XMPP invàlid" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8657,8 +8657,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Registra un compte Jabber nou" +msgid "Register New XMPP Account" +msgstr "Registra un compte XMPP nou" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8721,8 +8721,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Canvia la contrasenya per al Jabber" +msgid "Change XMPP Password" +msgstr "Canvia la contrasenya per al XMPP" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8776,8 +8776,8 @@ msgstr "No s'ha trobat l'element" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "l'ID Jabber està mal format" +msgid "Malformed XMPP ID" +msgstr "l'ID XMPP està mal format" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -9035,8 +9035,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Connector per al protocol Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Connector per al protocol XMPP" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -9078,8 +9078,8 @@ msgstr "No s'ha pogut fer arribar el missatge a %s: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Missatge d'error de Jabber" +msgid "XMPP Message Error" +msgstr "Missatge d'error de XMPP" #: ../libgaim/protocols/jabber/message.c:316 #, c-format @@ -15608,8 +15608,8 @@ #~ msgstr "No s'ha pogut obrir el fitxer" #~ msgid "Change password" #~ msgstr "Canvia la contrasenya" -#~ msgid "Jabber ID" -#~ msgstr "ID per al Jabber" +#~ msgid "XMPP ID" +#~ msgstr "ID per al XMPP" #~ msgid "Error processing event or response (%s)." #~ msgstr "S'ha produït un error en processar una incidència o resposta (%s)." #~ msgid "Unable to set AIM away message."
--- a/po/cs.po Tue May 01 14:02:55 2007 +0000 +++ b/po/cs.po Tue May 01 14:09:24 2007 +0000 @@ -1218,8 +1218,8 @@ #: ../plugins/psychic.c:24 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" -msgstr "Způsobí, že okna konverzací se objeví, když vám jiní uživatelé začnou psát zprávu. Funguje s AIM, ICQ, Jabber, Sametime a Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "Způsobí, že okna konverzací se objeví, když vám jiní uživatelé začnou psát zprávu. Funguje s AIM, ICQ, XMPP, Sametime a Yahoo!" #: ../plugins/psychic.c:60 msgid "You feel a disturbance in the force..." @@ -1247,10 +1247,10 @@ #: ../plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Nechá vás odeslat přímý vstup protokolům založeným na textu (Jabber MSN, " +"Nechá vás odeslat přímý vstup protokolům založeným na textu (XMPP MSN, " "IRC, TOC). Pro odeslání stiskněte 'Enter' ve vstupním poli. Sledujte ladicí " "okno." @@ -3267,8 +3267,8 @@ msgstr "hacker a jmenovaný řidič [líná kůže]" #: ../src/gtkdialogs.c:98 -msgid "Jabber developer" -msgstr "vývojář Jabberu" +msgid "XMPP developer" +msgstr "vývojář XMPPu" #: ../src/gtkdialogs.c:99 msgid "original author" @@ -3460,14 +3460,14 @@ #: ../src/gtkdialogs.c:254 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " "and Gadu-Gadu all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' " "file for the complete list of contributors. We provide no warranty for this " "program.<BR><BR>" -msgstr "Gaim je modulární klient IM schopný zároveň používat AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, a Gadu-Gadu. Je napsán pomocí GTK+<BR><BR>Program můžete upravovat a dále šířit pod podmínkami GPL (verze 2 nebo novější). Kopie GPL je obsažena v souboru 'COPYING' dodávaném s Gaim. Copyright Gaimu vlastní jeho spoluautoři. Pro úplný seznam spoluautorů viz soubor 'COPYRIGHT'. Pro tento program neposkytujeme žádnou záruku.<BR><BR>" +msgstr "Gaim je modulární klient IM schopný zároveň používat AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, a Gadu-Gadu. Je napsán pomocí GTK+<BR><BR>Program můžete upravovat a dále šířit pod podmínkami GPL (verze 2 nebo novější). Kopie GPL je obsažena v souboru 'COPYING' dodávaném s Gaim. Copyright Gaimu vlastní jeho spoluautoři. Pro úplný seznam spoluautorů viz soubor 'COPYRIGHT'. Pro tento program neposkytujeme žádnou záruku.<BR><BR>" #: ../src/gtkdialogs.c:268 msgid "<FONT SIZE=\"4\">IRC:</FONT> #wingaim on irc.freenode.net<BR><BR>" @@ -6444,8 +6444,8 @@ msgstr "Datum narození" #: ../src/protocols/jabber/buddy.c:567 ../src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Upravit vCard Jabberu" +msgid "Edit XMPP vCard" +msgstr "Upravit vCard XMPPu" #: ../src/protocols/jabber/buddy.c:569 msgid "" @@ -6529,8 +6529,8 @@ msgstr "Výsledky vašeho hledání jsou následující" #: ../src/protocols/jabber/buddy.c:1388 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Vyplňte jedno nebo více polí pro hledání odpovídajících uživatelů Jabberu." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Vyplňte jedno nebo více polí pro hledání odpovídajících uživatelů XMPPu." #: ../src/protocols/jabber/buddy.c:1392 ../src/protocols/jabber/jabber.c:770 #: ../src/protocols/oscar/oscar.c:6175 ../src/protocols/silc/ops.c:1024 @@ -6547,8 +6547,8 @@ msgstr "E-mailová adresa" #: ../src/protocols/jabber/buddy.c:1416 ../src/protocols/jabber/buddy.c:1417 -msgid "Search for Jabber users" -msgstr "Hledat uživatele Jabberu" +msgid "Search for XMPP users" +msgstr "Hledat uživatele XMPPu" #: ../src/protocols/jabber/buddy.c:1431 msgid "Invalid Directory" @@ -6669,8 +6669,8 @@ msgstr "Nemohu vytvořit socket" #: ../src/protocols/jabber/jabber.c:520 ../src/protocols/jabber/jabber.c:857 -msgid "Invalid Jabber ID" -msgstr "Neplatné ID Jabberu" +msgid "Invalid XMPP ID" +msgstr "Neplatné ID XMPPu" #: ../src/protocols/jabber/jabber.c:590 #, c-format @@ -6712,8 +6712,8 @@ msgstr "Pro zaregistrování vašeho nového účtu prosím vyplňte informace níže." #: ../src/protocols/jabber/jabber.c:821 ../src/protocols/jabber/jabber.c:822 -msgid "Register New Jabber Account" -msgstr "Zaregistrovat nový účet Jabber" +msgid "Register New XMPP Account" +msgstr "Zaregistrovat nový účet XMPP" #: ../src/protocols/jabber/jabber.c:983 msgid "Initializing Stream" @@ -6776,8 +6776,8 @@ msgstr "Heslo (znovu)" #: ../src/protocols/jabber/jabber.c:1316 ../src/protocols/jabber/jabber.c:1317 -msgid "Change Jabber Password" -msgstr "Změnit heslo Jabberu" +msgid "Change XMPP Password" +msgstr "Změnit heslo XMPPu" #: ../src/protocols/jabber/jabber.c:1317 msgid "Please enter your new password" @@ -6828,8 +6828,8 @@ msgstr "Položka nenalezena" #: ../src/protocols/jabber/jabber.c:1427 -msgid "Malformed Jabber ID" -msgstr "Neplatné ID Jabberu" +msgid "Malformed XMPP ID" +msgstr "Neplatné ID XMPPu" #: ../src/protocols/jabber/jabber.c:1429 msgid "Not Acceptable" @@ -7093,8 +7093,8 @@ #. * summary #. * description #: ../src/protocols/jabber/jabber.c:1882 ../src/protocols/jabber/jabber.c:1884 -msgid "Jabber Protocol Plugin" -msgstr "Zásuvný modul protokolu Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Zásuvný modul protokolu XMPP" #: ../src/protocols/jabber/jabber.c:1910 msgid "Use TLS if available" @@ -7142,8 +7142,8 @@ msgstr "Doručení zprávy pro %s selhalo: %s" #: ../src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" -msgstr "Chyba zprávy Jabberu" +msgid "XMPP Message Error" +msgstr "Chyba zprávy XMPPu" #: ../src/protocols/jabber/message.c:300 #, c-format
--- a/po/da.po Tue May 01 14:02:55 2007 +0000 +++ b/po/da.po Tue May 01 14:09:24 2007 +0000 @@ -2547,8 +2547,8 @@ msgstr "hacker and designated driver [lazy bum]" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Jabber udvikler" +msgid "XMPP developer" +msgstr "XMPP udvikler" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2823,8 +2823,8 @@ msgstr "Om Gaim" #: ../gtk/gtkdialogs.c:335 -msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" -msgstr "Gaim er en modulær beskeds-klient, der understøtter AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu og QQ på samme tid. Det er skrevet i GTK+.<BR><BR>Du må modificere og redistribuere programmet under de betingelser givet af GPL (version 2 eller senere). En kopi af GPL er indeholdt i 'COPYING' filen som blev distribueret med Gaim. Gaim er ophavsret af dens bidragsydere. Se 'COPYRIGHT' filen for den komplette liste af bidragsydere. Vi giver ingen garanti for dette program.<BR><BR>" +msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" +msgstr "Gaim er en modulær beskeds-klient, der understøtter AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu og QQ på samme tid. Det er skrevet i GTK+.<BR><BR>Du må modificere og redistribuere programmet under de betingelser givet af GPL (version 2 eller senere). En kopi af GPL er indeholdt i 'COPYING' filen som blev distribueret med Gaim. Gaim er ophavsret af dens bidragsydere. Se 'COPYRIGHT' filen for den komplette liste af bidragsydere. Vi giver ingen garanti for dette program.<BR><BR>" #: ../gtk/gtkdialogs.c:350 msgid "<FONT SIZE=\"4\">IRC:</FONT> #wingaim on irc.freenode.net<BR><BR>" @@ -5395,8 +5395,8 @@ msgstr "Giver dig mulighed for at sende rå inddata til text-baserede protokoller." #: ../gtk/plugins/raw.c:178 -msgid "Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window." -msgstr "Giver dig mulighed for at sende rå inddata til text-baserede protokoller (Jabber, MSN, IRC, TOC. Tryk 'Enter' i tekstfeltet for at sende. Hold øje med fejlsøgningsvinduet." +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 "Giver dig mulighed for at sende rå inddata til text-baserede protokoller (XMPP, MSN, IRC, TOC. Tryk 'Enter' i tekstfeltet for at sende. Hold øje med fejlsøgningsvinduet." #: ../gtk/plugins/relnot.c:69 #, c-format @@ -6940,8 +6940,8 @@ msgstr "Synsk tilstand for indgående samtaler" #: ../libgaim/plugins/psychic.c:21 -msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" -msgstr "Får samtalevinduer til at dukke frem når andre brugere begynder at skrive til dig. Dette virker med AIM, ICQ, Jabber, Sametime og Yahoo!" +msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "Får samtalevinduer til at dukke frem når andre brugere begynder at skrive til dig. Dette virker med AIM, ICQ, XMPP, Sametime og Yahoo!" #: ../libgaim/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -7194,8 +7194,8 @@ msgstr "AIM-konto" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Jabber-konto" +msgid "XMPP Account" +msgstr "XMPP-konto" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8280,8 +8280,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Redigér Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "Redigér XMPP vCard" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "All items below are optional. Enter only the information with which you feel comfortable." @@ -8393,7 +8393,7 @@ msgid "The following are the results of your search" msgstr "Det følgende er resultaterne på din søgning" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1672 msgid "Find a contact by entering the search criteria in the given fields. Note: Each field supports wild card searches (%)" msgstr "Find en kontakt ved at indtaste søgekriterien i de givne felter. Bemærk: Hver felt understøtter joker-søgninger (%)" @@ -8414,8 +8414,8 @@ msgstr "Server instruktioner: %s" #: ../libgaim/protocols/jabber/buddy.c:1734 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Udfyld et eller flere felter for at søge efter Jabber brugere." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Udfyld et eller flere felter for at søge efter XMPP brugere." #: ../libgaim/protocols/jabber/buddy.c:1754 #: ../libgaim/protocols/novell/novell.c:1488 @@ -8426,8 +8426,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1763 #: ../libgaim/protocols/jabber/buddy.c:1764 -msgid "Search for Jabber users" -msgstr "Søg efter Jabber brugere" +msgid "Search for XMPP users" +msgstr "Søg efter XMPP brugere" #: ../libgaim/protocols/jabber/buddy.c:1778 msgid "Invalid Directory" @@ -8557,8 +8557,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "Ugyldigt Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Ugyldigt XMPP ID" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8612,8 +8612,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Registrér ny Jabber konto" +msgid "Register New XMPP Account" +msgstr "Registrér ny XMPP konto" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8676,8 +8676,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Skift Jabber adgangskode" +msgid "Change XMPP Password" +msgstr "Skift XMPP adgangskode" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8731,8 +8731,8 @@ msgstr "Punkt ikke fundet" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "Ugyldigt Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Ugyldigt XMPP ID" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -8989,8 +8989,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Jabber protokolmodul" +msgid "XMPP Protocol Plugin" +msgstr "XMPP protokolmodul" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -9032,8 +9032,8 @@ msgstr "Beskedlevering til %s fejlede: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Jabber beskedfejl" +msgid "XMPP Message Error" +msgstr "XMPP beskedfejl" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/de.po Tue May 01 14:02:55 2007 +0000 +++ b/po/de.po Tue May 01 14:09:24 2007 +0000 @@ -2770,10 +2770,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Öffnet Gesprächsfenster, wenn andere Benutzer beginnen, Ihnen eine Nachricht " -"zu senden. Das funktioniert mit AIM, ICQ, Jabber, Sametime und Yahoo!" +"zu senden. Das funktioniert mit AIM, ICQ, XMPP, Sametime und Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -3051,8 +3051,8 @@ msgstr "AIM-Konto" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Jabber-Konto" +msgid "XMPP Account" +msgstr "XMPP-Konto" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4235,8 +4235,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard bearbeiten" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard bearbeiten" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4351,7 +4351,7 @@ msgid "The following are the results of your search" msgstr "Dies sind die Ergebnisse Ihrer Suche" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4376,9 +4376,9 @@ msgstr "Anleitung vom Server: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "" -"Füllen sie ein oder mehrere Felder aus, um nach entsprechenden Jabber-" +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "" +"Füllen sie ein oder mehrere Felder aus, um nach entsprechenden XMPP-" "Benutzern zu suchen." #: ../libpurple/protocols/jabber/buddy.c:1756 @@ -4390,8 +4390,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Nach Jabber-Benutzern suchen" +msgid "Search for XMPP users" +msgstr "Nach XMPP-Benutzern suchen" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4535,8 +4535,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "Ungültige Jabber-ID" +msgid "Invalid XMPP ID" +msgstr "Ungültige XMPP-ID" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4592,8 +4592,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Registrierung eines neuen Jabber-Kontos" +msgid "Register New XMPP Account" +msgstr "Registrierung eines neuen XMPP-Kontos" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4667,8 +4667,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Ändere das Jabber-Passwort" +msgid "Change XMPP Password" +msgstr "Ändere das XMPP-Passwort" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4722,8 +4722,8 @@ msgstr "Eintrag nicht gefunden" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "Falsche Jabber-ID" +msgid "Malformed XMPP ID" +msgstr "Falsche XMPP-ID" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4992,8 +4992,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1977 #: ../libpurple/protocols/jabber/jabber.c:1979 -msgid "Jabber Protocol Plugin" -msgstr "Jabber-Protokoll-Plugin" +msgid "XMPP Protocol Plugin" +msgstr "XMPP-Protokoll-Plugin" #: ../libpurple/protocols/jabber/jabber.c:2005 msgid "Force old (port 5223) SSL" @@ -5035,8 +5035,8 @@ msgstr "Nachrichtenzustellung an %s fehlgeschlagen: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Jabber Nachrichtenfehler" +msgid "XMPP Message Error" +msgstr "XMPP Nachrichtenfehler" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12533,8 +12533,8 @@ msgstr "Grafische Benutzeroberfläche" #: ../pidgin/gtkdialogs.c:114 -msgid "Jabber developer" -msgstr "Jabber-Entwickler" +msgid "XMPP developer" +msgstr "XMPP-Entwickler" #: ../pidgin/gtkdialogs.c:115 msgid "original author" @@ -12803,7 +12803,7 @@ #: ../pidgin/gtkdialogs.c:360 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12812,7 +12812,7 @@ "'COPYRIGHT' file for the complete list of contributors. We provide no " "warranty for this program.<BR><BR>" msgstr "" -"%s ist ein modularer Nachrichtendienst, der AIM, MSN, Yahoo!, Jabber, ICQ, " +"%s ist ein modularer Nachrichtendienst, der AIM, MSN, Yahoo!, XMPP, ICQ, " "IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, " "Gadu-Gadu und QQ gleichzeitig unterstützt. Er wird mit GTK+ entwickelt." "<BR><BR>Sie können das Programm nach den Bedingungen der GPL (Version 2 oder " @@ -15237,10 +15237,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Erlaubt Ihnen Rohdaten an textbasierte Protokolle (Jabber, MSN, IRC, TOC) zu " +"Erlaubt Ihnen Rohdaten an textbasierte Protokolle (XMPP, MSN, IRC, TOC) zu " "senden. Drücken Sie die 'Enter'-Taste im Eingabefeld zum Senden. Beachten " "Sie das Debug-Fenster."
--- a/po/dz.po Tue May 01 14:02:55 2007 +0000 +++ b/po/dz.po Tue May 01 14:09:24 2007 +0000 @@ -2445,7 +2445,7 @@ msgstr "གསང་དཀྲོགས་མི་དང་འདྲེན་བྱེད་བཀོད་སྒྲིག་འབད་འབདཝ [ལེ་ལོ་ཅན bum]" #: ../gtk/gtkdialogs.c:107 -msgid "Jabber developer" +msgid "XMPP developer" msgstr "ཇེབ་བར་བཟོ་མི།" #: ../gtk/gtkdialogs.c:108 @@ -2709,7 +2709,7 @@ msgstr "གཱེམ་གྱི་སྐོར་ལས" #: ../gtk/gtkdialogs.c:329 -msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" +msgid "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. Gaim is copyrighted by its contributors. See the 'COPYRIGHT' file for the complete list of contributors. We provide no warranty for this program.<BR><BR>" msgstr "གེམ་འདི་ ཨེ་ཨའི་ཨེམ་ ཨེམ་ཨེསི་ཨེན་ ཡ་ཧུ་! ཇེབ་བར་ ཨའི་སི་ཀིའུ་ ཨའི་ཨར་སི་ ཨེསི་ཨའི་ཨེལ་སི་ ནོ་བེལ་སྡེ་རིམ་ ལོ་ཊསི་དུས་གཅིག་པ་ ཛེ་ཕིའར་ ག་ཌུ་-ག་ཌུ་ དང་ ཀིའུ་ཀིའུ་ཚུ་ཆ་མཉམ་རང་ ཚར་གཅིག་གུ་ལུ་ལག་ལེན་འཐབ་ནིའི་ལྕོགས་གྲུབ་ཡོད་པའི་ འཕྲིན་གཏོང་ཞབས་ཏོག་སྤྱོད་མི་སྦྱོང་ཚན་གཅིག་ཨིན། འདི་ ཇི་ཊི་ཀེ་+ ལག་ལེན་འཐབ་ཐོག་ལས་འབྲི་ཡོདཔ་ཨིན། <BR><BR> ཁྱོད་ཀྱིས་ ལས་རིམ་འདི་ ཇི་པི་ཨེལ་ (ཐོན་རིམ་ ༢ ཡང་ན་ཤུལ་ལས་) ཐ་སྙད་ཚུའི་འོག་ལུ་ ལེགས་བཅོས་འབད་དེ་ལོག་བགོ་བཀྲམ་འབད་བཏུབ་ཨིན། ཇི་པི་ཨེལ་གྱི་འདྲ་བཤུས་གཅིག་ 'COPYING' ཡིག་སྣོད་ནང་ཤོམ་ཏེ་ཡོདཔ་དང་གེམ་དང་གཅིག་ཁར་བགོ་བཀྲམ་འབད་དེ་ཡོད། གེམ་འདི་ དེའི་ གྲོགས་རམ་འབད་མི་ཚུ་གིས་ བདག་དབང་ཐོབ་སྟེ་ཡོདཔ་ཨིན། གྲོགས་རམ་པ་ཚུའི་ཐོ་ཡིག་ཡོངས་རྫོགས་དོན་ལུ་ 'COPYRIGHT' ཡིག་སྣོད་བལྟ། ང་བཅས་ཀྱིས་ ལས་རིམ་དེའི་དོན་ལུ་ ཉེན་ལེན་བྱིན་ནི་མེདཔ་ཨིན།<BR><BR>" #: ../gtk/gtkdialogs.c:343 @@ -5186,7 +5186,7 @@ msgstr "གཞི་བཞག་ཚིག་ཡིག་གནད་སྤེལ་ལམ་ལུགས་ཚུ་ལུ་རགས་པ་ཨིན་པུཊི་གཏང་བཅུགཔ་ཨིན།" #: ../gtk/plugins/raw.c:178 -msgid "Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window." +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 "གཞི་བཞག་ཚིག་ཡིག་གནད་སྤེལ་ལམ་ལུགས་ཚུ་ལུ་རགས་པ་ཨིན་པུཊི་གཏང་བཅུགཔ་ཨིན(ཇེབ་བར་ ཨེམ་ཨེསི་ཨེན་ ཨའི་ཨར་སི་ ཊི་ཨོ་སི)འདི་གཏང་ནིའི་དོན་ལུ་ཐོ་བཀོད་སྒྲོམ་ནང་ལུ་ 'ཨེན་ཊར' འདི་ཨེབ། རྐྱེན་སེལ་སྒོ་སྒྲིག་འདི་བལྟ།" #: ../gtk/plugins/relnot.c:69 @@ -6392,7 +6392,7 @@ msgstr "ནང་འབྱོར་འབད་བའི་གྲོས་གླེང་དོན་ལུ་སེམས་ཁམས་དང་འབྲེལ་བའི་ཐབས་ལམ།" #: ../libgaim/plugins/psychic.c:21 -msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "ལག་ལེན་པ་གཞན་མི་ཚུ་གིས་ཁྱོད་ལུ་འཕྲིན་དོན་གཏང་ནི་འགོ་བཙུགསཔ་ད་ གྲོས་གླེང་ཝིན་ཌོཝསི་ཚུ་འབྱུང་ནི་ལུ་རྒྱུ་རྐྱེན་འབདཝ་ཨིན། འ་ནི་གིས་ ཨེ་ཨའི་ཨེམ་ ཨའི་སི་ཀིའུ་ ཇེབ་བར་ དུས་ཚོད་གཅིག་པ་དང་ ཡ་ཧུ་ལུ་ ལཱ་འབདཝ་ཨིན།!" #. This is a quote from Star Wars. You should @@ -6663,7 +6663,7 @@ msgstr "ཨེ་ཨའི་ཨེམ་ རྩིས་ཐོ།" #: ../libgaim/protocols/bonjour/bonjour.c:593 -msgid "Jabber Account" +msgid "XMPP Account" msgstr "ཇེབ་བར་རྩིས་ཐོ།" #: ../libgaim/protocols/bonjour/bonjour.h:35 @@ -7773,7 +7773,7 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" +msgid "Edit XMPP vCard" msgstr "ཇབ་བར་ ཝི་ཤོག་བྱང་ ཞུན་དག་འབད།" #: ../libgaim/protocols/jabber/buddy.c:584 @@ -7889,7 +7889,7 @@ msgid "The following are the results of your search" msgstr "འོག་ལུ་ཡོད་མི་ཚུ་ ཁྱོད་ཀྱི་འཚོལ་ཞིབ་ཀྱི་གྲུབ་འབྲས་ཚུ་ཨིན།" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1631 msgid "Find a contact by entering the search criteria in the given fields. Note: Each field supports wild card searches (%)" msgstr "བྱིན་ཏེ་ཡོད་པའི་ ས་སྒོ་ཚུ་ནང་ འཚོལ་ཞིབ་ཁྱད་ཚད་བཙུགས་ཐོག་ལས་འབྲེལ་ས་འཚོལ། དྲན་དགོཔ: ས་སྒོ་རེ་རེ་གིས་ ཝའིལ་ཀཌིསི་འཚོལ་ཞིབ་ཚུ་རྒྱབ་སྐྱོར་འབདཝ་ཨིན། (%)" @@ -7910,7 +7910,7 @@ msgstr "སར་བར་བསླབ་སྟོན་ཚུ།: %s" #: ../libgaim/protocols/jabber/buddy.c:1693 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "མཐུན་པའི་ཇེབ་བར་ལག་ལེན་པ་ཚུ་འཚོལ་ཞིབ་འབད་ནིའི་དོན་ལུ་ ས་སྒོ་གཅིག་ཡང་ན་མངམ་བཀང་།" #: ../libgaim/protocols/jabber/buddy.c:1713 @@ -7922,7 +7922,7 @@ #: ../libgaim/protocols/jabber/buddy.c:1722 #: ../libgaim/protocols/jabber/buddy.c:1723 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "ཇེབ་བར་ལག་ལེན་པ་ཚུ་ལུ་འཚོལ་ཞིབ་འབད།" #: ../libgaim/protocols/jabber/buddy.c:1737 @@ -8054,7 +8054,7 @@ #: ../libgaim/protocols/jabber/jabber.c:545 #: ../libgaim/protocols/jabber/jabber.c:888 -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "ནུས་མེད་ ཇབ་བར ཨའི་ཌི།" #: ../libgaim/protocols/jabber/jabber.c:616 @@ -8109,7 +8109,7 @@ #: ../libgaim/protocols/jabber/jabber.c:851 #: ../libgaim/protocols/jabber/jabber.c:852 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "ཇར་བར་རྩིས་ཐོ་གསརཔ་ ཐོ་བཀོད་འབད།" #: ../libgaim/protocols/jabber/jabber.c:1013 @@ -8173,7 +8173,7 @@ #: ../libgaim/protocols/jabber/jabber.c:1349 #: ../libgaim/protocols/jabber/jabber.c:1350 -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "ཇབ་བར་ཆོག་ཡིག་ བསྒྱུར་བཅོས་འབད།" #: ../libgaim/protocols/jabber/jabber.c:1350 @@ -8228,7 +8228,7 @@ msgstr "རྣམ་གྲངས་མ་ཐོབ།" #: ../libgaim/protocols/jabber/jabber.c:1460 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "བཟོ་གྱུར་བའི་ ཇབ་བར་ ཨའི་ཌི།" #: ../libgaim/protocols/jabber/jabber.c:1462 @@ -8486,7 +8486,7 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1948 #: ../libgaim/protocols/jabber/jabber.c:1950 -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr "ཇབ་བར་གནད་སྤེལ་ལམ་ལུགས་ ནང་བསྐྱོད།" #: ../libgaim/protocols/jabber/jabber.c:1976 @@ -8529,7 +8529,7 @@ msgstr "%s ལུ་འཕྲིན་དོན་འགྲེམ་སྤེལ་འབད་ནི་འཐུས་ཤོར་བྱུང་ཡོདཔ།%s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "ཇབ་བར་འཕྲིན་དོན་འཛོལ་བ།" #: ../libgaim/protocols/jabber/message.c:316 @@ -14932,7 +14932,7 @@ #~ msgstr "<span weight=\"bold\" size=\"larger\">གཱེམ v%s</span>" #~ msgid "" #~ "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -#~ "Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " +#~ "XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " #~ "all at once. It is written using Gtk+ and is licensed under the GPL." #~ "<BR><BR>" #~ msgstr "" @@ -15277,9 +15277,9 @@ #~ msgstr "" #~ "ནང་བསྐྱོད་ཀྱི་དོན་ལས་ སར་བར་ལུ་ ཏི་ཨེལ་ཨེསི/ཨེསི་ཨེསི་ཨེལ་ དགོས་མཁོ་ཡོདཔ་ཨིན། རྩིས་ཐོའི་རྒྱུ་དངོས་ནང་" #~ "ལས \"ཐོབ་ཚུགས་པ་ཅིན་ ཊི་ཨེལ་ཨེསི་ ལག་ལེན་འཐབ\" སེལ་འཐུ་འབད།" -#~ msgid "Jabber ID" +#~ msgid "XMPP ID" #~ msgstr "ཇབ་བར་ཨའི་ཌི།" -#~ msgid "Jabber Profile" +#~ msgid "XMPP Profile" #~ msgstr "ཇབ་ཇར་གསལ་སྡུད།" #~ msgid "Roomlist Error" #~ msgstr "ཁང་མིག་ཐོ་ཡིག་གི་འཛོལ་བ།"
--- a/po/el.po Tue May 01 14:02:55 2007 +0000 +++ b/po/el.po Tue May 01 14:09:24 2007 +0000 @@ -2316,8 +2316,8 @@ msgstr "χάκερ και οδηγάρα [τεμπέλαρος]" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "υπεύθυνος ανάπτυξης του Jabber" +msgid "XMPP developer" +msgstr "υπεύθυνος ανάπτυξης του XMPP" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2549,7 +2549,7 @@ #: ../gtk/gtkdialogs.c:335 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2558,7 +2558,7 @@ "warranty for this program.<BR><BR>" msgstr "" "Το Gaim είναι ένας ευμετάβλητος πελάτης ανταλλαγής μηνυμάτων που μπορεί να " -"χρησιμοποιεί τα AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu και QQ, όλα ταυτόχρονα. Είναι γραμμένο με τη χρήση GTK+.<BR><BR>Μπορείτε να τροποποιήσετε και να " +"χρησιμοποιεί τα AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu και QQ, όλα ταυτόχρονα. Είναι γραμμένο με τη χρήση GTK+.<BR><BR>Μπορείτε να τροποποιήσετε και να " "αναδιανείμετε το πρόγραμμα υπό τους όρους της άδειας χρήσης GPL (έκδοση 2 ή " "νεότερη). Ένα αντίγραφο της άδειας χρήσης GPL περιέχεται στο αρχείο COPYING " "που διανέμεται μαζί με το Gaim. Το Gaim είναι πνευματική ιδιοκτησία των " @@ -5158,11 +5158,11 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" "Σας επιτρέπει να στέλνετε ακατέργαστη είσοδο σε πρωτόκολλα βασισμένα σε " -"κείμενο. (Jabber, MSN, IRC, TOC). Πατήστε 'Enter' στο παράθυρο εισόδου για " +"κείμενο. (XMPP, MSN, IRC, TOC). Πατήστε 'Enter' στο παράθυρο εισόδου για " "να στείλετε. Ελέγξτε το παράθυρο αποσφαλμάτωσης." #: ../gtk/plugins/relnot.c:69 @@ -6755,10 +6755,10 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Προκαλεί την εμφάνιση παραθύρων συζήτησης όταν οι άλλοι χρήστες σας στέλνουν " -"μηνύματα. Αυτό δουλεύει για το AIM, το ICQ, το Jabber, το Sametime και το " +"μηνύματα. Αυτό δουλεύει για το AIM, το ICQ, το XMPP, το Sametime και το " "Yahoo!" #: ../libgaim/plugins/psychic.c:66 @@ -7010,8 +7010,8 @@ msgstr "Λογαριασμός AIM" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Λογαριασμός Jabber" +msgid "XMPP Account" +msgstr "Λογαριασμός XMPP" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8124,8 +8124,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Επεξεργασία Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "Επεξεργασία XMPP vCard" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8240,7 +8240,7 @@ msgid "The following are the results of your search" msgstr "Τα ακόλουθα είναι τα αποτελέσματα της αναζήτησής σας" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8263,9 +8263,9 @@ msgstr "Οδηγίες εξυπηρετητή: %s" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "" -"Συμπληρώστε ένα ή περισσότερα πεδία για την αναζήτηση χρηστών Jabber που " +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "" +"Συμπληρώστε ένα ή περισσότερα πεδία για την αναζήτηση χρηστών XMPP που " "ταιριάζουν." #: ../libgaim/protocols/jabber/buddy.c:1749 @@ -8277,8 +8277,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Αναζήτηση χρηστών Jabber" +msgid "Search for XMPP users" +msgstr "Αναζήτηση χρηστών XMPP" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8407,8 +8407,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "Μη έγκυρο Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Μη έγκυρο XMPP ID" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8463,8 +8463,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Καταχώρηση νέου λογαριασμού Jabber" +msgid "Register New XMPP Account" +msgstr "Καταχώρηση νέου λογαριασμού XMPP" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8527,8 +8527,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Αλλαγή κωδικού Jabber" +msgid "Change XMPP Password" +msgstr "Αλλαγή κωδικού XMPP" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8582,8 +8582,8 @@ msgstr "Το αντικείμενο δε βρέθηκε" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "Παραμορφωμένο Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Παραμορφωμένο XMPP ID" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -8848,8 +8848,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Πρόσθετο πρωτοκόλλου Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Πρόσθετο πρωτοκόλλου XMPP" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -8891,8 +8891,8 @@ msgstr "Μεταφορά μηνύματος σε %s απέτυχε: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Σφάλμα μηνύματος Jabber" +msgid "XMPP Message Error" +msgstr "Σφάλμα μηνύματος XMPP" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/en_AU.po Tue May 01 14:02:55 2007 +0000 +++ b/po/en_AU.po Tue May 01 14:09:24 2007 +0000 @@ -849,10 +849,10 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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." #: plugins/relnot.c:63 @@ -2822,8 +2822,8 @@ #: src/gtkdialogs.c:92 #, fuzzy -msgid "Jabber developer" -msgstr "former Jabber developer" +msgid "XMPP developer" +msgstr "former XMPP developer" #: src/gtkdialogs.c:93 msgid "original author" @@ -2996,11 +2996,11 @@ #, fuzzy msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using Gtk+ and is licensed under the GPL.<BR><BR>" #: src/gtkdialogs.c:235 @@ -5001,7 +5001,7 @@ #: src/protocols/gg/gg.c:1495 src/protocols/gg/gg.c:1496 #, fuzzy msgid "Register New Gadu-Gadu Account" -msgstr "Register New Jabber Account" +msgstr "Register New XMPP Account" #: src/protocols/gg/gg.c:1497 msgid "Please, fill in the following fields" @@ -5723,8 +5723,8 @@ msgstr "Birthday" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Edit Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "Edit XMPP vCard" #: src/protocols/jabber/buddy.c:569 msgid "" @@ -5735,8 +5735,8 @@ "comfortable." #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" -msgstr "Jabber ID" +msgid "XMPP ID" +msgstr "XMPP ID" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 msgid "Resource" @@ -5814,7 +5814,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -5833,7 +5833,7 @@ #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 #, fuzzy -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "Search for a buddy by e-mail address" #: src/protocols/jabber/buddy.c:1370 @@ -5959,8 +5959,8 @@ msgstr "Unable to create socket" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" -msgstr "Invalid Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Invalid XMPP ID" #: src/protocols/jabber/jabber.c:473 #, c-format @@ -6006,8 +6006,8 @@ msgstr "Please fill out the information below to register your new account." #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" -msgstr "Register New Jabber Account" +msgid "Register New XMPP Account" +msgstr "Register New XMPP Account" #: src/protocols/jabber/jabber.c:842 msgid "Initializing Stream" @@ -6079,8 +6079,8 @@ msgstr "Password (again)" #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 -msgid "Change Jabber Password" -msgstr "Change Jabber Password" +msgid "Change XMPP Password" +msgstr "Change XMPP Password" #: src/protocols/jabber/jabber.c:1161 msgid "Please enter your new password" @@ -6130,8 +6130,8 @@ msgstr "Item Not Found" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" -msgstr "Malformed Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Malformed XMPP ID" #: src/protocols/jabber/jabber.c:1273 msgid "Not Acceptable" @@ -6377,8 +6377,8 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" -msgstr "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" +msgstr "XMPP Protocol Plugin" #: src/protocols/jabber/jabber.c:1714 msgid "Use TLS if available" @@ -6428,8 +6428,8 @@ msgstr "Message delivery to %s failed: %s" #: src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" -msgstr "Jabber Message Error" +msgid "XMPP Message Error" +msgstr "XMPP Message Error" #: src/protocols/jabber/message.c:297 #, c-format @@ -12182,8 +12182,8 @@ #~ msgid "Invalid nickname" #~ msgstr "Invalid Username" -#~ msgid "Jabber Profile" -#~ msgstr "Jabber Profile" +#~ msgid "XMPP Profile" +#~ msgstr "XMPP Profile" #~ msgid "Roomlist Error" #~ msgstr "Roomlist Error"
--- a/po/en_CA.po Tue May 01 14:02:55 2007 +0000 +++ b/po/en_CA.po Tue May 01 14:09:24 2007 +0000 @@ -849,10 +849,10 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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." #: plugins/relnot.c:63 @@ -2818,8 +2818,8 @@ #: src/gtkdialogs.c:92 #, fuzzy -msgid "Jabber developer" -msgstr "former Jabber developer" +msgid "XMPP developer" +msgstr "former XMPP developer" #: src/gtkdialogs.c:93 msgid "original author" @@ -2992,11 +2992,11 @@ #, fuzzy msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using Gtk+ and is licenced under the GPL.<BR><BR>" #: src/gtkdialogs.c:235 @@ -4996,7 +4996,7 @@ #: src/protocols/gg/gg.c:1495 src/protocols/gg/gg.c:1496 #, fuzzy msgid "Register New Gadu-Gadu Account" -msgstr "Register New Jabber Account" +msgstr "Register New XMPP Account" #: src/protocols/gg/gg.c:1497 msgid "Please, fill in the following fields" @@ -5717,8 +5717,8 @@ msgstr "Birthday" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Edit Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "Edit XMPP vCard" #: src/protocols/jabber/buddy.c:569 msgid "" @@ -5729,8 +5729,8 @@ "comfortable." #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" -msgstr "Jabber ID" +msgid "XMPP ID" +msgstr "XMPP ID" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 msgid "Resource" @@ -5808,7 +5808,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -5827,7 +5827,7 @@ #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 #, fuzzy -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "Search for a buddy by e-mail address" #: src/protocols/jabber/buddy.c:1370 @@ -5953,8 +5953,8 @@ msgstr "Unable to create socket" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" -msgstr "Invalid Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Invalid XMPP ID" #: src/protocols/jabber/jabber.c:473 #, c-format @@ -6000,8 +6000,8 @@ msgstr "Please fill out the information below to register your new account." #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" -msgstr "Register New Jabber Account" +msgid "Register New XMPP Account" +msgstr "Register New XMPP Account" #: src/protocols/jabber/jabber.c:842 msgid "Initializing Stream" @@ -6073,8 +6073,8 @@ msgstr "Password (again)" #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 -msgid "Change Jabber Password" -msgstr "Change Jabber Password" +msgid "Change XMPP Password" +msgstr "Change XMPP Password" #: src/protocols/jabber/jabber.c:1161 msgid "Please enter your new password" @@ -6124,8 +6124,8 @@ msgstr "Item Not Found" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" -msgstr "Malformed Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Malformed XMPP ID" #: src/protocols/jabber/jabber.c:1273 msgid "Not Acceptable" @@ -6371,8 +6371,8 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" -msgstr "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" +msgstr "XMPP Protocol Plugin" #: src/protocols/jabber/jabber.c:1714 msgid "Use TLS if available" @@ -6422,8 +6422,8 @@ msgstr "Message delivery to %s failed: %s" #: src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" -msgstr "Jabber Message Error" +msgid "XMPP Message Error" +msgstr "XMPP Message Error" #: src/protocols/jabber/message.c:297 #, c-format @@ -12162,8 +12162,8 @@ #~ msgid "Invalid nickname" #~ msgstr "Invalid Username" -#~ msgid "Jabber Profile" -#~ msgstr "Jabber Profile" +#~ msgid "XMPP Profile" +#~ msgstr "XMPP Profile" #~ msgid "Roomlist Error" #~ msgstr "Roomlist Error"
--- a/po/en_GB.po Tue May 01 14:02:55 2007 +0000 +++ b/po/en_GB.po Tue May 01 14:09:24 2007 +0000 @@ -2744,10 +2744,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -3025,8 +3025,8 @@ msgstr "AIM Account" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Jabber Account" +msgid "XMPP Account" +msgstr "XMPP Account" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4204,8 +4204,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Edit Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "Edit XMPP vCard" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4320,7 +4320,7 @@ msgid "The following are the results of your search" msgstr "The following are the results of your search" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4345,8 +4345,8 @@ msgstr "Server Instructions: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Fill in one or more fields to search for any matching XMPP users." #: ../libpurple/protocols/jabber/buddy.c:1756 #: ../libpurple/protocols/novell/novell.c:1488 @@ -4357,8 +4357,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Search for Jabber users" +msgid "Search for XMPP users" +msgstr "Search for XMPP users" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4501,8 +4501,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "Invalid Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Invalid XMPP ID" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4556,8 +4556,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Register New Jabber Account" +msgid "Register New XMPP Account" +msgstr "Register New XMPP Account" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4631,8 +4631,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Change Jabber Password" +msgid "Change XMPP Password" +msgstr "Change XMPP Password" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4686,8 +4686,8 @@ msgstr "Item Not Found" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "Malformed Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Malformed XMPP ID" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4954,8 +4954,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "Jabber Protocol Plug-in" +msgid "XMPP Protocol Plugin" +msgstr "XMPP Protocol Plug-in" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -4997,8 +4997,8 @@ msgstr "Message delivery to %s failed: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Jabber Message Error" +msgid "XMPP Message Error" +msgstr "XMPP Message Error" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12364,8 +12364,8 @@ msgstr "hacker and designated driver [lazy bum]" #: ../pidgin/gtkdialogs.c:114 -msgid "Jabber developer" -msgstr "Jabber developer" +msgid "XMPP developer" +msgstr "XMPP developer" #: ../pidgin/gtkdialogs.c:115 msgid "original author" @@ -12634,7 +12634,7 @@ #: ../pidgin/gtkdialogs.c:360 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12643,7 +12643,7 @@ "'COPYRIGHT' file for the complete list of contributors. We provide no " "warranty for this program.<BR><BR>" msgstr "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -15035,10 +15035,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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." #: ../pidgin/plugins/relnot.c:71
--- a/po/eo.po Tue May 01 14:02:55 2007 +0000 +++ b/po/eo.po Tue May 01 14:09:24 2007 +0000 @@ -2685,10 +2685,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Igas aperon de konversacia fenestro kiam alia uzanto komencas mesaĝi vin. " -"Tio funkcias por AIM, ICQ, Jabber, Sametime, kaj Yahoo!" +"Tio funkcias por AIM, ICQ, XMPP, Sametime, kaj Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -2963,8 +2963,8 @@ msgstr "AIM Konto" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Jabber Konto" +msgid "XMPP Account" +msgstr "XMPP Konto" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4103,8 +4103,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Redaktu Jabber-n vCard-n" +msgid "Edit XMPP vCard" +msgstr "Redaktu XMPP-n vCard-n" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4217,7 +4217,7 @@ msgid "The following are the results of your search" msgstr "La jenaj estas la rezultoj de via serĉo" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4240,7 +4240,7 @@ msgstr "Servilo instrukcioj: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../libpurple/protocols/jabber/buddy.c:1756 @@ -4252,8 +4252,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Serĉu Jabber-ajn uzantojn" +msgid "Search for XMPP users" +msgstr "Serĉu XMPP-ajn uzantojn" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4396,8 +4396,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "Malvalida Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Malvalida XMPP ID" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4451,8 +4451,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Registradu Novan Jabber-n Konton" +msgid "Register New XMPP Account" +msgstr "Registradu Novan XMPP-n Konton" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4526,8 +4526,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Ŝanĝu Jabber-n Pasvorton" +msgid "Change XMPP Password" +msgstr "Ŝanĝu XMPP-n Pasvorton" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4581,8 +4581,8 @@ msgstr "Ero Ne Trovita" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "Misformita Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Misformita XMPP ID" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4844,8 +4844,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "Jabber Protokol-Kromaĵo" +msgid "XMPP Protocol Plugin" +msgstr "XMPP Protokol-Kromaĵo" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -4887,8 +4887,8 @@ msgstr "Mesaĝo transdono al %s malsukcesis: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Jabber mesaĝo eraro" +msgid "XMPP Message Error" +msgstr "XMPP mesaĝo eraro" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -11988,8 +11988,8 @@ msgstr "artifikulo kaj speciala pelilo" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "Jabber programisto" +msgid "XMPP developer" +msgstr "XMPP programisto" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12259,7 +12259,7 @@ #: ../pidgin/gtkdialogs.c:359 msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12268,7 +12268,7 @@ "'COPYRIGHT' file for the complete list of contributors. We provide no " "warranty for this program.<BR><BR>" msgstr "" -"%s estas modula mesaĝokliento, kapablas uzi AIM, MSN, Yahoo!, Jabber, ICQ, " +"%s estas modula mesaĝokliento, kapablas uzi AIM, MSN, Yahoo!, XMPP, ICQ, " "IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, " "Gadu-Gadu kaj QQ ĉiujn samtempe. Ĝi estas programita per GTK+.<BR><BR>Vi " "rajtas modifi kaj pludistribui la programon je la kondiĉoj de la GPL (versio " @@ -14604,7 +14604,7 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 ""
--- a/po/es.po Tue May 01 14:02:55 2007 +0000 +++ b/po/es.po Tue May 01 14:09:24 2007 +0000 @@ -2817,10 +2817,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Hace que aparezcan las ventanas de conversación cuando un usuario empieza a " -"enviarle un mensaje. Esto funciona con AIM, ICQ, Jabber, Sametime y Yahoo!" +"enviarle un mensaje. Esto funciona con AIM, ICQ, XMPP, Sametime y Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -3100,8 +3100,8 @@ msgstr "Cuenta AIM" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Cuenta Jabber" +msgid "XMPP Account" +msgstr "Cuenta XMPP" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4285,8 +4285,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Editar vCard de Jabber" +msgid "Edit XMPP vCard" +msgstr "Editar vCard de XMPP" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4401,7 +4401,7 @@ msgid "The following are the results of your search" msgstr "Éstos son los resultados de su búsqueda" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4426,10 +4426,10 @@ msgstr "Instrucciones del servidor: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" "Rellene uno o más de los campos mostrados a continuación para buscar a un " -"usuario Jabber que los tengan." +"usuario XMPP que los tengan." #: ../libpurple/protocols/jabber/buddy.c:1756 #: ../libpurple/protocols/novell/novell.c:1488 @@ -4440,8 +4440,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Buscar usuarios Jabber" +msgid "Search for XMPP users" +msgstr "Buscar usuarios XMPP" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4584,8 +4584,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "ID de Jabber no válido" +msgid "Invalid XMPP ID" +msgstr "ID de XMPP no válido" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4641,8 +4641,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Registrando cuenta nueva de Jabber" +msgid "Register New XMPP Account" +msgstr "Registrando cuenta nueva de XMPP" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4716,8 +4716,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Cambiar contraseña de Jabber" +msgid "Change XMPP Password" +msgstr "Cambiar contraseña de XMPP" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4771,8 +4771,8 @@ msgstr "Elemento no encontrado" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "ID de Jabber no válido" +msgid "Malformed XMPP ID" +msgstr "ID de XMPP no válido" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -5040,8 +5040,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "Complemento de protocolo Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Complemento de protocolo XMPP" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -5083,8 +5083,8 @@ msgstr "Falló el envío de mensaje a %s: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Mensaje de error de Jabber" +msgid "XMPP Message Error" +msgstr "Mensaje de error de XMPP" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12525,8 +12525,8 @@ msgstr "hacker y diseñador de controladores [lazy bum]" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "desarrollador de Jabber" +msgid "XMPP developer" +msgstr "desarrollador de XMPP" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12800,7 +12800,7 @@ #: ../pidgin/gtkdialogs.c:359 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12810,7 +12810,7 @@ "warranty for this program.<BR><BR>" msgstr "" "%s es un cliente de mensajería modular capaz de utilizar AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu y QQ todos al mismo tiempo. Está escrito " "utilizando GTK+.<BR><BR>Puede modificar y redistribuir este programa bajo " "los términos de la GPL (versión 2 o posterior). Se incluye una copia de la " @@ -15236,10 +15236,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Le permite enviar datos en bruto a protocolos basados en texto (Jabber, MSN, " +"Le permite enviar datos en bruto a protocolos basados en texto (XMPP, MSN, " "IRC, TOC). Pulse «Intro» en la caja de entrada para enviarlo. Observe la " "ventana de depuración." @@ -16433,8 +16433,8 @@ #~ msgid "_Warn" #~ msgstr "_Avisar" -#~ msgid "Jabber ID" -#~ msgstr "ID Jabber" +#~ msgid "XMPP ID" +#~ msgstr "ID XMPP" #~ msgid "Hide IP address" #~ msgstr "Ocultar dirección IP" @@ -16480,12 +16480,12 @@ #~ msgid "" #~ "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -#~ "Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, " +#~ "XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, " #~ "Zephyr, and Gadu-Gadu all at once. It is written using GTK+ and is " #~ "licensed under the GNU GPL.<BR><BR>" #~ msgstr "" #~ "Gaim es un cliente modular de mensajería instantánea, capaz de utilizar " -#~ "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus " +#~ "AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus " #~ "Sametime, Napster, Zephyr y Gadu-Gadu al mismo tiempo. Está escrito " #~ "usando Gtk+ y se licencia con la GPL.<BR><BR>" @@ -16688,12 +16688,12 @@ #~ msgid "" #~ "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -#~ "Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " +#~ "XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " #~ "all at once. It is written using GTK+ and is licensed under the GNU GPL." #~ "<BR><BR>" #~ msgstr "" #~ "Gaim es un cliente modular de mensajería instantánea, capaz de utilizar " -#~ "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, " +#~ "AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, " #~ "Zephyr y Gadu-Gadu al mismo tiempo. Está escrito usando Gtk+ y está " #~ "licencia bajo la GPL de GNU.<BR><BR>" @@ -17523,8 +17523,8 @@ #~ msgid "Invalid nickname '%s'" #~ msgstr "Apodo '%s' inválido" -#~ msgid "Jabber Profile" -#~ msgstr "Perfil Jabber" +#~ msgid "XMPP Profile" +#~ msgstr "Perfil XMPP" #~ msgid "Roomlist Error" #~ msgstr "Error en la lista de salas" @@ -18356,14 +18356,14 @@ #~ "La nueva contraseña que usted introdujo es la misma que la actual. Su " #~ "contraseña seguirá siendo la misma." -#~ msgid "Jabber Error %s" -#~ msgstr "Error Jabber %s" - -#~ msgid "" -#~ "The Jabber user %s does not exist and was therefore not added to your " +#~ msgid "XMPP Error %s" +#~ msgstr "Error XMPP %s" + +#~ msgid "" +#~ "The XMPP user %s does not exist and was therefore not added to your " #~ "roster." #~ msgstr "" -#~ "El usuario Jabber %s no existe y por lo tanto no se lo añadirá a su " +#~ "El usuario XMPP %s no existe y por lo tanto no se lo añadirá a su " #~ "«roster»." #~ msgid "No such user." @@ -18378,9 +18378,9 @@ #~ msgid "Requesting Authentication Method" #~ msgstr "Solicitando método de autenticación" -#~ msgid "The user %s is an invalid Jabber I.D. and was therefore not added." -#~ msgstr "" -#~ "El usuario %s es un I.D. de Jabber inválido y por lo tanto no fue añadido." +#~ msgid "The user %s is an invalid XMPP I.D. and was therefore not added." +#~ msgstr "" +#~ "El usuario %s es un I.D. de XMPP inválido y por lo tanto no fue añadido." #~ msgid "View Error Msg" #~ msgstr "Ver mensaje de error" @@ -18595,14 +18595,14 @@ #~ " Adam Fritzler (former libfaim maintainer)<BR> Eric Warmenhoven (former " #~ "lead developer)<<A HREF=\"mailto:warmenhoven@yahoo.com" #~ "\">warmenhoven@yahoo.com</A>><BR> Jim Duchek (former maintainer)<BR> " -#~ "Jim Seymour (former Jabber developer)<BR> Mark Spencer (original author) " +#~ "Jim Seymour (former XMPP developer)<BR> Mark Spencer (original author) " #~ "<<A HREF=\"mailto:markster@marko.net\">markster@marko.net</A>><BR> " #~ "Syd Logan (hacker and designated driver [lazy bum])<BR><BR>" #~ msgstr "" #~ " Adam Fritzler (antiguo mantenimiento de libfaim)<BR> Eric Warmenhoven " #~ "(antiguo desarrollador líder)<<A HREF=\"mailto:warmenhoven@yahoo.com" #~ "\">warmenhoven@yahoo.com</A>><BR> Jim Duchek (antiguo mantenedor)" -#~ "<BR> Jim Seymour (antiguo desarrollador de Jabber)<BR> Mark Spencer " +#~ "<BR> Jim Seymour (antiguo desarrollador de XMPP)<BR> Mark Spencer " #~ "(autor original) <<A HREF=\"mailto:markster@marko.net\">markster@marko." #~ "net</A>><BR> Syd Logan (hacker y conductor por designación [lazy bum])" #~ "<BR><BR>"
--- a/po/et.po Tue May 01 14:02:55 2007 +0000 +++ b/po/et.po Tue May 01 14:09:24 2007 +0000 @@ -2232,8 +2232,8 @@ msgstr "" #: ../gtk/gtkdialogs.c:107 -msgid "Jabber developer" -msgstr "Jabberi arendaja" +msgid "XMPP developer" +msgstr "XMPPi arendaja" #: ../gtk/gtkdialogs.c:108 msgid "original author" @@ -2455,7 +2455,7 @@ #: ../gtk/gtkdialogs.c:328 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, " "and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. " @@ -4935,7 +4935,7 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -6160,7 +6160,7 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" #. This is a quote from Star Wars. You should @@ -6428,7 +6428,7 @@ #: ../libgaim/protocols/bonjour/bonjour.c:593 #, fuzzy -msgid "Jabber Account" +msgid "XMPP Account" msgstr "Luba konto" #: ../libgaim/protocols/bonjour/bonjour.h:35 @@ -7521,8 +7521,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Jabber'i vKaardi redigeerimine" +msgid "Edit XMPP vCard" +msgstr "XMPP'i vKaardi redigeerimine" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -7641,7 +7641,7 @@ msgid "The following are the results of your search" msgstr "" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1631 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -7665,7 +7665,7 @@ msgstr "Serveri juhised: %s" #: ../libgaim/protocols/jabber/buddy.c:1693 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../libgaim/protocols/jabber/buddy.c:1713 @@ -7677,8 +7677,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1722 #: ../libgaim/protocols/jabber/buddy.c:1723 -msgid "Search for Jabber users" -msgstr "Jabberikasutajate otsimine" +msgid "Search for XMPP users" +msgstr "XMPPikasutajate otsimine" #: ../libgaim/protocols/jabber/buddy.c:1737 msgid "Invalid Directory" @@ -7808,8 +7808,8 @@ #: ../libgaim/protocols/jabber/jabber.c:545 #: ../libgaim/protocols/jabber/jabber.c:888 -msgid "Invalid Jabber ID" -msgstr "Vigane Jabber'i ID" +msgid "Invalid XMPP ID" +msgstr "Vigane XMPP'i ID" #: ../libgaim/protocols/jabber/jabber.c:616 #, c-format @@ -7862,8 +7862,8 @@ #: ../libgaim/protocols/jabber/jabber.c:851 #: ../libgaim/protocols/jabber/jabber.c:852 -msgid "Register New Jabber Account" -msgstr "Uue Jabber'i konto registreerimine" +msgid "Register New XMPP Account" +msgstr "Uue XMPP'i konto registreerimine" #: ../libgaim/protocols/jabber/jabber.c:1013 msgid "Initializing Stream" @@ -7926,8 +7926,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1349 #: ../libgaim/protocols/jabber/jabber.c:1350 -msgid "Change Jabber Password" -msgstr "Jabber'i parooli muutmine" +msgid "Change XMPP Password" +msgstr "XMPP'i parooli muutmine" #: ../libgaim/protocols/jabber/jabber.c:1350 msgid "Please enter your new password" @@ -7981,7 +7981,7 @@ msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1460 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1462 @@ -8247,8 +8247,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1948 #: ../libgaim/protocols/jabber/jabber.c:1950 -msgid "Jabber Protocol Plugin" -msgstr "Jabber protokolli plugin" +msgid "XMPP Protocol Plugin" +msgstr "XMPP protokolli plugin" #: ../libgaim/protocols/jabber/jabber.c:1976 msgid "Force old (port 5223) SSL" @@ -8290,8 +8290,8 @@ msgstr "Tõrge sõnumi edastamisel kasutajale %s: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Jabberi sõnumi viga" +msgid "XMPP Message Error" +msgstr "XMPPi sõnumi viga" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/eu.po Tue May 01 14:02:55 2007 +0000 +++ b/po/eu.po Tue May 01 14:09:24 2007 +0000 @@ -1312,10 +1312,10 @@ #: ../plugins/psychic.c:24 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Solasaldi lehioa azaltzen da beste erabiltzaile batek mezua zeuri bidaltzen hasten denean. " -"Honek funtzionatzen du AIM,ICQ,Jabber,Sametime eta Yahoo!" +"Honek funtzionatzen du AIM,ICQ,XMPP,Sametime eta Yahoo!" #: ../plugins/psychic.c:60 # , fuzzy @@ -1344,10 +1344,10 @@ #: ../plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Testuan oinarritutako protokoloetara (Jabber, MSN, IRC, TOC) formaturik " +"Testuan oinarritutako protokoloetara (XMPP, MSN, IRC, TOC) formaturik " "gabeko testua bidaltzeko. Sakatu 'Sartu' sarrera-koadroan, eta zaindu " "arazketa-leihoa." @@ -3400,8 +3400,8 @@ msgstr "hacker eta zehaztutako kontrolatzailea [lazy bum]" #: ../src/gtkdialogs.c:101 -msgid "Jabber developer" -msgstr "Jabber garatzailea" +msgid "XMPP developer" +msgstr "XMPP garatzailea" #: ../src/gtkdialogs.c:102 msgid "original author" @@ -3602,7 +3602,7 @@ #: ../src/gtkdialogs.c:261 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " "and Gadu-Gadu all at once. It is written using GTK+.<BR><BR>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 " @@ -3610,7 +3610,7 @@ "file for the complete list of contributors. We provide no warranty for this " "program.<BR><BR>" msgstr "" -"Gaim berehalako mezuen bezero modularra da AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " +"Gaim berehalako mezuen bezero modularra da AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " "eta Gadu-Gadu momentu berean erabiltzeko gaitasuna duena. GTK+ erabiliz idatzi izan da .<BR><BR> Programa hau aldatu eta ber-banatu dezakezu GPL terminopean (2 bertsioa edo beranduagokoa). GPL -ren kopia COPYING izeneko fitxategi baten dago gaim distribuzioarekin batera. Gaim \"copyright\"-a du bere laguntzaileen eskutik. Ikusi ezazy COPYRIGHT fitxategia laguntzaileen zerrenda osoa ikusteko. Ez dugu programa honen bermea zihurtatzen.<BR><BR>" #: ../src/gtkdialogs.c:275 @@ -6633,8 +6633,8 @@ msgstr "Urtebetetzea" #: ../src/protocols/jabber/buddy.c:567 ../src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Editatu Jabber vCard-a" +msgid "Edit XMPP vCard" +msgstr "Editatu XMPP vCard-a" #: ../src/protocols/jabber/buddy.c:569 msgid "" @@ -6733,8 +6733,8 @@ msgstr "Zerbitzariaren aginduak:%s" #: ../src/protocols/jabber/buddy.c:1392 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Bete ezazu bat edo eremu gehiago edozein Jabber erabiltzaileren topaketarako. " +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Bete ezazu bat edo eremu gehiago edozein XMPP erabiltzaileren topaketarako. " #: ../src/protocols/jabber/buddy.c:1411 ../src/protocols/novell/novell.c:1490 #: ../src/protocols/oscar/oscar.c:6178 ../src/protocols/oscar/oscar.c:6185 @@ -6742,8 +6742,8 @@ msgstr "Helbide elektronikoa" #: ../src/protocols/jabber/buddy.c:1420 ../src/protocols/jabber/buddy.c:1421 -msgid "Search for Jabber users" -msgstr "Bilatu Jabber erabiltzaileak" +msgid "Search for XMPP users" +msgstr "Bilatu XMPP erabiltzaileak" #: ../src/protocols/jabber/buddy.c:1435 msgid "Invalid Directory" @@ -6864,8 +6864,8 @@ msgstr "Ezin da socket-a sortu" #: ../src/protocols/jabber/jabber.c:520 ../src/protocols/jabber/jabber.c:857 -msgid "Invalid Jabber ID" -msgstr "Jabber ID baliogabea" +msgid "Invalid XMPP ID" +msgstr "XMPP ID baliogabea" #: ../src/protocols/jabber/jabber.c:590 #, c-format @@ -6911,8 +6911,8 @@ msgstr "Eman datuak behean, zure kontu berria erregistratzeko." #: ../src/protocols/jabber/jabber.c:821 ../src/protocols/jabber/jabber.c:822 -msgid "Register New Jabber Account" -msgstr "Erregistratu Jabber kontu berria" +msgid "Register New XMPP Account" +msgstr "Erregistratu XMPP kontu berria" #: ../src/protocols/jabber/jabber.c:983 msgid "Initializing Stream" @@ -6975,8 +6975,8 @@ msgstr "Pasahitza (berriro)" #: ../src/protocols/jabber/jabber.c:1317 ../src/protocols/jabber/jabber.c:1318 -msgid "Change Jabber Password" -msgstr "Aldatu Jabber pasahitza" +msgid "Change XMPP Password" +msgstr "Aldatu XMPP pasahitza" #: ../src/protocols/jabber/jabber.c:1318 msgid "Please enter your new password" @@ -7027,8 +7027,8 @@ msgstr "Elementua ez da aurkitu" #: ../src/protocols/jabber/jabber.c:1428 -msgid "Malformed Jabber ID" -msgstr "Gaizki osatutako Jabber IDa" +msgid "Malformed XMPP ID" +msgstr "Gaizki osatutako XMPP IDa" #: ../src/protocols/jabber/jabber.c:1430 msgid "Not Acceptable" @@ -7291,8 +7291,8 @@ #. * summary #. * description #: ../src/protocols/jabber/jabber.c:1883 ../src/protocols/jabber/jabber.c:1885 -msgid "Jabber Protocol Plugin" -msgstr "Jabber protokoloaren plugin-a" +msgid "XMPP Protocol Plugin" +msgstr "XMPP protokoloaren plugin-a" #: ../src/protocols/jabber/jabber.c:1911 msgid "Use TLS if available" @@ -7340,8 +7340,8 @@ msgstr "%s(r)i mezua bidaltzeak huts egin du: %s" #: ../src/protocols/jabber/message.c:227 -msgid "Jabber Message Error" -msgstr "Jabber mezuaren errorea" +msgid "XMPP Message Error" +msgstr "XMPP mezuaren errorea" #: ../src/protocols/jabber/message.c:295 #, c-format
--- a/po/fa.po Tue May 01 14:02:55 2007 +0000 +++ b/po/fa.po Tue May 01 14:09:24 2007 +0000 @@ -2709,11 +2709,11 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "باعث میشود یه محض این که کاربران دیگر شروع به وارد کردن پیغام برای شما " "میکنند، پنجرهٔ گفتگویشان برای شما ظاهر شود.این قابلیت برای " -"AIM، ICQ، Jabber، Sametime و یاهو کار میکند." +"AIM، ICQ، XMPP، Sametime و یاهو کار میکند." #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -2992,8 +2992,8 @@ msgstr "حساب پیغامرسانی اینترنتی" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "حساب Jabber" +msgid "XMPP Account" +msgstr "حساب XMPP" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4170,8 +4170,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "ویرایش کارت مجازی Jabber" +msgid "Edit XMPP vCard" +msgstr "ویرایش کارت مجازی XMPP" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4284,7 +4284,7 @@ msgid "The following are the results of your search" msgstr "نتایج جستجوی شما در زیر آمده است" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4310,9 +4310,9 @@ msgstr "راهنماییهای کارگزار: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "" -"برای جستجو به دنبال کاربران Jabber یکی یا چند تا از فیلدهای زیر را پر کنید." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "" +"برای جستجو به دنبال کاربران XMPP یکی یا چند تا از فیلدهای زیر را پر کنید." #: ../libpurple/protocols/jabber/buddy.c:1756 #: ../libpurple/protocols/novell/novell.c:1488 @@ -4323,8 +4323,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "جستجو به دنبال کاربران Jabber" +msgid "Search for XMPP users" +msgstr "جستجو به دنبال کاربران XMPP" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4467,8 +4467,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "شناسهٔ Jabber نامعتبر" +msgid "Invalid XMPP ID" +msgstr "شناسهٔ XMPP نامعتبر" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4522,8 +4522,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "ثبت حساب Jabber جدید" +msgid "Register New XMPP Account" +msgstr "ثبت حساب XMPP جدید" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4597,8 +4597,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "تغییر گذرواژهٔ Jabber" +msgid "Change XMPP Password" +msgstr "تغییر گذرواژهٔ XMPP" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4652,8 +4652,8 @@ msgstr "مورد پیدا نشد" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "شناسهٔ Jabber معیوب" +msgid "Malformed XMPP ID" +msgstr "شناسهٔ XMPP معیوب" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4919,8 +4919,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "متصل شوندهٔ قرارداد Jabber" +msgid "XMPP Protocol Plugin" +msgstr "متصل شوندهٔ قرارداد XMPP" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -4962,8 +4962,8 @@ msgstr "ارسال پیغام به %s شکست خورد: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "خطای پیغام Jabber" +msgid "XMPP Message Error" +msgstr "خطای پیغام XMPP" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12272,8 +12272,8 @@ msgstr "هَکر و رانندهٔ انتخابی (علاف)" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "برنامهساز Jabber" +msgid "XMPP developer" +msgstr "برنامهساز XMPP" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12547,7 +12547,7 @@ #: ../pidgin/gtkdialogs.c:359 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12557,7 +12557,7 @@ "warranty for this program.<BR><BR>" msgstr "" "%s یک کارگیر پیغامرسانی پیمانهای است که قابلیت استغادهٔ همزمان از " -"AIM، MSN، Yahoo!، Jabber، ICQ، IRC، SILC، SIP/SIMPLE، Novell Groupwise، Lotus Sametime، Bonjour، Zephyr " +"AIM، MSN، Yahoo!، XMPP، ICQ، IRC، SILC، SIP/SIMPLE، Novell Groupwise، Lotus Sametime، Bonjour، Zephyr " "، Gadu-Gadu و QQ را دارد. این برنامه با استفاده از GTK+ نوشته شده است.<BR><BR>شما " "میتوانید این برنامه را تحت شرایط مجوز عمومی همگانی گنو (نسخهٔ 2 یا بالاتر) " "تغییر داده و توزیع کنید. نسخهای از مجوز عمومی همگانی گنو در پروندهٔ «COPYING» " @@ -14941,10 +14941,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"شما را قادر میسازد ورودی خام را به قراردادهای متنی (Jabber، MSN، IRC، TOC) " +"شما را قادر میسازد ورودی خام را به قراردادهای متنی (XMPP، MSN، IRC، TOC) " "ارسال کنید. برای ارسال در جعبهٔ مدخل کلید «ورود» را فشار دهید. مراقب پنجرهٔ " "اشکالزدایی باشید." @@ -16255,7 +16255,7 @@ #~ msgid "" #~ "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -#~ "Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " +#~ "XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " #~ "all at once. It is written using Gtk+ and is licensed under the GPL." #~ "<BR><BR>" #~ msgstr "" @@ -16674,11 +16674,11 @@ #~ msgid "Invalid nickname '%s'" #~ msgstr "لقب «%s» نامعتبر" -#~ msgid "Jabber ID" -#~ msgstr "شناسهٔ Jabber" - -#~ msgid "Jabber Profile" -#~ msgstr "مجموعه تنظیمات Jabber" +#~ msgid "XMPP ID" +#~ msgstr "شناسهٔ XMPP" + +#~ msgid "XMPP Profile" +#~ msgstr "مجموعه تنظیمات XMPP" #~ msgid "Roomlist Error" #~ msgstr "خطای فهرست اتاقها"
--- a/po/fi.po Tue May 01 14:02:55 2007 +0000 +++ b/po/fi.po Tue May 01 14:09:24 2007 +0000 @@ -2760,10 +2760,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Keskusteluikkunat ilmestyvät, kun muut käyttäjät alkavat kirjoittaa viestiä " -"sinulle. Tämä toimii AIM-, ICQ-, Jabber-, Sametime- ja Yahoo!-" +"sinulle. Tämä toimii AIM-, ICQ-, XMPP-, Sametime- ja Yahoo!-" "yhteiskäytännöillä." #: ../libpurple/plugins/psychic.c:66 @@ -3042,8 +3042,8 @@ msgstr "AIM-tili" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Jabber-tili" +msgid "XMPP Account" +msgstr "XMPP-tili" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4221,8 +4221,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Muokkaa Jabberin vCardia" +msgid "Edit XMPP vCard" +msgstr "Muokkaa XMPPin vCardia" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4337,7 +4337,7 @@ msgid "The following are the results of your search" msgstr "Hakutulokset" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4362,8 +4362,8 @@ msgstr "Palvelimen ohjeet: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Täytä yksi tai useampia kentistä etsiäksesi Jabber-käyttäjiä." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Täytä yksi tai useampia kentistä etsiäksesi XMPP-käyttäjiä." #: ../libpurple/protocols/jabber/buddy.c:1756 #: ../libpurple/protocols/novell/novell.c:1488 @@ -4374,8 +4374,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Etsi Jabber-käyttäjiä" +msgid "Search for XMPP users" +msgstr "Etsi XMPP-käyttäjiä" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4518,8 +4518,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "Epäkelpo Jabber ID" +msgid "Invalid XMPP ID" +msgstr "Epäkelpo XMPP ID" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4573,8 +4573,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Rekisteröi uusi Jabber-tili" +msgid "Register New XMPP Account" +msgstr "Rekisteröi uusi XMPP-tili" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4648,8 +4648,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Vaihda Jabber-salasana" +msgid "Change XMPP Password" +msgstr "Vaihda XMPP-salasana" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4703,8 +4703,8 @@ msgstr "Kohdetta ei löytynyt" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "Epäkelpo Jabber ID" +msgid "Malformed XMPP ID" +msgstr "Epäkelpo XMPP ID" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4972,8 +4972,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "Jabber-yhteyskäytäntöliitännäinen" +msgid "XMPP Protocol Plugin" +msgstr "XMPP-yhteyskäytäntöliitännäinen" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -5015,8 +5015,8 @@ msgstr "Viestin toimitus %s:lle epäonnistui: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Jabber viestivirhe" +msgid "XMPP Message Error" +msgstr "XMPP viestivirhe" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12404,8 +12404,8 @@ msgstr "hakkeri ja kuski [laiska pummi]" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "Jabber-kehittäjä" +msgid "XMPP developer" +msgstr "XMPP-kehittäjä" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12677,7 +12677,7 @@ #: ../pidgin/gtkdialogs.c:359 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12687,7 +12687,7 @@ "warranty for this program.<BR><BR>" msgstr "" "%s on modulaarinen pikaviestinsovellus, joka kykenee käyttämään AIM-, MSN-, " -"Yahoo!-, Jabber-, ICQ-, IRC-, SILC-, SIP/SIMPLE-, Novell GroupWise-, Lotus " +"Yahoo!-, XMPP-, ICQ-, IRC-, SILC-, SIP/SIMPLE-, Novell GroupWise-, Lotus " "Sametime-, Bonjour-, Zephyr-, Gadu-Gadu- ja QQ-yhteyskäytäntöjä " "yhtäaikaisesti. Se on ohjelmoitu käyttäen Gtk+-kirjastoa.<BR><BR>Voit " "muokata ja jakaa ohjelmaa GPL-lisenssin (versio 2 tai myöhempi) ehdoilla. " @@ -15077,11 +15077,11 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" "Antaa sinun lähettää raakamuotoista syötettä tekstipohjaisilla " -"yhteyskäytännöillä (Jabber MSN, IRC, TOC). Paina \"Enter\" " +"yhteyskäytännöillä (XMPP MSN, IRC, TOC). Paina \"Enter\" " "viestinsyöttölaatikossa lähettääksesi. Tarkkaile virheenjäljitysikkunaa." #: ../pidgin/plugins/relnot.c:71 @@ -16092,10 +16092,10 @@ #~ msgstr "Sinulla on jo meneillään oleva haku. Odota sen päättymistä." #~ msgid "" -#~ "Could not query the directory server. Either the Jabber user directory " +#~ "Could not query the directory server. Either the XMPP user directory " #~ "specified is invalid or directory server could not be reached." #~ msgstr "" -#~ "Ei voitu tehdä hakua hakemistopalvelimelle. Joko määritelty Jabber-" +#~ "Ei voitu tehdä hakua hakemistopalvelimelle. Joko määritelty XMPP-" #~ "käyttäjähakemisto on virheellinen, tai hakemistopalvelimelle ei päästy." #~ msgid "Direct IM with %s closed" @@ -16376,8 +16376,8 @@ #~ msgid "Host name" #~ msgstr "Isäntä" -#~ msgid "Jabber ID" -#~ msgstr "Jabber ID" +#~ msgid "XMPP ID" +#~ msgstr "XMPP ID" #~ msgid "(pending)" #~ msgstr "(odottaa)" @@ -16704,8 +16704,8 @@ #~ msgid "Buddy Information for %s" #~ msgstr "Tuttavan %s tiedot" -#~ msgid "Jabber Profile" -#~ msgstr "Jabber-profiili" +#~ msgid "XMPP Profile" +#~ msgstr "XMPP-profiili" #~ msgid "User Properties" #~ msgstr "Käyttäjän valinnat"
--- a/po/fr.po Tue May 01 14:02:55 2007 +0000 +++ b/po/fr.po Tue May 01 14:09:24 2007 +0000 @@ -2785,10 +2785,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Ouvre les fenêtres des nouvelles conversations dès qu'un utilisateur " -"commence à vous écrire un message. Cela fonctionne pour AIM, ICQ, Jabber, " +"commence à vous écrire un message. Cela fonctionne pour AIM, ICQ, XMPP, " "Sametime et Yahoo." #: ../libpurple/plugins/psychic.c:66 @@ -3069,8 +3069,8 @@ msgstr "Compte AIM" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Compte Jabber" +msgid "XMPP Account" +msgstr "Compte XMPP" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4255,8 +4255,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Modifier la carte de visite Jabber" +msgid "Edit XMPP vCard" +msgstr "Modifier la carte de visite XMPP" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4372,7 +4372,7 @@ msgid "The following are the results of your search" msgstr "Voici les résultats de votre recherche." -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4397,8 +4397,8 @@ msgstr "Instructions du serveur : %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Saisissez un ou plusieurs critères de recherche d'utilisateurs Jabber." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Saisissez un ou plusieurs critères de recherche d'utilisateurs XMPP." #: ../libpurple/protocols/jabber/buddy.c:1756 #: ../libpurple/protocols/novell/novell.c:1488 @@ -4409,8 +4409,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Rechercher des utilisateurs Jabber" +msgid "Search for XMPP users" +msgstr "Rechercher des utilisateurs XMPP" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4555,8 +4555,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "Identifiant Jabber non valide" +msgid "Invalid XMPP ID" +msgstr "Identifiant XMPP non valide" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4612,8 +4612,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Enregistrer un nouveau compte Jabber" +msgid "Register New XMPP Account" +msgstr "Enregistrer un nouveau compte XMPP" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4687,8 +4687,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Changer de mot de passe Jabber" +msgid "Change XMPP Password" +msgstr "Changer de mot de passe XMPP" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4742,8 +4742,8 @@ msgstr "Item non trouvé" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "Identifiant Jabber non valide." +msgid "Malformed XMPP ID" +msgstr "Identifiant XMPP non valide." #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -5012,8 +5012,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "Plugin pour le protocole Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Plugin pour le protocole XMPP" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -5055,8 +5055,8 @@ msgstr "Échec de la livraison du message pour %s : %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Erreur message Jabber" +msgid "XMPP Message Error" +msgstr "Erreur message XMPP" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12502,8 +12502,8 @@ msgstr "hacker et conducteur désigné [feignasse]" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "codeur Jabber" +msgid "XMPP developer" +msgstr "codeur XMPP" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12775,7 +12775,7 @@ #: ../pidgin/gtkdialogs.c:359 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12785,7 +12785,7 @@ "warranty for this program.<BR><BR>" msgstr "" "%s est un client de messagerie modulaire compatible avec AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu et QQ. Il est écrit avec Gtk+.<BR><BR>Vous pouvez " "modifier et redistribuer ce programme sous les conditions énoncées par la " "licence GNU GPL (version 2 ou ultérieure). Une copie de la licence GPL est " @@ -15205,10 +15205,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Permet d'envoyer des données bruts aux protocoles en mode texte (Jabber, " +"Permet d'envoyer des données bruts aux protocoles en mode texte (XMPP, " "MSN, IRC, TOC). Tapez « Entrée » dans la boîte de saisie pour envoyer. " "Observez le résultat dans la fenêtre de debug." @@ -16060,8 +16060,8 @@ #~ msgid "Account usage" #~ msgstr "Utilisation du compte" -#~ msgid "Jabber ID" -#~ msgstr "Identifiant Jabber" +#~ msgid "XMPP ID" +#~ msgstr "Identifiant XMPP" #~ msgid "Use last matching buddy" #~ msgstr "À valeur égale, choisir le dernier trouvé"
--- a/po/gl.po Tue May 01 14:02:55 2007 +0000 +++ b/po/gl.po Tue May 01 14:09:24 2007 +0000 @@ -2308,8 +2308,8 @@ msgstr "hacker e deseñador de controladores [lazy bum]" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "desenvolvedor de Jabber" +msgid "XMPP developer" +msgstr "desenvolvedor de XMPP" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2541,7 +2541,7 @@ #: ../gtk/gtkdialogs.c:335 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2550,7 +2550,7 @@ "warranty for this program.<BR><BR>" msgstr "" "Gaim é un cliente modular de mensaxaría instantánea, capaz de utilizar AIM, " -"MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, " +"MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, " "Napster, Zephyr, e Gadu-Gadu ao mesmo tempo. Está escrito usando Gtk+." "<BR><BR> Pode modificar e redistribuír este programa baixo os termos da GPL " "(versión 2 ou posterior). Inclúese unha copia da licenza GPL no ficheiro " @@ -5131,10 +5131,10 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Permítelle enviar datos en bruto a protocolos baseados en texto (Jabber, " +"Permítelle enviar datos en bruto a protocolos baseados en texto (XMPP, " "MSN, IRC, TOC). Prema 'Intor' na caixa de entrada para envialo. Observe a " "ventá de depuración." @@ -6668,10 +6668,10 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Fai que aparezan as ventás da conversa cando un usuario comeza a enviarlle " -"unha mensaxe. Isto funciona con AIM, ICQ, Jabber, Sametime e Yahoo!" +"unha mensaxe. Isto funciona con AIM, ICQ, XMPP, Sametime e Yahoo!" #: ../libgaim/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -6922,8 +6922,8 @@ msgstr "Conta de AIM" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Conta de Jabber" +msgid "XMPP Account" +msgstr "Conta de XMPP" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8032,8 +8032,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Editar vCard de Jabber" +msgid "Edit XMPP vCard" +msgstr "Editar vCard de XMPP" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8148,7 +8148,7 @@ msgid "The following are the results of your search" msgstr "Os resultados da súa busca son os seguintes" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8173,10 +8173,10 @@ msgstr "Instrucións do servidor: %s" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" "Encha un ou máis dos campos amosados a seguir para localizar usuarios " -"Jabber." +"XMPP." #: ../libgaim/protocols/jabber/buddy.c:1749 #: ../libgaim/protocols/novell/novell.c:1488 @@ -8187,8 +8187,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Localizar usuarios de Jabber" +msgid "Search for XMPP users" +msgstr "Localizar usuarios de XMPP" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8317,8 +8317,8 @@ #: ../libgaim/protocols/jabber/jabber.c:550 #: ../libgaim/protocols/jabber/jabber.c:893 -msgid "Invalid Jabber ID" -msgstr "ID de Jabber non válido" +msgid "Invalid XMPP ID" +msgstr "ID de XMPP non válido" #: ../libgaim/protocols/jabber/jabber.c:621 #, c-format @@ -8371,8 +8371,8 @@ #: ../libgaim/protocols/jabber/jabber.c:856 #: ../libgaim/protocols/jabber/jabber.c:857 -msgid "Register New Jabber Account" -msgstr "Rexistrando a conta nova de Jabber" +msgid "Register New XMPP Account" +msgstr "Rexistrando a conta nova de XMPP" #: ../libgaim/protocols/jabber/jabber.c:1023 msgid "Initializing Stream" @@ -8435,8 +8435,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1360 #: ../libgaim/protocols/jabber/jabber.c:1361 -msgid "Change Jabber Password" -msgstr "Modificar o contrasinal de Jabber" +msgid "Change XMPP Password" +msgstr "Modificar o contrasinal de XMPP" #: ../libgaim/protocols/jabber/jabber.c:1361 msgid "Please enter your new password" @@ -8490,8 +8490,8 @@ msgstr "Elemento non atopado" #: ../libgaim/protocols/jabber/jabber.c:1471 -msgid "Malformed Jabber ID" -msgstr "ID de Jabber inválido" +msgid "Malformed XMPP ID" +msgstr "ID de XMPP inválido" #: ../libgaim/protocols/jabber/jabber.c:1473 msgid "Not Acceptable" @@ -8758,8 +8758,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1960 #: ../libgaim/protocols/jabber/jabber.c:1962 -msgid "Jabber Protocol Plugin" -msgstr "Complemento de protocolo Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Complemento de protocolo XMPP" #: ../libgaim/protocols/jabber/jabber.c:1988 msgid "Force old (port 5223) SSL" @@ -8801,8 +8801,8 @@ msgstr "Fallou o envío da mensaxe a %s: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Mensaxe de erro de Jabber" +msgid "XMPP Message Error" +msgstr "Mensaxe de erro de XMPP" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/gu.po Tue May 01 14:02:55 2007 +0000 +++ b/po/gu.po Tue May 01 14:09:24 2007 +0000 @@ -832,10 +832,10 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"તમને હરોળ ઈનપુટ લખાણ-આધારિત પ્રોટોકોલો (Jabber, MSN, IRC, TOC) માં મોકલવા માટે " +"તમને હરોળ ઈનપુટ લખાણ-આધારિત પ્રોટોકોલો (XMPP, MSN, IRC, TOC) માં મોકલવા માટે " "પરવાનગી આપે છે. મોકલવા માટે પ્રવેશ બોક્સમાં 'Enter' દબાવો. ડિબગ વિન્ડો જુઓ." #: plugins/relnot.c:63 @@ -2735,8 +2735,8 @@ msgstr "libfaim જાળવનાર" #: src/gtkdialogs.c:92 -msgid "Jabber developer" -msgstr "Jabber વિકાસકર્તા" +msgid "XMPP developer" +msgstr "XMPP વિકાસકર્તા" #: src/gtkdialogs.c:93 msgid "original author" @@ -2905,10 +2905,10 @@ #: src/gtkdialogs.c:226 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" -"Gaim એ મોડ્યુલ સંદેશાવ્યવહાર ક્લાઈન્ટ છે જે AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, " +"Gaim એ મોડ્યુલ સંદેશાવ્યવહાર ક્લાઈન્ટ છે જે AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, " "Novell GroupWise, Napster, Zephyr, અને Gadu-Gadu બધા એક સાથે વાપરવા માટે સમર્થ " "છે. તે Gtk+ ની મદદથી લખાયેલ છે અને GPL હેઠળ લાઈસન્સ અપાયેલ છે.<BR><BR>" @@ -5560,8 +5560,8 @@ msgstr "જન્મદિવસ" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard માં ફેરફાર કરો" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard માં ફેરફાર કરો" #: src/protocols/jabber/buddy.c:569 msgid "" @@ -5572,8 +5572,8 @@ "અનુભવો." #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" -msgstr "Jabber ID" +msgid "XMPP ID" +msgstr "XMPP ID" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 msgid "Resource" @@ -5651,7 +5651,7 @@ msgstr "નીચે તમારી શોધનાં પરિણામો છે" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "કોઇપણ મળતાં જબાર વપરાશકર્તાઓને શોધવા માટે એક અથવા વધુ ક્ષેત્રોમાં ભરો." #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -5669,7 +5669,7 @@ msgstr "ઇ-મેઇલ સરનામું" #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "જબાર વપરાશકર્તા માટે શોધ કરો" #: src/protocols/jabber/buddy.c:1370 @@ -5790,8 +5790,8 @@ msgstr "સોકેટ બનાવવામાં અસમર્થ" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" -msgstr "અયોગ્ય Jabber ID" +msgid "Invalid XMPP ID" +msgstr "અયોગ્ય XMPP ID" #: src/protocols/jabber/jabber.c:473 #, c-format @@ -5837,8 +5837,8 @@ msgstr "મહેરબાની કરીને નવું ખાતું રજીસ્ટર કરાવવા માટે નીચેની જાણકારી ભરો." #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" -msgstr "નવું Jabber ખાતું રજીસ્ટર કરો" +msgid "Register New XMPP Account" +msgstr "નવું XMPP ખાતું રજીસ્ટર કરો" #: src/protocols/jabber/jabber.c:842 msgid "Initializing Stream" @@ -5909,8 +5909,8 @@ msgstr "પાસવર્ડ (ફરી)" #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 -msgid "Change Jabber Password" -msgstr "Jabber પાસવર્ડ બદલો" +msgid "Change XMPP Password" +msgstr "XMPP પાસવર્ડ બદલો" #: src/protocols/jabber/jabber.c:1161 msgid "Please enter your new password" @@ -5959,8 +5959,8 @@ msgstr "વસ્તુ મળી નથી" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" -msgstr "મલીન Jabber ID" +msgid "Malformed XMPP ID" +msgstr "મલીન XMPP ID" #: src/protocols/jabber/jabber.c:1273 msgid "Not Acceptable" @@ -6205,8 +6205,8 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" -msgstr "Jabber પ્રોટોકોલ પ્લગઈન" +msgid "XMPP Protocol Plugin" +msgstr "XMPP પ્રોટોકોલ પ્લગઈન" #: src/protocols/jabber/jabber.c:1714 msgid "Use TLS if available" @@ -6254,8 +6254,8 @@ msgstr "%s ને સંદેશો પહોંચાડવાનું નિષ્ફળ: %s" #: src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" -msgstr "Jabber સંદેશા ક્ષતિ" +msgid "XMPP Message Error" +msgstr "XMPP સંદેશા ક્ષતિ" #: src/protocols/jabber/message.c:297 #, c-format @@ -11887,8 +11887,8 @@ msgid "Invalid nickname" msgstr "અયોગ્ય નામ" -msgid "Jabber Profile" -msgstr "Jabber રૂપરેખા" +msgid "XMPP Profile" +msgstr "XMPP રૂપરેખા" msgid "Roomlist Error" msgstr "કક્ષયાદી ક્ષતિ"
--- a/po/he.po Tue May 01 14:02:55 2007 +0000 +++ b/po/he.po Tue May 01 14:09:24 2007 +0000 @@ -2706,10 +2706,10 @@ #: ../libpurple/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "גורם לחלונות-שיחה להופיע כבר כאשר אנשי קשר מתחילים לכתוב הודעה. זה עובד " -"עבור AIM, ICQ, Jabber, Sametime, Yahoo!" +"עבור AIM, ICQ, XMPP, Sametime, Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -2986,8 +2986,8 @@ msgstr "חשבון AIM" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "חשבון Jabber" +msgid "XMPP Account" +msgstr "חשבון XMPP" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4152,8 +4152,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "ערוך את ב-Jabber vCard" +msgid "Edit XMPP vCard" +msgstr "ערוך את ב-XMPP vCard" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "" @@ -4266,7 +4266,7 @@ msgid "The following are the results of your search" msgstr "להלן תוצאות החיפוש שלך" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -4291,8 +4291,8 @@ msgstr "הנחיות שרת: %s" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "יש להזין אחד או יותר מן השדות לביצוע חיפוש של משתמשי Jabber מתאימים." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "יש להזין אחד או יותר מן השדות לביצוע חיפוש של משתמשי XMPP מתאימים." #: ../libpurple/protocols/jabber/buddy.c:1756 #: ../libpurple/protocols/novell/novell.c:1488 @@ -4303,8 +4303,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "חפש משתמשי Jabber" +msgid "Search for XMPP users" +msgstr "חפש משתמשי XMPP" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4447,8 +4447,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "זיהוי משתמש Jabber לא תקין" +msgid "Invalid XMPP ID" +msgstr "זיהוי משתמש XMPP לא תקין" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4502,8 +4502,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "רשום חשבון Jabber חדש" +msgid "Register New XMPP Account" +msgstr "רשום חשבון XMPP חדש" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 ../pidgin/gtkaccount.c:1478 @@ -4577,7 +4577,7 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "הסיסמה שלך שונתה בהצלחה" #: ../libpurple/protocols/jabber/jabber.c:1369 @@ -4632,8 +4632,8 @@ msgstr "פריט לא נמצא" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "זיהוי משתמש Jabber לא תקין" +msgid "Malformed XMPP ID" +msgstr "זיהוי משתמש XMPP לא תקין" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -4899,8 +4899,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1972 #: ../libpurple/protocols/jabber/jabber.c:1974 -msgid "Jabber Protocol Plugin" -msgstr "תוסף פרוטוקול Jabber" +msgid "XMPP Protocol Plugin" +msgstr "תוסף פרוטוקול XMPP" #: ../libpurple/protocols/jabber/jabber.c:2000 msgid "Force old (port 5223) SSL" @@ -4942,8 +4942,8 @@ msgstr "תקלה במשלוח הודעה אל %s: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "הודעת שגיאה לא מוכרת (Jabber)" +msgid "XMPP Message Error" +msgstr "הודעת שגיאה לא מוכרת (XMPP)" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12223,8 +12223,8 @@ msgstr "מתכנת ונהג פיכח - עצלן" #: ../pidgin/gtkdialogs.c:113 -msgid "Jabber developer" -msgstr "מפתח Jabber" +msgid "XMPP developer" +msgstr "מפתח XMPP" #: ../pidgin/gtkdialogs.c:114 msgid "original author" @@ -12496,7 +12496,7 @@ #: ../pidgin/gtkdialogs.c:359 #, c-format msgid "" -"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, " +"%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, " "ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, " "Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>You " "may modify and redistribute the program under the terms of the GPL (version " @@ -12506,7 +12506,7 @@ "warranty for this program.<BR><BR>" msgstr "" "%s הינה תוכנת שליחת הודעות מיידיות מודולרית המאפשרת שימוש ב AIM, MSN, " -"Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novel GroupWise, Lotus Sametime, " +"Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novel GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, QQ ובכולם בו-זמנית. התוכנה נכתבה בעזרת GTK+." "<BR><BR>מותר לערוך שינויים ולהפיץ את התוכנה תחת הנחיות רישיון הGPL (גרסא 2 " "והלאה). יותר). העתק של ה-GPL מוכל בתוך הקובץ 'COPYING' המופץ עם %s. %s " @@ -14856,10 +14856,10 @@ #: ../pidgin/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"מאפשר לך לשלוח מידע גולמי לפרוטוקולים על בסיס טקסט כגון Jabber, MSN, IRC, " +"מאפשר לך לשלוח מידע גולמי לפרוטוקולים על בסיס טקסט כגון XMPP, MSN, IRC, " "TOC.לחץ 'Enter' בתיבת ההזנה לשלוח. צפה בחלון ניפוי הבאגים." #: ../pidgin/plugins/relnot.c:71 @@ -15897,8 +15897,8 @@ #~ msgid "Change password" #~ msgstr "שנה סיסמא" -#~ msgid "Jabber ID" -#~ msgstr "זיהוי Jabber" +#~ msgid "XMPP ID" +#~ msgstr "זיהוי XMPP" #~ msgid "Error processing event or response (%s)." #~ msgstr "שגיאה בעיבוד אירוע או משוב (%s)." @@ -16177,8 +16177,8 @@ #~ msgid "Buddy Information for %s" #~ msgstr "מידע על איש הקשר %s" -#~ msgid "Jabber Profile" -#~ msgstr "פרופיל Jabber" +#~ msgid "XMPP Profile" +#~ msgstr "פרופיל XMPP" #~ msgid "User Properties" #~ msgstr "מאפייני המשתמש"
--- a/po/hi.po Tue May 01 14:02:55 2007 +0000 +++ b/po/hi.po Tue May 01 14:09:24 2007 +0000 @@ -974,7 +974,7 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" "अक्षर आधारित प्रोटॅकोल पर अपूर्ण इनपुट भेजने देता है. (जैबर, एमएसएन, आईआरसी, टीओसी). " @@ -3033,7 +3033,7 @@ #: src/gtkdialogs.c:92 #, fuzzy -msgid "Jabber developer" +msgid "XMPP developer" msgstr "पूर्व जेबर डेवलपर्स" #: src/gtkdialogs.c:93 @@ -3206,7 +3206,7 @@ #, fuzzy msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" "गेम एक माड्यूलर इंस्टेंट मैसेन्जिंग क्लायन्ट है जो एआईएम, आईसीक्यू, याहू!, एमएसएन, आईआरसी, " @@ -5973,7 +5973,7 @@ msgstr "जन्मदिन" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" +msgid "Edit XMPP vCard" msgstr "जैबर वीकार्ड का संपादन करें" #: src/protocols/jabber/buddy.c:569 @@ -5983,7 +5983,7 @@ msgstr "सब चीज़ें वैकल्पिक हैं। जिस जानकारी को भरने में आपको को समस्या न हो केवल वही भरें।" #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" +msgid "XMPP ID" msgstr "जैबर आइ डी" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 @@ -6062,7 +6062,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -6081,7 +6081,7 @@ #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 #, fuzzy -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "बड्डी की खोज ईमेल पता द्वारा करें" #: src/protocols/jabber/buddy.c:1370 @@ -6207,8 +6207,8 @@ msgstr "सोकेट बनाने में असमर्थ" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" -msgstr "अवौध जैबर आईडी(Jabber ID)" +msgid "Invalid XMPP ID" +msgstr "अवौध जैबर आईडी(XMPP ID)" #: src/protocols/jabber/jabber.c:473 #, c-format @@ -6258,7 +6258,7 @@ msgstr "कृपया नया नया खाता रेजिस्टर करने के लिए नीचे दी गयी जानकारी भरें।" #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "नया जैबर खाता रेजिस्टर करें" #: src/protocols/jabber/jabber.c:842 @@ -6331,8 +6331,8 @@ msgstr "पासवर्ड (फिर से)" #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 -msgid "Change Jabber Password" -msgstr "जैबर(Jabber) पासवर्ड बदलें" +msgid "Change XMPP Password" +msgstr "जैबर(XMPP) पासवर्ड बदलें" #: src/protocols/jabber/jabber.c:1161 msgid "Please enter your new password" @@ -6382,8 +6382,8 @@ msgstr "चीज़ नहीं मिली" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" -msgstr "अमान्य जैबर(Jabber) आइ डी" +msgid "Malformed XMPP ID" +msgstr "अमान्य जैबर(XMPP) आइ डी" #: src/protocols/jabber/jabber.c:1273 msgid "Not Acceptable" @@ -6646,7 +6646,7 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr "जैबर प्रोटॅकोल प्लगइन" #: src/protocols/jabber/jabber.c:1714 @@ -6697,7 +6697,7 @@ msgstr "%s को संदेश भेजना विफल: %s" #: src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "जैबर संदेश त्रुटि " #: src/protocols/jabber/message.c:297 @@ -12481,7 +12481,7 @@ #~ msgid "Invalid nickname" #~ msgstr "अवैध उपयोगकर्ता-नाम" -#~ msgid "Jabber Profile" +#~ msgid "XMPP Profile" #~ msgstr "जै़बर प्रोफ़ाइल" #~ msgid "Roomlist Error"
--- a/po/hu.po Tue May 01 14:02:55 2007 +0000 +++ b/po/hu.po Tue May 01 14:09:24 2007 +0000 @@ -2305,8 +2305,8 @@ msgstr "hacker és kijelölt vezető" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Jabber fejlesztő" +msgid "XMPP developer" +msgstr "XMPP fejlesztő" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2538,7 +2538,7 @@ #: ../gtk/gtkdialogs.c:335 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2546,7 +2546,7 @@ "the 'COPYRIGHT' file for the complete list of contributors. We provide no " "warranty for this program.<BR><BR>" msgstr "" -"A Gaim egy moduláris üzenetküldő kliens AIM, MSN, Yahoo!, Jabber, ICQ, IRC, " +"A Gaim egy moduláris üzenetküldő kliens AIM, MSN, Yahoo!, XMPP, ICQ, IRC, " "SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, " "Gadu-Gadu és QQ protokollok egyidejű használatának képességével. A Gtk+ " "használatával készül és GPL licenc alatt terjeszthető.<BR><BR>A programot " @@ -5152,10 +5152,10 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Nyers adatküldésre ad lehetőséget szövegalapú protokollok számára (Jabber, " +"Nyers adatküldésre ad lehetőséget szövegalapú protokollok számára (XMPP, " "MSN, IRC, TOC). Nyomja meg az \"Enter\" billentyűt a küldéshez. Figyelje a " "hibakereső ablakot." @@ -6763,10 +6763,10 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Hatására a társalgási ablakok megjelennek, amint más felhasználók elkezdik " -"üzenetüket írni. Ez az AIM, ICQ, Jabber, Sametime és Yahoo! protokollokkal " +"üzenetüket írni. Ez az AIM, ICQ, XMPP, Sametime és Yahoo! protokollokkal " "működik." #: ../libgaim/plugins/psychic.c:66 @@ -7018,8 +7018,8 @@ msgstr "AIM fiók" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Jabber fiók" +msgid "XMPP Account" +msgstr "XMPP fiók" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8134,8 +8134,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard szerkesztése" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard szerkesztése" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8250,7 +8250,7 @@ msgid "The following are the results of your search" msgstr "A keresés eredményei a következők" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8275,8 +8275,8 @@ msgstr "Kiszolgálóutasítások: %s" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Töltsön ki legalább egy mezőt a megfelelő Jabber felhasználók kereséséhez." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Töltsön ki legalább egy mezőt a megfelelő XMPP felhasználók kereséséhez." #: ../libgaim/protocols/jabber/buddy.c:1749 #: ../libgaim/protocols/novell/novell.c:1488 @@ -8287,8 +8287,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Jabber felhasználók keresése" +msgid "Search for XMPP users" +msgstr "XMPP felhasználók keresése" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8417,8 +8417,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "Érvénytelen Jabber azonosító" +msgid "Invalid XMPP ID" +msgstr "Érvénytelen XMPP azonosító" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8471,8 +8471,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Új Jabber fiók regisztrálása" +msgid "Register New XMPP Account" +msgstr "Új XMPP fiók regisztrálása" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8535,8 +8535,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Jabber jelszó megváltoztatása" +msgid "Change XMPP Password" +msgstr "XMPP jelszó megváltoztatása" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8590,8 +8590,8 @@ msgstr "Az elem nem található" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "Rosszul formázott Jabber azonosító" +msgid "Malformed XMPP ID" +msgstr "Rosszul formázott XMPP azonosító" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -8860,8 +8860,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Jabber protokollbővítmény" +msgid "XMPP Protocol Plugin" +msgstr "XMPP protokollbővítmény" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -8903,8 +8903,8 @@ msgstr "Az üzenet eljuttatása a következőhöz: %s sikertelen: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Jabber üzenethiba" +msgid "XMPP Message Error" +msgstr "XMPP üzenethiba" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/id.po Tue May 01 14:02:55 2007 +0000 +++ b/po/id.po Tue May 01 14:09:24 2007 +0000 @@ -2294,8 +2294,8 @@ msgstr "hacker dan driver yang ditujukan [si pemalas]" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Pengembang Jabber" +msgid "XMPP developer" +msgstr "Pengembang XMPP" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2529,7 +2529,7 @@ #: ../gtk/gtkdialogs.c:335 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2538,7 +2538,7 @@ "warranty for this program.<BR><BR>" msgstr "" "Gaim adalah klien pengiriman pesan modular yang dapat menggunakanAIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, dan QQ secara bersamaan. Ditulis menggunakan GTK+." "<BR><BR>Anda dapat memodifikasi dan mendistribusikan program ini sesuai aturan " "GPL (versi 2 atau setelahnya). Sebuah salinan GPL tercantum dalam bagian 'COPYING' " @@ -5055,10 +5055,10 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"Membiarkan anda mengirim input mentah ke protokol berbasis teks (Jabber, MSN, IRC, " +"Membiarkan anda mengirim input mentah ke protokol berbasis teks (XMPP, MSN, IRC, " "TOC). Tekan 'Enter' dalam kotak tempat memasukkan untuk mengirim. Perhatikan jendela debug." #: ../gtk/plugins/relnot.c:69 @@ -6668,10 +6668,10 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Menyebabkan jendela percakapan muncul ketika pengguna lain mulai mengirim pesan pada anda. " -"Ini berfungsi untuk AIM, ICQ, Jabber, Sametime, dan Yahoo!" +"Ini berfungsi untuk AIM, ICQ, XMPP, Sametime, dan Yahoo!" #: ../libgaim/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -6924,8 +6924,8 @@ msgstr "Akun AIM" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Akun Jabber" +msgid "XMPP Account" +msgstr "Akun XMPP" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8035,8 +8035,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Rubah vCard Jabber" +msgid "Edit XMPP vCard" +msgstr "Rubah vCard XMPP" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8151,7 +8151,7 @@ msgid "The following are the results of your search" msgstr "Berikut ini adalah hasil pencarian anda" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8176,8 +8176,8 @@ msgstr "Instruksi Server: %s" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Masukkan satu atau beberapa bagian untuk mencari pengguna Jabber yang sesuai." +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "Masukkan satu atau beberapa bagian untuk mencari pengguna XMPP yang sesuai." #: ../libgaim/protocols/jabber/buddy.c:1749 #: ../libgaim/protocols/novell/novell.c:1488 @@ -8188,8 +8188,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Cari pengguna Jabber" +msgid "Search for XMPP users" +msgstr "Cari pengguna XMPP" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8318,8 +8318,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "ID Jabber tidak valid" +msgid "Invalid XMPP ID" +msgstr "ID XMPP tidak valid" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8372,8 +8372,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "Daftarkan Akun Jabber Baru" +msgid "Register New XMPP Account" +msgstr "Daftarkan Akun XMPP Baru" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8436,8 +8436,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Ganti Kata Sandi Jabber" +msgid "Change XMPP Password" +msgstr "Ganti Kata Sandi XMPP" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8491,8 +8491,8 @@ msgstr "Item Tidak Ditemukan" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "ID Jabber salah bentuk" +msgid "Malformed XMPP ID" +msgstr "ID XMPP salah bentuk" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -8759,8 +8759,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Plugin Protokol Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Plugin Protokol XMPP" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -8802,8 +8802,8 @@ msgstr "Pengiriman pesan ke %s gagal: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Kesalahan Pesan Jabber" +msgid "XMPP Message Error" +msgstr "Kesalahan Pesan XMPP" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/it.po Tue May 01 14:02:55 2007 +0000 +++ b/po/it.po Tue May 01 14:09:24 2007 +0000 @@ -2873,8 +2873,8 @@ msgstr "Modalità psichica per le conversazioni in ingresso" #: ../libpurple/plugins/psychic.c:21 -msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" -msgstr "Fa sì che la finestra di conversazione appaia non appena un altro utente inizia a scriverti. Funziona con AIM, ICQ, Jabber, Sametime e Yahoo!" +msgid "Causes conversation windows to appear as other users begin to message you. This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "Fa sì che la finestra di conversazione appaia non appena un altro utente inizia a scriverti. Funziona con AIM, ICQ, XMPP, Sametime e Yahoo!" #: ../libpurple/plugins/psychic.c:66 msgid "You feel a disturbance in the force..." @@ -3152,8 +3152,8 @@ msgstr "Account AIM" #: ../libpurple/protocols/bonjour/bonjour.c:583 -msgid "Jabber Account" -msgstr "Account Jabber" +msgid "XMPP Account" +msgstr "Account XMPP" #: ../libpurple/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -4300,8 +4300,8 @@ #: ../libpurple/protocols/jabber/buddy.c:582 #: ../libpurple/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Modifica la vCard di Jabber" +msgid "Edit XMPP vCard" +msgstr "Modifica la vCard di XMPP" #: ../libpurple/protocols/jabber/buddy.c:584 msgid "All items below are optional. Enter only the information with which you feel comfortable." @@ -4413,7 +4413,7 @@ msgid "The following are the results of your search" msgstr "Ecco i risultati della tua ricerca" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libpurple/protocols/jabber/buddy.c:1674 msgid "Find a contact by entering the search criteria in the given fields. Note: Each field supports wild card searches (%)" msgstr "" @@ -4436,7 +4436,7 @@ msgstr "Informazioni sul server" #: ../libpurple/protocols/jabber/buddy.c:1736 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../libpurple/protocols/jabber/buddy.c:1756 @@ -4448,8 +4448,8 @@ #: ../libpurple/protocols/jabber/buddy.c:1765 #: ../libpurple/protocols/jabber/buddy.c:1766 -msgid "Search for Jabber users" -msgstr "Cerca utenti Jabber" +msgid "Search for XMPP users" +msgstr "Cerca utenti XMPP" #. "Search" #: ../libpurple/protocols/jabber/buddy.c:1767 @@ -4593,8 +4593,8 @@ #: ../libpurple/protocols/jabber/jabber.c:567 #: ../libpurple/protocols/jabber/jabber.c:910 -msgid "Invalid Jabber ID" -msgstr "ID Jabber non valido" +msgid "Invalid XMPP ID" +msgstr "ID XMPP non valido" #: ../libpurple/protocols/jabber/jabber.c:638 #, c-format @@ -4648,8 +4648,8 @@ #: ../libpurple/protocols/jabber/jabber.c:873 #: ../libpurple/protocols/jabber/jabber.c:874 -msgid "Register New Jabber Account" -msgstr "Registra un nuovo account Jabber" +msgid "Register New XMPP Account" +msgstr "Registra un nuovo account XMPP" #. Register button #: ../libpurple/protocols/jabber/jabber.c:875 @@ -4724,8 +4724,8 @@ #: ../libpurple/protocols/jabber/jabber.c:1368 #: ../libpurple/protocols/jabber/jabber.c:1369 -msgid "Change Jabber Password" -msgstr "Cambia la password di Jabber" +msgid "Change XMPP Password" +msgstr "Cambia la password di XMPP" #: ../libpurple/protocols/jabber/jabber.c:1369 msgid "Please enter your new password" @@ -4779,8 +4779,8 @@ msgstr "Elemento non trovato" #: ../libpurple/protocols/jabber/jabber.c:1481 -msgid "Malformed Jabber ID" -msgstr "Formato ID Jabber non valido" +msgid "Malformed XMPP ID" +msgstr "Formato ID XMPP non valido" #: ../libpurple/protocols/jabber/jabber.c:1483 msgid "Not Acceptable" @@ -5038,8 +5038,8 @@ #. * description #: ../libpurple/protocols/jabber/jabber.c:1977 #: ../libpurple/protocols/jabber/jabber.c:1979 -msgid "Jabber Protocol Plugin" -msgstr "Plugin per il protocollo Jabber" +msgid "XMPP Protocol Plugin" +msgstr "Plugin per il protocollo XMPP" #: ../libpurple/protocols/jabber/jabber.c:2005 msgid "Force old (port 5223) SSL" @@ -5083,8 +5083,8 @@ msgstr "Invio del messaggio a %s fallito: %s" #: ../libpurple/protocols/jabber/message.c:272 -msgid "Jabber Message Error" -msgstr "Errore messaggio Jabber" +msgid "XMPP Message Error" +msgstr "Errore messaggio XMPP" #: ../libpurple/protocols/jabber/message.c:352 #, c-format @@ -12284,8 +12284,8 @@ msgstr "hacker e autista designato [lazy bum]" #: ../pidgin/gtkdialogs.c:114 -msgid "Jabber developer" -msgstr "Sviluppatore per Jabber" +msgid "XMPP developer" +msgstr "Sviluppatore per XMPP" #: ../pidgin/gtkdialogs.c:115 msgid "original author" @@ -12598,8 +12598,8 @@ #: ../pidgin/gtkdialogs.c:360 #, c-format -msgid "%s is a modular messaging client capable of using AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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.<BR><BR>" -msgstr "%s è un client modulare di messaggistica in grado di usare allo stesso tempo i protocolli AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu e QQ. È scritto utilizzando GTK+.<BR><BR>È possibile modificare e ridistribuire il programma nei termini della licenza GPL (versione 2 o successiva). Una copia della GPL è contenuta nel file 'COPYING' distribuito con %s. Il copyright di %s appartiene ai suoi autori. Per una lista completa degli autori, vedere il file 'COPYRIGHT'. Il programma è fornito senza nessuna garanzia.<BR><BR>" +msgid "%s is a modular messaging client capable of using AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+.<BR><BR>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.<BR><BR>" +msgstr "%s è un client modulare di messaggistica in grado di usare allo stesso tempo i protocolli AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, Gadu-Gadu e QQ. È scritto utilizzando GTK+.<BR><BR>È possibile modificare e ridistribuire il programma nei termini della licenza GPL (versione 2 o successiva). Una copia della GPL è contenuta nel file 'COPYING' distribuito con %s. Il copyright di %s appartiene ai suoi autori. Per una lista completa degli autori, vedere il file 'COPYRIGHT'. Il programma è fornito senza nessuna garanzia.<BR><BR>" #: ../pidgin/gtkdialogs.c:375 #, fuzzy @@ -14915,8 +14915,8 @@ msgstr "Permette di inviare input raw ai protocolli text-based." #: ../pidgin/plugins/raw.c:178 -msgid "Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit 'Enter' in the entry box to send. Watch the debug window." -msgstr "Permette di inviare input raw ai protocolli text-based (Jabber, MSN, IRC, TOC). Premi 'Invio' nella casella di immissione per inviare il testo. Controlla la finestra di debug." +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 "Permette di inviare input raw ai protocolli text-based (XMPP, MSN, IRC, TOC). Premi 'Invio' nella casella di immissione per inviare il testo. Controlla la finestra di debug." #: ../pidgin/plugins/relnot.c:71 #, fuzzy, c-format @@ -15875,12 +15875,12 @@ #, fuzzy #~ msgid "" #~ "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -#~ "Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " +#~ "XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu " #~ "all at once. It is written using GTK+ and is licensed under the GNU GPL." #~ "<BR><BR>" #~ msgstr "" #~ "Gaim è un client modulare per messaggi immediati in grado di usare AIM, " -#~ "MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr e " +#~ "MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr e " #~ "Gadu-Gadu allo stesso tempo. È scritto utilizzando Gtk+ ed è distribuito " #~ "sotto licenza GPL.<BR><BR>" #~ msgid "Active Developers" @@ -15937,8 +15937,8 @@ #~ msgstr "Cambia password" #~ msgid "Realname" #~ msgstr "Vero nome" -#~ msgid "Jabber ID" -#~ msgstr "ID Jabber" +#~ msgid "XMPP ID" +#~ msgstr "ID XMPP" #~ msgid "Email Address" #~ msgstr "Indirizzo e-mail" #~ msgid "Error processing event or response (%s)." @@ -16560,8 +16560,8 @@ #~ msgstr "Informazioni sul contatto per %s" #~ msgid "Invalid nickname '%s'" #~ msgstr "Nickname '%s' non valido" -#~ msgid "Jabber Profile" -#~ msgstr "Profilo di Jabber" +#~ msgid "XMPP Profile" +#~ msgstr "Profilo di XMPP" #~ msgid "Roomlist Error" #~ msgstr "Errore nella lista delle stanze" #~ msgid "The user %s wants to add you to their buddy list."
--- a/po/ja.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ja.po Tue May 01 14:09:24 2007 +0000 @@ -2299,8 +2299,8 @@ msgstr "ハッカーと指定したドライバ [lazy bum]" #: ../gtk/gtkdialogs.c:108 -msgid "Jabber developer" -msgstr "Jabber の開発者" +msgid "XMPP developer" +msgstr "XMPP の開発者" #: ../gtk/gtkdialogs.c:109 msgid "original author" @@ -2532,7 +2532,7 @@ #: ../gtk/gtkdialogs.c:335 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " +"XMPP, ICQ, IRC, SILC, SIP/SIMPLE, Novell GroupWise, Lotus Sametime, " "Bonjour, Zephyr, Gadu-Gadu, and QQ all at once. It is written using GTK+." "<BR><BR>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' " @@ -2540,7 +2540,7 @@ "the 'COPYRIGHT' file for the complete list of contributors. We provide no " "warranty for this program.<BR><BR>" msgstr "" -"Gaim は AIM、MSN、Yahoo!、Jabber、ICQ、IRC、SILC、SIP/SIMPLE、Novell " +"Gaim は AIM、MSN、Yahoo!、XMPP、ICQ、IRC、SILC、SIP/SIMPLE、Novell " "GroupWise、Lotus Sametime、Bonjour、Zephyr、Gadu-Gadu、QQ といったプロトコル" "を全て同時に利用できる、GTK+ ツールキットを採用したモジュール型のメッセージ・" "クライアントです。<BR><BR>GPL ライセンス (第二版、あるいはそれ以降の版) が定" @@ -5146,10 +5146,10 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"入力した生データをテキスト形式のプロトコル (Jabber, MSN, IRC, TOC) へ送信でき" +"入力した生データをテキスト形式のプロトコル (XMPP, MSN, IRC, TOC) へ送信でき" "ます。送信する際は入力ボックスの中で [ENTER] キーを押して下さい。デバッグ・" "ウィンドウで送信内容を監視して下さい。" @@ -6772,9 +6772,9 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" -msgstr "" -"仲間が入力したメッセージを会話ウィンドウに直接表示します (AIM、ICQ、Jabber、" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" +msgstr "" +"仲間が入力したメッセージを会話ウィンドウに直接表示します (AIM、ICQ、XMPP、" "Sametime、Yahoo!で動作します)。" #: ../libgaim/plugins/psychic.c:66 @@ -7030,8 +7030,8 @@ msgstr "AIM のアカウント" #: ../libgaim/protocols/bonjour/bonjour.c:594 -msgid "Jabber Account" -msgstr "Jabber のアカウント" +msgid "XMPP Account" +msgstr "XMPP のアカウント" #: ../libgaim/protocols/bonjour/bonjour.h:35 msgid "Bonjour" @@ -8140,8 +8140,8 @@ #: ../libgaim/protocols/jabber/buddy.c:582 #: ../libgaim/protocols/jabber/buddy.c:583 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard の編集" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard の編集" #: ../libgaim/protocols/jabber/buddy.c:584 msgid "" @@ -8256,7 +8256,7 @@ msgid "The following are the results of your search" msgstr "検索結果です" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1667 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -8281,8 +8281,8 @@ msgstr "サーバの情報: %s" #: ../libgaim/protocols/jabber/buddy.c:1729 -msgid "Fill in one or more fields to search for any matching Jabber users." -msgstr "Jabber ユーザを検索するには一つ以上の欄を埋めて下さい:" +msgid "Fill in one or more fields to search for any matching XMPP users." +msgstr "XMPP ユーザを検索するには一つ以上の欄を埋めて下さい:" #: ../libgaim/protocols/jabber/buddy.c:1749 #: ../libgaim/protocols/novell/novell.c:1488 @@ -8293,8 +8293,8 @@ #: ../libgaim/protocols/jabber/buddy.c:1758 #: ../libgaim/protocols/jabber/buddy.c:1759 -msgid "Search for Jabber users" -msgstr "Jabber ユーザの検索" +msgid "Search for XMPP users" +msgstr "XMPP ユーザの検索" #: ../libgaim/protocols/jabber/buddy.c:1773 msgid "Invalid Directory" @@ -8423,8 +8423,8 @@ #: ../libgaim/protocols/jabber/jabber.c:552 #: ../libgaim/protocols/jabber/jabber.c:895 -msgid "Invalid Jabber ID" -msgstr "不正な Jabber ID" +msgid "Invalid XMPP ID" +msgstr "不正な XMPP ID" #: ../libgaim/protocols/jabber/jabber.c:623 #, c-format @@ -8477,8 +8477,8 @@ #: ../libgaim/protocols/jabber/jabber.c:858 #: ../libgaim/protocols/jabber/jabber.c:859 -msgid "Register New Jabber Account" -msgstr "新しい Jabber アカウントの登録" +msgid "Register New XMPP Account" +msgstr "新しい XMPP アカウントの登録" #: ../libgaim/protocols/jabber/jabber.c:1025 msgid "Initializing Stream" @@ -8541,8 +8541,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1362 #: ../libgaim/protocols/jabber/jabber.c:1363 -msgid "Change Jabber Password" -msgstr "Jabber パスワードの変更" +msgid "Change XMPP Password" +msgstr "XMPP パスワードの変更" #: ../libgaim/protocols/jabber/jabber.c:1363 msgid "Please enter your new password" @@ -8596,8 +8596,8 @@ msgstr "アイテムが見つかりません" #: ../libgaim/protocols/jabber/jabber.c:1473 -msgid "Malformed Jabber ID" -msgstr "おかしな Jabber ID" +msgid "Malformed XMPP ID" +msgstr "おかしな XMPP ID" #: ../libgaim/protocols/jabber/jabber.c:1475 msgid "Not Acceptable" @@ -8869,8 +8869,8 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1962 #: ../libgaim/protocols/jabber/jabber.c:1964 -msgid "Jabber Protocol Plugin" -msgstr "Jabber プロトコルのプラグイン" +msgid "XMPP Protocol Plugin" +msgstr "XMPP プロトコルのプラグイン" #: ../libgaim/protocols/jabber/jabber.c:1990 msgid "Force old (port 5223) SSL" @@ -8912,8 +8912,8 @@ msgstr "%s さんへのメッセージの配送に失敗: %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" -msgstr "Jabber メッセージ・エラー" +msgid "XMPP Message Error" +msgstr "XMPP メッセージ・エラー" #: ../libgaim/protocols/jabber/message.c:316 #, c-format
--- a/po/ka.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ka.po Tue May 01 14:09:24 2007 +0000 @@ -1214,7 +1214,7 @@ #: ../plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -3285,8 +3285,8 @@ #: ../src/gtkdialogs.c:98 #, fuzzy -msgid "Jabber developer" -msgstr "Jabber" +msgid "XMPP developer" +msgstr "XMPP" #: ../src/gtkdialogs.c:99 msgid "original author" @@ -3473,7 +3473,7 @@ #: ../src/gtkdialogs.c:250 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " "and Gadu-Gadu all at once. It is written using GTK+.<BR><BR>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 " @@ -6381,8 +6381,8 @@ msgstr "დაბადების დღე" #: ../src/protocols/jabber/buddy.c:567 ../src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard-ის რედაქტირება" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard-ის რედაქტირება" #: ../src/protocols/jabber/buddy.c:569 msgid "" @@ -6466,7 +6466,7 @@ msgstr "" #: ../src/protocols/jabber/buddy.c:1381 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../src/protocols/jabber/buddy.c:1385 ../src/protocols/jabber/jabber.c:701 @@ -6484,7 +6484,7 @@ msgstr "E-Mail მისამართი" #: ../src/protocols/jabber/buddy.c:1409 ../src/protocols/jabber/buddy.c:1410 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "" #: ../src/protocols/jabber/buddy.c:1424 @@ -6605,8 +6605,8 @@ msgstr "ვერ ვქმნი სოკეტს" #: ../src/protocols/jabber/jabber.c:451 ../src/protocols/jabber/jabber.c:788 -msgid "Invalid Jabber ID" -msgstr "არასწორი Jabber ID" +msgid "Invalid XMPP ID" +msgstr "არასწორი XMPP ID" #: ../src/protocols/jabber/jabber.c:521 #, c-format @@ -6653,8 +6653,8 @@ msgstr "" #: ../src/protocols/jabber/jabber.c:752 ../src/protocols/jabber/jabber.c:753 -msgid "Register New Jabber Account" -msgstr "ახალი Jabber ანგარიშის რეგისტრაცია" +msgid "Register New XMPP Account" +msgstr "ახალი XMPP ანგარიშის რეგისტრაცია" #: ../src/protocols/jabber/jabber.c:897 #, fuzzy @@ -6721,8 +6721,8 @@ msgstr "პაროლი (კიდევ ერთხელ)" #: ../src/protocols/jabber/jabber.c:1230 ../src/protocols/jabber/jabber.c:1231 -msgid "Change Jabber Password" -msgstr "შეცვალე Jabber პაროლი" +msgid "Change XMPP Password" +msgstr "შეცვალე XMPP პაროლი" #: ../src/protocols/jabber/jabber.c:1231 msgid "Please enter your new password" @@ -6773,8 +6773,8 @@ msgstr "" #: ../src/protocols/jabber/jabber.c:1341 -msgid "Malformed Jabber ID" -msgstr "არასწორი Jabber ID" +msgid "Malformed XMPP ID" +msgstr "არასწორი XMPP ID" #: ../src/protocols/jabber/jabber.c:1343 msgid "Not Acceptable" @@ -7021,8 +7021,8 @@ #. * summary #. * description #: ../src/protocols/jabber/jabber.c:1766 ../src/protocols/jabber/jabber.c:1768 -msgid "Jabber Protocol Plugin" -msgstr "Jabber პროტოკოლის პლაგინი" +msgid "XMPP Protocol Plugin" +msgstr "XMPP პროტოკოლის პლაგინი" #: ../src/protocols/jabber/jabber.c:1794 msgid "Use TLS if available" @@ -7070,8 +7070,8 @@ msgstr "" #: ../src/protocols/jabber/message.c:233 -msgid "Jabber Message Error" -msgstr "Jabber შეტყობინების შეცდომა" +msgid "XMPP Message Error" +msgstr "XMPP შეტყობინების შეცდომა" #: ../src/protocols/jabber/message.c:297 #, c-format
--- a/po/kn.po Tue May 01 14:02:55 2007 +0000 +++ b/po/kn.po Tue May 01 14:09:24 2007 +0000 @@ -2100,7 +2100,7 @@ msgstr "" #: ../gtk/gtkdialogs.c:102 -msgid "Jabber developer" +msgid "XMPP developer" msgstr "" #: ../gtk/gtkdialogs.c:103 @@ -2317,7 +2317,7 @@ #: ../gtk/gtkdialogs.c:321 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, " "and QQ all at once. It is written using GTK+.<BR><BR>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 Gaim. " @@ -4910,7 +4910,7 @@ #: ../gtk/plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -6022,7 +6022,7 @@ #: ../libgaim/plugins/psychic.c:21 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" #. This is a quote from Star Wars. You should @@ -6277,7 +6277,7 @@ msgstr "" #: ../libgaim/protocols/bonjour/bonjour.c:592 -msgid "Jabber Account" +msgid "XMPP Account" msgstr "" #: ../libgaim/protocols/bonjour/bonjour.h:35 @@ -7414,7 +7414,7 @@ #: ../libgaim/protocols/jabber/buddy.c:588 #: ../libgaim/protocols/jabber/buddy.c:589 -msgid "Edit Jabber vCard" +msgid "Edit XMPP vCard" msgstr "" #: ../libgaim/protocols/jabber/buddy.c:590 @@ -7527,7 +7527,7 @@ "ನಿಮ್ಮ ಹುಡುಕುವಿಕೆಯ " "ಫಲಿತಾಂಶಗಳು ಇಲ್ಲಿವೆ" -#. current comment from Jabber User Directory users.jabber.org +#. current comment from XMPP User Directory users.jabber.org #: ../libgaim/protocols/jabber/buddy.c:1633 msgid "" "Find a contact by entering the search criteria in the given fields. Note: " @@ -7550,7 +7550,7 @@ msgstr "ಸರ್ವರ್ ಸೂಚನೆಗಳು %s" #: ../libgaim/protocols/jabber/buddy.c:1695 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../libgaim/protocols/jabber/buddy.c:1715 @@ -7562,7 +7562,7 @@ #: ../libgaim/protocols/jabber/buddy.c:1724 #: ../libgaim/protocols/jabber/buddy.c:1725 -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "" #: ../libgaim/protocols/jabber/buddy.c:1739 @@ -7695,7 +7695,7 @@ #: ../libgaim/protocols/jabber/jabber.c:532 #: ../libgaim/protocols/jabber/jabber.c:875 -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:603 @@ -7752,7 +7752,7 @@ #: ../libgaim/protocols/jabber/jabber.c:838 #: ../libgaim/protocols/jabber/jabber.c:839 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1004 @@ -7824,8 +7824,8 @@ #: ../libgaim/protocols/jabber/jabber.c:1343 #: ../libgaim/protocols/jabber/jabber.c:1344 -msgid "Change Jabber Password" -msgstr "Jabber ಪ್ರವೇಶಪದ ಬದಲಿಸಿ..." +msgid "Change XMPP Password" +msgstr "XMPP ಪ್ರವೇಶಪದ ಬದಲಿಸಿ..." #: ../libgaim/protocols/jabber/jabber.c:1344 msgid "Please enter your new password" @@ -7879,7 +7879,7 @@ msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1454 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1456 @@ -8147,7 +8147,7 @@ #. * description #: ../libgaim/protocols/jabber/jabber.c:1933 #: ../libgaim/protocols/jabber/jabber.c:1935 -msgid "Jabber Protocol Plugin" +msgid "XMPP Protocol Plugin" msgstr "" #: ../libgaim/protocols/jabber/jabber.c:1961 @@ -8200,7 +8200,7 @@ msgstr " %s ರಿಗೆ ಸಂದೇಶ ವಿತರಣೆ ವಿಫಲ : %s" #: ../libgaim/protocols/jabber/message.c:236 -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "" #: ../libgaim/protocols/jabber/message.c:316
--- a/po/ko.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ko.po Tue May 01 14:09:24 2007 +0000 @@ -839,7 +839,7 @@ #: plugins/raw.c:154 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" @@ -2779,8 +2779,8 @@ #: src/gtkdialogs.c:92 #, fuzzy -msgid "Jabber developer" -msgstr "예전 재버(Jabber) 개발자" +msgid "XMPP developer" +msgstr "예전 재버(XMPP) 개발자" #: src/gtkdialogs.c:93 msgid "original author" @@ -2955,10 +2955,10 @@ #, fuzzy msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, Zephyr, and Gadu-Gadu all " "at once. It is written using GTK+ and is licensed under the GNU GPL.<BR><BR>" msgstr "" -"게임은 AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, Novell GroupWise, Napster, " +"게임은 AIM, MSN, Yahoo!, XMPP, ICQ, IRC, SILC, Novell GroupWise, Napster, " "Zephyr, Gadu-Gadu를 한꺼번에 지원하는 모듈 기반의 메신저입니다. Gtk+를 이용" "하여 만들어졌으며 GPL 라이센스를 따릅니다.<BR><BR>" @@ -5612,8 +5612,8 @@ msgstr "생년월일" #: src/protocols/jabber/buddy.c:567 src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "Jabber vCard 고치기" +msgid "Edit XMPP vCard" +msgstr "XMPP vCard 고치기" #: src/protocols/jabber/buddy.c:569 msgid "" @@ -5624,7 +5624,7 @@ "세요." #: src/protocols/jabber/buddy.c:616 -msgid "Jabber ID" +msgid "XMPP ID" msgstr "재버 아이디" #: src/protocols/jabber/buddy.c:642 src/protocols/jabber/jabber.c:1711 @@ -5703,7 +5703,7 @@ msgstr "" #: src/protocols/jabber/buddy.c:1327 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: src/protocols/jabber/buddy.c:1331 src/protocols/jabber/jabber.c:653 @@ -5722,7 +5722,7 @@ #: src/protocols/jabber/buddy.c:1355 src/protocols/jabber/buddy.c:1356 #, fuzzy -msgid "Search for Jabber users" +msgid "Search for XMPP users" msgstr "메일 주소로 친구 찾기" #: src/protocols/jabber/buddy.c:1370 @@ -5849,7 +5849,7 @@ msgstr "소켓을 만들 수 없음" #: src/protocols/jabber/jabber.c:403 src/protocols/jabber/jabber.c:740 -msgid "Invalid Jabber ID" +msgid "Invalid XMPP ID" msgstr "잘못된 재버 아이디" #: src/protocols/jabber/jabber.c:473 @@ -5896,7 +5896,7 @@ msgstr "새 계정을 만드려면 아래의 정보를 채워주세요." #: src/protocols/jabber/jabber.c:704 src/protocols/jabber/jabber.c:705 -msgid "Register New Jabber Account" +msgid "Register New XMPP Account" msgstr "새 재버 계정 등록" #: src/protocols/jabber/jabber.c:842 @@ -5969,7 +5969,7 @@ msgstr "새 열쇠글 (다시)" #: src/protocols/jabber/jabber.c:1160 src/protocols/jabber/jabber.c:1161 -msgid "Change Jabber Password" +msgid "Change XMPP Password" msgstr "재버 열쇠글 바꾸기" #: src/protocols/jabber/jabber.c:1161 @@ -6020,7 +6020,7 @@ msgstr "" #: src/protocols/jabber/jabber.c:1271 -msgid "Malformed Jabber ID" +msgid "Malformed XMPP ID" msgstr "잘못된 재버 아이디" #: src/protocols/jabber/jabber.c:1273 @@ -6284,8 +6284,8 @@ #. * summary #. * description #: src/protocols/jabber/jabber.c:1686 src/protocols/jabber/jabber.c:1688 -msgid "Jabber Protocol Plugin" -msgstr "Jabber 프로토콜 플러그인" +msgid "XMPP Protocol Plugin" +msgstr "XMPP 프로토콜 플러그인" #: src/protocols/jabber/jabber.c:1714 msgid "Use TLS if available" @@ -6336,7 +6336,7 @@ #: src/protocols/jabber/message.c:233 #, fuzzy -msgid "Jabber Message Error" +msgid "XMPP Message Error" msgstr "재버 오류" #: src/protocols/jabber/message.c:297 @@ -11863,7 +11863,7 @@ #~ msgid "Invalid nickname" #~ msgstr "잘못된 사용자 이름" -#~ msgid "Jabber Profile" +#~ msgid "XMPP Profile" #~ msgstr "재버 프로필" #~ msgid "Roomlist Error"
--- a/po/ku.po Tue May 01 14:02:55 2007 +0000 +++ b/po/ku.po Tue May 01 14:09:24 2007 +0000 @@ -1003,10 +1003,10 @@ #: ../plugins/psychic.c:24 msgid "" "Causes conversation windows to appear as other users begin to message you. " -"This works for AIM, ICQ, Jabber, Sametime, and Yahoo!" +"This works for AIM, ICQ, XMPP, Sametime, and Yahoo!" msgstr "" "Dema kesên din ji te re peyam nivîsand wê bixweber paceya axaftinê vebe. Ev " -"ji bo AIM,ICQ, Jabber, Sametime û Yahoo dixebite." +"ji bo AIM,ICQ, XMPP, Sametime û Yahoo dixebite." #: ../plugins/psychic.c:60 msgid "You feel a disturbance in the force..." @@ -1034,10 +1034,10 @@ #: ../plugins/raw.c:178 msgid "" -"Lets you send raw input to text-based protocols (Jabber, MSN, IRC, TOC). Hit " +"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 "" -"dihêle ku tu têketanên negihiştî bişînî protokolên nivîskî (Jabber, MSN, " +"dihêle ku tu têketanên negihiştî bişînî protokolên nivîskî (XMPP, MSN, " "IRC, TOC). ji bo şandinê 'Enter' bitikîne.li Paceya vebijartinê binhêre." #: ../plugins/relnot.c:63 @@ -2408,7 +2408,7 @@ #: ../src/gtkblist.c:3545 #, fuzzy msgid "Re-enable Account" -msgstr "Hesabeke Nû ya Jabber Biafirîne" +msgstr "Hesabeke Nû ya XMPP Biafirîne" #: ../src/gtkblist.c:3566 #, c-format @@ -3038,8 +3038,8 @@ msgstr "Hacker û pêşkêşkera sepandî [lazy bum]" #: ../src/gtkdialogs.c:101 -msgid "Jabber developer" -msgstr "Pêşvebirê Jabber" +msgid "XMPP developer" +msgstr "Pêşvebirê XMPP" #: ../src/gtkdialogs.c:102 msgid "original author" @@ -3239,7 +3239,7 @@ #: ../src/gtkdialogs.c:261 msgid "" "Gaim is a modular messaging client capable of using AIM, MSN, Yahoo!, " -"Jabber, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " +"XMPP, ICQ, IRC, SILC, Novell GroupWise, Lotus Sametime, Napster, Zephyr, " "and Gadu-Gadu all at once. It is written using GTK+.<BR><BR>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 " @@ -6210,8 +6210,8 @@ msgstr "Roja dayîkbûnê" #: ../src/protocols/jabber/buddy.c:567 ../src/protocols/jabber/buddy.c:568 -msgid "Edit Jabber vCard" -msgstr "VCarda Jabber serast bike" +msgid "Edit XMPP vCard" +msgstr "VCarda XMPP serast bike" #: ../src/protocols/jabber/buddy.c:569 msgid "" @@ -6307,7 +6307,7 @@ msgstr "Avakerên pêşkêşker: %s" #: ../src/protocols/jabber/buddy.c:1392 -msgid "Fill in one or more fields to search for any matching Jabber users." +msgid "Fill in one or more fields to search for any matching XMPP users." msgstr "" #: ../src/protocols/jabber/buddy.c:1411 ../src/protocols/novell/novell.c:1490 @@ -6316,8 +6316,8 @@ msgstr "Navnîşana E-peyamê" #: ../src/protocols/jabber/buddy.c:1420 ../src/protocols/jabber/buddy.c:1421 -msgid "Search for Jabber users" -msgstr "Bikarhênerên Jabber Bigere" +msgid "Search for XMPP users" +msgstr "Bikarhênerên XMPP Bigere" #: ../src/protocols/jabber/buddy.c:1435 msgid "Invalid Directory" @@ -6438,8 +6438,8 @@ msgstr "Girêdan venabe" #: ../src/protocols/jabber/jabber.c:520 ../src/protocols/jabber/jabber.c:857 -msgid "Invalid Jabber ID" -msgstr "ID'a Jabber a nederbasdar" +msgid "Invalid XMPP ID" +msgstr "ID'a XMPP a nederbasdar" #: ../src/protocols/jabber/jabber.c:590 #, c-format @@ -6485,8 +6485,8 @@ msgstr "Ji bo tomarbûnê, agahiyên li jêr biqedîne." #: ../src/protocols/jabber/jabber.c:821 ../src/protocols/jabber/jabber.c:822 -msgid "Register New Jabber Account" -msgstr "Hesabeke Nû ya Jabber Biafirîne" +msgid "Register New XMPP Account" +msgstr "Hesabeke Nû ya XMPP Biafirîne" #: ../src/protocols/jabber/jabber.c:983 msgid "Initializing Stream" @@ -6549,8 +6549,8 @@ msgstr "Şîfre (dîsa)" #: ../src/protocols/jabber/jabber.c:1317 ../src/protocols/jabber/jabber.c:1318