# HG changeset patch # User Richard Laager # Date 1181835230 0 # Node ID 55ff2a39244e035f33ae5d864b9e4b18424d53d1 # Parent 2f35d56d2add7e870ef289989377f1aa5b15c79c Remove the use of compiler string concatenation in a translatable string to avoid having gettext cut the string off. Fixes #1679 diff -r 2f35d56d2add -r 55ff2a39244e pidgin/plugins/relnot.c --- a/pidgin/plugins/relnot.c Thu Jun 14 15:33:28 2007 +0000 +++ b/pidgin/plugins/relnot.c Thu Jun 14 15:33:50 2007 +0000 @@ -70,8 +70,9 @@ message = g_string_new(""); g_string_append_printf(message, _("You are using %s version %s. The " "current version is %s. You can get it from " - "" PURPLE_WEBSITE "
"), - PIDGIN_NAME, purple_core_get_version(), cur_ver); + "%s
"), + PIDGIN_NAME, purple_core_get_version(), cur_ver, + PURPLE_WEBSITE, PURPLE_WEBSITE); if(*changelog) { formatted = purple_strdup_withhtml(changelog);