diff options
Diffstat (limited to 'src/empathy-accounts-dialog.c')
-rw-r--r-- | src/empathy-accounts-dialog.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 1cb903ec0..74c9e7bd5 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -201,9 +201,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 { |