From 9586185a7c66799e08ac84b0f95822193fdd93fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 29 Sep 2014 13:24:08 +0200 Subject: [PATCH] HaikuDepot: Aligned stability rating names with web app. --- src/apps/haikudepot/ui/RatePackageWindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/haikudepot/ui/RatePackageWindow.cpp b/src/apps/haikudepot/ui/RatePackageWindow.cpp index 0d7dc46a89..d846b89dda 100644 --- a/src/apps/haikudepot/ui/RatePackageWindow.cpp +++ b/src/apps/haikudepot/ui/RatePackageWindow.cpp @@ -208,15 +208,15 @@ RatePackageWindow::RatePackageWindow(BWindow* parent, BRect frame, fStabilityCodes.Add(StabilityRating( B_TRANSLATE("Not specified"), "unspecified")); fStabilityCodes.Add(StabilityRating( - B_TRANSLATE("Mostly stable"), "mostly_stable")); + B_TRANSLATE("Mostly stable"), "mostlystable")); fStabilityCodes.Add(StabilityRating( B_TRANSLATE("Stable"), "stable")); fStabilityCodes.Add(StabilityRating( - B_TRANSLATE("Not stable, but usable"), "usable")); + B_TRANSLATE("Unstable but usable"), "unstablebutusable")); fStabilityCodes.Add(StabilityRating( - B_TRANSLATE("Unstable"), "unstable")); + B_TRANSLATE("Very unstable"), "veryunstable")); fStabilityCodes.Add(StabilityRating( - B_TRANSLATE("Does not start"), "does_not_start")); + B_TRANSLATE("Does not start"), "nostart")); add_stabilities_to_menu(fStabilityCodes, stabilityMenu); stabilityMenu->SetTargetForItems(this);