diff src/gaimrc.c @ 6321:3613007cbb6e

[gaim-migrate @ 6820] Bjoern Voigt: "I've updated the German translation and fixed some i18n bugs. The file i18n16.patch contains: - updated German translation - translation of the "boring default" away message works again - marked some forgotten error messages as translatable" Guntupalli Karunakar gave me a Hindi translation and Vincent van Adrighem updated the dutch translation. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 29 Jul 2003 02:27:33 +0000
parents 0eead37020bb
children 8f94cce8faa5
line wrap: on
line diff
--- a/src/gaimrc.c	Mon Jul 28 22:53:14 2003 +0000
+++ b/src/gaimrc.c	Tue Jul 29 02:27:33 2003 +0000
@@ -366,7 +366,7 @@
 	if (!away_messages) {
 		a = g_new0(struct away_message, 1);
 		g_snprintf(a->name, sizeof(a->name), _("boring default"));
-		g_snprintf(a->message, sizeof(a->message), "%s", BORING_DEFAULT_AWAY_MSG);
+		g_snprintf(a->message, sizeof(a->message), "%s", _(BORING_DEFAULT_AWAY_MSG));
 		away_messages = g_slist_append(away_messages, a);
 	}
 	gaim_status_sync();
@@ -1598,7 +1598,7 @@
 	auto_away = 10;
 	a = g_new0(struct away_message, 1);
 	g_snprintf(a->name, sizeof(a->name), _("boring default"));
-	g_snprintf(a->message, sizeof(a->message), "%s", BORING_DEFAULT_AWAY_MSG);
+	g_snprintf(a->message, sizeof(a->message), "%s", _(BORING_DEFAULT_AWAY_MSG));
 	away_messages = g_slist_append(away_messages, a);
 	default_away = a;