X-Git-Url: https://git.0d.be/?p=empathy.git;a=blobdiff_plain;f=src%2Fempathy-accounts-dialog.c;h=a00c1b5ebe8e82365f18e9f39523216a49bcf966;hp=c90074baad730a089e7760097d7ac75f181f302a;hb=647858dc34ec9786c88b22fea74fc45ff3bb14f6;hpb=cd277c0c7cbe0389c242abb58b995389000f3e53 diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index c90074ba..a00c1b5e 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -229,9 +229,11 @@ get_default_display_name (EmpathyAccountSettings *settings) /* To translators: The first parameter is the login id and the * second one is the server. The resulting string will be something - * like: "MyUserName on chat.freenode.net" */ - default_display_name = - g_strdup_printf (_("%s on %s"), login_id, server); + * like: "MyUserName on chat.freenode.net". + * You should reverse the order of these arguments if the + * server should come before the login id in your locale.*/ + default_display_name = g_strdup_printf (_("%1$s on %2$s"), + login_id, server); } else {