From f1babaa64d97e82eba145d53bd6b5167434e7aac Mon Sep 17 00:00:00 2001 From: Arnaud Bonatti Date: Thu, 16 Aug 2018 09:00:00 +0200 Subject: [PATCH] Use Yes/No for Forced range. --- editor/registry-info.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/registry-info.vala b/editor/registry-info.vala index 3d5df44..7de6350 100644 --- a/editor/registry-info.vala +++ b/editor/registry-info.vala @@ -159,7 +159,7 @@ private class RegistryInfo : Grid, BrowsableView || type_code == "x" || type_code == "t") // signed and unsigned 64 bits { range_type_is_range = ((RangeType) range_type) == RangeType.RANGE; - add_row_from_label (_("Forced range"), Key.cool_boolean_text_value (range_type_is_range)); + add_row_from_label (_("Forced range"), range_type_is_range ? _("Yes") : _("No")); } } -- 2.17.1