# HG changeset patch # User Luke Schierer # Date 1045495341 0 # Node ID 2427d847e39c9e0a254826967097e4008da2f822 # Parent 126134f70c30d1eddf42bcd7cf561c3596d31bc1 [gaim-migrate @ 4869] Matthew Smith (smigs) writes: " - spelling+spec.diff corrects "formated" to "formatted" in oscar.c & all the translations, and removes "--disable-artsc" from gaim.spec.in as that configure option no longer exists. - plugins.diff marks up the plugin descriptions and names with _() if it wasn't already present, and removes the differences between the two descriptions/names (i.e. *char name and desc.name) that were present for some plugins. I only did this for plugins that get compiled by default, though.. not much point in doing the others =P " committer: Tailor Script diff -r 126134f70c30 -r 2427d847e39c gaim.spec.in --- a/gaim.spec.in Sun Feb 16 22:00:09 2003 +0000 +++ b/gaim.spec.in Mon Feb 17 15:22:21 2003 +0000 @@ -45,7 +45,7 @@ %setup %build -CFLAGS="$RPM_OPT_FLAGS" ./configure %{CONFIG_FLAGS} --disable-artsc +CFLAGS="$RPM_OPT_FLAGS" ./configure %{CONFIG_FLAGS} make %install diff -r 126134f70c30 -r 2427d847e39c plugins/autorecon.c --- a/plugins/autorecon.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/autorecon.c Mon Feb 17 15:22:21 2003 +0000 @@ -55,7 +55,7 @@ struct gaim_plugin_description desc; G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("Autoreconnect"); + desc.name = g_strdup(_("Autoreconnect")); desc.version = g_strdup(VERSION); desc.description = g_strdup(_("When you are kicked offline, this reconnects you.")); desc.authors = g_strdup("Eric Warmenhoven <eric@warmenhoven.org>"); diff -r 126134f70c30 -r 2427d847e39c plugins/chatlist.c --- a/plugins/chatlist.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/chatlist.c Mon Feb 17 15:22:21 2003 +0000 @@ -404,9 +404,9 @@ struct gaim_plugin_description desc; struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("Chat List"); + desc.name = g_strdup(_("Chat List")); desc.version = g_strdup(VERSION); - desc.description = g_strdup("Allows you to add chat rooms to your buddy list."); + desc.description = g_strdup(_("Allows you to add chat rooms to your buddy list.")); desc.authors = g_strdup("Eric Warmenhoven <eric@warmenhoven.org>"); desc.url = g_strdup(WEBSITE); return &desc; @@ -414,11 +414,11 @@ G_MODULE_EXPORT char *name() { - return "Chat List"; + return _("Chat List"); } G_MODULE_EXPORT char *description() { - return "Allows you to add chat rooms to your buddy list. Click the configure button to choose" - " which rooms."; + return _("Allows you to add chat rooms to your buddy list. Click the configure button to choose" + " which rooms."); } diff -r 126134f70c30 -r 2427d847e39c plugins/docklet/docklet.c --- a/plugins/docklet/docklet.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/docklet/docklet.c Mon Feb 17 15:22:21 2003 +0000 @@ -498,7 +498,7 @@ struct gaim_plugin_description desc; struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup(_("Tray Icon")); + desc.name = g_strdup(_("System Tray Icon")); desc.version = g_strdup(VERSION); desc.description = g_strdup(_("Interacts with a Notification Area applet (in GNOME or KDE, for example) to display the current status of Gaim, allow fast access to commonly used functions, and to toggle display of the buddy list or login window. Also allows messages to be queued until the icon is clicked, similar to ICQ.")); desc.authors = g_strdup(_("Robert McQueen <robot101@debian.org>")); diff -r 126134f70c30 -r 2427d847e39c plugins/iconaway.c --- a/plugins/iconaway.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/iconaway.c Mon Feb 17 15:22:21 2003 +0000 @@ -74,7 +74,7 @@ } G_MODULE_EXPORT char *name() { - return _("Iconify On Away"); + return _("Iconify on away"); } G_MODULE_EXPORT char *description() { diff -r 126134f70c30 -r 2427d847e39c plugins/idle.c --- a/plugins/idle.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/idle.c Mon Feb 17 15:22:21 2003 +0000 @@ -78,7 +78,7 @@ struct gaim_plugin_description desc; struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("I'dle Mak'er"); + desc.name = g_strdup(_("I'dle Mak'er")); desc.version = g_strdup(VERSION); desc.description = g_strdup(_("Allows you to hand-configure how long you've been idle for")); desc.authors = g_strdup("Eric Warmenhoven <eric@warmenhoven.org>"); diff -r 126134f70c30 -r 2427d847e39c plugins/notify.c --- a/plugins/notify.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/notify.c Mon Feb 17 15:22:21 2003 +0000 @@ -583,21 +583,20 @@ struct gaim_plugin_description desc; struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("Message Notification"); + desc.name = g_strdup(_("Message Notification")); desc.version = g_strdup(VERSION); - desc.description = g_strdup("Provides a variety of ways of notifying you of unread messages."); + desc.description = g_strdup(_("Provides a variety of ways of notifying you of unread messages.")); desc.authors = g_strdup("Etan Reisner <deryni@eden.rutgers.edu>"); desc.url = g_strdup(WEBSITE); return &desc; } char *name() { - return "Visual Notification"; + return _("Message Notification"); } char *description() { - return "Puts an asterisk in the title bar of all conversations" - " where you have not responded to a message yet."; + return _("Provides a variety of ways of notifying you of unread messages."); } GtkWidget *gaim_plugin_config_gtk() { diff -r 126134f70c30 -r 2427d847e39c plugins/spellchk.c --- a/plugins/spellchk.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/spellchk.c Mon Feb 17 15:22:21 2003 +0000 @@ -392,20 +392,20 @@ struct gaim_plugin_description desc; G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("Text replacement"); + desc.name = g_strdup(_("Text replacement")); desc.version = g_strdup(VERSION); - desc.description = g_strdup("Replaces text in outgoing messages according to user-defined rules."); + desc.description = g_strdup(_("Replaces text in outgoing messages according to user-defined rules.")); desc.authors = g_strdup("Eric Warmehoven <eric@warmenhoven.org>"); desc.url = g_strdup(WEBSITE); return &desc; } G_MODULE_EXPORT char *name() { - return "IM Spell Check"; + return _("Text replacement"); } G_MODULE_EXPORT char *description() { - return "Watches outgoing IM text and corrects common spelling errors."; + return _("Replaces text in outgoing messages according to user-defined rules."); } G_MODULE_EXPORT GtkWidget *gaim_plugin_config_gtk() diff -r 126134f70c30 -r 2427d847e39c plugins/ticker/ticker.c --- a/plugins/ticker/ticker.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/ticker/ticker.c Mon Feb 17 15:22:21 2003 +0000 @@ -411,11 +411,11 @@ */ G_MODULE_EXPORT char *name() { - return "Buddy Ticker"; + return _("Buddy Ticker"); } G_MODULE_EXPORT char *description() { - return "Scrolls online buddies from your buddy list."; + return _("A horizontal scrolling version of the buddy list"); } G_MODULE_EXPORT char *gaim_plugin_init(GModule *h) { @@ -437,9 +437,9 @@ struct gaim_plugin_description desc; G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("Ticker"); + desc.name = g_strdup(_("Buddy Ticker")); desc.version = g_strdup(VERSION); - desc.description = g_strdup("A horizontal scrolling version of the buddy list."); + desc.description = g_strdup(_("A horizontal scrolling version of the buddy list.")); desc.authors = g_strdup("Syd Logan"); desc.url = g_strdup(WEBSITE); return &desc; diff -r 126134f70c30 -r 2427d847e39c po/POTFILES.in --- a/po/POTFILES.in Sun Feb 16 22:00:09 2003 +0000 +++ b/po/POTFILES.in Mon Feb 17 15:22:21 2003 +0000 @@ -1,11 +1,12 @@ plugins/docklet/docklet.c +plugins/ticker/ticker.c plugins/autorecon.c plugins/chatlist.c -plugins/gtik.c plugins/history.c plugins/iconaway.c plugins/idle.c plugins/notify.c +plugins/spellchk.c plugins/timestamp.c src/protocols/gg/gg.c src/protocols/icq/gaim_icq.c diff -r 126134f70c30 -r 2427d847e39c po/bg.po --- a/po/bg.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/bg.po Mon Feb 17 15:22:21 2003 +0000 @@ -2043,7 +2043,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/cs.po --- a/po/cs.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/cs.po Mon Feb 17 15:22:21 2003 +0000 @@ -2070,7 +2070,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/da.po --- a/po/da.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/da.po Mon Feb 17 15:22:21 2003 +0000 @@ -2057,7 +2057,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/de.po --- a/po/de.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/de.po Mon Feb 17 15:22:21 2003 +0000 @@ -2061,7 +2061,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" "Ihre Benutzername wird zur Zeit wie folgt formatiert:\n" diff -r 126134f70c30 -r 2427d847e39c po/es.po --- a/po/es.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/es.po Mon Feb 17 15:22:21 2003 +0000 @@ -2058,7 +2058,7 @@ #: src/protocols/oscar/oscar.c:3621 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" "El formato de su nombre de usuario es actualmente el siguiente:\n" diff -r 126134f70c30 -r 2427d847e39c po/fi.po --- a/po/fi.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/fi.po Mon Feb 17 15:22:21 2003 +0000 @@ -2021,7 +2021,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/fr.po --- a/po/fr.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/fr.po Mon Feb 17 15:22:21 2003 +0000 @@ -2108,7 +2108,7 @@ #: src/protocols/oscar/oscar.c:3636 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" "Votre nom est actuellement affiché comme cela :\n" diff -r 126134f70c30 -r 2427d847e39c po/hu.po --- a/po/hu.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/hu.po Mon Feb 17 15:22:21 2003 +0000 @@ -2050,7 +2050,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/it.po --- a/po/it.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/it.po Mon Feb 17 15:22:21 2003 +0000 @@ -2060,7 +2060,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/ja.po --- a/po/ja.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/ja.po Mon Feb 17 15:22:21 2003 +0000 @@ -2024,7 +2024,7 @@ #: src/protocols/oscar/oscar.c:3595 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" "¤¢¤Ê¤¿¤Î¥¹¥¯¥ê¡¼¥ó̾¤Ï¡¢¸½ºß¼¡¤Î¤è¤¦¤ËÀ°·Á¤µ¤ì¤Æ¤¤¤Þ¤¹:\n" diff -r 126134f70c30 -r 2427d847e39c po/ko.po --- a/po/ko.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/ko.po Mon Feb 17 15:22:21 2003 +0000 @@ -2024,7 +2024,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/nl.po --- a/po/nl.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/nl.po Mon Feb 17 15:22:21 2003 +0000 @@ -2104,7 +2104,7 @@ #: src/protocols/oscar/oscar.c:3663 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" "Uw gebruikersnaam wordt op het moment als volgt weergegeven:\n" diff -r 126134f70c30 -r 2427d847e39c po/pl.po --- a/po/pl.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/pl.po Mon Feb 17 15:22:21 2003 +0000 @@ -2019,7 +2019,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/ro.po --- a/po/ro.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/ro.po Mon Feb 17 15:22:21 2003 +0000 @@ -2067,7 +2067,7 @@ #: src/protocols/oscar/oscar.c:3663 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" "Numele ales vã este formatat dupã cum urmeazã:\n" diff -r 126134f70c30 -r 2427d847e39c po/ru.po --- a/po/ru.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/ru.po Mon Feb 17 15:22:21 2003 +0000 @@ -2053,7 +2053,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/sk.po --- a/po/sk.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/sk.po Mon Feb 17 15:22:21 2003 +0000 @@ -2069,7 +2069,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/sv.po --- a/po/sv.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/sv.po Mon Feb 17 15:22:21 2003 +0000 @@ -2,7 +2,7 @@ # Copyright (C) 2001, 2002 Free Software Foundation, Inc. # Christian Rose , 2001. # -# $Id: sv.po 4558 2003-01-12 02:20:28Z lschiere $ +# $Id: sv.po 4869 2003-02-17 15:22:21Z lschiere $ # msgid "" msgstr "" @@ -2045,7 +2045,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/zh_CN.po --- a/po/zh_CN.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/zh_CN.po Mon Feb 17 15:22:21 2003 +0000 @@ -2088,7 +2088,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c po/zh_TW.po --- a/po/zh_TW.po Sun Feb 16 22:00:09 2003 +0000 +++ b/po/zh_TW.po Mon Feb 17 15:22:21 2003 +0000 @@ -2011,7 +2011,7 @@ #: src/protocols/oscar/oscar.c:3521 #, c-format msgid "" -"Your screen name is currently formated as follows:\n" +"Your screen name is currently formatted as follows:\n" "%s" msgstr "" diff -r 126134f70c30 -r 2427d847e39c src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Feb 16 22:00:09 2003 +0000 +++ b/src/protocols/oscar/oscar.c Mon Feb 17 15:22:21 2003 +0000 @@ -3660,7 +3660,7 @@ } if (sn) { - char *dialog_msg = g_strdup_printf(_("Your screen name is currently formated as follows:\n%s"), sn); + char *dialog_msg = g_strdup_printf(_("Your screen name is currently formatted as follows:\n%s"), sn); do_error_dialog(_("Account Info"), dialog_msg, GAIM_INFO); g_free(dialog_msg); }