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

The translation qualifiers introduced for PR#39997 in PR#39998 weren't
automatically removed by code elsewhere.

Index: client/gui-gtk-2.0/gui_stuff.c
===================================================================
--- client/gui-gtk-2.0/gui_stuff.c      (revision 14211)
+++ client/gui-gtk-2.0/gui_stuff.c      (working copy)
@@ -125,7 +125,7 @@
 
   if (!*done) {
     for(i=0; i<n; i++) {
-      s[i] = _(s[i]);
+      s[i] = Q_(s[i]);
     }
 
     *done = TRUE;
Index: client/gui-win32/repodlgs.c
===================================================================
--- client/gui-win32/repodlgs.c (revision 14211)
+++ client/gui-win32/repodlgs.c (working copy)
@@ -727,12 +727,12 @@
                           TRUE,TRUE,20);
       fcwin_box_add_box(vbox,hbox,FALSE,FALSE,10);
       lvc.mask=LVCF_TEXT;
-      lvc.pszText=_(headers[0]);
+      lvc.pszText=Q_(headers[0]);
       ListView_InsertColumn(lv,0,&lvc);
       for(i=1;i<AU_COL;i++) {
        lvc.mask=LVCF_TEXT | LVCF_FMT;
        lvc.fmt=LVCFMT_RIGHT;
-       lvc.pszText=_(headers[i]);
+       lvc.pszText=Q_(headers[i]);
        ListView_InsertColumn(lv,i,&lvc);
       }
       for(i=0;i<AU_COL;i++) {
_______________________________________________
Freeciv-dev mailing list
Freeciv-dev@gna.org
https://mail.gna.org/listinfo/freeciv-dev

Reply via email to