Remove the translation text from the button label in FSUtils.cpp for the Tracker alert dialog that pops up when you try to move or rename an important system folder. The translation text is already provided in another place. Thanks humdinger.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43200 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
John Scipione
2011-11-06 10:08:18 +00:00
parent 60ba75c5ec
commit a86a5aef5d
+1 -3
View File
@@ -702,9 +702,7 @@ ConfirmChangeIfWellKnownDirectory(const BEntry *entry,
warning.ReplaceFirst("%toDoAction", toDoAction);
warning.ReplaceFirst("%toConfirmAction", toConfirmAction);
BString buttonLabel(B_TRANSLATE_COMMENT("%toConfirmAction",
"Action label for the button, e.g. Rename"));
buttonLabel.ReplaceFirst("%toConfirmAction", toConfirmAction);
BString buttonLabel(toConfirmAction);
OverrideAlert *alert = new OverrideAlert("", warning.String(),
buttonLabel.String(), (requireOverride ? B_SHIFT_KEY : 0),