[gaim-migrate @ 15736]

Wed, 01 Mar 2006 07:17:39 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Wed, 01 Mar 2006 07:17:39 +0000
changeset 13364
b33c3d9aa7c9
parent 13363
d64e626254cc
child 13365
8e6ae65497ef

[gaim-migrate @ 15736]
Emil Nowak pointed out that the names of other IM clients shouldn't be marked for translation. I did some checking and it seems the creators of those clients don't translate the names. I thought perhaps MSN Messenger would be, for example. Also, I noticed that the logout notifications should be reworded to match the string we use now in the buddy state notification plugin. This reuses an existing string, so it doesn't break the string freeze. I really need to get back to work on this plugin.

plugins/log_reader.c file | annotate | diff | comparison | revisions
--- a/plugins/log_reader.c	Wed Mar 01 06:57:54 2006 +0000
+++ b/plugins/log_reader.c	Wed Mar 01 07:17:39 2006 +0000
@@ -1420,10 +1420,10 @@
 					} else if (strstr(line, " signed off ")) {
 						if (buddy->alias)
 							g_string_append_printf(formatted,
-								_("%s logged out."), buddy->alias);
+								_("%s has signed off."), buddy->alias);
 						else
 							g_string_append_printf(formatted,
-								_("%s logged out."), log->name);
+								_("%s has signed off."), log->name);
 						line = "";
 					} else if (strstr(line, " signed on ")) {
 						if (buddy->alias)
@@ -1927,23 +1927,23 @@
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	ppref = gaim_plugin_pref_new_with_name_and_label(
-		"/plugins/core/log_reader/adium/log_directory", _("Adium"));
+		"/plugins/core/log_reader/adium/log_directory", "Adium");
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	ppref = gaim_plugin_pref_new_with_name_and_label(
-		"/plugins/core/log_reader/fire/log_directory", _("Fire"));
+		"/plugins/core/log_reader/fire/log_directory", "Fire");
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	ppref = gaim_plugin_pref_new_with_name_and_label(
-		"/plugins/core/log_reader/messenger_plus/log_directory", _("Messenger Plus!"));
+		"/plugins/core/log_reader/messenger_plus/log_directory", "Messenger Plus!");
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	ppref = gaim_plugin_pref_new_with_name_and_label(
-		"/plugins/core/log_reader/msn/log_directory", _("MSN Messenger"));
+		"/plugins/core/log_reader/msn/log_directory", "MSN Messenger");
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	ppref = gaim_plugin_pref_new_with_name_and_label(
-		"/plugins/core/log_reader/trillian/log_directory", _("Trillian"));
+		"/plugins/core/log_reader/trillian/log_directory", "Trillian");
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	return frame;

mercurial