13.10.4 release
This commit is contained in:
parent
8b8ba380d3
commit
8d86dd397e
76 changed files with 4680 additions and 3491 deletions
|
@ -1,3 +1,11 @@
|
|||
26-NOV-2020: 13.10.4
|
||||
|
||||
- Adds compare button in revision history dialog
|
||||
|
||||
25-NOV-2020: 13.10.3
|
||||
|
||||
- Uses mxGraph 4.2.3 beta 5
|
||||
|
||||
24-NOV-2020: 13.10.2
|
||||
|
||||
- Fixes specific synchronize operations
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
13.10.2
|
||||
13.10.4
|
|
@ -1137,10 +1137,10 @@ mxGraph.prototype.getCurrentCellStyle=function(a,b){var c=b?null:this.view.getSt
|
|||
mxGraph.prototype.postProcessCellStyle=function(a){if(null!=a){var b=a[mxConstants.STYLE_IMAGE],c=this.getImageFromBundles(b);null!=c?a[mxConstants.STYLE_IMAGE]=c:c=b;null!=c&&"data:image/"==c.substring(0,11)&&("data:image/svg+xml,<"==c.substring(0,20)?c=c.substring(0,19)+encodeURIComponent(c.substring(19)):"data:image/svg+xml,%3C"!=c.substring(0,22)&&(b=c.indexOf(","),0<b&&";base64,"!=c.substring(b-7,b+1)&&(c=c.substring(0,b)+";base64,"+c.substring(b+1))),a[mxConstants.STYLE_IMAGE]=c)}return a};
|
||||
mxGraph.prototype.setCellStyle=function(a,b){b=b||this.getSelectionCells();if(null!=b){this.model.beginUpdate();try{for(var c=0;c<b.length;c++)this.model.setStyle(b[c],a)}finally{this.model.endUpdate()}}};mxGraph.prototype.toggleCellStyle=function(a,b,c){c=c||this.getSelectionCell();return this.toggleCellStyles(a,b,[c])};
|
||||
mxGraph.prototype.toggleCellStyles=function(a,b,c){b=null!=b?b:!1;c=c||this.getSelectionCells();var d=null;null!=c&&0<c.length&&(d=this.getCurrentCellStyle(c[0]),d=mxUtils.getValue(d,a,b)?0:1,this.setCellStyles(a,d,c));return d};mxGraph.prototype.setCellStyles=function(a,b,c){c=c||this.getSelectionCells();mxUtils.setCellStyles(this.model,c,a,b)};mxGraph.prototype.toggleCellStyleFlags=function(a,b,c){this.setCellStyleFlags(a,b,null,c)};
|
||||
mxGraph.prototype.setCellStyleFlags=function(a,b,c,d){d=d||this.getSelectionCells();null!=d&&0<d.length&&(null==c&&(c=this.getCurrentCellStyle(d[0]),c=(parseInt(c[a]||0)&b)!=b),mxUtils.setCellStyleFlags(this.model,d,a,b,c))};
|
||||
mxGraph.prototype.alignCells=function(a,b,c){null==b&&(b=this.getSelectionCells());if(null!=b&&1<b.length){if(null==c)for(var d=0;d<b.length;d++){var e=this.view.getState(b[d]);if(null!=e&&!this.model.isEdge(b[d]))if(null==c)if(a==mxConstants.ALIGN_CENTER){c=e.x+e.width/2;break}else if(a==mxConstants.ALIGN_RIGHT)c=e.x+e.width;else if(a==mxConstants.ALIGN_TOP)c=e.y;else if(a==mxConstants.ALIGN_MIDDLE){c=e.y+e.height/2;break}else c=a==mxConstants.ALIGN_BOTTOM?e.y+e.height:e.x;else c=a==mxConstants.ALIGN_RIGHT?
|
||||
Math.max(c,e.x+e.width):a==mxConstants.ALIGN_TOP?Math.min(c,e.y):a==mxConstants.ALIGN_BOTTOM?Math.max(c,e.y+e.height):Math.min(c,e.x)}if(null!=c){var f=this.view.scale;this.model.beginUpdate();try{for(d=0;d<b.length;d++)if(e=this.view.getState(b[d]),null!=e){var g=this.getCellGeometry(b[d]);null==g||this.model.isEdge(b[d])||(g=g.clone(),a==mxConstants.ALIGN_CENTER?g.x+=(c-e.x-e.width/2)/f:a==mxConstants.ALIGN_RIGHT?g.x+=(c-e.x-e.width)/f:a==mxConstants.ALIGN_TOP?g.y+=(c-e.y)/f:a==mxConstants.ALIGN_MIDDLE?
|
||||
g.y+=(c-e.y-e.height/2)/f:a==mxConstants.ALIGN_BOTTOM?g.y+=(c-e.y-e.height)/f:g.x+=(c-e.x)/f,this.resizeCell(b[d],g))}this.fireEvent(new mxEventObject(mxEvent.ALIGN_CELLS,"align",a,"cells",b))}finally{this.model.endUpdate()}}}return b};
|
||||
mxGraph.prototype.setCellStyleFlags=function(a,b,c,d){d=d||this.getSelectionCells();null!=d&&0<d.length&&(null==c&&(c=this.getCurrentCellStyle(d[0]),c=(parseInt(c[a]||0)&b)!=b),mxUtils.setCellStyleFlags(this.model,d,a,b,c))};mxGraph.prototype.getOriginForCell=function(a){a=this.model.getParent(a);for(var b=new mxPoint;null!=a;){var c=this.getCellGeometry(a);null==c||c.relative||(b.x+=c.x,b.y+=c.y);a=this.model.getParent(a)}return b};
|
||||
mxGraph.prototype.alignCells=function(a,b,c){null==b&&(b=this.getSelectionCells());if(null!=b&&1<b.length){if(null==c)for(var d=0;d<b.length;d++){var e=this.getOriginForCell(b[d]),f=this.getCellGeometry(b[d]);if(!this.model.isEdge(b[d])&&null!=f&&!f.relative)if(null==c)if(a==mxConstants.ALIGN_CENTER){c=e.x+f.x+f.width/2;break}else if(a==mxConstants.ALIGN_RIGHT)c=e.x+f.x+f.width;else if(a==mxConstants.ALIGN_TOP)c=e.y+f.y;else if(a==mxConstants.ALIGN_MIDDLE){c=e.y+f.y+f.height/2;break}else c=a==mxConstants.ALIGN_BOTTOM?
|
||||
e.y+f.y+f.height:e.x+f.x;else c=a==mxConstants.ALIGN_RIGHT?Math.max(c,e.x+f.x+f.width):a==mxConstants.ALIGN_TOP?Math.min(c,e.y+f.y):a==mxConstants.ALIGN_BOTTOM?Math.max(c,e.y+f.y+f.height):Math.min(c,e.x+f.x)}if(null!=c){b=mxUtils.sortCells(b);this.model.beginUpdate();try{for(d=0;d<b.length;d++)e=this.getOriginForCell(b[d]),f=this.getCellGeometry(b[d]),this.model.isEdge(b[d])||null==f||f.relative||(f=f.clone(),a==mxConstants.ALIGN_CENTER?f.x=c-e.x-f.width/2:a==mxConstants.ALIGN_RIGHT?f.x=c-e.x-f.width:
|
||||
a==mxConstants.ALIGN_TOP?f.y=c-e.y:a==mxConstants.ALIGN_MIDDLE?f.y=c-e.y-f.height/2:a==mxConstants.ALIGN_BOTTOM?f.y=c-e.y-f.height:f.x=c-e.x,this.resizeCell(b[d],f));this.fireEvent(new mxEventObject(mxEvent.ALIGN_CELLS,"align",a,"cells",b))}finally{this.model.endUpdate()}}}return b};
|
||||
mxGraph.prototype.flipEdge=function(a){if(null!=a&&null!=this.alternateEdgeStyle){this.model.beginUpdate();try{var b=this.model.getStyle(a);null==b||0==b.length?this.model.setStyle(a,this.alternateEdgeStyle):this.model.setStyle(a,null);this.resetEdge(a);this.fireEvent(new mxEventObject(mxEvent.FLIP_EDGE,"edge",a))}finally{this.model.endUpdate()}}return a};mxGraph.prototype.addImageBundle=function(a){this.imageBundles.push(a)};
|
||||
mxGraph.prototype.removeImageBundle=function(a){for(var b=[],c=0;c<this.imageBundles.length;c++)this.imageBundles[c]!=a&&b.push(this.imageBundles[c]);this.imageBundles=b};mxGraph.prototype.getImageFromBundles=function(a){if(null!=a)for(var b=0;b<this.imageBundles.length;b++){var c=this.imageBundles[b].getImage(a);if(null!=c)return c}return null};
|
||||
mxGraph.prototype.orderCells=function(a,b){null==b&&(b=mxUtils.sortCells(this.getSelectionCells(),!0));this.model.beginUpdate();try{this.cellsOrdered(b,a),this.fireEvent(new mxEventObject(mxEvent.ORDER_CELLS,"back",a,"cells",b))}finally{this.model.endUpdate()}return b};
|
||||
|
|
|
@ -851,6 +851,13 @@ autoUpdater.on('update-available', (a, b) =>
|
|||
//On mac, download-progress event is not called, so the indeterminate progress will continue until download is finished
|
||||
log.info('@update-progress@\n', d);
|
||||
|
||||
var percent = d.percent;
|
||||
|
||||
if (percent)
|
||||
{
|
||||
percent = Math.round(percent * 100)/100;
|
||||
}
|
||||
|
||||
if (firstTimeProg)
|
||||
{
|
||||
firstTimeProg = false;
|
||||
|
@ -860,8 +867,8 @@ autoUpdater.on('update-available', (a, b) =>
|
|||
indeterminate: false,
|
||||
title: 'draw.io Update',
|
||||
text: 'Downloading draw.io update...',
|
||||
detail: `${d.percent}% ...`,
|
||||
initialValue: d.percent,
|
||||
detail: `${percent}% ...`,
|
||||
initialValue: percent,
|
||||
browserWindow: {
|
||||
webPreferences: {
|
||||
nodeIntegration: true
|
||||
|
@ -881,12 +888,12 @@ autoUpdater.on('update-available', (a, b) =>
|
|||
})
|
||||
.on('ready', function() {
|
||||
//InitialValue doesn't set the UI! so this is needed to render it correctly
|
||||
progressBar.value = d.percent;
|
||||
progressBar.value = percent;
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
progressBar.value = d.percent;
|
||||
progressBar.value = percent;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
2408
src/main/webapp/js/app.min.js
vendored
2408
src/main/webapp/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1974,7 +1974,7 @@ App.prototype.showRatingBanner = function()
|
|||
mxEvent.addListener(star4, 'click', mxUtils.bind(this, function(e)
|
||||
{
|
||||
mxEvent.consume(e);
|
||||
window.open('https://marketplace.atlassian.com/apps/1210933/draw-io-diagrams-for-confluence?hosting=server&tab=reviews');
|
||||
window.open('https://marketplace.atlassian.com/apps/1210933/draw-io-diagrams-for-confluence?hosting=datacenter&tab=reviews');
|
||||
onclose();
|
||||
}));
|
||||
|
||||
|
|
|
@ -4948,6 +4948,11 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
container.style.width = '470px';
|
||||
container.style.height = '376px';
|
||||
container.style.overflow = 'hidden';
|
||||
|
||||
// Contains possible error messages
|
||||
var errorNode = document.createElement('div');
|
||||
errorNode.style.cssText = 'position:absolute;left:0;right:0;top:0;bottom:20px;text-align:center;transform:translate(0,50%);pointer-events:none;';
|
||||
container.appendChild(errorNode);
|
||||
|
||||
mxEvent.disableContextMenu(container);
|
||||
div.appendChild(container);
|
||||
|
@ -5015,7 +5020,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
corners: 1, // Corner roundness (0..1)
|
||||
rotate: 0, // The rotation offset
|
||||
direction: 1, // 1: clockwise, -1: counterclockwise
|
||||
color: '#000', // #rgb or #rrggbb or array of colors
|
||||
color: (uiTheme == 'dark') ? '#c0c0c0' : '#000', // #rgb or #rrggbb
|
||||
speed: 1.4, // Rounds per second
|
||||
trail: 60, // Afterglow percentage
|
||||
shadow: false, // Whether to render a shadow
|
||||
|
@ -5029,6 +5034,15 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
var spinner = new Spinner(opts);
|
||||
|
||||
var file = editorUi.getCurrentFile();
|
||||
var fileNode = editorUi.getXmlFileData(true, false, true);
|
||||
var tmp = fileNode.getElementsByTagName('diagram');
|
||||
var currentDiagrams = {};
|
||||
|
||||
for (var i = 0; i < tmp.length; i++)
|
||||
{
|
||||
currentDiagrams[tmp[i].getAttribute('id')] = tmp[i];
|
||||
}
|
||||
|
||||
var currentRow = null;
|
||||
var currentRev = null;
|
||||
var currentDoc = null;
|
||||
|
@ -5096,7 +5110,67 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
zoomActualBtn.style.margin = '2px';
|
||||
zoomActualBtn.setAttribute('disabled', 'disabled');
|
||||
mxUtils.setOpacity(zoomActualBtn, 20);
|
||||
|
||||
// Gesture listener added below to handle pressed state
|
||||
var compareBtn = mxUtils.button('', function() { });
|
||||
compareBtn.className = 'geSprite geSprite-middle';
|
||||
compareBtn.setAttribute('title', mxResources.get('compare'));
|
||||
compareBtn.style.outline = 'none';
|
||||
compareBtn.style.border = 'none';
|
||||
compareBtn.style.margin = '2px';
|
||||
mxUtils.setOpacity(compareBtn, 60);
|
||||
|
||||
var cmpContainer = container.cloneNode(false);
|
||||
cmpContainer.style.pointerEvent = 'none';
|
||||
container.parentNode.appendChild(cmpContainer);
|
||||
|
||||
var cmpGraph = new Graph(cmpContainer);
|
||||
cmpGraph.setTooltips(false);
|
||||
cmpGraph.setEnabled(false);
|
||||
cmpGraph.setPanning(true);
|
||||
cmpGraph.panningHandler.ignoreCell = true;
|
||||
cmpGraph.panningHandler.useLeftButtonForPanning = true;
|
||||
cmpGraph.minFitScale = null;
|
||||
cmpGraph.maxFitScale = null;
|
||||
cmpGraph.centerZoom = true;
|
||||
|
||||
mxEvent.addGestureListeners(compareBtn, function(e)
|
||||
{
|
||||
// Gets current state of page with given ID
|
||||
var curr = currentDiagrams[diagrams[currentPage].getAttribute('id')];
|
||||
mxUtils.setOpacity(compareBtn, 20);
|
||||
errorNode.innerHTML = '';
|
||||
|
||||
if (curr == null)
|
||||
{
|
||||
mxUtils.write(errorNode, mxResources.get('pageNotFound'));
|
||||
}
|
||||
else
|
||||
{
|
||||
fileInfo.style.display = 'none';
|
||||
container.style.display = 'none';
|
||||
cmpContainer.style.display = '';
|
||||
cmpContainer.style.backgroundColor = container.style.backgroundColor;
|
||||
|
||||
var tempNode = Editor.parseDiagramNode(curr);
|
||||
var codec = new mxCodec(tempNode.ownerDocument);
|
||||
codec.decode(tempNode, cmpGraph.getModel());
|
||||
cmpGraph.view.scaleAndTranslate(graph.view.scale,
|
||||
graph.view.translate.x, graph.view.translate.y);
|
||||
}
|
||||
}, null, function()
|
||||
{
|
||||
mxUtils.setOpacity(compareBtn, 60);
|
||||
errorNode.innerHTML = '';
|
||||
|
||||
if (container.style.display == 'none')
|
||||
{
|
||||
fileInfo.style.display = '';
|
||||
container.style.display = '';
|
||||
cmpContainer.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
var fileInfo = document.createElement('div');
|
||||
fileInfo.style.position = 'absolute';
|
||||
fileInfo.style.textAlign = 'right';
|
||||
|
@ -5131,34 +5205,76 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
downloadBtn.className = 'geBtn';
|
||||
downloadBtn.setAttribute('disabled', 'disabled');
|
||||
|
||||
var restoreBtn = mxUtils.button(mxResources.get('restore'), function()
|
||||
var restoreBtn = mxUtils.button(mxResources.get('restore'), function(e)
|
||||
{
|
||||
if (currentDoc != null && currentXml != null)
|
||||
{
|
||||
editorUi.confirm(mxResources.get('areYouSure'), function()
|
||||
if (mxEvent.isShiftDown(e))
|
||||
{
|
||||
if (restoreFn != null)
|
||||
if (currentDoc != null)
|
||||
{
|
||||
restoreFn(currentXml);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (editorUi.spinner.spin(document.body, mxResources.get('restoring')))
|
||||
var pages = editorUi.getPagesForNode(currentDoc.documentElement);
|
||||
var patch = editorUi.diffPages(editorUi.pages, pages);
|
||||
|
||||
var dlg = new TextareaDialog(editorUi, mxResources.get('compare'),
|
||||
JSON.stringify(patch, null, 2), function(newValue)
|
||||
{
|
||||
file.save(true, function(resp)
|
||||
if (newValue.length > 0)
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
editorUi.replaceFileData(currentXml);
|
||||
editorUi.hideDialog();
|
||||
}, function(resp)
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
editorUi.editor.setStatus('');
|
||||
editorUi.handleError(resp, (resp != null) ? mxResources.get('errorSavingFile') : null);
|
||||
});
|
||||
}
|
||||
try
|
||||
{
|
||||
// TODO: Make add/remove pages undoable
|
||||
editorUi.confirm(mxResources.get('areYouSure'), function()
|
||||
{
|
||||
file.patch([JSON.parse(newValue)], null, true);
|
||||
|
||||
// Hides compare dialog
|
||||
editorUi.hideDialog();
|
||||
|
||||
// Hides revision history dialog
|
||||
editorUi.hideDialog();
|
||||
});
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
editorUi.handleError(e);
|
||||
}
|
||||
}
|
||||
}, null, null, null, null, null, true, null, mxResources.get('merge'));
|
||||
|
||||
dlg.textarea.style.width = '600px';
|
||||
dlg.textarea.style.height = '380px';
|
||||
editorUi.showDialog(dlg.container, 620, 460, true, true);
|
||||
dlg.init();
|
||||
}
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
editorUi.confirm(mxResources.get('areYouSure'), function()
|
||||
{
|
||||
if (restoreFn != null)
|
||||
{
|
||||
restoreFn(currentXml);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (editorUi.spinner.spin(document.body, mxResources.get('restoring')))
|
||||
{
|
||||
file.save(true, function(resp)
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
editorUi.replaceFileData(currentXml);
|
||||
editorUi.hideDialog();
|
||||
}, function(resp)
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
editorUi.editor.setStatus('');
|
||||
editorUi.handleError(resp, (resp != null) ? mxResources.get('errorSavingFile') : null);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
restoreBtn.className = 'geBtn';
|
||||
|
@ -5301,9 +5417,10 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
function updateGraph(xml)
|
||||
{
|
||||
spinner.stop();
|
||||
errorNode.innerHTML = '';
|
||||
var doc = mxUtils.parseXml(xml);
|
||||
var node = editorUi.editor.extractGraphModel(doc.documentElement, true);
|
||||
|
||||
|
||||
if (node != null)
|
||||
{
|
||||
pageSelect.style.display = 'none';
|
||||
|
@ -5320,7 +5437,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
|
||||
if (bg == null || bg == '' || bg == mxConstants.NONE)
|
||||
{
|
||||
bg = '#ffffff';
|
||||
bg = graph.defaultPageBackgroundColor;
|
||||
}
|
||||
|
||||
container.style.backgroundColor = bg;
|
||||
|
@ -5421,6 +5538,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
zoomOutBtn.removeAttribute('disabled');
|
||||
zoomFitBtn.removeAttribute('disabled');
|
||||
zoomActualBtn.removeAttribute('disabled');
|
||||
compareBtn.removeAttribute('disabled');
|
||||
|
||||
if (file == null || !file.isRestricted())
|
||||
{
|
||||
|
@ -5438,6 +5556,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
mxUtils.setOpacity(zoomOutBtn, 60);
|
||||
mxUtils.setOpacity(zoomFitBtn, 60);
|
||||
mxUtils.setOpacity(zoomActualBtn, 60);
|
||||
mxUtils.setOpacity(compareBtn, 60);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -5445,6 +5564,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
pageSelect.innerHTML = '';
|
||||
fileInfo.innerHTML = '';
|
||||
mxUtils.write(fileInfo, mxResources.get('errorLoadingFile'));
|
||||
mxUtils.write(errorNode, mxResources.get('errorLoadingFile'));
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -5461,13 +5581,14 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
|
||||
currentRev = item;
|
||||
currentRow = row;
|
||||
currentRow.style.backgroundColor = '#ebf2f9';
|
||||
currentRow.style.backgroundColor = (uiTheme == 'dark') ? '#000000' : '#ebf2f9';
|
||||
currentDoc = null;
|
||||
currentXml = null;
|
||||
|
||||
fileInfo.removeAttribute('title');
|
||||
fileInfo.innerHTML = mxUtils.htmlEntities(mxResources.get('loading') + '...');
|
||||
container.style.backgroundColor = '#ffffff';
|
||||
container.style.backgroundColor = graph.defaultPageBackgroundColor;
|
||||
errorNode.innerHTML = '';
|
||||
graph.getModel().clear();
|
||||
|
||||
restoreBtn.setAttribute('disabled', 'disabled');
|
||||
|
@ -5476,6 +5597,8 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
zoomOutBtn.setAttribute('disabled', 'disabled');
|
||||
zoomActualBtn.setAttribute('disabled', 'disabled');
|
||||
zoomFitBtn.setAttribute('disabled', 'disabled');
|
||||
compareBtn.setAttribute('disabled', 'disabled');
|
||||
|
||||
newBtn.setAttribute('disabled', 'disabled');
|
||||
showBtn.setAttribute('disabled', 'disabled');
|
||||
pageSelect.setAttribute('disabled', 'disabled');
|
||||
|
@ -5484,7 +5607,8 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
mxUtils.setOpacity(zoomOutBtn, 20);
|
||||
mxUtils.setOpacity(zoomFitBtn, 20);
|
||||
mxUtils.setOpacity(zoomActualBtn, 20);
|
||||
|
||||
mxUtils.setOpacity(compareBtn, 20);
|
||||
|
||||
spinner.spin(container);
|
||||
|
||||
item.getXml(function(xml)
|
||||
|
@ -5508,6 +5632,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
pageSelect.innerHTML = '';
|
||||
fileInfo.innerHTML = '';
|
||||
mxUtils.write(fileInfo, mxResources.get('errorLoadingFile'));
|
||||
mxUtils.write(errorNode, mxResources.get('errorLoadingFile'));
|
||||
});
|
||||
|
||||
mxEvent.consume(evt);
|
||||
|
@ -5580,6 +5705,7 @@ var RevisionDialog = function(editorUi, revs, restoreFn)
|
|||
tb.appendChild(zoomOutBtn);
|
||||
tb.appendChild(zoomActualBtn);
|
||||
tb.appendChild(zoomFitBtn);
|
||||
tb.appendChild(compareBtn);
|
||||
|
||||
if (editorUi.editor.cancelFirst)
|
||||
{
|
||||
|
|
|
@ -689,7 +689,7 @@ DrawioFile.prototype.ignorePatches = function(patches)
|
|||
/**
|
||||
* Applies the given patches to the file.
|
||||
*/
|
||||
DrawioFile.prototype.patch = function(patches, resolver)
|
||||
DrawioFile.prototype.patch = function(patches, resolver, undoable)
|
||||
{
|
||||
// Saves state of undo history
|
||||
var undoMgr = this.ui.editor.undoManager;
|
||||
|
@ -702,7 +702,7 @@ DrawioFile.prototype.patch = function(patches, resolver)
|
|||
|
||||
// Ignores change events
|
||||
var prev = this.changeListenerEnabled;
|
||||
this.changeListenerEnabled = false;
|
||||
this.changeListenerEnabled = undoable;
|
||||
|
||||
// Folding and math change require special handling
|
||||
var fold = graph.foldingEnabled;
|
||||
|
@ -755,9 +755,12 @@ DrawioFile.prototype.patch = function(patches, resolver)
|
|||
this.changeListenerEnabled = prev;
|
||||
|
||||
// Restores history state
|
||||
undoMgr.history = history;
|
||||
undoMgr.indexOfNextAdd = nextAdd;
|
||||
undoMgr.fireEvent(new mxEventObject(mxEvent.CLEAR));
|
||||
if (!undoable)
|
||||
{
|
||||
undoMgr.history = history;
|
||||
undoMgr.indexOfNextAdd = nextAdd;
|
||||
undoMgr.fireEvent(new mxEventObject(mxEvent.CLEAR));
|
||||
}
|
||||
|
||||
if (this.ui.currentPage == null || this.ui.currentPage.needsUpdate)
|
||||
{
|
||||
|
|
|
@ -1086,141 +1086,169 @@ DriveClient.prototype.getXmlFile = function(resp, success, error, ignoreMime, re
|
|||
}
|
||||
else
|
||||
{
|
||||
// Loads XML to initialize realtime document if realtime is empty
|
||||
this.ui.editor.loadUrl(url, mxUtils.bind(this, function(data)
|
||||
var retryCount = 0;
|
||||
|
||||
var fn = mxUtils.bind(this, function()
|
||||
{
|
||||
try
|
||||
// Loads XML to initialize realtime document if realtime is empty
|
||||
this.ui.editor.loadUrl(url, mxUtils.bind(this, function(data)
|
||||
{
|
||||
if (data == null)
|
||||
try
|
||||
{
|
||||
// TODO: Optional redirect to legacy if link is for old file
|
||||
error({message: mxResources.get('invalidOrMissingFile')});
|
||||
}
|
||||
else if (resp.mimeType == this.libraryMimeType || readLibrary)
|
||||
{
|
||||
if (resp.mimeType == this.libraryMimeType && !readLibrary)
|
||||
if (data == null)
|
||||
{
|
||||
error({message: mxResources.get('notADiagramFile')});
|
||||
// TODO: Optional redirect to legacy if link is for old file
|
||||
error({message: mxResources.get('invalidOrMissingFile')});
|
||||
}
|
||||
else if (resp.mimeType == this.libraryMimeType || readLibrary)
|
||||
{
|
||||
if (resp.mimeType == this.libraryMimeType && !readLibrary)
|
||||
{
|
||||
error({message: mxResources.get('notADiagramFile')});
|
||||
}
|
||||
else
|
||||
{
|
||||
success(new DriveLibrary(this.ui, data, resp));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
success(new DriveLibrary(this.ui, data, resp));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
var importFile = false;
|
||||
|
||||
if (/\.png$/i.test(resp.title))
|
||||
{
|
||||
var index = data.lastIndexOf(',');
|
||||
var importFile = false;
|
||||
|
||||
if (index > 0)
|
||||
if (/\.png$/i.test(resp.title))
|
||||
{
|
||||
var xml = this.ui.extractGraphModelFromPng(data.substring(index + 1));
|
||||
var index = data.lastIndexOf(',');
|
||||
|
||||
if (xml != null && xml.length > 0)
|
||||
if (index > 0)
|
||||
{
|
||||
data = xml;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Checks if the file contains XML data which can happen when we insert
|
||||
// the file and then don't post-process it when loaded into the UI which
|
||||
// is required for creating the images for .PNG and .SVG files.
|
||||
try
|
||||
var xml = this.ui.extractGraphModelFromPng(data.substring(index + 1));
|
||||
|
||||
if (xml != null && xml.length > 0)
|
||||
{
|
||||
var xml = data.substring(index + 1);
|
||||
var temp = (window.atob && !mxClient.IS_IE && !mxClient.IS_IE11) ?
|
||||
atob(xml) : Base64.decode(xml);
|
||||
var node = this.ui.editor.extractGraphModel(
|
||||
mxUtils.parseXml(temp).documentElement, true);
|
||||
|
||||
if (node == null || node.getElementsByTagName('parsererror').length > 0)
|
||||
data = xml;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Checks if the file contains XML data which can happen when we insert
|
||||
// the file and then don't post-process it when loaded into the UI which
|
||||
// is required for creating the images for .PNG and .SVG files.
|
||||
try
|
||||
{
|
||||
var xml = data.substring(index + 1);
|
||||
var temp = (window.atob && !mxClient.IS_IE && !mxClient.IS_IE11) ?
|
||||
atob(xml) : Base64.decode(xml);
|
||||
var node = this.ui.editor.extractGraphModel(
|
||||
mxUtils.parseXml(temp).documentElement, true);
|
||||
|
||||
if (node == null || node.getElementsByTagName('parsererror').length > 0)
|
||||
{
|
||||
importFile = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
data = temp;
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
importFile = true;
|
||||
}
|
||||
else
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (/\.pdf$/i.test(resp.title))
|
||||
{
|
||||
var xml = Editor.extractGraphModelFromPdf(data);
|
||||
|
||||
if (xml != null && xml.length > 0)
|
||||
{
|
||||
importFile = true;
|
||||
data = xml;
|
||||
}
|
||||
}
|
||||
// Checks for base64 encoded mxfile
|
||||
else if (data.substring(0, 32) == 'data:image/png;base64,PG14ZmlsZS')
|
||||
{
|
||||
var temp = data.substring(22);
|
||||
data = (window.atob && !mxClient.IS_SF) ? atob(temp) : Base64.decode(temp);
|
||||
}
|
||||
|
||||
if (Graph.fileSupport && new XMLHttpRequest().upload && this.ui.isRemoteFileFormat(data, url))
|
||||
{
|
||||
this.ui.parseFile(new Blob([data], {type: 'application/octet-stream'}), mxUtils.bind(this, function(xhr)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (xhr.readyState == 4)
|
||||
{
|
||||
data = temp;
|
||||
if (xhr.status >= 200 && xhr.status <= 299)
|
||||
{
|
||||
success(new LocalFile(this.ui, xhr.responseText, resp.title + this.extension, true));
|
||||
}
|
||||
else if (error != null)
|
||||
{
|
||||
error({message: mxResources.get('errorLoadingFile')});
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
importFile = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (/\.pdf$/i.test(resp.title))
|
||||
{
|
||||
var xml = Editor.extractGraphModelFromPdf(data);
|
||||
|
||||
if (xml != null && xml.length > 0)
|
||||
{
|
||||
importFile = true;
|
||||
data = xml;
|
||||
}
|
||||
}
|
||||
// Checks for base64 encoded mxfile
|
||||
else if (data.substring(0, 32) == 'data:image/png;base64,PG14ZmlsZS')
|
||||
{
|
||||
var temp = data.substring(22);
|
||||
data = (window.atob && !mxClient.IS_SF) ? atob(temp) : Base64.decode(temp);
|
||||
}
|
||||
|
||||
if (Graph.fileSupport && new XMLHttpRequest().upload && this.ui.isRemoteFileFormat(data, url))
|
||||
{
|
||||
this.ui.parseFile(new Blob([data], {type: 'application/octet-stream'}), mxUtils.bind(this, function(xhr)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (xhr.readyState == 4)
|
||||
{
|
||||
if (xhr.status >= 200 && xhr.status <= 299)
|
||||
if (error != null)
|
||||
{
|
||||
success(new LocalFile(this.ui, xhr.responseText, resp.title + this.extension, true));
|
||||
error(e);
|
||||
}
|
||||
else if (error != null)
|
||||
else
|
||||
{
|
||||
error({message: mxResources.get('errorLoadingFile')});
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
if (error != null)
|
||||
{
|
||||
error(e);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}), resp.title);
|
||||
}), resp.title);
|
||||
}
|
||||
else
|
||||
{
|
||||
success((importFile) ? new LocalFile(this.ui, data, resp.title, true) : new DriveFile(this.ui, data, resp));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
if (error != null)
|
||||
{
|
||||
error(e);
|
||||
}
|
||||
else
|
||||
{
|
||||
success((importFile) ? new LocalFile(this.ui, data, resp.title, true) : new DriveFile(this.ui, data, resp));
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
}), mxUtils.bind(this, function(e, req)
|
||||
{
|
||||
if (error != null)
|
||||
if (retryCount < this.maxRetries && req != null && req.getStatus() == 403)
|
||||
{
|
||||
error(e);
|
||||
retryCount++;
|
||||
var jitter = 1 + 0.1 * (Math.random() - 0.5);
|
||||
var delay = retryCount * 2 * this.coolOff * jitter;
|
||||
|
||||
window.setTimeout(fn, delay);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw e;
|
||||
if (error != null)
|
||||
{
|
||||
error(e);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
}
|
||||
}), error, ((resp.mimeType != null && resp.mimeType.substring(0, 6) == 'image/' &&
|
||||
resp.mimeType.substring(0, 9) != 'image/svg')) || /\.png$/i.test(resp.title) ||
|
||||
/\.jpe?g$/i.test(resp.title) || /\.pdf$/i.test(resp.title),
|
||||
null, null, null, headers);
|
||||
}), ((resp.mimeType != null && resp.mimeType.substring(0, 6) == 'image/' &&
|
||||
resp.mimeType.substring(0, 9) != 'image/svg')) || /\.png$/i.test(resp.title) ||
|
||||
/\.jpe?g$/i.test(resp.title) || /\.pdf$/i.test(resp.title),
|
||||
null, null, null, headers);
|
||||
});
|
||||
|
||||
fn();
|
||||
}
|
||||
}
|
||||
catch (e)
|
||||
|
|
|
@ -4036,9 +4036,9 @@ LucidImporter = {};
|
|||
{
|
||||
var lk = styles['lk'];
|
||||
|
||||
if (lk.v != null && lk.v.length > 0 && lk.v[0].tp == 'ext')
|
||||
if (lk.v != null && lk.v.length > 0)
|
||||
{
|
||||
str += '<a href="' + lk.v[0].url + '">';
|
||||
str += '<a href="' + getLink(lk.v[0]) + '">';
|
||||
openTags.push('a');
|
||||
tagCount++;
|
||||
}
|
||||
|
@ -4625,17 +4625,40 @@ LucidImporter = {};
|
|||
return fontFamily && fontFamily != defaultLucidFont ?'fontFamily=' + fontFamily + ';' : '';
|
||||
};
|
||||
|
||||
function getLink(m)
|
||||
function getLink(lnk)
|
||||
{
|
||||
if (lnk.tp == 'ext')
|
||||
{
|
||||
return lnk.url;
|
||||
}
|
||||
else if (lnk.tp == 'ml')
|
||||
{
|
||||
return 'mailto:' + lnk.eml;
|
||||
}
|
||||
else if (lnk.tp == 'pg')
|
||||
{
|
||||
return 'data:page/id,' + (LucidImporter.pageIdsMap[lnk.id] || 0);
|
||||
}
|
||||
else if (lnk.tp == 'c') //Confluence content
|
||||
{
|
||||
return 'data:confluence/id,' + lnk.ccid;
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
function getLinkFromM(m)
|
||||
{
|
||||
if (m != null)
|
||||
{
|
||||
for (var i = 0; i < m.length; i++)
|
||||
{
|
||||
if (m[i].n = 'lk' && m[i].v != null &&
|
||||
m[i].v.length > 0 &&
|
||||
m[i].v[0].tp == 'ext')
|
||||
if (m[i].n == 'lk' && m[i].v != null &&
|
||||
m[i].v.length > 0)
|
||||
{
|
||||
return m[i].v[0].url;
|
||||
return getLink(m[i].v[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5244,10 +5267,33 @@ LucidImporter = {};
|
|||
|
||||
function getImage(properties, action, url)
|
||||
{
|
||||
var imgUrl = url;
|
||||
var imgUrl = url, extraStyles = '';
|
||||
|
||||
// Converts images
|
||||
if (action.Class == 'ImageSearchBlock2')
|
||||
if (properties.FillColor && properties.FillColor.url)
|
||||
{
|
||||
imgUrl = properties.FillColor.url;
|
||||
//Check if image is cropped, stretched, ...
|
||||
if (properties.FillColor.pos == 'fill')
|
||||
{
|
||||
extraStyles = 'imageAspect=0;';
|
||||
}
|
||||
else if (typeof properties.FillColor.pos == 'object')
|
||||
{
|
||||
//TODO Support non-destructive cropping
|
||||
/*"pos": {
|
||||
"pin": {
|
||||
"x": 0.5765582655826557,
|
||||
"y": 0.6180376215526864
|
||||
},
|
||||
"size": {
|
||||
"w": 0.7764227642276422,
|
||||
"h": 1.5284871672246134
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
else if (action.Class == 'ImageSearchBlock2')
|
||||
{
|
||||
imgUrl = properties.URL;
|
||||
}
|
||||
|
@ -5256,10 +5302,6 @@ LucidImporter = {};
|
|||
{
|
||||
imgUrl = properties.ImageFillProps.url;
|
||||
}
|
||||
else if (properties.FillColor && properties.FillColor.url)
|
||||
{
|
||||
imgUrl = properties.FillColor.url;
|
||||
}
|
||||
|
||||
if (imgUrl != null)
|
||||
{
|
||||
|
@ -5272,7 +5314,7 @@ LucidImporter = {};
|
|||
}
|
||||
}
|
||||
|
||||
return 'image=' + imgUrl + ';';
|
||||
return 'image=' + imgUrl + ';' + extraStyles;
|
||||
}
|
||||
|
||||
return '';
|
||||
|
@ -5281,13 +5323,13 @@ LucidImporter = {};
|
|||
// Adds metadata, link, converts placeholders
|
||||
function addCustomData(cell, p, graph)
|
||||
{
|
||||
if (p.Link != null && p.Link.length > 0 && p.Link[0].tp == 'ext')
|
||||
if (p.Link != null && p.Link.length > 0)
|
||||
{
|
||||
graph.setAttributeForCell(cell, 'link', p.Link[0].url);
|
||||
graph.setAttributeForCell(cell, 'link', getLink(p.Link[0]));
|
||||
}
|
||||
else if (p.Text != null)
|
||||
{
|
||||
var link = getLink(getTextM(p.Text));
|
||||
var link = getLinkFromM(getTextM(p.Text));
|
||||
|
||||
if (link != null)
|
||||
{
|
||||
|
@ -6120,6 +6162,18 @@ LucidImporter = {};
|
|||
delete v.stylePoints;
|
||||
});
|
||||
|
||||
//Cleanup added properties
|
||||
try
|
||||
{
|
||||
var allCells = graph.getModel().cells;
|
||||
|
||||
for (var id in allCells)
|
||||
{
|
||||
var c = allCells[id];
|
||||
delete c.zOrder;
|
||||
}
|
||||
} catch(e){}
|
||||
|
||||
if (!noSelection)
|
||||
graph.setSelectionCells(select);
|
||||
}
|
||||
|
@ -6305,6 +6359,7 @@ LucidImporter = {};
|
|||
LucidImporter.stencilsMap = {}; //Reset stencils cache
|
||||
LucidImporter.imgSrcRepl = imgSrcRepl; //Use LucidImporter object to store the map since it is used deep inside
|
||||
LucidImporter.globalProps = {};
|
||||
LucidImporter.pageIdsMap = {};
|
||||
LucidImporter.hasUnknownShapes = false;
|
||||
var xml = ['<?xml version=\"1.0\" encoding=\"UTF-8\"?>', '<mxfile>'];
|
||||
|
||||
|
@ -6329,7 +6384,9 @@ LucidImporter = {};
|
|||
|
||||
for (var id in obj.Pages)
|
||||
{
|
||||
pages.push(obj.Pages[id]);
|
||||
var pg = obj.Pages[id];
|
||||
pg.id = id;
|
||||
pages.push(pg);
|
||||
}
|
||||
|
||||
pages.sort(function(a, b)
|
||||
|
@ -6347,6 +6404,11 @@ LucidImporter = {};
|
|||
return 0;
|
||||
}
|
||||
});
|
||||
|
||||
for (var i = 0; i < pages.length; i++)
|
||||
{
|
||||
LucidImporter.pageIdsMap[pages[i].id] = i;
|
||||
}
|
||||
};
|
||||
|
||||
if (state.state != null && urlParams['dev'] == '1' && window.console != null)
|
||||
|
|
1720
src/main/webapp/js/extensions.min.js
vendored
1720
src/main/webapp/js/extensions.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -4055,6 +4055,7 @@ EditorUi.prototype.showError = function(title, msg, btn, fn, retry, btn2, fn2, b
|
|||
*/
|
||||
EditorUi.prototype.showDialog = function(elt, w, h, modal, closable, onClose, noScroll, transparent, onResize, ignoreBgClick)
|
||||
{
|
||||
this.editor.graph.tooltipHandler.resetTimer();
|
||||
this.editor.graph.tooltipHandler.hideTooltip();
|
||||
|
||||
if (this.dialogs == null)
|
||||
|
|
|
@ -59,6 +59,8 @@ Format.prototype.init = function()
|
|||
graph.addListener(mxEvent.EDITING_STARTED, this.update);
|
||||
graph.addListener(mxEvent.EDITING_STOPPED, this.update);
|
||||
graph.getModel().addListener(mxEvent.CHANGE, this.update);
|
||||
graph.getView().addListener('unitChanged', this.update);
|
||||
|
||||
graph.addListener(mxEvent.ROOT, mxUtils.bind(this, function()
|
||||
{
|
||||
this.refresh();
|
||||
|
@ -6420,16 +6422,7 @@ DiagramFormatPanel.prototype.addGridOption = function(container)
|
|||
|
||||
mxEvent.addListener(input, 'blur', update);
|
||||
mxEvent.addListener(input, 'change', update);
|
||||
|
||||
var unitChangeListener = function(sender, evt)
|
||||
{
|
||||
input.value = fPanel.inUnit(graph.getGridSize()) + ' ' + fPanel.getUnit();
|
||||
fPanel.format.refresh();
|
||||
};
|
||||
|
||||
graph.view.addListener('unitChanged', unitChangeListener);
|
||||
this.listeners.push({destroy: function() { graph.view.removeListener(unitChangeListener); }});
|
||||
|
||||
|
||||
if (mxClient.IS_SVG)
|
||||
{
|
||||
input.style.marginTop = '-2px';
|
||||
|
|
|
@ -8620,7 +8620,7 @@ if (typeof mxVertexHandler != 'undefined')
|
|||
*/
|
||||
Graph.prototype.addForeignObjectWarning = function(canvas, root)
|
||||
{
|
||||
if (root.getElementsByTagName('foreignObject').length > 0)
|
||||
if (urlParams['svg-warning'] != '0' && root.getElementsByTagName('foreignObject').length > 0)
|
||||
{
|
||||
var sw = canvas.createElement('switch');
|
||||
var g1 = canvas.createElement('g');
|
||||
|
|
1194
src/main/webapp/js/viewer-static.min.js
vendored
1194
src/main/webapp/js/viewer-static.min.js
vendored
File diff suppressed because one or more lines are too long
1194
src/main/webapp/js/viewer.min.js
vendored
1194
src/main/webapp/js/viewer.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -856,7 +856,32 @@ Draw.loadPlugin(function(ui)
|
|||
//This code is similar to AC.gotoAnchor but we don't have access to AC here
|
||||
ui.handleCustomLink = function(href)
|
||||
{
|
||||
if (href.substring(0, 23) == 'data:confluence/anchor,')
|
||||
if (href.substring(0, 19) == 'data:confluence/id,')
|
||||
{
|
||||
var id = href.substring(19);
|
||||
|
||||
var newWin = window.open();
|
||||
|
||||
if (id)
|
||||
{
|
||||
ui.remoteInvoke('getContentInfo', [id], null, function(info)
|
||||
{
|
||||
ui.remoteInvoke('getBaseUrl', null, null, function(url)
|
||||
{
|
||||
newWin.location = url + info._links.webui;
|
||||
},
|
||||
function(){});
|
||||
}, function()
|
||||
{
|
||||
newWin.document.writeln(mxResources.get('objectNotFound'));
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new Error('Empty ID');
|
||||
}
|
||||
}
|
||||
else if (href.substring(0, 23) == 'data:confluence/anchor,')
|
||||
{
|
||||
var anchor = href.substring(23);
|
||||
|
||||
|
@ -901,7 +926,11 @@ Draw.loadPlugin(function(ui)
|
|||
|
||||
ui.getLinkTitle = function(href)
|
||||
{
|
||||
if (href.substring(0, 23) == 'data:confluence/anchor,')
|
||||
if (href.substring(0, 19) == 'data:confluence/id,')
|
||||
{
|
||||
return mxResources.get('link'); //We only have the id which is not helpful
|
||||
}
|
||||
else if (href.substring(0, 23) == 'data:confluence/anchor,')
|
||||
{
|
||||
return mxResources.get('anchor') + ': ' + href.substring(23);
|
||||
}
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=دردشة
|
|||
chooseAnOption=اختر خيارا
|
||||
chromeApp=تطبيق Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=خيارات الإدخال الرياضي
|
||||
makeCopy=إنشاء نسخة
|
||||
manual=يدوي
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Чат
|
|||
chooseAnOption=Изберете опция
|
||||
chromeApp=Chrome приложение
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Компресиран
|
||||
commitMessage=Съобщение при подаване
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Математическа текстообработка
|
||||
makeCopy=Направи копие
|
||||
manual=Ръководство
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Razgovor
|
|||
chooseAnOption=Izaberite opciju
|
||||
chromeApp=Chrome Aplikacija
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Kompresovano
|
||||
commitMessage=Posveti poruku
|
||||
configLinkWarn=
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematičke postavke pisanja
|
||||
makeCopy=Napravi kopiju
|
||||
manual=Ručno
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Xat
|
|||
chooseAnOption=Escolliu una opció
|
||||
chromeApp=Aplicació Chrome
|
||||
collaborativeEditingNotice=Avís important per a l'edició col·laborativa
|
||||
compare=Compare
|
||||
compressed=Comprimit
|
||||
commitMessage=Missatge de la comissió
|
||||
configLinkWarn=L'enllaç configura el draw.io. Feu clic a "D'acord" només si confieu en la persona que us l'ha enviat.
|
||||
|
@ -466,6 +467,7 @@ maps=Mapes
|
|||
mathematicalTypesetting=Composició tipogràfica matemàtica
|
||||
makeCopy=Fes una còpia
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Vyberte možnost
|
||||
chromeApp=Aplikace Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Komprimováno
|
||||
commitMessage=Zpráva ke commitu
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematické nastavení písma
|
||||
makeCopy=Udělat kopii
|
||||
manual=Manuál
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Vælg en mulighed
|
||||
chromeApp=Chrome app
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Komprimeret
|
||||
commitMessage=Commit Besked
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematisk tegnsætning
|
||||
makeCopy=Opret en kopi
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Wählen Sie eine Option
|
||||
chromeApp=Chrome app
|
||||
collaborativeEditingNotice=Wichtige Mitteilung für gemeinsames Bearbeiten
|
||||
compare=Vergleichen
|
||||
compressed=Komprimiert
|
||||
commitMessage=Commit-Nachricht
|
||||
configLinkWarn=Dieser Link konfiguriert draw.io. Klicken Sie nur OK wenn dieser Link vertrauenswürdig ist!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematischer Formelsatz
|
||||
makeCopy=Kopie erstellen
|
||||
manual=Manuell
|
||||
merge=Zusammenführen
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Διαλέξτε μια επιλογή
|
||||
chromeApp=Εφαρμογή Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Συμπιεσμένο
|
||||
commitMessage=Υποβολή μυνήματος
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Μαθηματική ρύθμιση κειμένου προς εκτύπωση
|
||||
makeCopy=Δημιουργία αντιγράφου
|
||||
manual=Χειροκίνητα
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome-aplikaĵo
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Densigita
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Elegir una opción
|
||||
chromeApp=Aplicación Chrome
|
||||
collaborativeEditingNotice=Nota Importante para Edición Colaborativa
|
||||
compare=Compare
|
||||
compressed=Comprimido
|
||||
commitMessage=Confirmar mensaje
|
||||
configLinkWarn=Éste hipervínculo configura draw.io. Sólo presione OK si confía en quién se lo proporcionó!
|
||||
|
@ -466,6 +467,7 @@ maps=Mapas
|
|||
mathematicalTypesetting=Composición tipográfica matemática
|
||||
makeCopy=Hacer una copia
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Tee valik
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Oluline teadaanne grupitöö muutmise jaoks
|
||||
compare=Compare
|
||||
compressed=Pakitud
|
||||
commitMessage=Kinnita sõnum
|
||||
configLinkWarn=See link seadistab draw.io. Vali OK vaid juhul kui usaldad isikut, kes sulle selle saatis !!
|
||||
|
@ -466,6 +467,7 @@ maps=Kaardid
|
|||
mathematicalTypesetting=Matemaatiline vormistus
|
||||
makeCopy=Tee koopia
|
||||
manual=Manuaalne
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Txata
|
|||
chooseAnOption=Aukeratu
|
||||
chromeApp=Chrome app
|
||||
collaborativeEditingNotice=Garrantzizko oharra elkar-edizioan
|
||||
compare=Compare
|
||||
compressed=Trinkotua
|
||||
commitMessage=Bidali mezua
|
||||
configLinkWarn=Esteka honek draw.io konfuguratzen du. Egin klik bakarrik eman dizunaz fidatzen bazara!.
|
||||
|
@ -466,6 +467,7 @@ maps=Mapak
|
|||
mathematicalTypesetting=Idazkera matamatikoa
|
||||
makeCopy=Kopia bat egin
|
||||
manual=Eskuliburua
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=چت
|
|||
chooseAnOption=یک گزینه را انتخاب نمایید
|
||||
chromeApp=اپلیکیشن کروم
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=فشرده
|
||||
commitMessage=تایید پیام
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=حروف چینی ریاضی
|
||||
makeCopy=ایجاد یک کپی
|
||||
manual=دَستی
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Valitse vaihtoehto
|
||||
chromeApp=Chrome-sovellus
|
||||
collaborativeEditingNotice=Tärkeä huomautus yhteistyömuokkaukseen
|
||||
compare=Compare
|
||||
compressed=Pakattu
|
||||
commitMessage=Lähetä viesti
|
||||
configLinkWarn=Tämä linkki määrittää draw.io:n. Napsauta OK vain, jos luotat siihen tahoon, joka antoi sen sinulle!
|
||||
|
@ -466,6 +467,7 @@ maps=Kartat
|
|||
mathematicalTypesetting=Matemaattiset näppäilyasetukset
|
||||
makeCopy=Luo kopio
|
||||
manual=Manuaalinen
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Pag-uusap
|
|||
chooseAnOption=Magtakda ng Pagpipilian
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Siniksik
|
||||
commitMessage=Maglagak ng mensahe
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematikong Typesetting
|
||||
makeCopy=Gumawa ng kopya
|
||||
manual=De-Mano
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choisir une option
|
||||
chromeApp=Application Chrome
|
||||
collaborativeEditingNotice=Note importante pour l'édition collaborative
|
||||
compare=Compare
|
||||
compressed=Compressé
|
||||
commitMessage=Envoyer message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Cartes
|
|||
mathematicalTypesetting=Paramètres d'entrée mathématique
|
||||
makeCopy=Faire une copie
|
||||
manual=Manuel
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Parola
|
|||
chooseAnOption=Escolle unha opción
|
||||
chromeApp=Aplicativo Chrome
|
||||
collaborativeEditingNotice=Aviso importante para a edición colaborativa
|
||||
compare=Compare
|
||||
compressed=Comprimido
|
||||
commitMessage=Enviar mensaxe
|
||||
configLinkWarn=Este vencello configura draw.io. Simplemente preme OK se confías na persoa que cho enviou!
|
||||
|
@ -466,6 +467,7 @@ maps=Mapas
|
|||
mathematicalTypesetting=Composición de escritura matemática
|
||||
makeCopy=Facer unha copia
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=צ'אט
|
|||
chooseAnOption=בחר אפשרות
|
||||
chromeApp=אפליקציית כרום
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=דחוס
|
||||
commitMessage=הודעת commit
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=סידור דפוס מתמטי
|
||||
makeCopy=צור עותק
|
||||
manual=ידני
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Cseveg
|
|||
chooseAnOption=Válasszon opciót
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Tömörített
|
||||
commitMessage=Üzenetet küld
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematikai betűszedés
|
||||
makeCopy=Másolatot készít
|
||||
manual=Kézi
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=chatWindowTitle
|
|||
chooseAnOption=chooseAnOption
|
||||
chromeApp=chromeApp
|
||||
collaborativeEditingNotice=collaborativeEditingNotice
|
||||
compare=compare
|
||||
compressed=compressed
|
||||
commitMessage=commitMessage
|
||||
configLinkWarn=configLinkWarn
|
||||
|
@ -466,6 +467,7 @@ maps=maps
|
|||
mathematicalTypesetting=mathematicalTypesetting
|
||||
makeCopy=makeCopy
|
||||
manual=manual
|
||||
merge=merge
|
||||
mermaid=mermaid
|
||||
microsoftOffice=microsoftOffice
|
||||
microsoftExcel=microsoftExcel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=diagPreview
|
|||
csvFileUrl=csvFileUrl
|
||||
generate=generate
|
||||
selectDiag2Insert=selectDiag2Insert
|
||||
errShowingDiag=errShowingDiag
|
||||
noRecentDiags=noRecentDiags
|
||||
fetchingRecentFailed=fetchingRecentFailed
|
||||
useSrch2FindDiags=useSrch2FindDiags
|
||||
cantReadChckPerms=cantReadChckPerms
|
||||
cantFetchChckPerms=cantFetchChckPerms
|
||||
searchFailed=searchFailed
|
||||
plsTypeStr=plsTypeStr
|
||||
unsupportedFileChckUrl=unsupportedFileChckUrl
|
||||
diagNotFoundChckUrl=diagNotFoundChckUrl
|
||||
csvNotFoundChckUrl=csvNotFoundChckUrl
|
||||
cantReadUpload=cantReadUpload
|
||||
select=select
|
||||
errCantGetIdType=errCantGetIdType
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Obrolan
|
|||
chooseAnOption=Pilih salah satu opsi
|
||||
chromeApp=Aplikasi Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Mampat
|
||||
commitMessage=Kirim Pesan
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Tata Cetak Matematis
|
||||
makeCopy=Buat Salinan
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Scegli un'opzione
|
||||
chromeApp=App Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compresso
|
||||
commitMessage=Invia il messaggio
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Parametri di scrittura matematica
|
||||
makeCopy=Fai una copia
|
||||
manual=Manuale
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=チャット
|
|||
chooseAnOption=オプションを選んでください
|
||||
chromeApp=Chrome アプリ
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=圧縮
|
||||
commitMessage=メッセージを省略する
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=数式組版
|
||||
makeCopy=複製する
|
||||
manual=マニュアル
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=대화창
|
|||
chooseAnOption=옵션 선택
|
||||
chromeApp=크롬 앱
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=압축
|
||||
commitMessage=메세지 전송
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=수학 공식 입력
|
||||
makeCopy=복사본 만들기
|
||||
manual=수동
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Pokalbis
|
|||
chooseAnOption=Pasirinkite variantą
|
||||
chromeApp= Chrome programa
|
||||
collaborativeEditingNotice=Svarbus pranešimas dėl bendro redagavimo
|
||||
compare=Compare
|
||||
compressed=Suspaustas
|
||||
commitMessage=Įsitraukti pranešimą
|
||||
configLinkWarn=Ši nuoroda sukonfigūruoja draw.io. Spustelėkite Gerai tik tada, jei pasitikite tuo, kas jums ją davė!
|
||||
|
@ -466,6 +467,7 @@ maps=Žemėlapiai
|
|||
mathematicalTypesetting=Matematinis rinkinys
|
||||
makeCopy=Sukurti kopiją
|
||||
manual=Rankinis
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Sembang
|
|||
chooseAnOption=Pilih satu opsyen
|
||||
chromeApp=Aplikasi Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Mampat
|
||||
commitMessage=Hantar Mesej
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Atur Huruf Matematik
|
||||
makeCopy=Buat satu Salinan
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Kies een optie
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Belangrijke opmerking i.v.m. gezamenlijk bewerken
|
||||
compare=Compare
|
||||
compressed=Gecomprimeerd
|
||||
commitMessage=Bericht vastleggen
|
||||
configLinkWarn=Deze koppeling verwijst naar de instellingen van draw.io. Klik hier alleen op als je degene van wie je deze hebt gekregen vertrouwt.
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Wiskundige notatie
|
||||
makeCopy=Een kopie maken
|
||||
manual=Handleiding
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Velg et alternativ
|
||||
chromeApp=Chrome-app
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Komprimert
|
||||
commitMessage=Forpliktende Melding
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematisk tegnsetting
|
||||
makeCopy=Lag en kopi
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Wybierz opcję
|
||||
chromeApp=Aplikacja Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Skompresowany
|
||||
commitMessage=commit Wiadomość
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematyczny zestaw znaków
|
||||
makeCopy=Zrób kopię
|
||||
manual=Ręczny
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Bate-papo
|
|||
chooseAnOption=Escolha uma opção
|
||||
chromeApp=Aplicativo Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Comprimido
|
||||
commitMessage=Cometer mensagem
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Sistema tipográfico matemático
|
||||
makeCopy=Fazer uma cópia
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Conversa
|
|||
chooseAnOption=Escolha uma opção
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compactado
|
||||
commitMessage=Mensagem da alteração
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Composição tipográfica matemática
|
||||
makeCopy=Fazer uma cópia
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Alege o opţiune
|
||||
chromeApp=Aplicaţie Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Comprimat
|
||||
commitMessage=Comite un mesaj
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Sistem tipografic matematic
|
||||
makeCopy=Fă o copie
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Чат
|
|||
chooseAnOption=Выберите вариант
|
||||
chromeApp=Приложение Chrome
|
||||
collaborativeEditingNotice=Важное замечание относительно совместного редактирования документа
|
||||
compare=Compare
|
||||
compressed=Сжато
|
||||
commitMessage=Сообщение при коммите
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Карты
|
|||
mathematicalTypesetting=Математический набор
|
||||
makeCopy=Создать копию
|
||||
manual=Вручную
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Razgovor
|
|||
chooseAnOption=Izaberite opciju
|
||||
chromeApp=Chrome Aplikacija
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Komprimovan
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematički slog
|
||||
makeCopy=Kreiraj kopiju
|
||||
manual=Ručno
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chatt
|
|||
chooseAnOption=Välj ett alternativ
|
||||
chromeApp=Chrome app
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Komprimerad
|
||||
commitMessage=Skicka meddelande
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematisk typsättning
|
||||
makeCopy=Gör en kopia
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Choose an option
|
||||
chromeApp=Chrome App
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Compressed
|
||||
commitMessage=Commit Message
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=แชท
|
|||
chooseAnOption=เลือกหนึ่งตัวเลือก
|
||||
chromeApp=โครมแอพลิเคชั่น
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=บีบอัดแล้ว
|
||||
commitMessage=ข้อความสัญญา
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=การตั้งค่าการพิมพ์ทางคณิตศาสตร์
|
||||
makeCopy=สร้างฉบับคัดลอก
|
||||
manual=คู่มือ
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Sohbet
|
|||
chooseAnOption=Bir seçenek seçin
|
||||
chromeApp=Chrome Uygulaması
|
||||
collaborativeEditingNotice=Ortak düzenleme hakkınd önemli uyarı
|
||||
compare=Compare
|
||||
compressed=Sıkıştırılmış
|
||||
commitMessage=Mesaj oluştur
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Haritalar
|
|||
mathematicalTypesetting=Matematiksel dizgi
|
||||
makeCopy=Kopyasını yap
|
||||
manual=Elle
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Ofis
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Теревеня
|
|||
chooseAnOption=Оберіть варіант
|
||||
chromeApp=Застосунок Chrome
|
||||
collaborativeEditingNotice=Важлива примітка щодо спільного редагування
|
||||
compare=Compare
|
||||
compressed=Стисло
|
||||
commitMessage=Повідомлення при коміті
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Мапи
|
|||
mathematicalTypesetting=Математичне утворювання
|
||||
makeCopy=Зробити сколок
|
||||
manual=Вручну
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=Chat
|
|||
chooseAnOption=Chọn một tùy chọn
|
||||
chromeApp=Ứng dụng Chrome
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=Đã nén
|
||||
commitMessage=Nội dung thay đổi
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Sắp chữ kiểu toán học
|
||||
makeCopy=Tạo bản sao
|
||||
manual=Hướng dẫn
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=交談
|
|||
chooseAnOption=請選擇一項
|
||||
chromeApp=Chrome應用
|
||||
collaborativeEditingNotice=Important Notice for Collaborative Editing
|
||||
compare=Compare
|
||||
compressed=已壓縮
|
||||
commitMessage=提交訊息
|
||||
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
|
||||
|
@ -466,6 +467,7 @@ maps=Maps
|
|||
mathematicalTypesetting=數學排版
|
||||
makeCopy=建立副本
|
||||
manual=手冊
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -96,6 +96,7 @@ chatWindowTitle=聊天
|
|||
chooseAnOption=请选择一项
|
||||
chromeApp=Chrome 应用
|
||||
collaborativeEditingNotice=协同编辑的重要通知
|
||||
compare=Compare
|
||||
compressed=已压缩
|
||||
commitMessage=提交信息
|
||||
configLinkWarn=该链接将配置 draw.io. 仅当您信任提供给你链接的人时点击确定.
|
||||
|
@ -466,6 +467,7 @@ maps=地图
|
|||
mathematicalTypesetting=数学排版
|
||||
makeCopy=创建副本
|
||||
manual=手册
|
||||
merge=Merge
|
||||
mermaid=Mermaid
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
|
@ -1071,3 +1073,17 @@ diagPreview=Diagram Preview
|
|||
csvFileUrl=CSV File URL
|
||||
generate=Generate
|
||||
selectDiag2Insert=Please select a diagram to insert it.
|
||||
errShowingDiag=Unexpected error. Cannot show diagram
|
||||
noRecentDiags=No recent diagrams found
|
||||
fetchingRecentFailed=Failed to fetch recent diagrams.
|
||||
useSrch2FindDiags=Use the search box to find draw.io diagrams
|
||||
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
|
||||
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
|
||||
searchFailed=Searching failed. Please try again later.
|
||||
plsTypeStr=Please type a search string.
|
||||
unsupportedFileChckUrl=Unsupported file. Please check the specified URL
|
||||
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
|
||||
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
|
||||
cantReadUpload=Cannot read the uploaded diagram.
|
||||
select=Select
|
||||
errCantGetIdType=Unexpected Error: Cannot get content id or type.
|
||||
|
|
|
@ -6,11 +6,11 @@ if (workbox)
|
|||
workbox.precaching.precacheAndRoute([
|
||||
{
|
||||
"url": "js/app.min.js",
|
||||
"revision": "76d131e174ed6c95f69ee8f13a236a5d"
|
||||
"revision": "3d97e34c4880b7281f99f5027b381f10"
|
||||
},
|
||||
{
|
||||
"url": "js/extensions.min.js",
|
||||
"revision": "f200da4699564c731c291bd441caca4c"
|
||||
"revision": "53703efdada6d9b9367cd1cda0bbb430"
|
||||
},
|
||||
{
|
||||
"url": "js/stencils.min.js",
|
||||
|
@ -58,7 +58,7 @@ if (workbox)
|
|||
},
|
||||
{
|
||||
"url": "js/viewer-static.min.js",
|
||||
"revision": "e9d353f60056a44f9477a3e97cea79d2"
|
||||
"revision": "56dfe70e4aeaadb696db8104bbf2d2c9"
|
||||
},
|
||||
{
|
||||
"url": "connect/jira/editor-1-3-3.html",
|
||||
|
@ -102,11 +102,11 @@ if (workbox)
|
|||
},
|
||||
{
|
||||
"url": "plugins/cConf-1-4-8.js",
|
||||
"revision": "4876a0c8bd503b20c29ed4f1d0eebcc5"
|
||||
"revision": "af11c975889afc094500e326f737e7b5"
|
||||
},
|
||||
{
|
||||
"url": "connect/confluence/connectUtils-1-4-8.js",
|
||||
"revision": "3af15271d48f7b5ee5c7efbc1028e035"
|
||||
"revision": "99182f3b2b75c406c4535a0fd8bdaa7a"
|
||||
},
|
||||
{
|
||||
"url": "connect/new_common/cac.js",
|
||||
|
@ -126,7 +126,7 @@ if (workbox)
|
|||
},
|
||||
{
|
||||
"url": "connect/confluence/viewer.js",
|
||||
"revision": "62579ffbb9ec15f6db8de1905eae5493"
|
||||
"revision": "41476faa529e04d39b75bfd3e728c4b2"
|
||||
},
|
||||
{
|
||||
"url": "connect/confluence/viewer-1-4-42.html",
|
||||
|
@ -138,7 +138,7 @@ if (workbox)
|
|||
},
|
||||
{
|
||||
"url": "connect/confluence/includeDiagram-1-4-8.js",
|
||||
"revision": "89fbf5627db3c57633fbc3a64949e58b"
|
||||
"revision": "07de6f401ce7570df84ecbbd31a8eea0"
|
||||
},
|
||||
{
|
||||
"url": "connect/confluence/macro-editor.js",
|
||||
|
@ -178,231 +178,231 @@ if (workbox)
|
|||
},
|
||||
{
|
||||
"url": "resources/dia.txt",
|
||||
"revision": "621b721cd90b5a0b19dff79cfa0d1794"
|
||||
"revision": "be8b5c300f0cfcdc4e53589d122185a5"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_am.txt",
|
||||
"revision": "f13c620ef8de8e17bde7fbf36f37552b"
|
||||
"revision": "bee87d9ce24b5790628c3007d5d2e8b1"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ar.txt",
|
||||
"revision": "4730b8fb55d9336016758a2127b2947c"
|
||||
"revision": "5bf1bab399fb15567036c7e74b62ab26"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_bg.txt",
|
||||
"revision": "a32a09e99b8c334147b4aea3ac2bb134"
|
||||
"revision": "d711225781702c7832ee0b2a457f8d92"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_bn.txt",
|
||||
"revision": "51c283bad263854edff53c7c273796bf"
|
||||
"revision": "56b9a3b0cc078753279de48201b24bf8"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_bs.txt",
|
||||
"revision": "37218bef76f1b4e151aed55e64652d55"
|
||||
"revision": "ad55fe4e6db5a5b09a72722a90cde4c9"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ca.txt",
|
||||
"revision": "bdecc22646b22f0b9c92a784fb73c311"
|
||||
"revision": "e613433a6d6790b90375e7f81992a492"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_cs.txt",
|
||||
"revision": "ce493f7cecb8704c76e34ef60afbc6a6"
|
||||
"revision": "1ca62cdf182ba8344effcc43a3c0070b"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_da.txt",
|
||||
"revision": "bccd7c2dee82d371162c44bbc5f802a4"
|
||||
"revision": "e3123ff50632f7f6880e8014020bfc54"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_de.txt",
|
||||
"revision": "bad6de70baa3fc52845f31987f922ec6"
|
||||
"revision": "529243d814719a09f1e8cfd3205ef253"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_el.txt",
|
||||
"revision": "13073cc113c1e4d02414f8bf926cffed"
|
||||
"revision": "f483c373c5676fac744542079e63d796"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_eo.txt",
|
||||
"revision": "6fb05c9b2d565adacfeb6fd1c37041ca"
|
||||
"revision": "df1a64faf69cf9179f665d3560c778ac"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_es.txt",
|
||||
"revision": "57a2c1e7f15d06fd22fcdc6b75869f09"
|
||||
"revision": "757b3604d0c99aed76b6094ad79a4b0a"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_et.txt",
|
||||
"revision": "09c17a17b5972241ea9ba93b6cdc5216"
|
||||
"revision": "9299cd894f49bfc56ac6d695f3820eba"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_eu.txt",
|
||||
"revision": "78e4c33a5289e77c4f1f94490a119b3c"
|
||||
"revision": "27129da0ef51176a2ce375a61fc47e80"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_fa.txt",
|
||||
"revision": "583a3529d05d7e53f8d2954eecdf5bda"
|
||||
"revision": "3cd2674e23694d5ea511e077bb94c1d9"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_fi.txt",
|
||||
"revision": "66806151c9f8854dbcea03e6f4ef4ffc"
|
||||
"revision": "497bc4854c40ad5a68689161a9bdc8a9"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_fil.txt",
|
||||
"revision": "f198eb7107c674e260cc7b99116ab2c5"
|
||||
"revision": "4d232bc81b7028531754c2c0aa518aeb"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_fr.txt",
|
||||
"revision": "0bd8a81b56aed100062bdcd66292d4f1"
|
||||
"revision": "5e668830ce6b45c4036561bf10f041c1"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_gl.txt",
|
||||
"revision": "1dbe699f13a181e7aeeea9ea3eb5f467"
|
||||
"revision": "48b3a2b11f20a2483956b98c29dddbee"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_gu.txt",
|
||||
"revision": "69f870a101be7ad9109980042e69c66e"
|
||||
"revision": "f6b30c2a69e6298c1f86bed25ab7cf55"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_he.txt",
|
||||
"revision": "da51131e77752a4d51f979964cd6455b"
|
||||
"revision": "8bd1b3bf5fe3458cb22a83b2b2ed7307"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_hi.txt",
|
||||
"revision": "ba7bdeaa8723e38a533670f3c6ca7986"
|
||||
"revision": "2813177fd203e90c1741f4d7a508d502"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_hr.txt",
|
||||
"revision": "617797074252f8f66980e98b4a448065"
|
||||
"revision": "a9d49e697b9ca3edca6ea4532cc2d2e6"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_hu.txt",
|
||||
"revision": "e3b9970afcab42b764eeb862836ee1d7"
|
||||
"revision": "f56b319b11590148a3889af743ac146d"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_id.txt",
|
||||
"revision": "97efe13406ddbc2856c271cb43a0d45c"
|
||||
"revision": "fcd39cd5b0c68e86d58096be8f16168d"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_it.txt",
|
||||
"revision": "555b939f73ee050b141df687ea431e32"
|
||||
"revision": "e3fec3edae86b637d783d1fa3f86285c"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ja.txt",
|
||||
"revision": "90ba996e2f1a63e9eaade0e59be62726"
|
||||
"revision": "1529954ff0a0abdc576a12e5a3139dae"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_kn.txt",
|
||||
"revision": "ebac45c357d9eb3d155ecd1b5fd9739e"
|
||||
"revision": "44f68b5a6ca2ad0e276fcf8ab30ac86f"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ko.txt",
|
||||
"revision": "efae47058e0a5a3ab45abe8d5a0a61ea"
|
||||
"revision": "62326145aff892b80f3d4da70e4a3af1"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_lt.txt",
|
||||
"revision": "30ffba8d04b8dbd006b40a4a34075fe6"
|
||||
"revision": "0bae894a5cdb2f139f73ba1e1fcc5eb0"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_lv.txt",
|
||||
"revision": "502c72bc435b3bc79194ac1c13489ee2"
|
||||
"revision": "3d3148dc8522ec87fbd6eb069f5bf940"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ml.txt",
|
||||
"revision": "a363d89b196427074a82eb66810c03ff"
|
||||
"revision": "3b1248ae80c12f67d1857e4334cc23f2"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_mr.txt",
|
||||
"revision": "5748b82c4233e54c800e53396c344892"
|
||||
"revision": "8af8177e964edf562b605662718549f3"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ms.txt",
|
||||
"revision": "8c24edefb7eec78eb6761d441cc885e7"
|
||||
"revision": "c84edaefd3514ab5f14c7e6ffdf6f7f6"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_my.txt",
|
||||
"revision": "621b721cd90b5a0b19dff79cfa0d1794"
|
||||
"revision": "be8b5c300f0cfcdc4e53589d122185a5"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_nl.txt",
|
||||
"revision": "4964c6b27b6e28ba95d53d3240d59db4"
|
||||
"revision": "ad7a4e53f670fff29008bd76304e0cf7"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_no.txt",
|
||||
"revision": "dbce2c7fe82b2a8b48818ee97dcbc884"
|
||||
"revision": "856d68f6e779556ed1b7e1a5fec58fa4"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_pl.txt",
|
||||
"revision": "9113e38ec324ea1de0d0400ef2f6b585"
|
||||
"revision": "01b685806ccf2d2e17dfa8aa4f9ff548"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_pt-br.txt",
|
||||
"revision": "cf06e5116b705ef55781477872dd30a9"
|
||||
"revision": "17a5306c56e4d5bf5b421dec2e7d7371"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_pt.txt",
|
||||
"revision": "6754b0258cc8fd60aad605a2f4a0fd21"
|
||||
"revision": "703544179acdd89c45110a23c61dbc53"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ro.txt",
|
||||
"revision": "501d75029ef76a861118534c7940e3a1"
|
||||
"revision": "da851e7cae3c38fddfa3b863a47f8ee5"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ru.txt",
|
||||
"revision": "92bf72e3885c5decbc74d6d29f60dbd5"
|
||||
"revision": "69034b02931fefe9f54527fe1dab9f14"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_si.txt",
|
||||
"revision": "621b721cd90b5a0b19dff79cfa0d1794"
|
||||
"revision": "be8b5c300f0cfcdc4e53589d122185a5"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_sk.txt",
|
||||
"revision": "70f2098cb14df18c4b9d8d716c3b18a5"
|
||||
"revision": "bc7994fe49087b9885e51f49c49bb3c0"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_sl.txt",
|
||||
"revision": "c187579457e0214326f1551457b01aa2"
|
||||
"revision": "fc97b1f416bda481a132d26d5469b58b"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_sr.txt",
|
||||
"revision": "596bcd8459dbca4ca93c810c95878211"
|
||||
"revision": "ac862cab7e36f48130910b01747e3c5d"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_sv.txt",
|
||||
"revision": "e03107b23be0137203d44641c47946b7"
|
||||
"revision": "cd6e65a076599a28b22161e852f8f863"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_sw.txt",
|
||||
"revision": "e9045a026f0fc6b4e195f0eec0a1051a"
|
||||
"revision": "2a36a3f0b3637ed1ecfa9c4e2933d5ca"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_ta.txt",
|
||||
"revision": "ea69b5f894961d0645e5e5bb4372e28a"
|
||||
"revision": "e8645f5f9cb9119c893e25d372cc7e6e"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_te.txt",
|
||||
"revision": "8467fd9c016af0d262bdc15dcd23b967"
|
||||
"revision": "c009dd22858f5d9bc755a51c00cd2200"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_th.txt",
|
||||
"revision": "d9526a3afd83d0effdfa5cb99fecd40f"
|
||||
"revision": "1c74ecbb23d232a6c1c5c451e70bffe1"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_tr.txt",
|
||||
"revision": "c021f38c9cd516c52de7b1875555a1be"
|
||||
"revision": "667ba94e72fd2b646f59f2972ab6a6c5"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_uk.txt",
|
||||
"revision": "374402bdbd80b577ec4c33c4630ac16b"
|
||||
"revision": "e166c98a798963887f36fe34aa9712b2"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_vi.txt",
|
||||
"revision": "8db46c4125e6e29f19faada214cbfb78"
|
||||
"revision": "44311aa7d02cda6e976579fbedc65ac5"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_zh-tw.txt",
|
||||
"revision": "acf8aaf6c32c5bd62311bc08060acc4f"
|
||||
"revision": "83742095b48a83037a290ec574f959dd"
|
||||
},
|
||||
{
|
||||
"url": "resources/dia_zh.txt",
|
||||
"revision": "ccf28007c4fa311039701e416ca6a83c"
|
||||
"revision": "6e2eee2edc5483ea9c365766f8fe4d6a"
|
||||
},
|
||||
{
|
||||
"url": "favicon.ico",
|
||||
|
|
Loading…
Reference in a new issue