changeset 13363:ef5287de40b5

[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. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 01 Mar 2006 07:17:39 +0000
parents f33077f19b60
children 3b7abce487f5
files plugins/log_reader.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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;