From 56d7a2d86bf1840f57885f6b60f86ea1c52a8fe9 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Thu, 29 Apr 2021 19:45:12 +0200 Subject: [PATCH] CreOptions: Minor wording tweak after #7616 c.f., https://github.com/koreader/koreader/pull/7616#discussion_r622732969 --- frontend/ui/data/creoptions.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/ui/data/creoptions.lua b/frontend/ui/data/creoptions.lua index 8aa5c2ddf..05ca9720c 100644 --- a/frontend/ui/data/creoptions.lua +++ b/frontend/ui/data/creoptions.lua @@ -538,13 +538,13 @@ Note that your selected font size is not affected by this setting.]]), help_text = _([[Set the font weight delta from "regular" to apply to all fonts. - 0 will use the "regular (400)" variation of a font. -- +1 will use the "medium (500)" variation of a font if available -- +3 will use the "bold (700)" variation of a font if available -If a font variation is not available, as well as for fractional adjustments, a font variation will be synthesized from the nearest available weight of the font.]]), +- +1 will use the "medium (500)" variation of a font if available. +- +3 will use the "bold (700)" variation of a font if available. +If a font variation is not available, as well as for fractional adjustments, it will be synthesized from the nearest available weight.]]), help_text_func = function(configurable, document) local font_face = document:getFontFace() local available_weights = cre.getFontFaceAvailableWeights(font_face) - return T(_("The default font '%1' is available in %2."), font_face, table.concat(available_weights, ", ")) + return T(_("The default font '%1' provides the following weight classes: %2."), font_face, table.concat(available_weights, ", ")) end, name_text_hold_callback = optionsutil.showValues, name_text_true_values = true,