diff options
author | Jonathan Tellier <jonathan.tellier@gmail.com> | 2009-08-28 01:33:12 +0800 |
---|---|---|
committer | jtellier <jonathan.tellier@collabora.co.uk> | 2009-08-28 03:58:18 +0800 |
commit | 4757ddf6444718f9d627579e793fa2429e8b4822 (patch) | |
tree | ccca324ea878d72c53357c2c4287eaadbb39a6ff /src/empathy-accounts-dialog.c | |
parent | 461d3fa83d2608eccc5013e3af5669fa6b11e33c (diff) | |
download | gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.tar gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.tar.gz gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.tar.bz2 gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.tar.lz gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.tar.xz gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.tar.zst gsoc2013-empathy-4757ddf6444718f9d627579e793fa2429e8b4822.zip |
Improved the comment related to the IRC default display name.
- Added more indication intended to translators
- Added the possibility to swap the parameted in the string "%s on %s"
(where the first argument in the login id and the second one is the
server)
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 { |