Page 1 of 1

Patch: Spelling in about dialog [Added]

Posted: Sat Oct 24, 2009 7:59 pm
by omalleypat
Contributors is spelled wrong in the about dialog...not sure if changing this messes up translations, so can someone else check it out?

Code: Select all

Index: src/aboutdialog.cpp
===================================================================
--- src/aboutdialog.cpp	(revision 662)
+++ src/aboutdialog.cpp	(working copy)
@@ -161,7 +161,7 @@
        itemBoxSizer4->Add(itemStaticText8, 0, wxALIGN_CENTER_HORIZONTAL|wxALL|wxADJUST_MINSIZE, 5);
 
        wxStaticText* itemStaticText91 = new wxStaticText( itemDialog1, 
-          wxID_STATIC, _("  and contributers from around the world."), 
+          wxID_STATIC, _("  and contributors from around the world."), 
           wxDefaultPosition, wxDefaultSize, 0 );
        itemBoxSizer4->Add(itemStaticText91, 0, wxALIGN_CENTER_HORIZONTAL|wxALL|wxADJUST_MINSIZE, 5);
 
@@ -187,7 +187,7 @@
        itemBoxSizer4->Add(itemButton14, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
 
        wxButton* itemButton18 = new wxButton( itemDialog1, ID_DIALOG_BUTTON_ABOUT_CONTRIBUTERS, 
-          _("Contributers"), 
+          _("Contributors"), 
           wxDefaultPosition, wxDefaultSize, 0 );
        itemBoxSizer4->Add(itemButton18, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);

Re: Patch: Spelling in about dialog

Posted: Sun Oct 25, 2009 3:10 pm
by Nikolay
669