parent
14b7a98f92
commit
7421218159
71 changed files with 6983 additions and 18772 deletions
|
@ -1,3 +1,8 @@
|
|||
19-JUL-2017: 6.9.1
|
||||
|
||||
- Adds open button for spreadsheets, videos, photos, maps in GDriveConnector
|
||||
- Fixes import of multiple pages in Lucidchart files
|
||||
|
||||
18-JUL-2017: 6.9.0
|
||||
|
||||
- Adds import tile in splash screen
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
6.9.0
|
||||
6.9.1
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"name": "draw.io",
|
||||
"version": "6.6.4",
|
||||
"description": "draw.io desktop",
|
||||
"main": "electron.js",
|
||||
"scripts": {
|
||||
"start": "electron ."
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jgraph/draw.io.git"
|
||||
},
|
||||
"keywords": [
|
||||
"draw.io",
|
||||
"diagram",
|
||||
"flowchart",
|
||||
"UML"
|
||||
],
|
||||
"author": "JGraph",
|
||||
"license": "Apache-2.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jgraph/draw.io/issues"
|
||||
},
|
||||
"homepage": "https://github.com/jgraph/draw.io",
|
||||
"dependencies": {
|
||||
"electron-log": "^2.2.6",
|
||||
"electron-updater": "^1.16.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"electron": "^1.7.2"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
CACHE MANIFEST
|
||||
|
||||
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
||||
# 07/18/2017 07:58 PM
|
||||
# 07/19/2017 03:08 PM
|
||||
|
||||
app.html
|
||||
index.html?offline=1
|
||||
|
|
6241
war/js/app.min.js
vendored
6241
war/js/app.min.js
vendored
File diff suppressed because it is too large
Load diff
706
war/js/atlas-viewer.min.js
vendored
706
war/js/atlas-viewer.min.js
vendored
File diff suppressed because one or more lines are too long
6801
war/js/atlas.min.js
vendored
6801
war/js/atlas.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -748,15 +748,15 @@ App.prototype.init = function()
|
|||
*/
|
||||
this.basicAds = ['<a title="HTML5 JavaScript Diagramming" target="_blank" href="https://github.com/jgraph/draw.io">' +
|
||||
'<img border="0" align="absmiddle" style="margin-top:-2px;padding-right:12px;" src="images/glyphicons_github.png"/>Fork us on GitHub</a>',
|
||||
'<a title="' + mxResources.get('loveApp') + '" target="_blank" href="https://twitter.com/intent/tweet?text=' +
|
||||
encodeURIComponent(mxResources.get('loveApp')) + '&url=' +
|
||||
'<a title="' + mxResources.get('loveIt', ['draw.io']) + '" target="_blank" href="https://twitter.com/intent/tweet?text=' +
|
||||
encodeURIComponent(mxUtils.trim(mxResources.get('loveIt', ['']))) + '&url=' +
|
||||
encodeURIComponent('https://www.draw.io') + '">' +
|
||||
'<img border="0" align="absmiddle" style="margin-top:-2px;padding-right:8px;" src="' +
|
||||
Editor.tweetImage + '"/>' + mxResources.get('loveApp') + '</a>',
|
||||
'<a title="' + mxResources.get('loveApp') + '" target="_blank" href="https://www.facebook.com/sharer.php?p[url]=' +
|
||||
Editor.tweetImage + '"/>' + mxResources.get('loveIt', ['draw.io']) + '</a>',
|
||||
'<a title="' + mxResources.get('loveIt', ['draw.io']) + '" target="_blank" href="https://www.facebook.com/sharer.php?p[url]=' +
|
||||
encodeURIComponent('https://www.draw.io') + '">' +
|
||||
'<img border="0" align="absmiddle" style="margin-top:-2px;padding-right:8px;" src="' +
|
||||
Editor.facebookImage + '"/>' + mxResources.get('loveApp') + '</a>'];
|
||||
Editor.facebookImage + '"/>' + mxResources.get('loveIt', ['draw.io']) + '</a>'];
|
||||
|
||||
/**
|
||||
* Creates github client.
|
||||
|
@ -1019,7 +1019,7 @@ App.prototype.init = function()
|
|||
{
|
||||
var rnd = Math.random();
|
||||
this.updateAd(Math.round(rnd * (this.adsHtml.length - 1)));
|
||||
}), 200000);
|
||||
}), 180000);
|
||||
}
|
||||
|
||||
if (this.menubar != null)
|
||||
|
|
|
@ -140,7 +140,7 @@ var StorageDialog = function(editorUi, fn, rowLimit)
|
|||
}
|
||||
else
|
||||
{
|
||||
label.style.paddingTop = '10px';
|
||||
label.style.paddingTop = '5px';
|
||||
label.style.whiteSpace = 'normal';
|
||||
}
|
||||
|
||||
|
@ -283,8 +283,8 @@ var StorageDialog = function(editorUi, fn, rowLimit)
|
|||
}
|
||||
else if (Graph.fileSupport && !mxClient.IS_IE && !mxClient.IS_IE11)
|
||||
{
|
||||
addLogo(null, mxResources.get('import'), null, null, ['',
|
||||
mxResources.get('gliffy'), mxResources.get('formatVsdx'),
|
||||
addLogo(null, mxResources.get('import'), null, null, ['', mxResources.get('gliffy'),
|
||||
mxResources.get('formatVssx'), mxResources.get('formatVsdx'),
|
||||
mxResources.get('lucidchart')], function()
|
||||
{
|
||||
var input = document.createElement('input');
|
||||
|
@ -296,7 +296,7 @@ var StorageDialog = function(editorUi, fn, rowLimit)
|
|||
{
|
||||
// Using null for position will disable crop of input file
|
||||
editorUi.hideDialog();
|
||||
editorUi.openFiles(input.files, null, null, editorUi.maxImageSize);
|
||||
editorUi.openFiles(input.files, true);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -4949,36 +4949,9 @@
|
|||
};
|
||||
|
||||
/**
|
||||
* Automatic loading for lucidchart import.
|
||||
* Imports the given Lucidchart data.
|
||||
*/
|
||||
EditorUi.prototype.importLucidChart = function(data, dx, dy, crop)
|
||||
{
|
||||
// Finds and imports first page
|
||||
var state = JSON.parse(JSON.parse(data).state);
|
||||
var page = null;
|
||||
|
||||
for (var id in state.Pages)
|
||||
{
|
||||
var tmp = state.Pages[id];
|
||||
|
||||
if (tmp != null && tmp.Properties.Order == '0')
|
||||
{
|
||||
page = tmp;
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (page != null)
|
||||
{
|
||||
this.insertLucidChart(page, 0, 0);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Automatic loading for lucidchart import.
|
||||
*/
|
||||
EditorUi.prototype.insertLucidChart = function(g, dx, dy, crop)
|
||||
EditorUi.prototype.importLucidChart = function(data, dx, dy, crop, done)
|
||||
{
|
||||
var delayed = mxUtils.bind(this, function()
|
||||
{
|
||||
|
@ -4987,11 +4960,18 @@
|
|||
{
|
||||
try
|
||||
{
|
||||
this.pasteLucidChart(g, dx, dy, crop);
|
||||
this.insertLucidChart(data, dx, dy, crop, done);
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
// ignore
|
||||
this.handleError(e);
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (done != null)
|
||||
{
|
||||
done();
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -5016,6 +4996,66 @@
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Automatic loading for lucidchart import.
|
||||
*/
|
||||
EditorUi.prototype.insertLucidChart = function(data, dx, dy, crop, done)
|
||||
{
|
||||
var state = JSON.parse(JSON.parse(data).state);
|
||||
|
||||
// Extracts and sorts all pages
|
||||
var pages = [];
|
||||
|
||||
for (var id in state.Pages)
|
||||
{
|
||||
pages.push(state.Pages[id]);
|
||||
}
|
||||
|
||||
pages.sort(function(a, b)
|
||||
{
|
||||
if (a.Properties.Order < b.Properties.Order)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
else if (a.Properties.Order > b.Properties.Order)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
});
|
||||
|
||||
if (pages.length > 0)
|
||||
{
|
||||
this.editor.graph.getModel().beginUpdate();
|
||||
|
||||
try
|
||||
{
|
||||
this.pasteLucidChart(pages[0], dx, dy, crop);
|
||||
|
||||
// If pages are enabled add more pages
|
||||
if (this.pages != null)
|
||||
{
|
||||
var current = this.currentPage;
|
||||
|
||||
for (var i = 1; i < pages.length; i++)
|
||||
{
|
||||
this.insertPage();
|
||||
this.pasteLucidChart(pages[i]);
|
||||
}
|
||||
|
||||
this.selectPage(current);
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
this.editor.graph.getModel().endUpdate();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Imports the given XML into the existing diagram.
|
||||
* TODO: Make this function asynchronous
|
||||
|
@ -7179,7 +7219,7 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
this.openFiles(evt.dataTransfer.files);
|
||||
this.openFiles(evt.dataTransfer.files, true);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -7359,7 +7399,7 @@
|
|||
/**
|
||||
* Opens the given files in the editor.
|
||||
*/
|
||||
EditorUi.prototype.openFiles = function(files)
|
||||
EditorUi.prototype.openFiles = function(files, temp)
|
||||
{
|
||||
if (this.spinner.spin(document.body, mxResources.get('loading')))
|
||||
{
|
||||
|
@ -7403,7 +7443,34 @@
|
|||
|
||||
if (xhr.status >= 200 && xhr.status <= 299)
|
||||
{
|
||||
this.openLocalFile(xhr.responseText, name);
|
||||
var xml = xhr.responseText;
|
||||
|
||||
if (xml.substring(0, 10) == '<mxlibrary')
|
||||
{
|
||||
// Creates new temporary file if library is dropped in splash screen
|
||||
if (this.getCurrentFile() == null && urlParams['embed'] != '1')
|
||||
{
|
||||
this.openLocalFile(this.emptyDiagramXml, name, temp);
|
||||
}
|
||||
|
||||
if (name != null && name.toLowerCase().substring(name.length - 5) == '.vssx')
|
||||
{
|
||||
name = name.substring(0, filename.length - 5) + '.xml';
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.loadLibrary(new LocalLibrary(this, xml, name));
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
this.handleError(e, mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.openLocalFile(xml, name, temp);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -7421,16 +7488,24 @@
|
|||
name = name.substring(0, name.length - 5) + '.xml';
|
||||
}
|
||||
|
||||
// LATER: Add import step that produces cells and insert
|
||||
// via callback to avoid an undoable step to be created
|
||||
this.spinner.stop();
|
||||
this.openLocalFile(this.emptyDiagramXml, name);
|
||||
this.importLucidChart(data, 0, 0);
|
||||
// LATER: Add import step that produces cells and use callback
|
||||
this.openLocalFile(this.emptyDiagramXml, name, temp);
|
||||
this.importLucidChart(data, 0, 0, null, mxUtils.bind(this, function()
|
||||
{
|
||||
this.editor.undoManager.clear();
|
||||
this.spinner.stop();
|
||||
}));
|
||||
}
|
||||
else if (e.target.result.substring(0, 10) == '<mxlibrary')
|
||||
{
|
||||
this.spinner.stop();
|
||||
|
||||
// Creates new temporary file if library is dropped in splash screen
|
||||
if (this.getCurrentFile() == null && urlParams['embed'] != '1')
|
||||
{
|
||||
this.openLocalFile(this.emptyDiagramXml, name, temp);
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.loadLibrary(new LocalLibrary(this, e.target.result, file.name));
|
||||
|
@ -7448,7 +7523,7 @@
|
|||
}
|
||||
|
||||
this.spinner.stop();
|
||||
this.openLocalFile(data, name);
|
||||
this.openLocalFile(data, name, temp);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -601,8 +601,9 @@ EditorUi.prototype.updatePageRoot = function(page)
|
|||
/**
|
||||
* Returns true if the given string contains an mxfile.
|
||||
*/
|
||||
EditorUi.prototype.selectPage = function(page)
|
||||
EditorUi.prototype.selectPage = function(page, quiet)
|
||||
{
|
||||
quiet = (quiet != null) ? quiet : false;
|
||||
this.editor.graph.stopEditing();
|
||||
|
||||
var edit = this.editor.graph.model.createUndoableEdit();
|
||||
|
@ -615,7 +616,10 @@ EditorUi.prototype.selectPage = function(page)
|
|||
edit.add(change);
|
||||
edit.notify();
|
||||
|
||||
this.editor.graph.model.fireEvent(new mxEventObject(mxEvent.UNDO, 'edit', edit));
|
||||
if (!quiet)
|
||||
{
|
||||
this.editor.graph.model.fireEvent(new mxEventObject(mxEvent.UNDO, 'edit', edit));
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -824,7 +824,7 @@ function VsdxExport(editorUi)
|
|||
|
||||
if (editorUi.currentPage != page)
|
||||
{
|
||||
editorUi.selectPage(page);
|
||||
editorUi.selectPage(page, true);
|
||||
}
|
||||
|
||||
var diagramName = page.getName();
|
||||
|
@ -837,7 +837,7 @@ function VsdxExport(editorUi)
|
|||
|
||||
if (currentPage != editorUi.currentPage)
|
||||
{
|
||||
editorUi.selectPage(currentPage);
|
||||
editorUi.selectPage(currentPage, true);
|
||||
}
|
||||
|
||||
editorUi.editor.graph.setSelectionCells(selectedCells);
|
||||
|
|
2
war/js/embed-static.min.js
vendored
2
war/js/embed-static.min.js
vendored
|
@ -184,7 +184,7 @@ f)+"\n"+t+"}":"{"+x.join(",")+"}";f=t;return l}}"function"!==typeof Date.prototy
|
|||
e=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f,g,h={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},k;"function"!==typeof JSON.stringify&&(JSON.stringify=function(a,b,d){var e;g=f="";if("number"===typeof d)for(e=0;e<d;e+=1)g+=" ";else"string"===typeof d&&(g=d);if((k=b)&&"function"!==typeof b&&("object"!==typeof b||"number"!==typeof b.length))throw Error("JSON.stringify");return c("",{"":a})});
|
||||
"function"!==typeof JSON.parse&&(JSON.parse=function(a,b){function c(a,d){var e,f,g=a[d];if(g&&"object"===typeof g)for(e in g)Object.prototype.hasOwnProperty.call(g,e)&&(f=c(g,e),void 0!==f?g[e]=f:delete g[e]);return b.call(a,d,g)}var e;a=""+a;d.lastIndex=0;d.test(a)&&(a=a.replace(d,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
|
||||
"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return e=eval("("+a+")"),"function"===typeof b?c({"":e},""):e;throw new SyntaxError("JSON.parse");})})();var mxBasePath="https://www.draw.io/mxgraph/",mxLoadStylesheets=mxLoadResources=!1,mxLanguage="en";window.urlParams=window.urlParams||{};window.MAX_REQUEST_SIZE=window.MAX_REQUEST_SIZE||10485760;window.MAX_AREA=window.MAX_AREA||225E6;window.EXPORT_URL=window.EXPORT_URL||"/export";window.SAVE_URL=window.SAVE_URL||"/save";window.OPEN_URL=window.OPEN_URL||"/open";window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||window.RESOURCES_PATH+"/grapheditor";window.STENCIL_PATH=window.STENCIL_PATH||"stencils";window.IMAGE_PATH=window.IMAGE_PATH||"images";
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"6.9.0",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"6.9.1",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
|
||||
0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
|
||||
0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||
|
||||
|
|
2
war/js/reader.min.js
vendored
2
war/js/reader.min.js
vendored
|
@ -184,7 +184,7 @@ f)+"\n"+t+"}":"{"+x.join(",")+"}";f=t;return l}}"function"!==typeof Date.prototy
|
|||
e=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f,g,h={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},k;"function"!==typeof JSON.stringify&&(JSON.stringify=function(a,b,d){var e;g=f="";if("number"===typeof d)for(e=0;e<d;e+=1)g+=" ";else"string"===typeof d&&(g=d);if((k=b)&&"function"!==typeof b&&("object"!==typeof b||"number"!==typeof b.length))throw Error("JSON.stringify");return c("",{"":a})});
|
||||
"function"!==typeof JSON.parse&&(JSON.parse=function(a,b){function c(a,d){var e,f,g=a[d];if(g&&"object"===typeof g)for(e in g)Object.prototype.hasOwnProperty.call(g,e)&&(f=c(g,e),void 0!==f?g[e]=f:delete g[e]);return b.call(a,d,g)}var e;a=""+a;d.lastIndex=0;d.test(a)&&(a=a.replace(d,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)}));if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,
|
||||
"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return e=eval("("+a+")"),"function"===typeof b?c({"":e},""):e;throw new SyntaxError("JSON.parse");})})();var mxBasePath="https://www.draw.io/mxgraph/",mxLoadStylesheets=mxLoadResources=!1,mxLanguage="en";window.urlParams=window.urlParams||{};window.MAX_REQUEST_SIZE=window.MAX_REQUEST_SIZE||10485760;window.MAX_AREA=window.MAX_AREA||225E6;window.EXPORT_URL=window.EXPORT_URL||"/export";window.SAVE_URL=window.SAVE_URL||"/save";window.OPEN_URL=window.OPEN_URL||"/open";window.RESOURCES_PATH=window.RESOURCES_PATH||"resources";window.RESOURCE_BASE=window.RESOURCE_BASE||window.RESOURCES_PATH+"/grapheditor";window.STENCIL_PATH=window.STENCIL_PATH||"stencils";window.IMAGE_PATH=window.IMAGE_PATH||"images";
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"6.9.0",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
window.STYLE_PATH=window.STYLE_PATH||"styles";window.CSS_PATH=window.CSS_PATH||"styles";window.OPEN_FORM=window.OPEN_FORM||"open.html";window.mxBasePath=window.mxBasePath||"../../../src";window.mxLanguage=window.mxLanguage||urlParams.lang;window.mxLanguages=window.mxLanguages||["de"];var mxClient={VERSION:"6.9.1",IS_IE:0<=navigator.userAgent.indexOf("MSIE"),IS_IE6:0<=navigator.userAgent.indexOf("MSIE 6"),IS_IE11:!!navigator.userAgent.match(/Trident\/7\./),IS_EDGE:!!navigator.userAgent.match(/Edge\//),IS_QUIRKS:0<=navigator.userAgent.indexOf("MSIE")&&(null==document.documentMode||5==document.documentMode),IS_EM:"spellcheck"in document.createElement("textarea")&&8==document.documentMode,VML_PREFIX:"v",OFFICE_PREFIX:"o",IS_NS:0<=navigator.userAgent.indexOf("Mozilla/")&&0>navigator.userAgent.indexOf("MSIE")&&
|
||||
0>navigator.userAgent.indexOf("Edge/"),IS_OP:0<=navigator.userAgent.indexOf("Opera/")||0<=navigator.userAgent.indexOf("OPR/"),IS_OT:0<=navigator.userAgent.indexOf("Presto/")&&0>navigator.userAgent.indexOf("Presto/2.4.")&&0>navigator.userAgent.indexOf("Presto/2.3.")&&0>navigator.userAgent.indexOf("Presto/2.2.")&&0>navigator.userAgent.indexOf("Presto/2.1.")&&0>navigator.userAgent.indexOf("Presto/2.0.")&&0>navigator.userAgent.indexOf("Presto/1."),IS_SF:0<=navigator.userAgent.indexOf("AppleWebKit/")&&
|
||||
0>navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_IOS:navigator.userAgent.match(/(iPad|iPhone|iPod)/g)?!0:!1,IS_GC:0<=navigator.userAgent.indexOf("Chrome/")&&0>navigator.userAgent.indexOf("Edge/"),IS_CHROMEAPP:null!=window.chrome&&null!=chrome.app&&null!=chrome.app.runtime,IS_FF:0<=navigator.userAgent.indexOf("Firefox/"),IS_MT:0<=navigator.userAgent.indexOf("Firefox/")&&0>navigator.userAgent.indexOf("Firefox/1.")&&0>navigator.userAgent.indexOf("Firefox/2.")||0<=navigator.userAgent.indexOf("Iceweasel/")&&
|
||||
0>navigator.userAgent.indexOf("Iceweasel/1.")&&0>navigator.userAgent.indexOf("Iceweasel/2.")||0<=navigator.userAgent.indexOf("SeaMonkey/")&&0>navigator.userAgent.indexOf("SeaMonkey/1.")||0<=navigator.userAgent.indexOf("Iceape/")&&0>navigator.userAgent.indexOf("Iceape/1."),IS_SVG:0<=navigator.userAgent.indexOf("Firefox/")||0<=navigator.userAgent.indexOf("Iceweasel/")||0<=navigator.userAgent.indexOf("Seamonkey/")||0<=navigator.userAgent.indexOf("Iceape/")||0<=navigator.userAgent.indexOf("Galeon/")||
|
||||
|
|
706
war/js/viewer.min.js
vendored
706
war/js/viewer.min.js
vendored
File diff suppressed because one or more lines are too long
4
war/js/vsdx.min.js
vendored
4
war/js/vsdx.min.js
vendored
|
@ -25,8 +25,8 @@ function F(a,d,c){var g=mxUtils.createXmlDocument(),b=mxUtils.createXmlDocument(
|
|||
t.pageScale,g));r.appendChild(e("DrawingScale",1,g));t=k(g,n.XMLNS,"Rel");t.setAttribute("r:id","rId"+m);var v=k(g,n.XMLNS,"Section");v.setAttribute("N","Layer");var u=k(g,n.XMLNS,"Row");u.setAttribute("IX","0");v.appendChild(u);u.appendChild(e("Name","Connector",g));u.appendChild(e("Color","255",g));u.appendChild(e("Status","0",g));u.appendChild(e("Visible","1",g));u.appendChild(e("Print","1",g));u.appendChild(e("Active","0",g));u.appendChild(e("Lock","0",g));u.appendChild(e("Snap","1",g));u.appendChild(e("Glue",
|
||||
"1",g));u.appendChild(e("NameUniv","Connector",g));u.appendChild(e("ColorTrans","0",g));r.appendChild(v);p.appendChild(r);p.appendChild(t);f.appendChild(p);p=k(b,n.RELS_XMLNS,"Relationship");p.setAttribute("Id","rId"+m);p.setAttribute("Type",n.PAGES_TYPE);p.setAttribute("Target",w);h.appendChild(p);B(a,n.VISIO_PAGES+w,d[q]);m++}g.appendChild(f);b.appendChild(h);B(a,n.VISIO_PAGES+"pages.xml",g);B(a,n.VISIO_PAGES+"_rels/pages.xml.rels",b)}function H(a,d){var b=n.VISIO_PAGES_RELS+"page"+d+".xml.rels",
|
||||
g=mxUtils.createXmlDocument(),f=k(g,n.RELS_XMLNS,"Relationships"),c=k(g,n.RELS_XMLNS,"Relationship");c.setAttribute("Type","http://schemas.microsoft.com/visio/2010/relationships/master");c.setAttribute("Id","rId1");c.setAttribute("Target","../masters/master1.xml");f.appendChild(c);var e=q.images;if(0<e.length)for(var l=0;l<e.length;l++)c=k(g,n.RELS_XMLNS,"Relationship"),c.setAttribute("Type",n.XMLNS_R+"/image"),c.setAttribute("Id","rId"+(l+2)),c.setAttribute("Target","../media/"+e[l]),f.appendChild(c);
|
||||
g.appendChild(f);B(a,b,g)}var n=this,q=new mxVsdxCanvas2D,D={},C=1;this.exportCurrentDiagrams=function(){try{if(a.spinner.spin(document.body,mxResources.get("exporting"))){var b=new JSZip;q.init(b);D={};C=1;var f={},e={},g=null!=a.pages?a.pages.length:1;if(null!=a.pages){for(var k=a.editor.graph.getSelectionCells(),l=a.currentPage,m=0;m<a.pages.length;m++){var n=a.pages[m];a.currentPage!=n&&a.selectPage(n);var p=n.getName(),w=a.editor.graph,r=d(w);f[p]=u(w,r);H(b,m+1);e[p]=r}l!=a.currentPage&&a.selectPage(l);
|
||||
a.editor.graph.setSelectionCells(k)}else w=a.editor.graph,r=d(w),p="Page1",f[p]=u(w,r),H(b,1),e[p]=r;c(b,g);F(b,f,e);f=function(){b.generateAsync({type:"base64"}).then(function(g){a.spinner.stop();var b=a.getBaseFilename();a.saveData(b+".vsdx","vsdx",g,"application/vnd.visio2013",!0)})};0<q.filesLoading?q.onFilesLoaded=f:f()}return!0}catch(I){return console.log(I),!1}}}VsdxExport.prototype.CONVERSION_FACTOR=101.6;VsdxExport.prototype.PAGES_TYPE="http://schemas.microsoft.com/visio/2010/relationships/page";
|
||||
g.appendChild(f);B(a,b,g)}var n=this,q=new mxVsdxCanvas2D,D={},C=1;this.exportCurrentDiagrams=function(){try{if(a.spinner.spin(document.body,mxResources.get("exporting"))){var b=new JSZip;q.init(b);D={};C=1;var f={},e={},g=null!=a.pages?a.pages.length:1;if(null!=a.pages){for(var k=a.editor.graph.getSelectionCells(),l=a.currentPage,m=0;m<a.pages.length;m++){var n=a.pages[m];a.currentPage!=n&&a.selectPage(n,!0);var p=n.getName(),w=a.editor.graph,r=d(w);f[p]=u(w,r);H(b,m+1);e[p]=r}l!=a.currentPage&&
|
||||
a.selectPage(l,!0);a.editor.graph.setSelectionCells(k)}else w=a.editor.graph,r=d(w),p="Page1",f[p]=u(w,r),H(b,1),e[p]=r;c(b,g);F(b,f,e);f=function(){b.generateAsync({type:"base64"}).then(function(g){a.spinner.stop();var b=a.getBaseFilename();a.saveData(b+".vsdx","vsdx",g,"application/vnd.visio2013",!0)})};0<q.filesLoading?q.onFilesLoaded=f:f()}return!0}catch(I){return console.log(I),!1}}}VsdxExport.prototype.CONVERSION_FACTOR=101.6;VsdxExport.prototype.PAGES_TYPE="http://schemas.microsoft.com/visio/2010/relationships/page";
|
||||
VsdxExport.prototype.RELS_XMLNS="http://schemas.openxmlformats.org/package/2006/relationships";VsdxExport.prototype.XML_SPACE="preserve";VsdxExport.prototype.XMLNS_R="http://schemas.openxmlformats.org/officeDocument/2006/relationships";VsdxExport.prototype.XMLNS="http://schemas.microsoft.com/office/visio/2012/main";VsdxExport.prototype.VISIO_PAGES="visio/pages/";VsdxExport.prototype.PREFEX="com/mxgraph/io/vsdx/resources/export/";VsdxExport.prototype.VSDX_ENC="ISO-8859-1";
|
||||
VsdxExport.prototype.PART_NAME="PartName";VsdxExport.prototype.CONTENT_TYPES_XML="[Content_Types].xml";VsdxExport.prototype.VISIO_PAGES_RELS="visio/pages/_rels/";
|
||||
VsdxExport.prototype.ARROWS_MAP={"none|1":0,"none|0":0,"open|1":1,"open|0":1,"block|1":4,"block|0":14,"classic|1":5,"classic|0":17,"oval|1":10,"oval|0":20,"diamond|1":11,"diamond|0":22,"blockThin|1":2,"blockThin|0":15,"dash|1":23,"dash|0":23,"ERone|1":24,"ERone|0":24,"ERmandOne|1":25,"ERmandOne|0":25,"ERmany|1":27,"ERmany|0":27,"ERoneToMany|1":28,"ERoneToMany|0":28,"ERzeroToMany|1":29,"ERzeroToMany|0":29,"ERzeroToOne|1":30,"ERzeroToOne|0":30,"openAsync|1":9,"openAsync|0":9};function mxVsdxCanvas2D(){mxAbstractCanvas2D.call(this)}mxUtils.extend(mxVsdxCanvas2D,mxAbstractCanvas2D);mxVsdxCanvas2D.prototype.textEnabled=!0;mxVsdxCanvas2D.prototype.init=function(a){this.filesLoading=0;this.zip=a};mxVsdxCanvas2D.prototype.onFilesLoaded=function(){};mxVsdxCanvas2D.prototype.createElt=function(a){return null!=this.xmlDoc.createElementNS?this.xmlDoc.createElementNS(VsdxExport.prototype.XMLNS,a):this.xmlDoc.createElement(a)};
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (مع XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (عادي)
|
||||
formatXml=XML
|
||||
forum=المناقشات/ منتديات المساعدة
|
||||
|
@ -401,7 +402,7 @@ loading=تحميل
|
|||
lockUnlock=قفل/إلغاء قفل
|
||||
loggedOut=تم تسجيل الخروج
|
||||
logIn=log in
|
||||
loveApp=أحب draw.io
|
||||
loveIt=أحب {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=خيارات الإدخال الرياضي
|
||||
makeCopy=إنشاء نسخة
|
||||
|
|
|
@ -287,8 +287,9 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (с XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Обикновен)
|
||||
formatXml=XML
|
||||
formatXml=XML
|
||||
forum=Форуми за обсъждане/помощ
|
||||
fromTemplate=От шаблон
|
||||
fromTemplateUrl=От URL на шаблона
|
||||
|
@ -401,7 +402,7 @@ loading=Зареждане
|
|||
lockUnlock=Заключване/Отключване
|
||||
loggedOut=Излязохте
|
||||
logIn=вход
|
||||
loveApp=Обичам draw.io
|
||||
loveIt=Обичам {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Математическа текстообработка
|
||||
makeCopy=Направи копие
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (sa XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (jednostavan)
|
||||
formatXml=XML
|
||||
forum=Diskusija/Forumi pomoći
|
||||
|
@ -401,7 +402,7 @@ loading=Učitavanje
|
|||
lockUnlock=Zaključaj/Otključaj
|
||||
loggedOut=Odjavljen
|
||||
logIn=Prijavi se
|
||||
loveApp=Volim draw.io
|
||||
loveIt=Volim {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematičke postavke pisanja
|
||||
makeCopy=Napravi kopiju
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (amb XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Simple)
|
||||
formatXml=XML
|
||||
forum=Fòrums de discussió i ajuda
|
||||
|
@ -401,7 +402,7 @@ loading=Carregant
|
|||
lockUnlock=Bloquejar/Desbloquejar
|
||||
loggedOut=Desconnectat
|
||||
logIn=Iniciar sessió
|
||||
loveApp=M'encanta draw.io
|
||||
loveIt=M'encanta {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Composició tipogràfica matemàtica
|
||||
makeCopy=Fes una còpia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (s XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Prostý)
|
||||
formatXml=XML
|
||||
forum=Fóra s diskusí/nápovědou
|
||||
|
@ -401,7 +402,7 @@ loading=Nahrávám
|
|||
lockUnlock=Zamknout/Odemknout
|
||||
loggedOut=Odpojeno
|
||||
logIn=Přihlásit
|
||||
loveApp=Miluji draw.io
|
||||
loveIt=Miluji {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematické nastavení písma
|
||||
makeCopy=Udělat kopii
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (med XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Diskussions/hjælpefora
|
||||
|
@ -401,7 +402,7 @@ loading=Indlæser
|
|||
lockUnlock=Lås/lås op
|
||||
loggedOut=Logget af
|
||||
logIn=Log ind
|
||||
loveApp=Jeg elsker draw.io
|
||||
loveIt=Jeg elsker {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematisk tegnsætning
|
||||
makeCopy=Opret en kopi
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (mit XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (unkomprimiert)
|
||||
formatXml=XML
|
||||
forum=Diskussion/Hilfe Foren
|
||||
|
@ -401,7 +402,7 @@ loading=Wird geladen
|
|||
lockUnlock=Sperren/Entsperren
|
||||
loggedOut=Nicht angemeldet
|
||||
logIn=anmelden
|
||||
loveApp=Ich liebe draw.io
|
||||
loveIt=Ich liebe {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematischer Formelsatz
|
||||
makeCopy=Kopie erstellen
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (με XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Απλό)
|
||||
formatXml=XML
|
||||
forum=Συζήτηση/Φόρουμ Βοήθειας
|
||||
|
@ -401,7 +402,7 @@ loading=Φόρτωση
|
|||
lockUnlock=Κλείδωμα/Ξεκλείδωμα
|
||||
loggedOut=Αποσυνδέθηκε
|
||||
logIn=Είσοδος
|
||||
loveApp=Αγαπώ το draw.io
|
||||
loveIt=Αγαπώ το {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Μαθηματική ρύθμιση κειμένου προς εκτύπωση
|
||||
makeCopy=Δημιουργία αντιγράφου
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (kun XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=Mi amas draw.io
|
||||
loveIt=Mi amas {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (con XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Normal)
|
||||
formatXml=XML
|
||||
forum=Foros de discusión/ayuda
|
||||
|
@ -401,7 +402,7 @@ loading=Cargando
|
|||
lockUnlock=Bloquear/Desbloquear
|
||||
loggedOut=Desconectado
|
||||
logIn=ingresar
|
||||
loveApp=Me encanta draw.io
|
||||
loveIt=Me encanta {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Composición tipográfica matemática
|
||||
makeCopy=Hacer una copia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (XML-ifa)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (tavaline)
|
||||
formatXml=XML
|
||||
forum=Diskussiooni-abifoorumid
|
||||
|
@ -401,7 +402,7 @@ loading=Laeb
|
|||
lockUnlock=Lukusta/Ava
|
||||
loggedOut=Välja logitud
|
||||
logIn=logi sisse
|
||||
loveApp=Ma armastan draw.io'd
|
||||
loveIt=Ma armastan {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matemaatiline vormistus
|
||||
makeCopy=Tee koopia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=محل مخصوص بحث/کمک رسانی
|
||||
|
@ -401,7 +402,7 @@ loading=فراخوانی
|
|||
lockUnlock=ققل کردن/بازکردن
|
||||
loggedOut=خارج شده
|
||||
logIn=وارد شدن
|
||||
loveApp=عاشق draw.io هستم
|
||||
loveIt=عاشق draw.io هستم
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=حروف چینی ریاضی
|
||||
makeCopy=ایجاد یک کپی
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (XML:n kanssa)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (tavallinen)
|
||||
formatXml=XML
|
||||
forum=Keskustelu-/Apu-foorumit
|
||||
|
@ -401,7 +402,7 @@ loading=Ladataan
|
|||
lockUnlock=Lukitse/Avaa
|
||||
loggedOut=Kirjautunut ulos
|
||||
logIn=Kirjaudu sisään
|
||||
loveApp=Rakastan draw.io:a
|
||||
loveIt=Rakastan {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matemaattiset näppäilyasetukset
|
||||
makeCopy=Luo kopio
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (may XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (payak)
|
||||
formatXml=XML
|
||||
forum=Diskusyon/Usapang tulong
|
||||
|
@ -401,7 +402,7 @@ loading=Naglo-load
|
|||
lockUnlock=Isara/ Buksan
|
||||
loggedOut=Nag-Log out
|
||||
logIn=Mag-Log in
|
||||
loveApp=Gusto ko ang draw.io
|
||||
loveIt=Gusto ko ang {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematikong Typesetting
|
||||
makeCopy=Gumawa ng kopya
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (avec XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Texte normal)
|
||||
formatXml=XML
|
||||
forum=Forum d'aide
|
||||
|
@ -401,7 +402,7 @@ loading=Chargement
|
|||
lockUnlock=Bloquer/Débloquer
|
||||
loggedOut=Se déconnecter
|
||||
logIn=Se connecter
|
||||
loveApp=J'aime draw.io
|
||||
loveIt=J'aime {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Paramètres d'entrée mathématique
|
||||
makeCopy=Faire une copie
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (עם XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (רגיל)
|
||||
formatXml=XML
|
||||
forum=דיון/פורום תמיכה
|
||||
|
@ -401,7 +402,7 @@ loading=טוען
|
|||
lockUnlock=נעל/שחרר
|
||||
loggedOut=מנותק
|
||||
logIn=התחבר
|
||||
loveApp=אני אוהב את draw.io
|
||||
loveIt=אני אוהב את draw.io
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=סידור דפוס מתמטי
|
||||
makeCopy=צור עותק
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML-be beágyazott
|
||||
formatSvgEmbedded=SVG-be beágyazott XML (.svg)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=Sima Draw.io (.xml)
|
||||
formatXml=XML
|
||||
forum=Fórum
|
||||
|
@ -401,7 +402,7 @@ loading=Betöltés
|
|||
lockUnlock=Bezár/Kizár
|
||||
loggedOut=Kijelentkezve
|
||||
logIn=Bejelentkez
|
||||
loveApp=Tetszik a draw.io
|
||||
loveIt=Tetszik a {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematikai betűszedés
|
||||
makeCopy=Másolatot készít
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=formatSvg
|
|||
formatHtmlEmbedded=formatHtmlEmbedded
|
||||
formatSvgEmbedded=formatSvgEmbedded
|
||||
formatVsdx=formatVsdx
|
||||
formatVssx=formatVssx
|
||||
formatXmlPlain=formatXmlPlain
|
||||
formatXml=formatXml
|
||||
forum=forum
|
||||
|
@ -401,7 +402,7 @@ loading=loading
|
|||
lockUnlock=lockUnlock
|
||||
loggedOut=loggedOut
|
||||
logIn=logIn
|
||||
loveApp=loveApp
|
||||
loveIt=loveIt
|
||||
lucidchart=lucidchart
|
||||
mathematicalTypesetting=mathematicalTypesetting
|
||||
makeCopy=makeCopy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (dengan XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Forum Diskusi/Bantuan
|
||||
|
@ -401,7 +402,7 @@ loading=Memuat
|
|||
lockUnlock=Mengunci/Membuka
|
||||
loggedOut=Keluar
|
||||
logIn=masuk
|
||||
loveApp=Saya suka draw.io
|
||||
loveIt=Saya suka {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Tata Cetak Matematis
|
||||
makeCopy=Buat Salinan
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (con XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (testo normale)
|
||||
formatXml=XML
|
||||
forum=Forum di discussione/Aiuto
|
||||
|
@ -401,7 +402,7 @@ loading=Caricamento
|
|||
lockUnlock=Blocca/Sblocca
|
||||
loggedOut=Uscito
|
||||
logIn=Accedi
|
||||
loveApp=Mi piace draw.io
|
||||
loveIt=Mi piace draw.io
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Parametri di scrittura matematica
|
||||
makeCopy=Fai una copia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (XMLを含む)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (非圧縮)
|
||||
formatXml=XML
|
||||
forum=ヘルプ・ディスカッション
|
||||
|
@ -401,7 +402,7 @@ loading=読み込み中
|
|||
lockUnlock=ロック / 解除
|
||||
loggedOut=ログアウトしました。
|
||||
logIn=ログイン
|
||||
loveApp=draw.ioが大好きです。
|
||||
loveIt={1}が大好きです。
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=数式組版
|
||||
makeCopy=複製する
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (XML 포함)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (일반)
|
||||
formatXml=XML
|
||||
forum=논의/문의장
|
||||
|
@ -401,7 +402,7 @@ loading=불러오는중
|
|||
lockUnlock=잠금/잠금 해제
|
||||
loggedOut=로그아웃
|
||||
logIn=로그인
|
||||
loveApp=난 draw.io가 좋아요
|
||||
loveIt=난 {1}가 좋아요
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=수학 공식 입력
|
||||
makeCopy=복사본 만들기
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (dengan XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Ringkas)
|
||||
formatXml=XML
|
||||
forum=Perbincangan/Forum Bantuan
|
||||
|
@ -401,7 +402,7 @@ loading=Memuatkan
|
|||
lockUnlock=Kunci/Buka kunci
|
||||
loggedOut=Log Keluar
|
||||
logIn=log masuk
|
||||
loveApp=Saya suka draw.io
|
||||
loveIt=Saya suka {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Atur Huruf Matematik
|
||||
makeCopy=Buat satu Salinan
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (met XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plat)
|
||||
formatXml=XML
|
||||
forum=Discussie-/Helpforums
|
||||
|
@ -401,7 +402,7 @@ loading=Bezig met laden
|
|||
lockUnlock=Vergrendelen/ontgrendelen
|
||||
loggedOut=Uitgelogd
|
||||
logIn=Inloggen
|
||||
loveApp=Ik hou van draw.io
|
||||
loveIt=Ik hou van {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Wiskundige Typografie
|
||||
makeCopy=Een Kopie Maken
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (med XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (enkel)
|
||||
formatXml=XML
|
||||
forum=Diskusjon/hjelpeforum
|
||||
|
@ -401,7 +402,7 @@ loading=Laster inn
|
|||
lockUnlock=Lås/lås opp
|
||||
loggedOut=Utlogget
|
||||
logIn=Logg inn
|
||||
loveApp=Jeg elsker draw.io
|
||||
loveIt=Jeg elsker {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematisk tegnsetting
|
||||
makeCopy=Lag en kopi
|
||||
|
|
|
@ -287,8 +287,9 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (z XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (normalny)
|
||||
formatXml=XML
|
||||
formatXml=XML
|
||||
forum=Dyskusja/Forum wsparcia
|
||||
fromTemplate=Z szablonu
|
||||
fromTemplateUrl=Z adresu URL szablonu
|
||||
|
@ -401,7 +402,7 @@ loading=Ładuję
|
|||
lockUnlock=Zablokuj/odblokuj
|
||||
loggedOut=Wylogowany
|
||||
logIn=Zaloguj
|
||||
loveApp=Kocham draw.io
|
||||
loveIt=Kocham {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematyczny zestaw znaków
|
||||
makeCopy=Zrób kopię
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (com XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (normal)
|
||||
formatXml=XML
|
||||
forum=Fóruns de Discussão/Ajuda
|
||||
|
@ -401,7 +402,7 @@ loading=Carregando
|
|||
lockUnlock=Travar/Destravar
|
||||
loggedOut=Desconectado
|
||||
logIn=Conectar
|
||||
loveApp=Eu amo draw.io
|
||||
loveIt=Eu amo {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Sistema tipográfico matemático
|
||||
makeCopy=Fazer uma cópia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (com XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (simples)
|
||||
formatXml=XML
|
||||
forum=Fóruns de discussão e ajuda
|
||||
|
@ -401,7 +402,7 @@ loading=A carregar
|
|||
lockUnlock=Bloquear/Desbloquear
|
||||
loggedOut=Desconetado
|
||||
logIn=Conetar
|
||||
loveApp=Eu adoro draw.io
|
||||
loveIt=Eu adoro {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Composição tipográfica matemática
|
||||
makeCopy=Fazer uma cópia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (cu XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Simplu)
|
||||
formatXml=XML
|
||||
forum=Forumuri de Discuții/Ajutor
|
||||
|
@ -401,7 +402,7 @@ loading=În curs de încărcare
|
|||
lockUnlock=Blocare/Deblocare
|
||||
loggedOut=Deconectat
|
||||
logIn=Logați-vă
|
||||
loveApp=Iubesc draw.io
|
||||
loveIt=Iubesc {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Sistem tipografic matematic
|
||||
makeCopy=Fă o copie
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (с XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (стандартный)
|
||||
formatXml=XML
|
||||
forum=Обсуждение/Справочный форум
|
||||
|
@ -401,7 +402,7 @@ loading=Загрузка
|
|||
lockUnlock=Блокировать/Разблокировать
|
||||
loggedOut=Вышел
|
||||
logIn=войти
|
||||
loveApp=Обожаю draw.io
|
||||
loveIt=Обожаю {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Математический набор
|
||||
makeCopy=Создать копию
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=Scalable Vector Graphics (.svg)
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Forum
|
||||
|
@ -401,7 +402,7 @@ loading=Učitavanje
|
|||
lockUnlock=Zaključaj/Otključaj
|
||||
loggedOut=Odlogovan
|
||||
logIn=log in
|
||||
loveApp=Volim draw.io
|
||||
loveIt=Volim {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematički slog
|
||||
makeCopy=Kreiraj kopiju
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (med XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Enkel)
|
||||
formatXml=XML
|
||||
forum=Diskussion/Hjälpforum
|
||||
|
@ -401,7 +402,7 @@ loading=Laddar
|
|||
lockUnlock=Lås/Lås upp
|
||||
loggedOut=Utloggad
|
||||
logIn=Inloggning
|
||||
loveApp=Jag älskar draw.io
|
||||
loveIt=Jag älskar {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematisk typsättning
|
||||
makeCopy=Gör en kopia
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (with XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Plain)
|
||||
formatXml=XML
|
||||
forum=Discussion/Help Forums
|
||||
|
@ -401,7 +402,7 @@ loading=Loading
|
|||
lockUnlock=Lock/Unlock
|
||||
loggedOut=Logged Out
|
||||
logIn=log in
|
||||
loveApp=I love draw.io
|
||||
loveIt=I love {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
|
|
|
@ -287,8 +287,9 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (กับ XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (ปกติ)
|
||||
formatXml=XML
|
||||
formatXml=XML
|
||||
forum=พูดคุย/ฟอรั่มให้ความช่วยเหลือ
|
||||
fromTemplate=จากรูปแบบ
|
||||
fromTemplateUrl=จากรูปแบบ URL
|
||||
|
@ -401,7 +402,7 @@ loading=กำหลังโหลด
|
|||
lockUnlock=ล็อก/เอาล็อกออก
|
||||
loggedOut=ออกจากระบบ
|
||||
logIn=เข้าสู่ระบบ
|
||||
loveApp=ฉันชอบ draw.io
|
||||
loveIt=ฉันชอบ {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=การตั้งค่าการพิมพ์ทางคณิตศาสตร์
|
||||
makeCopy=สร้างฉบับคัดลอก
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (XML ile)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Normal)
|
||||
formatXml=XML
|
||||
forum=Tartışma/Yardım Forumları
|
||||
|
@ -401,7 +402,7 @@ loading=Yüklüyor
|
|||
lockUnlock=Kilitle/Kilidini Aç
|
||||
loggedOut=Çıkış Yapıldı
|
||||
logIn=Giriş yapın
|
||||
loveApp=draw.io'yu seviyorum
|
||||
loveIt={1}'yu seviyorum
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Matematiksel dizgi
|
||||
makeCopy=Kopyasını yap
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (з XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (звичайний)
|
||||
formatXml=XML
|
||||
forum=Обговорення/Довідковий форум
|
||||
|
@ -401,7 +402,7 @@ loading=Завантажується
|
|||
lockUnlock=Заблокувати/Розблокувати
|
||||
loggedOut=Ви вийшли
|
||||
logIn=Увійти
|
||||
loveApp=Мені подобається draw.io
|
||||
loveIt=Мені подобається {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Математична верстка
|
||||
makeCopy=Зробити копію
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (với XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (Trơn)
|
||||
formatXml=XML
|
||||
forum=Thảo luận/Diễn đàn trợ giúp
|
||||
|
@ -401,7 +402,7 @@ loading=Đang tải
|
|||
lockUnlock=Khóa/Mở khóa
|
||||
loggedOut=Đã đăng xuất
|
||||
logIn=Đăng nhập
|
||||
loveApp=Tôi yêu draw.io
|
||||
loveIt=Tôi yêu {1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=Sắp chữ kiểu toán học
|
||||
makeCopy=Tạo bản sao
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG (XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML (文本文件)
|
||||
formatXml=XML
|
||||
forum=討論區幫助論壇
|
||||
|
@ -401,7 +402,7 @@ loading=載入中
|
|||
lockUnlock=鎖定/解鎖
|
||||
loggedOut=已登出
|
||||
logIn=登入
|
||||
loveApp=我愛draw.io
|
||||
loveIt=我愛{1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=數學排版
|
||||
makeCopy=建立副本
|
||||
|
|
|
@ -287,6 +287,7 @@ formatSvg=SVG
|
|||
formatHtmlEmbedded=HTML
|
||||
formatSvgEmbedded=SVG(含XML)
|
||||
formatVsdx=VSDX
|
||||
formatVssx=VSSX
|
||||
formatXmlPlain=XML(普通)
|
||||
formatXml=XML
|
||||
forum=讨论组/帮助论坛
|
||||
|
@ -401,7 +402,7 @@ loading=加载中
|
|||
lockUnlock=加锁/解锁
|
||||
loggedOut=登出
|
||||
logIn=登入
|
||||
loveApp=我爱draw.io
|
||||
loveIt=我爱{1}
|
||||
lucidchart=Lucidchart
|
||||
mathematicalTypesetting=数学排版
|
||||
makeCopy=创建副本
|
||||
|
|
Loading…
Reference in a new issue