chore: change to in

This commit is contained in:
Kirill Sharov 2024-08-20 13:16:34 +04:00
parent d3b6f6e8de
commit 4ce661dd21
3 changed files with 9 additions and 1 deletions

View File

@ -310,6 +310,10 @@
<source>Default Domain Policy</source>
<translation>Default Domain Policy</translation>
</message>
<message>
<source>Local Group Policy</source>
<translation>Local Group Policy</translation>
</message>
</context>
<context>
<name>scripts_plugin::ScriptsPowerShellWidget</name>

View File

@ -308,6 +308,10 @@
<source>Default Domain Policy</source>
<translation>политики домена по умолчанию</translation>
</message>
<message>
<source>Local Group Policy</source>
<translation>локальной групповой политики</translation>
</message>
</context>
<context>
<name>scripts_plugin::ScriptsPowerShellWidget</name>

View File

@ -108,7 +108,7 @@ void ScriptsDialog::setDescription(const QString &policyName)
}
QString logonLabelText = tr("Script") + ": \"" + scriptName + "\" " + tr("for")
+ (policyName.isEmpty() ? " " + tr("Default Domain Policy") : " \"" + policyName + "\"");
+ (policyName.isEmpty() ? " " + tr("Local Group Policy") : " \"" + policyName + "\"");
QLabel* logonLabel = ui->scriptsTab->findChild<QLabel *>("logonLabel");
if (logonLabel)