Several translation-related fixes

ConfigWizard name was missing translation macro in several places
Few typos corrected
Some string conversions fixed
Two strings were not marked for translation
This commit is contained in:
Lukas Matena 2020-02-24 10:54:50 +01:00
parent d5bffd2816
commit 15ea6f5609
4 changed files with 9 additions and 9 deletions

View file

@ -4743,8 +4743,8 @@ void Plater::set_number_of_copies(/*size_t num*/)
ModelObject* model_object = p->model.objects[obj_idx];
const int num = wxGetNumberFromUser( " ", _("Enter the number of copies:"),
_("Copies of the selected object"), model_object->instances.size(), 0, 1000, this );
const int num = wxGetNumberFromUser( " ", _(L("Enter the number of copies:")),
_(L("Copies of the selected object")), model_object->instances.size(), 0, 1000, this );
if (num < 0)
return;