summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2021-08-05 15:24:58 +0200
committerBastien Nocera <hadess@hadess.net>2021-08-09 13:31:12 +0000
commit2b7cccf13ba3e4ba655812995aae1fe9d93a69ac (patch)
treea26fcfe343b334560b293f11492b363cfb973228
parentbbf22d4919f3e58e076a40bfc42b4962440c25a4 (diff)
downloadgnome-control-center-2b7cccf13ba3e4ba655812995aae1fe9d93a69ac.tar.gz
power: Update power profile labels
Use "Balanced" instead of "Balanced Power", and make sure to add a context for all the profiles for translators. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4530#note_1243075
-rw-r--r--panels/power/cc-power-profile-row.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/panels/power/cc-power-profile-row.c b/panels/power/cc-power-profile-row.c
index 9d7f1fe6b..f290caa10 100644
--- a/panels/power/cc-power-profile-row.c
+++ b/panels/power/cc-power-profile-row.c
@@ -181,15 +181,15 @@ cc_power_profile_row_new (CcPowerProfile power_profile)
switch (self->power_profile)
{
case CC_POWER_PROFILE_PERFORMANCE:
- text = _("Performance");
+ text = C_("Power profile", "Performance");
subtext = _("High performance and power usage.");
break;
case CC_POWER_PROFILE_BALANCED:
- text = _("Balanced");
+ text = C_("Power profile", "Balanced");
subtext = _("Standard performance and power usage.");
break;
case CC_POWER_PROFILE_POWER_SAVER:
- text = _("Power Saver");
+ text = C_("Power profile", "Power Saver");
subtext = _("Reduced performance and power usage.");
break;
default: