From d56b19da1a8fc68e38a0875eaaae41cebe577fbd Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Tue, 28 Jan 2020 14:25:09 +0000 Subject: [PATCH] =?UTF-8?q?malcontent-control:=20Relabel=20=E2=80=98no=20r?= =?UTF-8?q?estriction=E2=80=99=20entry=20for=20OARS=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘All Ages’ is perhaps a bit clearer than ‘No Restriction’. Signed-off-by: Philip Withnall --- malcontent-control/user-controls.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/malcontent-control/user-controls.c b/malcontent-control/user-controls.c index 1cc07a9..02e7acd 100644 --- a/malcontent-control/user-controls.c +++ b/malcontent-control/user-controls.c @@ -237,7 +237,7 @@ update_categories_from_language (MctUserControls *self) g_menu_remove_all (self->age_menu); disabled_action = g_strdup_printf ("permissions.set-age(uint32 %u)", oars_disabled_age); - g_menu_append (self->age_menu, _("No Restriction"), disabled_action); + g_menu_append (self->age_menu, _("All Ages"), disabled_action); for (i = 0; entries[i] != NULL; i++) { @@ -310,7 +310,7 @@ update_oars_level (MctUserControls *self) /* Unrestricted? */ if (rating_age_category == NULL || all_categories_unset) - rating_age_category = _("No Restriction"); + rating_age_category = _("All Ages"); gtk_button_set_label (self->restriction_button, rating_age_category); } @@ -603,7 +603,7 @@ on_set_age_action_activated (GSimpleAction *action, /* Update the button */ if (age == oars_disabled_age) - gtk_button_set_label (self->restriction_button, _("No Restriction")); + gtk_button_set_label (self->restriction_button, _("All Ages")); for (i = 0; age != oars_disabled_age && entries[i] != NULL; i++) {