wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src filechooser.cpp help.cpp show_dialo...


From: ott
Subject: [Wesnoth-cvs-commits] wesnoth/src filechooser.cpp help.cpp show_dialo...
Date: Sat, 16 Apr 2005 15:43:47 -0400

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     ott <address@hidden>    05/04/16 19:43:47

Modified files:
        src            : filechooser.cpp help.cpp show_dialog.cpp 

Log message:
        "Ok" -> "OK" to make usage consistent (with the dictionary, too).

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/filechooser.cpp.diff?tr1=1.8&tr2=1.9&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/help.cpp.diff?tr1=1.90&tr2=1.91&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/show_dialog.cpp.diff?tr1=1.124&tr2=1.125&r1=text&r2=text

Patches:
Index: wesnoth/src/filechooser.cpp
diff -u wesnoth/src/filechooser.cpp:1.8 wesnoth/src/filechooser.cpp:1.9
--- wesnoth/src/filechooser.cpp:1.8     Thu Mar 24 21:35:50 2005
+++ wesnoth/src/filechooser.cpp Sat Apr 16 19:43:47 2005
@@ -35,7 +35,7 @@
                yloc = scr->h / 2 - height / 2;
        }
        std::vector<gui::button*> buttons_ptr;
-       gui::button ok_button_(disp.video(), _("Ok"));
+       gui::button ok_button_(disp.video(), _("OK"));
        gui::button cancel_button_(disp.video(), _("Cancel"));
        buttons_ptr.push_back(&ok_button_);
        buttons_ptr.push_back(&cancel_button_);
Index: wesnoth/src/help.cpp
diff -u wesnoth/src/help.cpp:1.90 wesnoth/src/help.cpp:1.91
--- wesnoth/src/help.cpp:1.90   Sat Apr  9 12:09:49 2005
+++ wesnoth/src/help.cpp        Sat Apr 16 19:43:47 2005
@@ -1392,7 +1392,7 @@
 
 std::string generate_traits_text()
 {
-       // Ok, this didn't go as well as I thought since the information
+       // OK, this didn't go as well as I thought since the information
        // generated from this is rather short and not suitable for the help
        // system. Hence, this method is not used currently :).
        std::stringstream ss;
Index: wesnoth/src/show_dialog.cpp
diff -u wesnoth/src/show_dialog.cpp:1.124 wesnoth/src/show_dialog.cpp:1.125
--- wesnoth/src/show_dialog.cpp:1.124   Mon Apr  4 20:05:58 2005
+++ wesnoth/src/show_dialog.cpp Sat Apr 16 19:43:47 2005
@@ -1,4 +1,4 @@
-/* $Id: show_dialog.cpp,v 1.124 2005/04/04 20:05:58 ydirson Exp $ */
+/* $Id: show_dialog.cpp,v 1.125 2005/04/16 19:43:47 ott Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -406,7 +406,7 @@
                        break;
 
                case OK_ONLY: {
-                       static const char* thebuttons[] = { N_("Ok"), "" };
+                       static const char* thebuttons[] = { N_("OK"), "" };
                        button_list = thebuttons;
                        break;
                }
@@ -419,7 +419,7 @@
                }
 
                case OK_CANCEL: {
-                       static const char* thebuttons[] = { N_("Ok"),
+                       static const char* thebuttons[] = { N_("OK"),
                                                            N_("Cancel"),""};
                        button_list = thebuttons;
                        break;




reply via email to

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