From 908e3ae3632424bce2403a05148097d484eb43cb Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Mon, 30 Nov 2020 10:08:03 +0100 Subject: [PATCH] [chore] Don't translate numbers (#6928) Cross-ref to . --- frontend/ui/data/koptoptions.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/ui/data/koptoptions.lua b/frontend/ui/data/koptoptions.lua index 00ef3962e..833e85bfb 100644 --- a/frontend/ui/data/koptoptions.lua +++ b/frontend/ui/data/koptoptions.lua @@ -140,7 +140,7 @@ In 'semi-auto' and 'manual' modes, you may need to define areas once on an odd p show_true_value_func = function(str) return string.format("%.1f", str) end, - toggle = {_("1"), _("2"), _("3"), _("4"), _("5"), _("6"), _("7"), _("8")}, + toggle = {"1", "2", "3", "4", "5", "6", "7", "8"}, more_options = true, more_options_param = { value_step = 0.1, value_hold_step = 1, @@ -165,7 +165,7 @@ In 'semi-auto' and 'manual' modes, you may need to define areas once on an odd p show_true_value_func = function(str) return string.format("%.1f", str) end, - toggle = {_("0.7"), _("1"), _("1.5"), _("2"), _("3"), _("5"), _("10"), _("20")}, + toggle = {"0.7", "1", "1.5", "2", "3", "5", "10", "20"}, more_options = true, more_options_param = { value_step = 0.1, value_hold_step = 1,