]> git.0d.be Git - empathy.git/commitdiff
Improved the comment related to the IRC default display name.
authorJonathan Tellier <jonathan.tellier@gmail.com>
Thu, 27 Aug 2009 17:33:12 +0000 (13:33 -0400)
committerjtellier <jonathan.tellier@collabora.co.uk>
Thu, 27 Aug 2009 19:58:18 +0000 (15:58 -0400)
- 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)

src/empathy-accounts-dialog.c

index 1cb903ec02a8534fcbf6deb2c64be666ba8bb3f0..74c9e7bd5d7e59364ea85a2eed0baede1fe0f346 100644 (file)
@@ -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
         {