From 3c018b5f64130b7bee821db8c3adc3e1235eb2e7 Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Sun, 5 Jun 2011 17:56:25 +0000 Subject: [PATCH] Added missing localization macros.+alpha git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41941 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/packageinstaller/PackageView.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/apps/packageinstaller/PackageView.cpp b/src/apps/packageinstaller/PackageView.cpp index ca321516db..e65a029d0d 100644 --- a/src/apps/packageinstaller/PackageView.cpp +++ b/src/apps/packageinstaller/PackageView.cpp @@ -375,10 +375,10 @@ PackageView::ItemExists(PackageItem &item, BPath &path, int32 &policy) BString actionString; if (choice == P_EXISTS_OVERWRITE) { alertString << B_TRANSLATE("All existing files will be replaced?"); - actionString = "Replace all"; + actionString = B_TRANSLATE("Replace all"); } else { alertString << B_TRANSLATE("All existing files will be skipped?"); - actionString = "Skip all"; + actionString = B_TRANSLATE("Skip all"); } alert = new BAlert("policy_decision", alertString.String(), actionString.String(), B_TRANSLATE("Ask again")); @@ -410,7 +410,7 @@ PackageView::_InitView() description->MakeEditable(false); description->MakeSelectable(false); - fInstallTypes = new BPopUpMenu("none"); + fInstallTypes = new BPopUpMenu(B_TRANSLATE("none")); BMenuField *installType = new BMenuField("install_type", B_TRANSLATE("Installation type:"), fInstallTypes, 0); @@ -487,7 +487,7 @@ PackageView::_InitView() rect.bottom += 100; BBox *installBox = new BBox(rect.InsetByCopy(2, 2), "install_box"); - fInstallTypes = new BPopUpMenu("none"); + fInstallTypes = new BPopUpMenu(B_TRANSLATE("none")); BMenuField *installType = new BMenuField(BRect(2, 2, 100, 50), "install_type", B_TRANSLATE("Installation type:"), @@ -519,7 +519,7 @@ PackageView::_InitView() AddChild(installBox); - fDestination = new BPopUpMenu("none"); + fDestination = new BPopUpMenu(B_TRANSLATE("none")); rect = installBox->Frame(); rect.top = rect.bottom + 5;