# HG changeset patch # User Sadrul Habib Chowdhury # Date 1178579669 0 # Node ID 955db6f31006014fe62218351067b517d5c2b9d2 # Parent bd0b946e6309f889429ca3fcabf60415d1c9d406 The name of the client is not translatable. Why were these made translatable? diff -r bd0b946e6309 -r 955db6f31006 finch/finch.c --- a/finch/finch.c Mon May 07 21:59:53 2007 +0000 +++ b/finch/finch.c Mon May 07 23:14:29 2007 +0000 @@ -274,7 +274,7 @@ } /* show version message */ if (opt_version) { - printf("%s %s\n", _("Finch"), VERSION); + printf("%s v%s.\n", "Finch", VERSION); return 0; } @@ -303,7 +303,7 @@ char *text = g_strdup_printf(_( "%s encountered errors migrating your settings " "from %s to %s. Please investigate and complete the " - "migration by hand. Please report this error at http://developer.pidgin.im"), _("Finch"), + "migration by hand. Please report this error at http://developer.pidgin.im"), "Finch", old, purple_user_dir()); g_free(old);