Complete.Org: Mailing Lists: Archives: freeciv-dev: February 2005:
[Freeciv-Dev] (PR#12083) unused translations
Home

[Freeciv-Dev] (PR#12083) unused translations

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: chrisk@xxxxxxxxx
Subject: [Freeciv-Dev] (PR#12083) unused translations
From: "Mateusz Stefek" <mstefek@xxxxxxxxx>
Date: Tue, 8 Feb 2005 01:12:03 -0800
Reply-to: bugs@xxxxxxxxxxx

<URL: http://bugs.freeciv.org/Ticket/Display.html?id=12083 >

a patch
Why would anyone use N_() here?
--
mateusz
Index: stdinhand.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/server/stdinhand.c,v
retrieving revision 1.383
diff -u -r1.383 stdinhand.c
--- stdinhand.c 5 Feb 2005 07:15:38 -0000       1.383
+++ stdinhand.c 8 Feb 2005 09:07:32 -0000
@@ -1907,16 +1907,16 @@
     case SSET_NONE:
       break;
     case SSET_ALL:
-      cmd_reply_show(N_("All options"));
+      cmd_reply_show(_("All options"));
       break;
     case SSET_VITAL:
-      cmd_reply_show(N_("Vital options"));
+      cmd_reply_show(_("Vital options"));
       break;
     case SSET_SITUATIONAL:
-      cmd_reply_show(N_("Situational options"));
+      cmd_reply_show(_("Situational options"));
       break;
     case SSET_RARE:
-      cmd_reply_show(N_("Rarely used options"));
+      cmd_reply_show(_("Rarely used options"));
       break;
   }
   cmd_reply_show(_("+ means you may change the option"));

[Prev in Thread] Current Thread [Next in Thread]