mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Grammar fix
This commit is contained in:
parent
5320af6c13
commit
688457b2d0
2 changed files with 2 additions and 2 deletions
|
@ -4926,7 +4926,7 @@ msgid "Cannot overwrite an external profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/slic3r/GUI/Tab.cpp:3031
|
#: src/slic3r/GUI/Tab.cpp:3031
|
||||||
msgid "Preset with name \"%1%\" already exist."
|
msgid "Preset with name \"%1%\" already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/slic3r/GUI/Tab.cpp:3032
|
#: src/slic3r/GUI/Tab.cpp:3032
|
||||||
|
|
|
@ -3028,7 +3028,7 @@ void Tab::save_preset(std::string name /*= ""*/)
|
||||||
}
|
}
|
||||||
if (existing && name != preset.name)
|
if (existing && name != preset.name)
|
||||||
{
|
{
|
||||||
wxString msg_text = GUI::from_u8((boost::format(_utf8(L("Preset with name \"%1%\" already exist."))) % name).str());
|
wxString msg_text = GUI::from_u8((boost::format(_utf8(L("Preset with name \"%1%\" already exists."))) % name).str());
|
||||||
msg_text += "\n" + _(L("Replace?"));
|
msg_text += "\n" + _(L("Replace?"));
|
||||||
wxMessageDialog dialog(nullptr, msg_text, _(L("Warning")), wxICON_WARNING | wxYES | wxNO);
|
wxMessageDialog dialog(nullptr, msg_text, _(L("Warning")), wxICON_WARNING | wxYES | wxNO);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue