1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Updated Polish translation.

This commit is contained in:
Ylian Saint-Hilaire 2021-08-22 20:39:02 -07:00
parent 41f70d52dc
commit 76f6175677
13 changed files with 1516 additions and 213 deletions

View file

@ -548,6 +548,18 @@
"disconnect": "Rozłącz",
"cancel": "Anuluj",
"commands": "Możesz uruchomić wersję tekstową z linii poleceń za pomocą następujących komend",
"statusDescription": "Obecny Status Agenta"
"statusDescription": "Obecny Status Agenta",
"group": "Grupa Urządzeń",
"url": "URL Serwera",
"serverId": "Identyfikator Serwera",
"elevation": "Do zainstalowania/odinstalowania agenta wymagane są podwyższone uprawnienia.",
"graphicalerror": "Graficzna wersja tego instalatora nie może być uruchomiona w tym systemie.",
"zenity": "Spróbuj zainstalować/zaktualizować Zenity i uruchom ponownie",
"status": [
"NOT INSTALLED",
"DZIAŁA",
"NIE DZIAŁA"
],
"description": "Kliknij poniższe przyciski, aby zainstalować lub odinstalować agenta. Po zainstalowaniu, to oprogramowanie działa w tle, umożliwiając zarządzanie i kontrolowanie tego komputera przez zdalnego administratora."
}
}

View file

@ -1987,7 +1987,7 @@ function onTunnelData(data) {
var p = childProcess.execFile(bash, ['bash'], options); // Start bash
// Spaces at the beginning of lines are needed to hide commands from the command history
if ((obj.serverInfo.termlaunchcommand != null) && (typeof obj.serverInfo.termlaunchcommand[process.platform] == 'string')) {
if (obj.serverInfo.termlaunchcommand[process.platform] != "") { p.stdin.write(obj.serverInfo.termlaunchcommand[process.platform]); }
if (obj.serverInfo.termlaunchcommand[process.platform] != '') { p.stdin.write(obj.serverInfo.termlaunchcommand[process.platform]); }
} else if (process.platform == 'linux') { p.stdin.write(' alias ls=\'ls --color=auto\';clear\n'); }
this.httprequest.connectionPromise._res(p);
}
@ -1995,7 +1995,7 @@ function onTunnelData(data) {
var p = childProcess.execFile(sh, ['sh'], options); // Start sh
// Spaces at the beginning of lines are needed to hide commands from the command history
if ((obj.serverInfo.termlaunchcommand != null) && (typeof obj.serverInfo.termlaunchcommand[process.platform] == 'string')) {
if (obj.serverInfo.termlaunchcommand[process.platform] != "") { p.stdin.write(obj.serverInfo.termlaunchcommand[process.platform]); }
if (obj.serverInfo.termlaunchcommand[process.platform] != '') { p.stdin.write(obj.serverInfo.termlaunchcommand[process.platform]); }
} else if (process.platform == 'linux') { p.stdin.write(' alias ls=\'ls --color=auto\';clear\n'); }
this.httprequest.connectionPromise._res(p);
}