Author: jtn
Date: Tue Dec  8 23:18:23 2015
New Revision: 30907

URL: http://svn.gna.org/viewcvs/freeciv?rev=30907&view=rev
Log:
Use Q_() on strings qualified by patch #6628.
Make string qualifiers the same as S2_6/trunk.

Missing Q_() reported by vla22.

See gna bug #24140.

Modified:
    branches/S2_5/server/cityturn.c
    branches/S2_5/server/diplhand.c
    branches/S2_5/server/techtools.c

Modified: branches/S2_5/server/cityturn.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/server/cityturn.c?rev=30907&r1=30906&r2=30907&view=diff
==============================================================================
--- branches/S2_5/server/cityturn.c     (original)
+++ branches/S2_5/server/cityturn.c     Tue Dec  8 23:18:23 2015
@@ -1682,11 +1682,11 @@
 
         notify_player(pplayer, NULL, E_TECH_GAIN, ftc_server,
                       /* TRANS: Tech from building (Darwin's Voyage) */
-                      _("?frombldng:Acquired %s from %s."), adv_name, 
provider);
+                      Q_("?frombldg:Acquired %s from %s."), adv_name, 
provider);
 
         notify_embassies(pplayer, NULL, NULL, E_TECH_GAIN, ftc_server,
                          /* TRANS: Tech from building (Darwin's Voyage) */
-                         _("?frombldng:The %s have acquired %s from %s."),
+                         Q_("?frombldg:The %s have acquired %s from %s."),
                          nation_plural_for_player(pplayer), adv_name,
                          provider);
       }

Modified: branches/S2_5/server/diplhand.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/server/diplhand.c?rev=30907&r1=30906&r2=30907&view=diff
==============================================================================
--- branches/S2_5/server/diplhand.c     (original)
+++ branches/S2_5/server/diplhand.c     Tue Dec  8 23:18:23 2015
@@ -452,7 +452,7 @@
         if (tech_transfer(pdest, pgiver, pclause->value)) {
           notify_embassies(pdest, pgiver, NULL, E_TECH_GAIN, ftc_server,
                            /* TRANS: Tech from another player */
-                           _("?fromplr:The %s have acquired %s from the %s."),
+                           Q_("?fromplr:The %s have acquired %s from the %s."),
                            nation_plural_for_player(pdest),
                            advance_name_for_player(pdest, pclause->value),
                            nation_plural_for_player(pgiver));

Modified: branches/S2_5/server/techtools.c
URL: 
http://svn.gna.org/viewcvs/freeciv/branches/S2_5/server/techtools.c?rev=30907&r1=30906&r2=30907&view=diff
==============================================================================
--- branches/S2_5/server/techtools.c    (original)
+++ branches/S2_5/server/techtools.c    Tue Dec  8 23:18:23 2015
@@ -188,8 +188,9 @@
                         advance_name_for_player(pplayer, i),
                         astr_str(&effects));
           notify_embassies(pplayer, NULL, NULL, E_TECH_GAIN, ftc_server,
-                           /* TRANS: Tech from source of an effect (Great 
Library) */
-                           _("?fromeffect:The %s have acquired %s from %s."),
+                           /* TRANS: Tech from source of an effect
+                            * (Great Library) */
+                           Q_("?fromeffect:The %s have acquired %s from %s."),
                            nation_plural_for_player(pplayer),
                            advance_name_for_player(pplayer, i),
                            astr_str(&effects));


_______________________________________________
Freeciv-commits mailing list
Freeciv-commits@gna.org
https://mail.gna.org/listinfo/freeciv-commits

Reply via email to