12.5.4 release
This commit is contained in:
parent
83229bf520
commit
0cfc3b2dcd
64 changed files with 1016 additions and 814 deletions
|
@ -1,3 +1,7 @@
|
|||
15-JAN-2019: 12.5.4
|
||||
|
||||
- Adds PWA install prompt handler
|
||||
|
||||
14-JAN-2019: 12.5.3
|
||||
|
||||
- Fixes line height in labels
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
12.5.3
|
||||
12.5.4
|
|
@ -1,7 +1,7 @@
|
|||
CACHE MANIFEST
|
||||
|
||||
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
||||
# 01/14/2020 07:00 PM
|
||||
# 01/15/2020 01:29 PM
|
||||
|
||||
app.html
|
||||
index.html?offline=1
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
"name": "draw.io",
|
||||
"short_name": "drawio",
|
||||
"description": "Draw.io is a completely free diagram editor.",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/images/android-chrome-192x192.png",
|
||||
|
@ -12,7 +14,8 @@
|
|||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#d89000",
|
||||
"background_color": "#d89000",
|
||||
"display": "standalone"
|
||||
"theme_color": "#DF6C0C",
|
||||
"background_color": "#DF6C0C",
|
||||
"display": "fullscreen",
|
||||
"start_url": "/index.html?offline=1"
|
||||
}
|
1541
src/main/webapp/js/app.min.js
vendored
1541
src/main/webapp/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -538,11 +538,13 @@ App.main = function(callback, createUi)
|
|||
mxscript('js/extensions.min.js');
|
||||
|
||||
// Check that service workers are supported
|
||||
if ('serviceWorker' in navigator) {
|
||||
// Use the window load event to keep the page load performant
|
||||
window.addEventListener('load', function() {
|
||||
navigator.serviceWorker.register('/service-worker.js');
|
||||
});
|
||||
if ('serviceWorker' in navigator)
|
||||
{
|
||||
// Use the window load event to keep the page load performant
|
||||
window.addEventListener('load', function()
|
||||
{
|
||||
navigator.serviceWorker.register('/service-worker.js');
|
||||
});
|
||||
}
|
||||
else if (window.applicationCache != null)
|
||||
{
|
||||
|
@ -553,6 +555,15 @@ App.main = function(callback, createUi)
|
|||
document.body.appendChild(frame);
|
||||
}
|
||||
}
|
||||
else if ('serviceWorker' in navigator &&
|
||||
navigator.serviceWorker.controller)
|
||||
{
|
||||
// Needed to update cache if PWA was used
|
||||
window.addEventListener('load', function()
|
||||
{
|
||||
navigator.serviceWorker.register('/service-worker.js');
|
||||
});
|
||||
}
|
||||
|
||||
// Loads Pusher API
|
||||
if (('ArrayBuffer' in window) && !mxClient.IS_CHROMEAPP && !EditorUi.isElectronApp &&
|
||||
|
@ -1457,7 +1468,71 @@ App.prototype.init = function()
|
|||
this.mode = App.mode;
|
||||
}
|
||||
|
||||
if (!mxClient.IS_CHROMEAPP && !EditorUi.isElectronApp && (!this.editor.chromeless || this.editor.editable))
|
||||
// Integrates Add to Home Screen
|
||||
if (urlParams['offline'] == '1' && 'serviceWorker' in navigator &&
|
||||
!mxClient.IS_CHROMEAPP && !EditorUi.isElectronApp)
|
||||
{
|
||||
var deferredPrompt = null;
|
||||
|
||||
window.addEventListener('beforeinstallprompt', mxUtils.bind(this, function(e)
|
||||
{
|
||||
if (!this.footerShowing && (!isLocalStorage || mxSettings.settings == null ||
|
||||
mxSettings.settings.closeAddToHomeScreenFooter == null))
|
||||
{
|
||||
deferredPrompt = e;
|
||||
|
||||
var done = mxUtils.bind(this, function()
|
||||
{
|
||||
footer.parentNode.removeChild(footer);
|
||||
this.footerShowing = false;
|
||||
deferredPrompt = null;
|
||||
this.hideFooter();
|
||||
|
||||
// Close permanently
|
||||
if (isLocalStorage && mxSettings.settings != null)
|
||||
{
|
||||
mxSettings.settings.closeAddToHomeScreenFooter = Date.now();
|
||||
mxSettings.save();
|
||||
}
|
||||
});
|
||||
|
||||
var footer = createFooter('<img border="0" align="absmiddle" style="margin-top:-6px;cursor:pointer;margin-left:8px;margin-right:12px;width:24px;height:24px;" src="' +
|
||||
IMAGE_PATH + '/logo.png' + '"><font size="3" style="color:#ffffff;">' +
|
||||
mxUtils.htmlEntities(mxResources.get('installDrawio', null, 'Install draw.io')) + '</font>',
|
||||
'https://www.draw.io/index.html?offline=1',
|
||||
'geStatusMessage geBtn gePrimaryBtn', done, null, mxUtils.bind(this, function()
|
||||
{
|
||||
// Show the prompt
|
||||
if (deferredPrompt != null)
|
||||
{
|
||||
deferredPrompt.prompt();
|
||||
|
||||
// Wait for the user to respond to the prompt
|
||||
deferredPrompt.userChoice.then(done);
|
||||
}
|
||||
}));
|
||||
|
||||
// Push to after splash dialog background
|
||||
footer.style.zIndex = mxPopupMenu.prototype.zIndex;
|
||||
footer.style.padding = '18px 50px 12px 30px';
|
||||
footer.getElementsByTagName('img')[1].style.filter = 'invert(1)';
|
||||
document.body.appendChild(footer);
|
||||
this.footerShowing = true;
|
||||
|
||||
window.setTimeout(mxUtils.bind(this, function()
|
||||
{
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transform', 'translate(-50%,0%)');
|
||||
}), 500);
|
||||
|
||||
window.setTimeout(mxUtils.bind(this, function()
|
||||
{
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transform', 'translate(-50%,110%)');
|
||||
this.footerShowing = false;
|
||||
}), 60000);
|
||||
}
|
||||
}));
|
||||
}
|
||||
else if (!mxClient.IS_CHROMEAPP && !EditorUi.isElectronApp && (!this.editor.chromeless || this.editor.editable))
|
||||
{
|
||||
this.editor.addListener('fileLoaded', mxUtils.bind(this, function()
|
||||
{
|
||||
|
@ -1467,10 +1542,13 @@ App.prototype.init = function()
|
|||
mxSettings.settings.closeDesktopFooter == null) && !this.footerShowing && urlParams['open'] == null)
|
||||
{
|
||||
var footer = createFooter('<img border="0" align="absmiddle" style="margin-top:-6px;cursor:pointer;margin-left:8px;margin-right:12px;width:24px;height:24px;" src="' +
|
||||
IMAGE_PATH + '/logo.png' + '"><font size="3">' + mxResources.get('downloadDesktop') + '...</font>', 'https://get.draw.io/', 'geStatusMessage',
|
||||
IMAGE_PATH + '/logo.png' + '"><font size="3" style="color:#ffffff;">' +
|
||||
mxUtils.htmlEntities(mxResources.get('downloadDesktop')) + '</font>',
|
||||
'https://get.draw.io/', 'geStatusMessage geBtn gePrimaryBtn',
|
||||
mxUtils.bind(this, function()
|
||||
{
|
||||
footer.parentNode.removeChild(footer);
|
||||
this.footerShowing = false;
|
||||
this.hideFooter();
|
||||
|
||||
// Close permanently
|
||||
|
@ -1480,7 +1558,11 @@ App.prototype.init = function()
|
|||
mxSettings.save();
|
||||
}
|
||||
}));
|
||||
|
||||
|
||||
// Push to after splash dialog background
|
||||
footer.style.zIndex = mxPopupMenu.prototype.zIndex;
|
||||
footer.style.padding = '18px 50px 12px 30px';
|
||||
footer.getElementsByTagName('img')[1].style.filter = 'invert(1)';
|
||||
document.body.appendChild(footer);
|
||||
this.footerShowing = true;
|
||||
|
||||
|
|
2
src/main/webapp/js/viewer.min.js
vendored
2
src/main/webapp/js/viewer.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "draw.io",
|
||||
"version": "11.3.0",
|
||||
"version": "12.5.3",
|
||||
"description": "draw.io desktop",
|
||||
"main": "electron.js",
|
||||
"scripts": {
|
||||
|
@ -23,15 +23,15 @@
|
|||
},
|
||||
"homepage": "https://github.com/jgraph/drawio",
|
||||
"dependencies": {
|
||||
"commander": "^2.20.0",
|
||||
"electron-log": "^3.0.7",
|
||||
"commander": "^4.1.0",
|
||||
"electron-log": "^4.0.3",
|
||||
"electron-updater": "^4.1.2",
|
||||
"electron-progressbar": "^1.2.0",
|
||||
"electron-store": "^3.2.0",
|
||||
"electron-store": "^5.1.0",
|
||||
"compression": "^1.7.4",
|
||||
"crc": "^3.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"electron": "^6.0.0"
|
||||
"electron": "^7.1.9"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Вмъкване на ред отгоре
|
|||
insertRowAfter=Вмъкване на ред отдолу
|
||||
insertText=Вмъкване на текст
|
||||
inserting=Вмъкване
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Диаграмата не трябва да съдържа следните символи: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Вашият лиценз не е валиден. Моля вижте тук <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Запазване на диаграми в
|
||||
saveLibrary403=Недостатъчни разрешения за редактиране на тази библиотека
|
||||
saveLibrary500=Възникна грешка при запазване на библиотеката
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Запазване
|
||||
scratchpad=Бележник
|
||||
scrollbars=Скролиращи ленти
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Umetni red iznad
|
|||
insertRowAfter=Umetni red nakon
|
||||
insertText=Umetni tekst
|
||||
inserting=Umetanje
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Imena dijagrama ne smiju sadržavati sljedeće znakove: \ / | : ; { < & + ? = "
|
||||
invalidLicenseSeeThisPage=Vaša licenca nije validna, molimo pogledajte ovo <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Prvo sačuvajte dijagram
|
|||
saveDiagramsTo=Spasi dijagrame u
|
||||
saveLibrary403=Nedovoljne ovlasti za uređivanje ove biblioteke
|
||||
saveLibrary500=Pojavila se greška prilikom spašavanja biblioteke
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Spašavanje
|
||||
scratchpad=Radna memorija
|
||||
scrollbars=Skrolbarovi
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Afegeix una fila amunt
|
|||
insertRowAfter=Afegeix una fila avall
|
||||
insertText=Afegeix text
|
||||
inserting=Afegint
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Els noms dels diagrames no poden contenir els següents caràcters: \ / | : ; { < & + ? = "
|
||||
invalidLicenseSeeThisPage=La llicència no és vàlida, consulteu aquesta <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">pàgina</a>.
|
||||
invalidInput=L'entrada no és vàlida
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Deseu primer el diagrama
|
|||
saveDiagramsTo=Desa els diagrames a
|
||||
saveLibrary403=Permisos insuficients per editar aquesta biblioteca
|
||||
saveLibrary500=Hi ha hagut un error desant la biblioteca
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Desant
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Barres de desplaçament
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Vložit řádek nad
|
|||
insertRowAfter=Vložit řádek za
|
||||
insertText=Vložit text
|
||||
inserting=Vkládání
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Jména diagramů nesmí obsahovat tyto znaky: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Vaše licence je neplatná, podívejte se prosím na tuto <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">stránku</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Uložit diagramy do
|
||||
saveLibrary403=K úpravě této knihovny nemáte dostatečné oprávnění.
|
||||
saveLibrary500=Při ukládání knihovny došlo k chybě.
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Ukládám
|
||||
scratchpad=Poznámky
|
||||
scrollbars=Rolovací lišty
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Indsæt række ovenover
|
|||
insertRowAfter=Indsæt række nedenfor
|
||||
insertText=Indsæt tekst
|
||||
inserting=Indsætter
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagramnavn må ikke indeholde de følgende tegn: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Din licens er ugyldig, se venligst <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">side</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Gem diagrammer i
|
||||
saveLibrary403=Utilstrækkelige tilladelse til at ændre på dette bibliotek
|
||||
saveLibrary500=Der forekom en fejl under gemning af dette bibliotek
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Gemmer
|
||||
scratchpad=Notesblok
|
||||
scrollbars=Rullebjælker
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Zeile oberhalb einfügen
|
|||
insertRowAfter=Zeile unterhalb einfügen
|
||||
insertText=Text einfügen
|
||||
inserting=Wird eingefügt
|
||||
installDrawio=draw.io installieren
|
||||
invalidFilename=Diagramm Namen dürfen keine der folgenden Zeichen enthalten\ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Ihre Lizenz ist ungültig, bitte besuchen Sie diese <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">Seite</a>.
|
||||
invalidInput=Ungültige Eingabe
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Bitte speichern Sie zuerst das Diagramm
|
|||
saveDiagramsTo=Diagramme speichern in
|
||||
saveLibrary403=Keine Berechtigung zum Bearbeiten der Bibliothek
|
||||
saveLibrary500=Fehler beim Speichern der Bibliothek
|
||||
saveLibraryReadOnly=Bibliothek konnte nicht gespeichert werden, während der schreibgeschützte Modus aktiv ist
|
||||
saving=Wird gespeichert
|
||||
scratchpad=Notizblock
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Εισαγωγή σειράς από πάνω
|
|||
insertRowAfter=Εισαγωγή σειράς μετά
|
||||
insertText=Εισαγωγή κειμένου
|
||||
inserting=Εισάγοντας
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Το όνομα του διαγράμματος δεν πρέπει να περιέχει τους παρακάτω χρακτήρες: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Η άδεια χρήσης σας δεν είναι έγκυρη, παρακαλώ δείτε αυτό <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Αποθήκευση διαγραμμάτων σε
|
||||
saveLibrary403=Ανεπαρκή δικαιώματα για να επεξεργαστείτε αυτή την βιβλιοθήκη
|
||||
saveLibrary500=Παρουσιάστηκε σφάλμα κατά την διαδικασία αποθήκευσης της βιβλιοθήκης
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Γίνεται αποθήκευση
|
||||
scratchpad=Σημειωματάριο
|
||||
scrollbars=Μπάρες κύλισης
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Konservante
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insertar fila arriba
|
|||
insertRowAfter=insertar fila abajo
|
||||
insertText=Insertar texto
|
||||
inserting=Insertando
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Los nombres de los diagramas no deben contener los siguientes caracteres: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Su licencia es inválida, por favor vea esta <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">página</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Guardar diagramas en
|
||||
saveLibrary403=Permisos insuficientes para editar esta biblioteca
|
||||
saveLibrary500=Hubo un error mientras se guardaba la biblioteca
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Guardando
|
||||
scratchpad=Bloc de notas
|
||||
scrollbars=Barras de desplazamiento
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Sisesta rida ülespoole
|
|||
insertRowAfter=Sisesta rida allapoole
|
||||
insertText=Sisesta tekst
|
||||
inserting=Sisestamine
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagrammi nimed ei tohi sisaldada järgnevaid tähemärke: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Sinu litsents on kehtetu, palun vaata seda <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">lehte</a>.
|
||||
invalidInput=Viga sisestamisel
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Salvesta diagrammid...
|
||||
saveLibrary403=Puuduvad õigused selle raamatukogu muutmiseks
|
||||
saveLibrary500=Viga raamatukogu salvestamisel
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Salvestan
|
||||
scratchpad=Märkmik
|
||||
scrollbars=Kerimisriba
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=وارد کردن یک ردیف در بالا
|
|||
insertRowAfter=وارد کردن یک ردیف در بعد
|
||||
insertText=وارد کردن متن
|
||||
inserting=وارد کردن
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=نامهای نمودارها نباید شامل کاراکترهای زیر باشد: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=مجوز شما نامعتبر است. لطفا این بخش را ببینید <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">صفحه</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=ذخیره نمودار در
|
||||
saveLibrary403=مجوز برای ویرایش کتابخانه کافی نیست
|
||||
saveLibrary500=خطا به هنگام ذخیره کتابخانه
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=در حال ذخیره کردن
|
||||
scratchpad=صفحه پیش نویس
|
||||
scrollbars=چرخانک
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Lisää rivi yläpuolelle
|
|||
insertRowAfter=Lisää rivi alapuolelle
|
||||
insertText=Lisää tekstiä
|
||||
inserting=Lisätään
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Kaavioiden nimet eivät saa sisältää seuraavia merkkejä : \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Lisenssi on virheellinen, ole hyvä ja katso tämä <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Tallenna kaaviot
|
||||
saveLibrary403=Puutteellinen lupa kokoelman editoimiseen
|
||||
saveLibrary500=Kokoelman tallennuksen aikana tapahtui virhe
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Tallennetaan
|
||||
scratchpad=Työmuisti
|
||||
scrollbars=Vierityspalkit
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Magsingit ng hanay sa ibabaw
|
|||
insertRowAfter=Magsingit ng hilera pagkatapos
|
||||
insertText=Magsingit ng teksto
|
||||
inserting=Nagsisingit
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Ang pangalan ng mga Dayagram ay hindi maaaring magtaglay ng sumusunod na mga simbolo: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Ang iyong lisensya ay di wasto. Pki-tingnan ito <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=I-save ang mga dayagram sa
|
||||
saveLibrary403=Di sapat ang pahintulot para i-edit ang library na ito
|
||||
saveLibrary500=May pagkakamali habang sini-save ang library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Nagse-save
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Mga Scrollbar
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insérer une ligne avant
|
|||
insertRowAfter=Insérer une ligne après
|
||||
insertText=Insérer du texte
|
||||
inserting=Insertion
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Le nom des diagrammes ne doit pas contenir les caractères suivants : \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Votre licence n'est pas valide, veuillez vous rendre sur la page suivante <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Enregistrer sous
|
||||
saveLibrary403=Permissions insuffisantes pour modifier cette librairie
|
||||
saveLibrary500=Une erreur est survenue lors de la sauvegarde de la librairie
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Enregistrement
|
||||
scratchpad=Bloc-notes
|
||||
scrollbars=Barres de défilement
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=הוספת שורה למעלה
|
|||
insertRowAfter=הוספת שורה למטה
|
||||
insertText=הוספת טקסט
|
||||
inserting=מוסיף
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=שם הדיאגרמה אינו יכול לכלול את התווים הבאים: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=הרשיון שלך אינו תקף. בדוק ב <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=שמור תרשימים ב-
|
||||
saveLibrary403=אין הרשאות לערוך ספריה זו
|
||||
saveLibrary500=שגיאה בשמירת הספריה
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=שומר
|
||||
scratchpad=פנקס
|
||||
scrollbars=סרגלי גלילה
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Sort beszúr felette
|
|||
insertRowAfter=Sort beszúr alatta
|
||||
insertText=Szöveget beszúr
|
||||
inserting=Beszúrás
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=A diagram nem tartalmazhatja a következő betűket: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Az engedélye érvénytelen, kérjük tekintse meg ezt <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Diagramok mentése ide:
|
||||
saveLibrary403=Elégtelen engedély a könyvtár szerkesztéséhez
|
||||
saveLibrary500=Hiba történt a könyvtár mentésekor
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Mentés
|
||||
scratchpad=Jegyzetblokk
|
||||
scrollbars=Gördítősávok
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=insertRowBefore
|
|||
insertRowAfter=insertRowAfter
|
||||
insertText=insertText
|
||||
inserting=inserting
|
||||
installDrawio=installDrawio
|
||||
invalidFilename=invalidFilename
|
||||
invalidLicenseSeeThisPage=invalidLicenseSeeThisPage
|
||||
invalidInput=invalidInput
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=saveDiagramFirst
|
|||
saveDiagramsTo=saveDiagramsTo
|
||||
saveLibrary403=saveLibrary403
|
||||
saveLibrary500=saveLibrary500
|
||||
saveLibraryReadOnly=saveLibraryReadOnly
|
||||
saving=saving
|
||||
scratchpad=scratchpad
|
||||
scrollbars=scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Sisipkan Baris di Atas
|
|||
insertRowAfter=Sisipkan Baris di Bawah
|
||||
insertText=Sisipkan Teks
|
||||
inserting=Menyisipkan
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Nama diagram tidak boleh mengandung karakter berikut: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Lisensi Anda tidak valid, harap baca tautan ini <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Simpan diagram ke
|
||||
saveLibrary403=Tidak cukup izin untuk mengedit pustaka ini
|
||||
saveLibrary500=Terjadi kesalahan saat menyimpan pustaka
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Menyimpan
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbar
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Inserisci riga sopra
|
|||
insertRowAfter=Inserisci riga sotto
|
||||
insertText=Inserisci testo
|
||||
inserting=Inserimento in corso
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Il nome del diagramma non può contenere i seguenti caratteri: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=La tua licenza è invalida. Perfavore leggi questo <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Salva diagrammi in
|
||||
saveLibrary403=Autorizzazione insufficiente per modificare questa libreria
|
||||
saveLibrary500=È subentrato un errore durante il salvataggio della libreria
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Salvataggio
|
||||
scratchpad=Scratchapd
|
||||
scrollbars=Barre di scorrimento
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=行を上に挿入
|
|||
insertRowAfter=行を下に挿入
|
||||
insertText=テキスト
|
||||
inserting=挿入中
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=ダイアグラム名に次の文字を含めることはできません。 \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=あなたの免許証が有効ではない、これを参照してください<a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=ファイルの保存先
|
||||
saveLibrary403=このライブラリを編集する権限がありません。
|
||||
saveLibrary500=ライブラリ保存中にエラーが発生しました。
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=保存中
|
||||
scratchpad=スクラッチパッド
|
||||
scrollbars=スクロールバー
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=위에 열 삽입
|
|||
insertRowAfter=아래에 열 삽입
|
||||
insertText=텍스트 삽입
|
||||
inserting=삽입중
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=다이어그램 이름에 다음 문자들은 사용될 수 없습니다. \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=라이선스가 유효하지 않습니다. <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">페이지</a>를 확인해 주시기 바랍니다.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=다이어그램 저장
|
||||
saveLibrary403=본 라이브러리의 편집 권한 부족
|
||||
saveLibrary500=라이브러리 저장 중 오류가 발생하였습니다.
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=저장중
|
||||
scratchpad=스크래치패드
|
||||
scrollbars=스크롤바
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Masukkan Baris di Atas
|
|||
insertRowAfter=Masukkan Baris Selepas
|
||||
insertText=Masukkan Teks
|
||||
inserting=Memasukkan
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Nama gambarajah tidak boleh mengandungi aksara yang berikut: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Lesen anda tidak sah, sila lihat ini <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Simpan gambarajah ke
|
||||
saveLibrary403=Keizinan tidak mencukupi untuk menyunting pustaka ini
|
||||
saveLibrary500=Terdapat ralat semasa menyimpan pustaka ini
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Menyimpan
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Baris gulung
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Rij bovenaan invoegen
|
|||
insertRowAfter=Rij onderaan invoegen
|
||||
insertText=Tekst invoegen
|
||||
inserting=Invoegen
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Een Diagramnaam mag niet de volgende tekens bevatten: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Uw licentie is ongeldig, bekijk deze <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">pagina</a>.
|
||||
invalidInput=Ingeldige invoer
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Sla het diagram eerst op
|
|||
saveDiagramsTo=Diagrammen opslaan naar
|
||||
saveLibrary403=Onvoldoende rechten om deze bibliotheek te bewerken
|
||||
saveLibrary500=Er is een fout opgetreden bij het opslaan van de bibliotheek
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Opslaan
|
||||
scratchpad=Pallet
|
||||
scrollbars=Schuifbalken
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Legg til rad ovenfor
|
|||
insertRowAfter=Legg til rad nedenfor
|
||||
insertText=Legg til tekst
|
||||
inserting=Legger til
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagrammet kan ikke inneholde de følgende tegnene: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Du har en ugyldig lisens, vennligst se her <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Lagre diagrammer til
|
||||
saveLibrary403=Utilstrekkelig tillatelse til å redigere dette biblioteket
|
||||
saveLibrary500=Det oppsto en feil i lagringen av biblioteket
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Lagrer
|
||||
scratchpad=Kladdeblokk
|
||||
scrollbars=Rullefelt
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Wstaw wiersz u góry
|
|||
insertRowAfter=Wstaw wiersz u dołu
|
||||
insertText=Wstaw tekst
|
||||
inserting=Wstawianie
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Nazwy diagramów nie mogą zawierać następujących znaków: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Twoja licencja jest nieważna, sprawdź <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Zapisz diagramy w
|
||||
saveLibrary403=Niewystarczające uprawnienia do edycji tej biblioteki
|
||||
saveLibrary500=Wystąpił błąd podczas zapisywania biblioteki
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Zapisuję
|
||||
scratchpad=Brudnopis
|
||||
scrollbars=Paski przewijania
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Inserir linha acima
|
|||
insertRowAfter=Inserir linha abaixo
|
||||
insertText=Inserir texto
|
||||
inserting=Inserindo
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Nomes de diagramas não podem conter os seguintes caracteres: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Sua licença é inválida, por favor veja <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Salvar diagramas em
|
||||
saveLibrary403=Permissões insuficientes para editar esta biblioteca
|
||||
saveLibrary500=Ocorreu um erro enquanto a biblioteca estava sendo salva
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Salvando
|
||||
scratchpad=Bloco de rascunho
|
||||
scrollbars=Barras de rolagem
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Inserir linha acima
|
|||
insertRowAfter=Inserir linha abaixo
|
||||
insertText=Inserir texto
|
||||
inserting=A inserir
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Nomes de diagramas não podem conter os seguintes caracteres:\ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=A sua carta não é válida, por favor veja <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Guardar os diagramas em
|
||||
saveLibrary403=Permissões não suficientes para editar esta biblioteca.
|
||||
saveLibrary500=Ocorreu um erro ao gravar a biblioteca
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=A guardar
|
||||
scratchpad=Rascunho
|
||||
scrollbars=Barras de rolagem
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Inserează rând deasupra
|
|||
insertRowAfter=Inserează rând dedesubt
|
||||
insertText=Inserează text
|
||||
inserting=Se inserează
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Numele diagramelor nu pot să contină următoarele caractere: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Licența dumneavoastră este invalida, vedeți <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo= Salvează diagramele în
|
||||
saveLibrary403=Permisiuni insuficiente pentru a edita această librărie
|
||||
saveLibrary500=A existat o eroare la salvarea acestei librării
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=În curs de salvare
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Bare de rulare
|
||||
|
|
|
@ -36,7 +36,7 @@ allowRelativeUrl=Разрешить относительные адреса
|
|||
alreadyConnected=Узлы уже соединены
|
||||
apply=Применить
|
||||
archiMate21=ArchiMate 2.1
|
||||
arrange=Расположить
|
||||
arrange=Расположение
|
||||
arrow=Стрелка
|
||||
arrows=Стрелки
|
||||
asNew=Как новое
|
||||
|
@ -262,7 +262,7 @@ externalChanges=Файл изменен
|
|||
extras=Дополнительно
|
||||
facebook=Facebook
|
||||
failedToSaveTryReconnect=Ошибка при сохранении, выполняется повторное подключение
|
||||
featureRequest=Запрос новой возможности
|
||||
featureRequest=Запрос новой функциональности
|
||||
feedback=Обратная связь
|
||||
feedbackSent=Сообщение обратной связи успешно отправлено.
|
||||
floorplans=Планы помещений
|
||||
|
@ -335,7 +335,7 @@ fromText=Из текста
|
|||
fromUrl=По ссылке
|
||||
fromThisPage=С этой страницы
|
||||
fullscreen=Полный экран
|
||||
gap=Gap
|
||||
gap=Промежуток
|
||||
gcp=GCP
|
||||
general=Общие
|
||||
github=GitHub
|
||||
|
@ -400,6 +400,7 @@ insertRowBefore=Вставить строку сверху
|
|||
insertRowAfter=Вставить строку снизу
|
||||
insertText=Добавить текст
|
||||
inserting=Вставка
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Название диаграммы не может содержать следующие символы: \ / | : ; { < & + ? = "
|
||||
invalidLicenseSeeThisPage=Ваша лицензия недействительна. Пожалуйста, посетите эту<a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">страницу</a>.
|
||||
invalidInput=Некорректное значение
|
||||
|
@ -630,10 +631,11 @@ saveAndExit=Сохранить и выйти
|
|||
saveAs=Сохранить как
|
||||
saveAsXmlFile=Сохранить как файл XML?
|
||||
saved=Сохранено
|
||||
saveDiagramFirst=Please save the diagram first
|
||||
saveDiagramFirst=Пожалуйста, сначала сохраните диаграмму
|
||||
saveDiagramsTo=Сохранять диаграммы в
|
||||
saveLibrary403=Недостаточно полномочий для редактирования библиотеки
|
||||
saveLibrary500=Ошибка при сохранении библиотеки
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Идет сохранение
|
||||
scratchpad=Избранные фигуры
|
||||
scrollbars=Полосы прокрутки
|
||||
|
@ -930,8 +932,8 @@ confAIndexDiagFailed=Indexing diagram "{1}" failed.
|
|||
confASkipDiagOtherPage=Skipped "{1}" as it belongs to another page!
|
||||
confADiagUptoDate=Diagram "{1}" is up to date.
|
||||
confACheckPagesWDraw=Checking pages having draw.io diagrams.
|
||||
confAErrOccured=An error occurred!
|
||||
savedSucc=Saved successfully
|
||||
confAErrOccured=Обнаружена ошибка!
|
||||
savedSucc=Сохранение выполнено
|
||||
confASaveFailedErr=Saving Failed (Unexpected Error)
|
||||
character=Character
|
||||
confAConfPageDesc=This page contains draw.io configuration file (configuration.json) as attachment
|
||||
|
@ -940,28 +942,28 @@ confATempPageDesc=This page contains draw.io custom templates as attachments
|
|||
working=Working
|
||||
confAConfSpaceDesc=This space is used to store draw.io configuration files and custom libraries/templates
|
||||
confANoCustLib=No Custom Libraries
|
||||
delFailed=Delete failed!
|
||||
showID=Show ID
|
||||
confAIncorrectLibFileType=Incorrect file type. Libraries should be XML files.
|
||||
uploading=Uploading
|
||||
confALibExist=This library already exists
|
||||
confAUploadSucc=Uploaded successfully
|
||||
confAUploadFailErr=Upload Failed (Unexpected Error)
|
||||
hiResPreview=High Res Preview
|
||||
delFailed=Ошибка при удалении!
|
||||
showID=Вывести ID
|
||||
confAIncorrectLibFileType=Неправильный тип файла. Для библиотек используется формат XML
|
||||
uploading=Идет загрузка
|
||||
confALibExist=Библиотека уже существует
|
||||
confAUploadSucc=Загрузка выполнена
|
||||
confAUploadFailErr=Неизвестная ошибка при загрузке
|
||||
hiResPreview=Предварительный просмотр — высокое разрешение
|
||||
officeNotLoggedGD=You are not logged in to Google Drive. Please open draw.io task pane and login first.
|
||||
officePopupInfo=Please complete the process in the pop-up window.
|
||||
pickODFile=Pick OneDrive File
|
||||
pickGDriveFile=Pick Google Drive File
|
||||
pickDeviceFile=Pick Device File
|
||||
officePopupInfo=Пожалуйста, завершите действия во всплывающем окне
|
||||
pickODFile=Выбрать файл из OneDrive
|
||||
pickGDriveFile=Выбрать файл из Google Drive
|
||||
pickDeviceFile=Выбрать файл на устройстве
|
||||
vsdNoConfig="vsdurl" is not configured
|
||||
ruler=Ruler
|
||||
units=Units
|
||||
points=Points
|
||||
inches=Inches
|
||||
millimeters=Millimeters
|
||||
units=Единицы измерения
|
||||
points=Пункты (pt)
|
||||
inches=Дюймы (inch)
|
||||
millimeters=Миллиметры (мм)
|
||||
confEditDraftDelOrExt=This diagram is in a draft page, is deleted from the page, or is edited externally. It will be saved as a new attachment version and may not be reflected in the page.
|
||||
confDiagEditedExt=Diagram is edited in another session. It will be saved as a new attachment version but the page will show other session's modifications.
|
||||
macroNotFound=Macro Not Found
|
||||
macroNotFound=Макрос не найден
|
||||
confAInvalidPageIdsFormat=Incorrect Page IDs file format
|
||||
confACollectingCurPages=Collecting current pages
|
||||
confABuildingPagesMap=Building pages mapping
|
||||
|
@ -992,4 +994,4 @@ confASavingLucidDiagImgFailed=Extracting {2} diagram "{1}" image failed.
|
|||
confGetInfoFailed=Fetching file info from {1} failed.
|
||||
confCheckCacheFailed=Cannot get cached file info.
|
||||
confReadFileErr=Cannot read "{1}" file from {2}.
|
||||
confSaveCacheFailed=Unexpected error. Cannot save cached file
|
||||
confSaveCacheFailed=Неизвестная ошибка. Невозможно сохранить файл из кэша
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Umetni red iznad
|
|||
insertRowAfter=Umetni red ispod
|
||||
insertText=Insert Text
|
||||
inserting=Umetanje
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Imena dijagrama ne smeju sadržati sledeće znake : \ / | : ; { < & + ? =
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Prvo sačuvajte dijagram
|
|||
saveDiagramsTo=Sačuvaj dijagrame na
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Snimanje
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Skrol trake
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Infoga rad ovanför
|
|||
insertRowAfter=Infoga rad efter
|
||||
insertText=Infoga text
|
||||
inserting=Infogar
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagrammet får inte innehålla följande tecken: \ / | : ; { } < > & + ? =
|
||||
invalidLicenseSeeThisPage=Din licens är ogiltig, vänligen se <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Spara diagram till
|
||||
saveLibrary403=Otillräckliga korregeringsrättigheter för detta bibliotek
|
||||
saveLibrary500=Ett fel uppstod under sparande av biblioteket
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Sparande
|
||||
scratchpad=Anteckningsblock
|
||||
scrollbars=Rullningslister
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Insert Row Above
|
|||
insertRowAfter=Insert Row After
|
||||
insertText=Insert Text
|
||||
inserting=Inserting
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Save diagrams to
|
||||
saveLibrary403=Insufficient permissions to edit this library
|
||||
saveLibrary500=There was an error while saving the library
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Saving
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Scrollbars
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=แทรกบรรทัดข้างบน
|
|||
insertRowAfter=แทรกบรรทัดข้างล่าง
|
||||
insertText=แทรกข้อความ
|
||||
inserting=การแทรก
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=ชื่อแผนภาพจะต้องไม่มีเครื่องหมายเหล่านี้ \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=ใบอนุญาตของคุณไม่ถูกต้อง โปรดดู <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=บันทึกแผนภาพไปยัง
|
||||
saveLibrary403=สิทธิ์ไม่เพียงพอในการแก้ไขไลบรารีนี้
|
||||
saveLibrary500=เกิดข้อผิดพลาดขณะบันทึกไลบรารี่
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=กำลังบันทึก
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=แถบเลื่อน
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Üste satır ekle
|
|||
insertRowAfter=Alta satır ekle
|
||||
insertText=Metin ekle
|
||||
inserting=Ekleniyor
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Diyagram adları şu karakterleri içermelidir : \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Lisansınız geçersiz, lütfen <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a> a bakınız
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Diyagramları şuna kaydet:
|
||||
saveLibrary403=Bu kitaplığı değiştirmek için başarısız izinler
|
||||
saveLibrary500=Kitaplığı kaydederken hata oluştu
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Kaydediliyor
|
||||
scratchpad=Bloknot
|
||||
scrollbars=Kaydırma çubuğu
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Вставити рядок зверху
|
|||
insertRowAfter=Вставити рядок внизу
|
||||
insertText=Вставити письмо
|
||||
inserting=Вставляю
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Назва діаграма не повинна мати такі знаки: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Ваш дозвіл на використання недійсний, будь ласка,прочитайте це <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
|
||||
invalidInput=Хибний ввод
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Зберегти діаграми в
|
||||
saveLibrary403=Недостатньо повноважень, щоб редагувати цю бібліотеку
|
||||
saveLibrary500=При збереженні бібліотеки виникла помилка
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Збереження
|
||||
scratchpad=Блокнот
|
||||
scrollbars=Смуга прокрутки
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=Chèn dòng lên trên
|
|||
insertRowAfter=Chèn dòng xuống dưới
|
||||
insertText=Chèn văn bản
|
||||
inserting=Đang chèn
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=Tên biểu đồ không được chứa những kí tự sau: \ / | : ' { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=Giấy phép của bạn không hợp lệ, vui lòng xem tại <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">trang này</a>.
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=Lưu biểu đồ vào
|
||||
saveLibrary403=Không có quyền chỉnh sửa thư viện này
|
||||
saveLibrary500=Có lỗi khi lưu thư viện
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=Đang lưu
|
||||
scratchpad=Scratchpad
|
||||
scrollbars=Thanh cuộn
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=插入上方列
|
|||
insertRowAfter=插入下方列
|
||||
insertText=插入文字
|
||||
inserting=正在插入
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=圖表名稱不得包含以下字符:\ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=您的許可無效,請參閱此<a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">頁面</a>。
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=將圖表儲存到
|
||||
saveLibrary403=沒有足夠的權限編輯此圖庫
|
||||
saveLibrary500=保存圖庫時出錯
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=儲存中
|
||||
scratchpad=便箋本
|
||||
scrollbars=捲軸
|
||||
|
|
|
@ -400,6 +400,7 @@ insertRowBefore=上方插入行
|
|||
insertRowAfter=下方插入行
|
||||
insertText=插入文本
|
||||
inserting=正在插入
|
||||
installDrawio=Install draw.io
|
||||
invalidFilename=图表名称不能包含以下特殊字符: \ / | : ; { } < > & + ? = "
|
||||
invalidLicenseSeeThisPage=您的许可无效,请参阅此<a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">页面</a>。
|
||||
invalidInput=Invalid input
|
||||
|
@ -634,6 +635,7 @@ saveDiagramFirst=Please save the diagram first
|
|||
saveDiagramsTo=把图表存至
|
||||
saveLibrary403=没有足够的权限编辑此图库
|
||||
saveLibrary500=保存图库时出错
|
||||
saveLibraryReadOnly=Could not save library while read-only mode is active
|
||||
saving=保存中
|
||||
scratchpad=便笺本
|
||||
scrollbars=滚动条
|
||||
|
|
|
@ -6,7 +6,7 @@ if (workbox)
|
|||
workbox.precaching.precacheAndRoute([
|
||||
{
|
||||
"url": "js/app.min.js",
|
||||
"revision": "76343a8b65143a5dc8721ec1ba53a216"
|
||||
"revision": "9d51e5c9c04fa03fe20164a9cfe4128a"
|
||||
},
|
||||
{
|
||||
"url": "index.html",
|
||||
|
@ -90,7 +90,7 @@ if (workbox)
|
|||
},
|
||||
{
|
||||
"url": "resources/dia.txt",
|
||||
"revision": "be24e2e6df3b5afcdd9267ce112b4aef"
|
||||
"revision": "3bb5936ead8bbdcbeb44595928fc454c"
|
||||
},
|
||||
{
|
||||
"url": "images/delete.png",
|
||||
|
|
Loading…
Reference in a new issue