Typo in preferences string about single instace

This commit is contained in:
David Kocik
2020-12-13 21:21:18 +01:00
parent 88a52f24f8
commit fb796f2fb7

View File

@@ -158,11 +158,11 @@ void PreferencesDialog::build()
#if __APPLE__
def.label = L("Allow just single PrusaSlicer instance");
def.label = L("Allow just a single PrusaSlicer instance");
def.type = coBool;
def.tooltip = L("On OSX there is always only one instance of app running by default. However it is allowed to run multiple instances of same app from the command line. In such case this settings will allow only one instance.");
#else
def.label = L("Allow just single PrusaSlicer instance");
def.label = L("Allow just a single PrusaSlicer instance");
def.type = coBool;
def.tooltip = L("If this is enabled, when starting PrusaSlicer and another instance of the same PrusaSlicer is already running, that instance will be reactivated instead.");
#endif