[haiku-commits] r38630 - haiku/trunk/src/preferences/filetypes

  • From: philippe.houdoin@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 13 Sep 2010 15:28:01 +0200 (CEST)

Author: phoudoin
Date: 2010-09-13 15:28:01 +0200 (Mon, 13 Sep 2010)
New Revision: 38630
Changeset: http://dev.haiku-os.org/changeset/38630
Ticket: http://dev.haiku-os.org/ticket/6443

Modified:
   haiku/trunk/src/preferences/filetypes/FileTypesWindow.cpp
Log:
Patch by diver: "Add" button wasn't localizable. Closes ticket #6443.
Thanks!


Modified: haiku/trunk/src/preferences/filetypes/FileTypesWindow.cpp
===================================================================
--- haiku/trunk/src/preferences/filetypes/FileTypesWindow.cpp   2010-09-13 
13:02:29 UTC (rev 38629)
+++ haiku/trunk/src/preferences/filetypes/FileTypesWindow.cpp   2010-09-13 
13:28:01 UTC (rev 38630)
@@ -478,7 +478,7 @@
        fAttributeBox->SetLabel(B_TRANSLATE("Extra attributes"));
 
        fAddAttributeButton = new BButton("add attr",
-               "Add" B_UTF8_ELLIPSIS, new BMessage(kMsgAddAttribute));
+               B_TRANSLATE("Add" B_UTF8_ELLIPSIS), new 
BMessage(kMsgAddAttribute));
        fAddAttributeButton->SetExplicitMaxSize(
                BSize(B_SIZE_UNLIMITED, B_SIZE_UNSET));
 


Other related posts:

  • » [haiku-commits] r38630 - haiku/trunk/src/preferences/filetypes - philippe . houdoin