diff options
author | Pierre-Yves Rollo <dev@pyrollo.com> | 2020-08-20 12:25:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 12:25:02 +0200 |
commit | 71287894adbf3cbe092ded1cbf02755678305afb (patch) | |
tree | 2a01763efdd8583c1261aed50f300229715522c3 /src/gui/guiFormSpecMenu.cpp | |
parent | 83d0c360cc648e02650aa4d341dbf5205c1e708f (diff) | |
download | minetest-71287894adbf3cbe092ded1cbf02755678305afb.tar.gz minetest-71287894adbf3cbe092ded1cbf02755678305afb.tar.bz2 minetest-71287894adbf3cbe092ded1cbf02755678305afb.zip |
Fix missing translation call in hypertext (#10296)
Diffstat (limited to 'src/gui/guiFormSpecMenu.cpp')
-rw-r--r-- | src/gui/guiFormSpecMenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/guiFormSpecMenu.cpp b/src/gui/guiFormSpecMenu.cpp index 9bd5f27fd..76441c645 100644 --- a/src/gui/guiFormSpecMenu.cpp +++ b/src/gui/guiFormSpecMenu.cpp @@ -1740,7 +1740,7 @@ void GUIFormSpecMenu::parseHyperText(parserData *data, const std::string &elemen FieldSpec spec( name, - utf8_to_wide(unescape_string(text)), + translate_string(utf8_to_wide(unescape_string(text))), L"", 258 + m_fields.size() ); |