Minor localization adjustments #984
Loading…
Reference in a new issue
No description provided.
Delete branch "strings-adjustments"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR fixes some more untranslated UI strings I've stumbled upon.
While I was at it, I took the opportunity to make some minor improvements to the GUI code:
f6c3c96d
, which mistakenly added two translatable strings containing nothing or just newlinesOne last thing: I added the
wxString::FromUTF8
to thewxString <-> std::string
conversions mentioned in the code style guidelines.I think that it should be the preferred way to convert a
std::string
into awxString
. Also, wxWidgets 3.3 will add a FromUTF8 overload that takes a std::string_view, so we'll be able to use that one in place of our custom helper.