Fix message for synchronous system commands
We managed to swap those m(
This commit is contained in:
parent
991dab58d5
commit
6d4f8266cd
1 changed files with 2 additions and 2 deletions
|
|
@ -49,9 +49,9 @@ $(function() {
|
|||
.done(function() {
|
||||
var text;
|
||||
if (commandSpec.async) {
|
||||
text = gettext("The command \"%(command)s\" executed successfully");
|
||||
} else {
|
||||
text = gettext("The command \"%(command)s\" was triggered asynchronously");
|
||||
} else {
|
||||
text = gettext("The command \"%(command)s\" executed successfully");
|
||||
}
|
||||
|
||||
new PNotify({
|
||||
|
|
|
|||
Loading…
Reference in a new issue