Merge pull request #3622 from JSuenram/master

Tranlsation Fix Clipboard-Dialog....
This commit is contained in:
Ylian Saint-Hilaire 2022-02-09 10:29:36 -08:00 committed by GitHub
commit 357f614aec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -27728,7 +27728,7 @@
{
"cs": "Získejte schránku",
"da": "Hent Udklipsholder",
"de": "Holen Sie sich die Zwischenablage",
"de": "Zwischenablage holen",
"en": "Get Clipboard",
"es": "Obtener portapapeles",
"fi": "Hanki leikepöytä",
@ -55848,7 +55848,7 @@
{
"cs": "Nastavit schránku",
"da": "Indstil udklipsholder",
"de": "Zwischenablage festlegen",
"de": "Zwischenablage setzen",
"en": "Set Clipboard",
"es": "Asignar portapapeles",
"fi": "Aseta leikepöytä",

View File

@ -9079,8 +9079,8 @@
if (xxdialogMode || desktop == null || desktop.State != 3) return;
Q('DeskClip').blur();
var x = '';
if ((features2 & 0x0800) == 0) x += '<input id=dlgClipGet type=button value="' + "Get Clipboard" + '" style=width:120px onclick=showDeskClipGet()>';
if ((features2 & 0x1000) == 0) x += '<input id=dlgClipSet type=button value="' + "Set Clipboard" + '" style=width:120px onclick=showDeskClipSet()>';
if ((features2 & 0x0800) == 0) x += '<input id=dlgClipGet type=button value="' + "Get Clipboard" + '" style=width:160px onclick=showDeskClipGet()>';
if ((features2 & 0x1000) == 0) x += '<input id=dlgClipSet type=button value="' + "Set Clipboard" + '" style=width:160px onclick=showDeskClipSet()>';
x += '<div id=dlgClipStatus style="display:inline-block;margin-left:8px" ></div>';
x += '<textarea id=d2clipText style="width:100%;height:184px;resize:none" maxlength=65535></textarea>';
x += '<input type=button value="Close" style=width:80px;float:right onclick=dialogclose(0)><div style=height:26px;margin-top:3px><span id=linuxClipWarn style=display:none>' + "Remote clipboard is valid for 60 seconds." + '</span>&nbsp;</div><div></div>';