aboutsummaryrefslogtreecommitdiff
path: root/util/buildbot/toolchain_x86_64-w64-mingw32.cmake
diff options
context:
space:
mode:
authoreol <joshua.de.clercq@gmail.com>2021-01-24 20:03:59 +0000
committersfan5 <sfan5@live.de>2021-01-30 21:06:14 +0100
commit30c28654e8d20900cf56c38252c0ea21b6df912a (patch)
treeeb881b560a9405f69cefd5e48f3773df47376612 /util/buildbot/toolchain_x86_64-w64-mingw32.cmake
parentd1a15634c9791f830c25b831b031efc774a79af1 (diff)
downloadminetest-30c28654e8d20900cf56c38252c0ea21b6df912a.tar.gz
minetest-30c28654e8d20900cf56c38252c0ea21b6df912a.tar.bz2
minetest-30c28654e8d20900cf56c38252c0ea21b6df912a.zip
Translated using Weblate (Dutch)
Currently translated at 100.0% (1350 of 1350 strings)
Diffstat (limited to 'util/buildbot/toolchain_x86_64-w64-mingw32.cmake')
0 files changed, 0 insertions, 0 deletions
ortcutter { private: std::vector<std::string> m_names; u32 m_selected_i; std::string m_message; public: bool hasMessage() const { return !m_message.empty(); } std::string getMessage() { std::string s = m_message; m_message = ""; if (!s.empty()) return std::string("[quicktune] ") + s; return ""; } std::string getSelectedName() { if(m_selected_i < m_names.size()) return m_names[m_selected_i]; return "(nothing)"; } void next() { m_names = getQuicktuneNames(); if(m_selected_i < m_names.size()-1) m_selected_i++; else m_selected_i = 0; m_message = std::string("Selected \"")+getSelectedName()+"\""; }