10.8.2 release
This commit is contained in:
parent
e15468c59e
commit
06073b7e8b
75 changed files with 2791 additions and 1994 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
27-JUN-2019: 10.8.2
|
||||
|
||||
- Fixes handling of special font names
|
||||
- Shows warning if file copy is loaded
|
||||
- Smaller sidebar entries
|
||||
- Adds tags plugin
|
||||
|
||||
26-JUN-2019: 10.8.1
|
||||
|
||||
- Fixed preview image aspect ratio in Confluence Cloud
|
||||
- Increases preview image export quality in Confluence Cloud
|
||||
- Uses default picker for loading files in IE11
|
||||
|
||||
21-JUN-2019: 10.8.0
|
||||
|
||||
- Removes unsafe-eval CSP for desktop app
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
10.8.0
|
||||
10.8.2
|
|
@ -11,6 +11,7 @@ com.gliffy.shape.basic.basic_v1.default.hexagon=hexagon;perimeter=hexagonPerimet
|
|||
com.gliffy.shape.basic.basic_v1.default.octagon=mxgraph.basic.octagon
|
||||
com.gliffy.shape.basic.basic_v1.default.right_triangle=mxgraph.basic.orthogonal_triangle
|
||||
com.gliffy.shape.basic.basic_v1.default.star=mxgraph.basic.star
|
||||
com.gliffy.shape.basic.basic_v2.default.square=rect;rounded=1;gradientColor=#CCCCCC;gradientDirection=west;shadow=0;strokeWidth=5;fillColor=#ffffff;strokeColor=#3399ff;opacity=100.0;
|
||||
#TODO fix disappearing control point
|
||||
com.gliffy.shape.basic.basic_v1.default.round_rectangle=rect;rounded=1;arcSize=15;absoluteArcSize=1
|
||||
com.gliffy.shape.basic.basic_v1.default.cross=mxgraph.basic.cross2;dx=5
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
CACHE MANIFEST
|
||||
|
||||
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
||||
# 06/21/2019 10:52 AM
|
||||
# 06/27/2019 03:56 PM
|
||||
|
||||
app.html
|
||||
index.html?offline=1
|
||||
|
|
|
@ -362,6 +362,7 @@
|
|||
{
|
||||
mxscript('js/diagramly/DesktopLibrary.js');
|
||||
mxscript('js/diagramly/ElectronApp.js');
|
||||
mxscript('js/extensions.min.js');
|
||||
mxscript('js/stencils.min.js');
|
||||
mxscript('js/shapes.min.js');
|
||||
}
|
||||
|
|
1061
src/main/webapp/js/app.min.js
vendored
1061
src/main/webapp/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -290,7 +290,8 @@ App.pluginRegistry = {'4xAKTrabTpTzahoLthkwPNUn': '/plugins/explore.js',
|
|||
'tr': '/plugins/trello.js', 'f5': '/plugins/rackF5.js',
|
||||
'tickets': '/plugins/tickets.js', 'flow': '/plugins/flow.js',
|
||||
'webcola': '/plugins/webcola/webcola.js', 'rnd': '/plugins/random.js',
|
||||
'page': '/plugins/page.js', 'gd': '/plugins/googledrive.js'};
|
||||
'page': '/plugins/page.js', 'gd': '/plugins/googledrive.js',
|
||||
'tags': '/plugins/tags.js'};
|
||||
|
||||
/**
|
||||
* Function: authorize
|
||||
|
@ -1059,6 +1060,41 @@ App.prototype.init = function()
|
|||
this.restoreLibraries();
|
||||
}))
|
||||
}
|
||||
|
||||
var createFooter = mxUtils.bind(this, function(label, link, className, closeHandler)
|
||||
{
|
||||
var footer = document.createElement('div');
|
||||
footer.style.cssText = 'position:absolute;bottom:0px;max-width:90%;padding:10px;padding-right:26px;' +
|
||||
'white-space:nowrap;left:50%;bottom:2px;';
|
||||
footer.className = className;
|
||||
|
||||
var icn = ((className == 'geStatusAlert') ? '<img src="' + this.editor.graph.warningImage.src + '" border="0" style="margin-top:-4px;margin-right:2px;margin-left:2px;" valign="middle"/>' : '');
|
||||
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transform', 'translate(-50%,110%)');
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transition', 'all 1s ease');
|
||||
footer.style.whiteSpace = 'nowrap';
|
||||
footer.innerHTML = '<a href="' + link +
|
||||
'" target="_blank" style="display:inline;text-decoration:none;font-weight:700;font-size:13px;opacity:1;">' +
|
||||
icn + label + icn + '</a>';
|
||||
|
||||
var img = document.createElement('img');
|
||||
|
||||
img.setAttribute('src', Dialog.prototype.closeImage);
|
||||
img.setAttribute('title', mxResources.get('close'));
|
||||
img.style.position = 'absolute';
|
||||
img.style.cursor = 'pointer';
|
||||
img.style.right = '10px';
|
||||
img.style.top = '12px';
|
||||
|
||||
footer.appendChild(img);
|
||||
|
||||
if (closeHandler)
|
||||
{
|
||||
mxEvent.addListener(img, 'click', closeHandler);
|
||||
}
|
||||
|
||||
return footer;
|
||||
});
|
||||
|
||||
/**
|
||||
* Lazy-loading for individual backends
|
||||
|
@ -1081,6 +1117,41 @@ App.prototype.init = function()
|
|||
{
|
||||
this.updateUserElement();
|
||||
this.restoreLibraries();
|
||||
|
||||
if (this.oneDrive.user != null && (!isLocalStorage || mxSettings.settings == null ||
|
||||
mxSettings.settings.closeRealtimeWarning == null || mxSettings.settings.closeFooter == null) &&
|
||||
(!this.editor.chromeless || this.editor.editable) && !this.footerShowing)
|
||||
{
|
||||
var footer = createFooter('Add-in for Microsoft Office now available',
|
||||
'https://appsource.microsoft.com/product/office/wa200000113',
|
||||
'geStatusMessage',
|
||||
mxUtils.bind(this, function()
|
||||
{
|
||||
footer.parentNode.removeChild(footer);
|
||||
this.hideFooter();
|
||||
|
||||
// Close permanently
|
||||
if (isLocalStorage && mxSettings.settings != null)
|
||||
{
|
||||
mxSettings.settings.closeFooter = Date.now();
|
||||
mxSettings.save();
|
||||
}
|
||||
}));
|
||||
|
||||
document.body.appendChild(footer);
|
||||
this.footerShowing = true;
|
||||
|
||||
window.setTimeout(mxUtils.bind(this, function()
|
||||
{
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transform', 'translate(-50%,0%)');
|
||||
}), 1500);
|
||||
|
||||
window.setTimeout(mxUtils.bind(this, function()
|
||||
{
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transform', 'translate(-50%,110%)');
|
||||
this.footerShowing = false;
|
||||
}), 15000);
|
||||
}
|
||||
}));
|
||||
|
||||
// Notifies listeners of new client
|
||||
|
@ -1182,44 +1253,22 @@ App.prototype.init = function()
|
|||
{
|
||||
this.drive.checkRealtimeFiles(mxUtils.bind(this, function()
|
||||
{
|
||||
var footer = document.createElement('div');
|
||||
footer.style.cssText = 'position:absolute;bottom:0px;max-width:90%;padding:10px;padding-right:26px;' +
|
||||
'white-space:nowrap;left:50%;bottom:2px;';
|
||||
footer.className = 'geStatusAlert';
|
||||
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transform', 'translate(-50%,110%)');
|
||||
mxUtils.setPrefixedStyle(footer.style, 'transition', 'all 1s ease');
|
||||
footer.style.whiteSpace = 'nowrap';
|
||||
footer.innerHTML = '<a href="https://desk.draw.io/support/solutions/articles/16000092210" ' +
|
||||
'target="_blank" style="display:inline;text-decoration:none;font-weight:700;font-size:13px;opacity:1;">' +
|
||||
'<img src="' + this.editor.graph.warningImage.src + '" border="0" style="margin-top:-4px;margin-right:2px;" valign="middle"/> ' +
|
||||
'You need to take action to convert legacy files. Click here. ' +
|
||||
'<img src="' + this.editor.graph.warningImage.src + '" border="0" style="margin-top:-4px;margin-left:2px;" valign="middle"/></a>';
|
||||
|
||||
var img = document.createElement('img');
|
||||
|
||||
img.setAttribute('src', Dialog.prototype.closeImage);
|
||||
img.setAttribute('title', mxResources.get('close'));
|
||||
img.style.position = 'absolute';
|
||||
img.style.cursor = 'pointer';
|
||||
img.style.right = '10px';
|
||||
img.style.top = '12px';
|
||||
|
||||
footer.appendChild(img);
|
||||
|
||||
mxEvent.addListener(img, 'click', mxUtils.bind(this, function()
|
||||
{
|
||||
footer.parentNode.removeChild(footer);
|
||||
this.hideFooter();
|
||||
|
||||
// Close permanently
|
||||
if (isLocalStorage && mxSettings.settings != null)
|
||||
var footer = createFooter('You need to take action to convert legacy files. Click here.',
|
||||
'https://desk.draw.io/support/solutions/articles/16000092210',
|
||||
'geStatusAlert',
|
||||
mxUtils.bind(this, function()
|
||||
{
|
||||
mxSettings.settings.closeRealtimeWarning = Date.now();
|
||||
mxSettings.save();
|
||||
}
|
||||
}));
|
||||
|
||||
footer.parentNode.removeChild(footer);
|
||||
this.hideFooter();
|
||||
|
||||
// Close permanently
|
||||
if (isLocalStorage && mxSettings.settings != null)
|
||||
{
|
||||
mxSettings.settings.closeRealtimeWarning = Date.now();
|
||||
mxSettings.save();
|
||||
}
|
||||
}));
|
||||
|
||||
document.body.appendChild(footer);
|
||||
|
||||
window.setTimeout(mxUtils.bind(this, function()
|
||||
|
@ -2004,7 +2053,7 @@ App.prototype.createBackground = function()
|
|||
else
|
||||
{
|
||||
this.appIcon.removeAttribute('title');
|
||||
this.appIcon.style.cursor = 'default';
|
||||
this.appIcon.style.cursor = (mode == App.MODE_DEVICE) ? 'pointer' : 'default';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2087,6 +2136,10 @@ App.prototype.appIconClicked = function(evt)
|
|||
this.openLink('https://github.com/');
|
||||
}
|
||||
}
|
||||
else if (mode == App.MODE_DEVICE)
|
||||
{
|
||||
this.openLink('https://get.draw.io/');
|
||||
}
|
||||
}
|
||||
|
||||
mxEvent.consume(evt);
|
||||
|
@ -2907,9 +2960,7 @@ App.prototype.pickFile = function(mode)
|
|||
{
|
||||
peer.pickFile();
|
||||
}
|
||||
// input.click does not work in IE on Windows 7
|
||||
else if (mode == App.MODE_DEVICE && Graph.fileSupport && ((!mxClient.IS_IE && !mxClient.IS_IE11) ||
|
||||
navigator.appVersion.indexOf('Windows NT 6.1') < 0))
|
||||
else if (mode == App.MODE_DEVICE && Graph.fileSupport)
|
||||
{
|
||||
if (this.openFileInputElt == null)
|
||||
{
|
||||
|
@ -2921,9 +2972,12 @@ App.prototype.pickFile = function(mode)
|
|||
if (input.files != null)
|
||||
{
|
||||
this.openFiles(input.files);
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
input.type = '';
|
||||
input.type = 'file';
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
input.value = '';
|
||||
}));
|
||||
|
||||
input.style.display = 'none';
|
||||
|
@ -3040,7 +3094,7 @@ App.prototype.pickLibrary = function(mode)
|
|||
}));
|
||||
}
|
||||
}
|
||||
else if (mode == App.MODE_DEVICE && Graph.fileSupport && !mxClient.IS_IE && !mxClient.IS_IE11)
|
||||
else if (mode == App.MODE_DEVICE && Graph.fileSupport)
|
||||
{
|
||||
if (this.libFileInputElt == null)
|
||||
{
|
||||
|
@ -3072,9 +3126,12 @@ App.prototype.pickLibrary = function(mode)
|
|||
reader.readAsText(file);
|
||||
}))(input.files[i]);
|
||||
}
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
input.type = '';
|
||||
input.type = 'file';
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
input.value = '';
|
||||
}));
|
||||
|
||||
input.style.display = 'none';
|
||||
|
@ -4072,7 +4129,15 @@ App.prototype.loadFile = function(id, sameWindow, file, success, force)
|
|||
{
|
||||
window.location.hash = currentFile.getHash();
|
||||
}
|
||||
|
||||
|
||||
// Shows a warning if a copy was opened which happens
|
||||
// eg. for .png files in IE as they cannot be written
|
||||
if (file.mode == null)
|
||||
{
|
||||
var status = mxResources.get('browserUnsupportedFiletype');
|
||||
this.editor.setStatus('<div title="'+ status + '" class="geStatusAlert" style="overflow:hidden;">' + status + '</div>');
|
||||
}
|
||||
|
||||
if (success != null)
|
||||
{
|
||||
success();
|
||||
|
|
|
@ -370,7 +370,7 @@ var StorageDialog = function(editorUi, fn, rowLimit)
|
|||
buttons.style.padding = '30px 0px 26px 0px';
|
||||
}
|
||||
|
||||
if (Graph.fileSupport && !mxClient.IS_IE && !mxClient.IS_IE11)
|
||||
if (Graph.fileSupport)
|
||||
{
|
||||
var link = document.createElement('div');
|
||||
link.style.cursor = 'pointer';
|
||||
|
@ -395,9 +395,12 @@ var StorageDialog = function(editorUi, fn, rowLimit)
|
|||
// Using null for position will disable crop of input file
|
||||
editorUi.hideDialog();
|
||||
editorUi.openFiles(input.files, true);
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
input.type = '';
|
||||
input.type = 'file';
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
input.value = '';
|
||||
});
|
||||
|
||||
input.style.display = 'none';
|
||||
|
@ -4260,7 +4263,7 @@ var ImageDialog = function(editorUi, title, initialValue, fn, ignoreExisting, co
|
|||
linkInput.focus();
|
||||
};
|
||||
|
||||
if (Graph.fileSupport && document.documentMode == null)
|
||||
if (Graph.fileSupport)
|
||||
{
|
||||
if (editorUi.imgDlgFileInputElt == null)
|
||||
{
|
||||
|
@ -4270,26 +4273,32 @@ var ImageDialog = function(editorUi, title, initialValue, fn, ignoreExisting, co
|
|||
|
||||
mxEvent.addListener(fileInput, 'change', function(evt)
|
||||
{
|
||||
editorUi.importFiles(fileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h)
|
||||
{
|
||||
apply(data);
|
||||
}, function()
|
||||
{
|
||||
// No post processing
|
||||
}, function(file)
|
||||
{
|
||||
// Handles only images
|
||||
return file.type.substring(0, 6) == 'image/';
|
||||
}, function(queue)
|
||||
{
|
||||
// Invokes elements of queue in order
|
||||
for (var i = 0; i < queue.length; i++)
|
||||
{
|
||||
queue[i]();
|
||||
}
|
||||
}, true);
|
||||
|
||||
fileInput.value = '';
|
||||
if (fileInput.files != null)
|
||||
{
|
||||
editorUi.importFiles(fileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h)
|
||||
{
|
||||
apply(data);
|
||||
}, function()
|
||||
{
|
||||
// No post processing
|
||||
}, function(file)
|
||||
{
|
||||
// Handles only images
|
||||
return file.type.substring(0, 6) == 'image/';
|
||||
}, function(queue)
|
||||
{
|
||||
// Invokes elements of queue in order
|
||||
for (var i = 0; i < queue.length; i++)
|
||||
{
|
||||
queue[i]();
|
||||
}
|
||||
}, true);
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
fileInput.type = '';
|
||||
fileInput.type = 'file';
|
||||
fileInput.value = '';
|
||||
}
|
||||
});
|
||||
|
||||
fileInput.style.display = 'none';
|
||||
|
@ -4301,8 +4310,8 @@ var ImageDialog = function(editorUi, title, initialValue, fn, ignoreExisting, co
|
|||
{
|
||||
editorUi.imgDlgFileInputElt.click();
|
||||
});
|
||||
|
||||
btn.className = 'geBtn';
|
||||
|
||||
btns.appendChild(btn);
|
||||
}
|
||||
|
||||
|
@ -4312,11 +4321,12 @@ var ImageDialog = function(editorUi, title, initialValue, fn, ignoreExisting, co
|
|||
{
|
||||
var cropBtn = mxUtils.button(mxResources.get('crop'), function()
|
||||
{
|
||||
var dlg = new CropImageDialog(editorUi, linkInput.value, function(image)
|
||||
{
|
||||
linkInput.value = image;
|
||||
});
|
||||
editorUi.showDialog(dlg.container, 200, 185, true, true);
|
||||
var dlg = new CropImageDialog(editorUi, linkInput.value, function(image)
|
||||
{
|
||||
linkInput.value = image;
|
||||
});
|
||||
|
||||
editorUi.showDialog(dlg.container, 200, 185, true, true);
|
||||
dlg.init();
|
||||
});
|
||||
|
||||
|
@ -4396,6 +4406,7 @@ var ImageDialog = function(editorUi, title, initialValue, fn, ignoreExisting, co
|
|||
{
|
||||
apply(linkInput.value);
|
||||
});
|
||||
|
||||
applyBtn.className = 'geBtn gePrimaryBtn';
|
||||
btns.appendChild(applyBtn);
|
||||
|
||||
|
@ -7864,6 +7875,8 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
// Ignores duplicates
|
||||
try
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
|
||||
if (mimeType == null || mimeType.substring(0, 6) == 'image/')
|
||||
{
|
||||
if ((data == null && img != null) || entries[data] == null)
|
||||
|
@ -8170,7 +8183,6 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
|
||||
try
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
var doc = mxUtils.parseXml(data);
|
||||
|
||||
if (doc.documentElement.nodeName == 'mxlibrary')
|
||||
|
@ -8268,13 +8280,12 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
{
|
||||
return function(data, mimeType, x, y, w, h, img, doneFn, file)
|
||||
{
|
||||
if (file != null && (/(\.vsdx)($|\?)/i.test(file.name) || /(\.vssx)($|\?)/i.test(file.name)))
|
||||
if (file != null && (/(\.vsdx)($|\?)/i.test(file.name) || /(\.vssx)($|\?)/i.test(file.name)))
|
||||
{
|
||||
editorUi.importVisio(file, mxUtils.bind(this, function(xml)
|
||||
{
|
||||
editorUi.spinner.stop();
|
||||
addButton(xml, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
|
||||
null : img.substring(0, img.lastIndexOf('.')).replace(/_/g, ' '));
|
||||
addButton(xml, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
|
||||
null : img.substring(0, img.lastIndexOf('.')).replace(/_/g, ' '));
|
||||
}));
|
||||
}
|
||||
else if (file != null && !editorUi.isOffline() && new XMLHttpRequest().upload && editorUi.isRemoteFileFormat(data, file.name))
|
||||
|
@ -8285,13 +8296,12 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
{
|
||||
editorUi.spinner.stop();
|
||||
|
||||
if (xhr.status >= 200 && xhr.status <= 299)
|
||||
if (xhr.status >= 200 && xhr.status <= 299)
|
||||
{
|
||||
var xml = xhr.responseText;
|
||||
|
||||
addButton(xml, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
|
||||
null : img.substring(0, img.lastIndexOf('.')).replace(/_/g, ' '));
|
||||
div.scrollTop = div.scrollHeight;
|
||||
addButton(xml, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
|
||||
null : img.substring(0, img.lastIndexOf('.')).replace(/_/g, ' '));
|
||||
div.scrollTop = div.scrollHeight;
|
||||
}
|
||||
}
|
||||
}));
|
||||
|
@ -8365,6 +8375,7 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
{
|
||||
editorUi.hideDialog(true);
|
||||
});
|
||||
|
||||
cancelBtn.setAttribute('id', 'btnCancel');
|
||||
cancelBtn.className = 'geBtn';
|
||||
|
||||
|
@ -8398,7 +8409,7 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
btn.className = 'geBtn';
|
||||
btns.appendChild(btn);
|
||||
|
||||
if (document.documentMode == null)
|
||||
if (Graph.fileSupport)
|
||||
{
|
||||
if (editorUi.libDlgFileInputElt == null)
|
||||
{
|
||||
|
@ -8409,13 +8420,18 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
mxEvent.addListener(fileInput, 'change', function(evt)
|
||||
{
|
||||
errorShowed = false;
|
||||
|
||||
|
||||
editorUi.importFiles(fileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, w, h, img, doneFn, file)
|
||||
{
|
||||
createImportHandler(evt)(data, mimeType, x, y, w, h, img, doneFn, file);
|
||||
|
||||
// Resets input to force change event for same file
|
||||
fileInput.value = '';
|
||||
if (fileInput.files != null)
|
||||
{
|
||||
createImportHandler(evt)(data, mimeType, x, y, w, h, img, doneFn, file);
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
fileInput.type = '';
|
||||
fileInput.type = 'file';
|
||||
fileInput.value = '';
|
||||
}
|
||||
});
|
||||
|
||||
div.scrollTop = div.scrollHeight;
|
||||
|
@ -8473,6 +8489,7 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
}
|
||||
});
|
||||
});
|
||||
|
||||
btn.setAttribute('id', 'btnAddImageUrl');
|
||||
btn.className = 'geBtn';
|
||||
btns.appendChild(btn);
|
||||
|
@ -8482,6 +8499,7 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
{
|
||||
editorUi.saveLibrary(name, images, file, mode);
|
||||
};
|
||||
|
||||
var btn = mxUtils.button(mxResources.get('save'),mxUtils.bind(this, function()
|
||||
{
|
||||
if (stopEditing != null)
|
||||
|
@ -8492,6 +8510,7 @@ var LibraryDialog = function(editorUi, name, library, initialImages, file, mode)
|
|||
|
||||
this.saveBtnClickHandler(nameInput.value, images, file, mode);
|
||||
}));
|
||||
|
||||
btn.setAttribute('id', 'btnSave');
|
||||
btn.className = 'geBtn gePrimaryBtn';
|
||||
btns.appendChild(btn);
|
||||
|
|
|
@ -123,21 +123,23 @@
|
|||
Editor.commonEdgeProperties = [
|
||||
{type: 'separator'},
|
||||
{name: 'arcSize', dispName: 'Arc Size', type: 'float', min:0, defVal: mxConstants.LINE_ARCSIZE},
|
||||
{name: 'targetPortConstraint', dispName: 'Target Port Constraint', type: 'enum', defVal: 'none',
|
||||
enumList: [{val: 'none', dispName: 'None'}, {val: 'east', dispName: 'East'}, {val: 'north', dispName: 'North'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
{name: 'sourcePortConstraint', dispName: 'Source Constraint', type: 'enum', defVal: 'none',
|
||||
enumList: [{val: 'none', dispName: 'None'}, {val: 'north', dispName: 'North'}, {val: 'east', dispName: 'East'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
},
|
||||
{name: 'sourcePortConstraint', dispName: 'Source Port Constraint', type: 'enum', defVal: 'none',
|
||||
enumList: [{val: 'none', dispName: 'None'}, {val: 'east', dispName: 'East'}, {val: 'north', dispName: 'North'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
{name: 'targetPortConstraint', dispName: 'Target Constraint', type: 'enum', defVal: 'none',
|
||||
enumList: [{val: 'none', dispName: 'None'}, {val: 'north', dispName: 'North'}, {val: 'east', dispName: 'East'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
},
|
||||
{name: 'jettySize', dispName: 'Jetty Size', type: 'int', min: 0, defVal: 'auto', allowAuto: true, isVisible: function(state)
|
||||
{
|
||||
return mxUtils.getValue(state.style, mxConstants.STYLE_EDGE, null) == 'orthogonalEdgeStyle';
|
||||
}},
|
||||
{name: 'fillOpacity', dispName: 'Fill Opacity', type: 'int', min: 0, max: 100, defVal: 100},
|
||||
{name: 'strokeOpacity', dispName: 'Stroke Opacity', type: 'int', min: 0, max: 100, defVal: 100},
|
||||
{name: 'startFill', dispName: 'Start Fill', type: 'bool', defVal: true},
|
||||
{name: 'endFill', dispName: 'End Fill', type: 'bool', defVal: true},
|
||||
{name: 'sourcePerimeterSpacing', dispName: 'Source Perimeter Spacing', type: 'float', defVal: 0},
|
||||
{name: 'targetPerimeterSpacing', dispName: 'Target Perimeter Spacing', type: 'float', defVal: 0},
|
||||
{name: 'perimeterSpacing', dispName: 'Perimeter Spacing', type: 'float', defVal: 0},
|
||||
{name: 'anchorPointDirection', dispName: 'Anchor Point Direction', type: 'bool', defVal: true},
|
||||
{name: 'snapToPoint', dispName: 'Snap to Point', type: 'bool', defVal: false},
|
||||
{name: 'perimeterSpacing', dispName: 'Terminal Spacing', type: 'float', defVal: 0},
|
||||
{name: 'anchorPointDirection', dispName: 'Anchor Direction', type: 'bool', defVal: true},
|
||||
{name: 'snapToPoint', dispName: 'Snap to Anchor', type: 'bool', defVal: false},
|
||||
{name: 'fixDash', dispName: 'Fixed Dash', type: 'bool', defVal: false},
|
||||
{name: 'jiggle', dispName: 'Jiggle', type: 'float', min: 0, defVal: 1.5, isVisible: function(state)
|
||||
{
|
||||
|
@ -166,12 +168,12 @@
|
|||
{name: 'noLabel', dispName: 'Hide Label', type: 'bool', defVal: false},
|
||||
{name: 'labelPadding', dispName: 'Label Padding', type: 'float', defVal: 0},
|
||||
{name: 'direction', dispName: 'Direction', type: 'enum', defVal: 'east',
|
||||
enumList: [{val: 'east', dispName: 'East'}, {val: 'north', dispName: 'North'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
enumList: [{val: 'north', dispName: 'North'}, {val: 'east', dispName: 'East'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
},
|
||||
{name: 'portConstraint', dispName: 'Port Constraint', type: 'enum', defVal: 'none',
|
||||
enumList: [{val: 'none', dispName: 'None'}, {val: 'east', dispName: 'East'}, {val: 'north', dispName: 'North'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
{name: 'portConstraint', dispName: 'Constraint', type: 'enum', defVal: 'none',
|
||||
enumList: [{val: 'none', dispName: 'None'}, {val: 'north', dispName: 'North'}, {val: 'east', dispName: 'East'}, {val: 'south', dispName: 'South'}, {val: 'west', dispName: 'West'}]
|
||||
},
|
||||
{name: 'portConstraintRotation', dispName: 'Port Const. Rot.', type: 'bool', defVal: false},
|
||||
{name: 'portConstraintRotation', dispName: 'Rotate Constraint', type: 'bool', defVal: false},
|
||||
{name: 'connectable', dispName: 'Connectable', type: 'bool', defVal: true},
|
||||
{name: 'snapToPoint', dispName: 'Snap to Point', type: 'bool', defVal: false},
|
||||
{name: 'perimeter', dispName: 'Perimeter', defVal: 'none', type: 'enum',
|
||||
|
@ -3836,7 +3838,7 @@
|
|||
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Returns the cells in the model (or given array) that have all of the
|
||||
* given tags in their tags property.
|
||||
|
@ -3850,6 +3852,18 @@
|
|||
cells = (cells != null) ? cells : this.model.getDescendants(this.model.getRoot());
|
||||
propertyName = (propertyName != null) ? propertyName : 'tags';
|
||||
|
||||
var tagCount = 0;
|
||||
var lookup = {};
|
||||
|
||||
for (var i = 0; i < tagList.length; i++)
|
||||
{
|
||||
if (tagList[i].length > 0)
|
||||
{
|
||||
lookup[tagList[i].toLowerCase()] = true;
|
||||
tagCount++;
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < cells.length; i++)
|
||||
{
|
||||
if ((includeLayers && this.model.getParent(cells[i]) == this.model.root) ||
|
||||
|
@ -3857,17 +3871,25 @@
|
|||
{
|
||||
var tags = (cells[i].value != null && typeof(cells[i].value) == 'object') ?
|
||||
mxUtils.trim(cells[i].value.getAttribute(propertyName) || '') : '';
|
||||
var match = true;
|
||||
var match = false;
|
||||
|
||||
if (tags.length > 0)
|
||||
{
|
||||
var tmp = tags.toLowerCase().split(' ');
|
||||
|
||||
for (var j = 0; j < tagList.length && match; j++)
|
||||
if (tmp.length >= tagList.length)
|
||||
{
|
||||
var tag = mxUtils.trim(tagList[j]).toLowerCase();
|
||||
var matchCount = 0;
|
||||
|
||||
match = match && (tag.length == 0 || mxUtils.indexOf(tmp, tag) >= 0);
|
||||
for (var j = 0; j < tmp.length && (matchCount < tagCount); j++)
|
||||
{
|
||||
if (lookup[tmp[j]] != null)
|
||||
{
|
||||
matchCount++;
|
||||
}
|
||||
}
|
||||
|
||||
match = matchCount == tagCount;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -3885,7 +3907,7 @@
|
|||
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Shows or hides the given cells.
|
||||
*/
|
||||
|
|
|
@ -6461,7 +6461,7 @@
|
|||
img.src = url;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Handling drag and drop and import.
|
||||
*/
|
||||
|
@ -6489,7 +6489,7 @@
|
|||
|
||||
// Checks for mxfile with multiple pages
|
||||
var node = this.editor.extractGraphModel(doc.documentElement, this.pages != null);
|
||||
|
||||
|
||||
if (node != null && node.nodeName == 'mxfile' && this.pages != null)
|
||||
{
|
||||
var diagrams = node.getElementsByTagName('diagram');
|
||||
|
@ -6500,6 +6500,8 @@
|
|||
}
|
||||
else if (diagrams.length > 1)
|
||||
{
|
||||
var mapping = {};
|
||||
var pages = [];
|
||||
var i0 = 0;
|
||||
|
||||
// Adds first page to current page if current page is only page and empty
|
||||
|
@ -6512,10 +6514,13 @@
|
|||
|
||||
for (var i = i0; i < diagrams.length; i++)
|
||||
{
|
||||
// Imported pages must obtain a new ID
|
||||
// Imported pages must obtain a new ID and
|
||||
// all links to pages must be updated below
|
||||
var oldId = diagrams[i].getAttribute('id')
|
||||
diagrams[i].removeAttribute('id');
|
||||
|
||||
var page = this.updatePageRoot(new DiagramPage(diagrams[i]));
|
||||
mapping[oldId] = diagrams[i].getAttribute('id');
|
||||
var index = this.pages.length;
|
||||
|
||||
// Checks for invalid page names
|
||||
|
@ -6525,7 +6530,10 @@
|
|||
}
|
||||
|
||||
graph.model.execute(new ChangePage(this, page, page, index, true));
|
||||
pages.push(page);
|
||||
}
|
||||
|
||||
this.updatePageLinks(mapping, pages);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6555,6 +6563,70 @@
|
|||
return cells;
|
||||
};
|
||||
|
||||
/**
|
||||
* Updates links to pages in shapes and labels.
|
||||
*/
|
||||
EditorUi.prototype.updatePageLinks = function(mapping, pages)
|
||||
{
|
||||
for (var i = 0; i < pages.length; i++)
|
||||
{
|
||||
this.updatePageLinksForCell(mapping, pages[i].root);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Updates links to pages in shapes and labels.
|
||||
*/
|
||||
EditorUi.prototype.updatePageLinksForCell = function(mapping, cell)
|
||||
{
|
||||
var temp = document.createElement('div');
|
||||
var graph = this.editor.graph;
|
||||
var href = graph.getLinkForCell(cell);
|
||||
|
||||
if (href != null && href.substring(0, 13) == 'data:page/id,')
|
||||
{
|
||||
graph.setLinkForCell(cell, this.updatePageLink(mapping, href));
|
||||
}
|
||||
|
||||
if (graph.isHtmlLabel(cell))
|
||||
{
|
||||
temp.innerHTML = graph.getLabel(cell);
|
||||
var links = temp.getElementsByTagName('a');
|
||||
var changed = false;
|
||||
|
||||
for (var i = 0; i < links.length; i++)
|
||||
{
|
||||
href = links[i].getAttribute('href');
|
||||
|
||||
if (href != null && href.substring(0, 13) == 'data:page/id,')
|
||||
{
|
||||
links[i].setAttribute('href', this.updatePageLink(mapping, href));
|
||||
changed = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (changed)
|
||||
{
|
||||
graph.labelChanged(cell, temp.innerHTML);
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < graph.model.getChildCount(cell); i++)
|
||||
{
|
||||
this.updatePageLinksForCell(mapping, graph.model.getChildAt(cell, i));
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Updates links to pages in shapes and labels.
|
||||
*/
|
||||
EditorUi.prototype.updatePageLink = function(mapping, href)
|
||||
{
|
||||
var newId = mapping[href.substring(href.indexOf(',') + 1)];
|
||||
|
||||
return (newId != null) ? 'data:page/id,' + newId : null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns true for VSD, VDX and VSS, VSX files.
|
||||
*/
|
||||
|
@ -7060,9 +7132,7 @@
|
|||
*/
|
||||
EditorUi.prototype.importLocalFile = function(device, noSplash)
|
||||
{
|
||||
// input.click does not work in IE on Windows 7
|
||||
if (device && Graph.fileSupport && ((!mxClient.IS_IE && !mxClient.IS_IE11) ||
|
||||
navigator.appVersion.indexOf('Windows NT 6.1') < 0))
|
||||
if (device && Graph.fileSupport)
|
||||
{
|
||||
if (this.importFileInputElt == null)
|
||||
{
|
||||
|
@ -7075,9 +7145,12 @@
|
|||
{
|
||||
// Using null for position will disable crop of input file
|
||||
this.importFiles(input.files, null, null, this.maxImageSize);
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
input.type = '';
|
||||
input.type = 'file';
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
input.value = '';
|
||||
}));
|
||||
|
||||
input.style.display = 'none';
|
||||
|
@ -7358,7 +7431,7 @@
|
|||
{
|
||||
graph.setSelectionCells(cells);
|
||||
});
|
||||
|
||||
|
||||
if (this.spinner.spin(document.body, mxResources.get('loading')))
|
||||
{
|
||||
var count = files.length;
|
||||
|
@ -10312,14 +10385,15 @@
|
|||
}), null, null, null, mxUtils.bind(this, function()
|
||||
{
|
||||
processUri(null);
|
||||
}), null, null, null, null, null, null, graph);
|
||||
}), null, null, data.scale, null, null, null, graph);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Data from server is base64 encoded to avoid binary XHR
|
||||
// Double encoding for XML arg is needed for UTF8 encoding
|
||||
var req = new mxXmlRequest(EXPORT_URL, 'format=png&embedXml=' +
|
||||
((data.format == 'xmlpng') ? '1' : '0') + '&base64=1&xml=' +
|
||||
((data.format == 'xmlpng') ? '1' : '0') +
|
||||
(data.scale != null? '&scale=' + data.scale : '') +'&base64=1&xml=' +
|
||||
encodeURIComponent(encodeURIComponent(xml)));
|
||||
|
||||
req.send(mxUtils.bind(this, function(req)
|
||||
|
|
|
@ -1607,6 +1607,12 @@
|
|||
});
|
||||
}));
|
||||
|
||||
editorUi.actions.addAction('microsoftOffice...', function()
|
||||
{
|
||||
// TODO Add officeaddin.draw.io
|
||||
editorUi.openLink('https://appsource.microsoft.com/product/office/WA200000113');
|
||||
});
|
||||
|
||||
editorUi.actions.addAction('googleDocs...', function()
|
||||
{
|
||||
editorUi.openLink('http://docsaddon.draw.io');
|
||||
|
@ -2276,7 +2282,7 @@
|
|||
|
||||
if (urlParams['embed'] != '1' && !editorUi.isOffline())
|
||||
{
|
||||
this.addMenuItems(menu, ['-', 'googleDocs', 'googleSlides'], parent);
|
||||
this.addMenuItems(menu, ['-', 'googleDocs', 'googleSlides', '-', 'microsoftOffice'], parent);
|
||||
}
|
||||
})));
|
||||
|
||||
|
|
|
@ -658,34 +658,7 @@ EditorUi.initMinimalTheme = function()
|
|||
ui.actions.get('createShape').label = mxResources.get('shape') + '...';
|
||||
ui.actions.get('outline').label = mxResources.get('outline') + '...';
|
||||
ui.actions.get('layers').label = mxResources.get('layers') + '...';
|
||||
|
||||
ui.actions.put('importFile', new Action('File...', function()
|
||||
{
|
||||
graph.popupMenuHandler.hideMenu();
|
||||
|
||||
if (ui.minImpFileInputElt == null)
|
||||
{
|
||||
var input = document.createElement('input');
|
||||
input.setAttribute('type', 'file');
|
||||
|
||||
mxEvent.addListener(input, 'change', function()
|
||||
{
|
||||
if (input.files != null)
|
||||
{
|
||||
// Using null for position will disable crop of input file
|
||||
ui.importFiles(input.files, null, null, ui.maxImageSize);
|
||||
}
|
||||
|
||||
input.value = '';
|
||||
});
|
||||
|
||||
input.style.display = 'none';
|
||||
document.body.appendChild(input);
|
||||
ui.minImpFileInputElt = input;
|
||||
}
|
||||
|
||||
ui.minImpFileInputElt.click();
|
||||
}));
|
||||
|
||||
ui.actions.put('importCsv', new Action(mxResources.get('csv') + '...', function()
|
||||
{
|
||||
graph.popupMenuHandler.hideMenu();
|
||||
|
|
|
@ -3515,7 +3515,7 @@ TextFormatPanel.prototype.addFont = function(container)
|
|||
setSelected(fontStyleItems[0], (fontStyle & mxConstants.FONT_BOLD) == mxConstants.FONT_BOLD);
|
||||
setSelected(fontStyleItems[1], (fontStyle & mxConstants.FONT_ITALIC) == mxConstants.FONT_ITALIC);
|
||||
setSelected(fontStyleItems[2], (fontStyle & mxConstants.FONT_UNDERLINE) == mxConstants.FONT_UNDERLINE);
|
||||
fontMenu.firstChild.nodeValue = mxUtils.htmlEntities(mxUtils.getValue(ss.style, mxConstants.STYLE_FONTFAMILY, Menus.prototype.defaultFont));
|
||||
fontMenu.firstChild.nodeValue = mxUtils.getValue(ss.style, mxConstants.STYLE_FONTFAMILY, Menus.prototype.defaultFont);
|
||||
|
||||
setSelected(verticalItem, mxUtils.getValue(ss.style, mxConstants.STYLE_HORIZONTAL, '1') == '0');
|
||||
|
||||
|
|
|
@ -5617,6 +5617,17 @@ if (typeof mxVertexHandler != 'undefined')
|
|||
this.setAttributeForCell(cell, 'tooltip', link);
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns the cells in the model (or given array) that have all of the
|
||||
* given tags in their tags property.
|
||||
*/
|
||||
Graph.prototype.getAttributeForCell = function(cell, attributeName, defaultValue)
|
||||
{
|
||||
return (cell.value != null && typeof cell.value === 'object') ?
|
||||
(cell.value.getAttribute(attributeName) || defaultValue) :
|
||||
defaultValue;
|
||||
};
|
||||
|
||||
/**
|
||||
* Sets the link for the given cell.
|
||||
*/
|
||||
|
|
|
@ -12,9 +12,11 @@ function Sidebar(editorUi, container)
|
|||
this.taglist = new Object();
|
||||
this.showTooltips = true;
|
||||
this.graph = editorUi.createTemporaryGraph(this.editorUi.editor.graph.getStylesheet());
|
||||
this.graph.cellRenderer.antiAlias = false;
|
||||
this.graph.foldingEnabled = false;
|
||||
this.graph.cellRenderer.minSvgStrokeWidth = this.minThumbStrokeWidth;
|
||||
this.graph.cellRenderer.antiAlias = this.thumbAntiAlias;
|
||||
this.graph.container.style.visibility = 'hidden';
|
||||
this.graph.foldingEnabled = false;
|
||||
|
||||
document.body.appendChild(this.graph.container);
|
||||
|
||||
this.pointerUpHandler = mxUtils.bind(this, function()
|
||||
|
@ -155,6 +157,16 @@ Sidebar.prototype.thumbWidth = 42;
|
|||
*/
|
||||
Sidebar.prototype.thumbHeight = 42;
|
||||
|
||||
/**
|
||||
* Specifies the width of the thumbnails.
|
||||
*/
|
||||
Sidebar.prototype.minThumbStrokeWidth = 1;
|
||||
|
||||
/**
|
||||
* Specifies the width of the thumbnails.
|
||||
*/
|
||||
Sidebar.prototype.thumbAntiAlias = false;
|
||||
|
||||
/**
|
||||
* Specifies the padding for the thumbnails. Default is 3.
|
||||
*/
|
||||
|
@ -165,6 +177,18 @@ Sidebar.prototype.thumbPadding = (document.documentMode >= 5) ? 2 : 3;
|
|||
*/
|
||||
Sidebar.prototype.thumbBorder = 2;
|
||||
|
||||
/*
|
||||
* Experimental smaller sidebar entries
|
||||
*/
|
||||
if (urlParams['sidebar-entries'] != 'large')
|
||||
{
|
||||
Sidebar.prototype.thumbBorder = 1;
|
||||
Sidebar.prototype.thumbWidth = 32;
|
||||
Sidebar.prototype.thumbHeight = 30;
|
||||
Sidebar.prototype.minThumbStrokeWidth = 1.3;
|
||||
Sidebar.prototype.thumbAntiAlias = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Specifies the size of the sidebar titles.
|
||||
*/
|
||||
|
@ -1822,7 +1846,6 @@ Sidebar.prototype.createThumb = function(cells, width, height, parent, title, sh
|
|||
|
||||
node.style.position = 'relative';
|
||||
node.style.overflow = 'hidden';
|
||||
node.style.cursor = 'move';
|
||||
node.style.left = this.thumbBorder + 'px';
|
||||
node.style.top = this.thumbBorder + 'px';
|
||||
node.style.width = width + 'px';
|
||||
|
|
1506
src/main/webapp/js/viewer.min.js
vendored
1506
src/main/webapp/js/viewer.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "draw.io",
|
||||
"version": "8.6.5",
|
||||
"version": "10.8.0",
|
||||
"description": "draw.io desktop",
|
||||
"main": "electron.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -145,6 +145,16 @@ Draw.loadPlugin(function(ui)
|
|||
macroData.lbox = (checked) ? '1' : '0';
|
||||
}));
|
||||
|
||||
// High Resolution Preview
|
||||
div.appendChild(this.createOption(mxResources.get('hiResPreview', null, 'High Res Preview'), function()
|
||||
{
|
||||
return (macroData.hiResPreview == null && Editor.config != null && Editor.config.hiResPreview) || macroData.hiResPreview == '1';
|
||||
}, function(checked)
|
||||
{
|
||||
macroData.hiResPreview = (checked) ? '1' : '0';
|
||||
ui.remoteInvoke('setHiResPreview', [checked], null, function(){}, function(){}); //Notify plugin of the change, ignoring both success and error callbacks
|
||||
}));
|
||||
|
||||
// Toolbar
|
||||
var stylePanel = this.createPanel();
|
||||
stylePanel.style.position = 'relative';
|
||||
|
|
|
@ -161,7 +161,7 @@ Draw.loadPlugin(function(ui)
|
|||
{
|
||||
// Only modern browsers for now. We'll move the import
|
||||
// code above to the main codebase later
|
||||
if (Graph.fileSupport && !mxClient.IS_IE && !mxClient.IS_IE11)
|
||||
if (Graph.fileSupport)
|
||||
{
|
||||
if (ui.impFMFileInputElt == null)
|
||||
{
|
||||
|
@ -181,9 +181,12 @@ Draw.loadPlugin(function(ui)
|
|||
};
|
||||
|
||||
reader.readAsText(input.files[0]);
|
||||
|
||||
// Resets input to force change event for same file (type reset required for IE)
|
||||
input.type = '';
|
||||
input.type = 'file';
|
||||
input.value = '';
|
||||
}
|
||||
|
||||
input.value = '';
|
||||
});
|
||||
|
||||
input.style.display = 'none';
|
||||
|
|
517
src/main/webapp/plugins/tags.js
Normal file
517
src/main/webapp/plugins/tags.js
Normal file
|
@ -0,0 +1,517 @@
|
|||
/**
|
||||
* Tags plugin.
|
||||
*
|
||||
* - Set tags via dialog
|
||||
* - Toggle hidden tags
|
||||
* - Stateless filter
|
||||
*
|
||||
* TODO:
|
||||
*
|
||||
* - Add hiddenTags to viewState of page
|
||||
* - Export to PDF ignores current tags
|
||||
* - Sync hiddenTags with removed tags
|
||||
*/
|
||||
Draw.loadPlugin(function(editorUi)
|
||||
{
|
||||
var div = document.createElement('div');
|
||||
|
||||
// Adds resource for action
|
||||
mxResources.parse('hiddenTags=Hidden Tags');
|
||||
|
||||
// Adds action
|
||||
editorUi.actions.addAction('hiddenTags...', function()
|
||||
{
|
||||
if (editorUi.hiddenTagsWindow == null)
|
||||
{
|
||||
editorUi.hiddenTagsWindow = new HiddenTagsWindow(editorUi, document.body.offsetWidth - 380, 120, 300, 240);
|
||||
editorUi.hiddenTagsWindow.window.addListener('show', function()
|
||||
{
|
||||
editorUi.fireEvent(new mxEventObject('hiddenTags'));
|
||||
});
|
||||
editorUi.hiddenTagsWindow.window.addListener('hide', function()
|
||||
{
|
||||
editorUi.fireEvent(new mxEventObject('hiddenTags'));
|
||||
});
|
||||
editorUi.hiddenTagsWindow.window.setVisible(true);
|
||||
editorUi.fireEvent(new mxEventObject('hiddenTags'));
|
||||
}
|
||||
else
|
||||
{
|
||||
editorUi.hiddenTagsWindow.window.setVisible(!editorUi.hiddenTagsWindow.window.isVisible());
|
||||
}
|
||||
});
|
||||
|
||||
var menu = editorUi.menus.get('extras');
|
||||
var oldFunct = menu.funct;
|
||||
|
||||
menu.funct = function(menu, parent)
|
||||
{
|
||||
oldFunct.apply(this, arguments);
|
||||
|
||||
editorUi.menus.addMenuItems(menu, ['-', 'hiddenTags'], parent);
|
||||
};
|
||||
|
||||
var HiddenTagsWindow = function(editorUi, x, y, w, h)
|
||||
{
|
||||
var graph = editorUi.editor.graph;
|
||||
var propertyName = 'tags';
|
||||
|
||||
var div = document.createElement('div');
|
||||
div.style.overflow = 'hidden';
|
||||
div.style.padding = '12px 8px 12px 8px';
|
||||
div.style.height = 'auto';
|
||||
|
||||
var searchInput = document.createElement('input');
|
||||
searchInput.setAttribute('placeholder', 'Add tags');
|
||||
searchInput.setAttribute('type', 'text');
|
||||
searchInput.style.width = '100%';
|
||||
searchInput.style.boxSizing = 'border-box';
|
||||
searchInput.style.fontSize = '12px';
|
||||
searchInput.style.borderRadius = '4px';
|
||||
searchInput.style.padding = '4px';
|
||||
searchInput.style.marginBottom = '8px';
|
||||
div.appendChild(searchInput);
|
||||
|
||||
var filterInput = searchInput.cloneNode(true);
|
||||
filterInput.setAttribute('placeholder', 'Filter tags');
|
||||
div.appendChild(filterInput);
|
||||
|
||||
var tagCloud = document.createElement('div');
|
||||
tagCloud.style.position = 'relative';
|
||||
tagCloud.style.fontSize = '12px';
|
||||
tagCloud.style.height = 'auto';
|
||||
div.appendChild(tagCloud);
|
||||
|
||||
var graph = editorUi.editor.graph;
|
||||
var lastValue = null;
|
||||
|
||||
function getTagsForCell(cell)
|
||||
{
|
||||
return graph.getAttributeForCell(cell, propertyName, '');
|
||||
};
|
||||
|
||||
function getAllTagsForCells(cells)
|
||||
{
|
||||
var tokens = [];
|
||||
|
||||
for (var i = 0; i < cells.length; i++)
|
||||
{
|
||||
var tags = getTagsForCell(cells[i]);
|
||||
|
||||
if (tags.length > 0)
|
||||
{
|
||||
tokens = tokens.concat(tags.toLowerCase().split(' '));
|
||||
}
|
||||
}
|
||||
|
||||
var result = [];
|
||||
|
||||
if (tokens.length > 0)
|
||||
{
|
||||
tokens.sort();
|
||||
result.push(tokens[0]);
|
||||
|
||||
for (var i = 1; i < tokens.length; i++)
|
||||
{
|
||||
if (result[result.length - 1] != tokens[i])
|
||||
{
|
||||
result.push(tokens[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
function getCommonTagsForCells(cells)
|
||||
{
|
||||
var commonTokens = null;
|
||||
var validTags = [];
|
||||
|
||||
for (var i = 0; i < cells.length; i++)
|
||||
{
|
||||
var tags = getTagsForCell(cells[i]);
|
||||
validTags = [];
|
||||
|
||||
if (tags.length > 0)
|
||||
{
|
||||
var tokens = tags.toLowerCase().split(' ');
|
||||
var temp = {};
|
||||
|
||||
for (var j = 0; j < tokens.length; j++)
|
||||
{
|
||||
if (commonTokens == null || commonTokens[tokens[j]] != null)
|
||||
{
|
||||
temp[tokens[j]] = true;
|
||||
validTags.push(tokens[j]);
|
||||
}
|
||||
}
|
||||
|
||||
commonTokens = temp;
|
||||
}
|
||||
else
|
||||
{
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
return validTags;
|
||||
};
|
||||
|
||||
function getLookup(tagList)
|
||||
{
|
||||
var lookup = {};
|
||||
|
||||
for (var i = 0; i < tagList.length; i++)
|
||||
{
|
||||
lookup[tagList[i].toLowerCase()] = true;
|
||||
}
|
||||
|
||||
return lookup;
|
||||
};
|
||||
|
||||
function getAllTags()
|
||||
{
|
||||
return getAllTagsForCells(graph.model.getDescendants(
|
||||
graph.model.getRoot()));
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns the cells in the model (or given array) that have all of the
|
||||
* given tags in their tags property.
|
||||
*/
|
||||
function matchTags(tags, lookup)
|
||||
{
|
||||
if (tags.length > 0)
|
||||
{
|
||||
var tmp = tags.toLowerCase().split(' ');
|
||||
|
||||
for (var i = 0; i < tmp.length; i++)
|
||||
{
|
||||
if (lookup[tmp[i]] == null)
|
||||
{
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
var hiddenTags = {};
|
||||
var hiddenTagCount = 0;
|
||||
var graphIsCellVisible = graph.isCellVisible;
|
||||
|
||||
graph.isCellVisible = function(cell)
|
||||
{
|
||||
return graphIsCellVisible.apply(this, arguments) &&
|
||||
(hiddenTagCount == 0 ||
|
||||
!matchTags(getTagsForCell(cell), hiddenTags));
|
||||
};
|
||||
|
||||
function setCellsVisibleForTag(tag, visible)
|
||||
{
|
||||
var cells = graph.getCellsForTags([tag], null, propertyName, true);
|
||||
|
||||
// Ignores layers for selection
|
||||
var temp = [];
|
||||
|
||||
for (var i = 0; i < cells.length; i++)
|
||||
{
|
||||
if (graph.model.isVertex(cells[i]) || graph.model.isEdge(cells[i]))
|
||||
{
|
||||
temp.push(cells[i]);
|
||||
}
|
||||
}
|
||||
|
||||
graph.setCellsVisible(cells, visible);
|
||||
};
|
||||
|
||||
function updateSelectedTags(tags, selected, selectedColor, filter)
|
||||
{
|
||||
tagCloud.innerHTML = '';
|
||||
|
||||
var title = document.createElement('div');
|
||||
title.style.marginBottom = '8px';
|
||||
mxUtils.write(title, (filter != null) ? 'Select hidden tags:' : 'Select common tags for cell(s):');
|
||||
tagCloud.appendChild(title);
|
||||
|
||||
var found = 0;
|
||||
|
||||
for (var i = 0; i < tags.length; i++)
|
||||
{
|
||||
if (filter == null || tags[i].substring(0, filter.length) == filter)
|
||||
{
|
||||
var span = document.createElement('span');
|
||||
span.style.display = 'inline-block';
|
||||
span.style.padding = '6px 8px';
|
||||
span.style.borderRadius = '6px';
|
||||
span.style.marginBottom = '8px';
|
||||
span.style.maxWidth = '80px';
|
||||
span.style.overflow = 'hidden';
|
||||
span.style.textOverflow = 'ellipsis';
|
||||
span.style.cursor = 'pointer';
|
||||
span.setAttribute('title', tags[i]);
|
||||
span.style.border = '1px solid #808080';
|
||||
mxUtils.write(span, tags[i]);
|
||||
|
||||
if (selected[tags[i]])
|
||||
{
|
||||
span.style.background = selectedColor;
|
||||
span.style.color = '#ffffff';
|
||||
}
|
||||
else
|
||||
{
|
||||
span.style.background = '#ffffff';
|
||||
}
|
||||
|
||||
mxEvent.addListener(span, 'click', (function(tag)
|
||||
{
|
||||
return function()
|
||||
{
|
||||
if (!selected[tag])
|
||||
{
|
||||
if (!graph.isSelectionEmpty())
|
||||
{
|
||||
addTagsToCells(graph.getSelectionCells(), [tag])
|
||||
}
|
||||
else
|
||||
{
|
||||
hiddenTags[tag] = true;
|
||||
hiddenTagCount++;
|
||||
refreshUi();
|
||||
|
||||
window.setTimeout(function()
|
||||
{
|
||||
graph.refresh();
|
||||
}, 0);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!graph.isSelectionEmpty())
|
||||
{
|
||||
removeTagsFromCells(graph.getSelectionCells(), [tag])
|
||||
}
|
||||
else
|
||||
{
|
||||
delete hiddenTags[tag];
|
||||
hiddenTagCount--;
|
||||
refreshUi();
|
||||
|
||||
window.setTimeout(function()
|
||||
{
|
||||
graph.refresh();
|
||||
}, 0);
|
||||
}
|
||||
}
|
||||
};
|
||||
})(tags[i]));
|
||||
|
||||
tagCloud.appendChild(span);
|
||||
mxUtils.write(tagCloud, ' ');
|
||||
found++;
|
||||
}
|
||||
}
|
||||
|
||||
if (found == 0)
|
||||
{
|
||||
mxUtils.write(tagCloud, 'No tags found');
|
||||
}
|
||||
};
|
||||
|
||||
function updateTagCloud(tags)
|
||||
{
|
||||
updateSelectedTags(tags, hiddenTags, '#bb0000', filterInput.value);
|
||||
};
|
||||
|
||||
function refreshUi()
|
||||
{
|
||||
if (graph.isSelectionEmpty())
|
||||
{
|
||||
updateTagCloud(getAllTags(), hiddenTags);
|
||||
searchInput.style.display = 'none';
|
||||
filterInput.style.display = '';
|
||||
}
|
||||
else
|
||||
{
|
||||
updateSelectedTags(getAllTags(), getLookup(getCommonTagsForCells(graph.getSelectionCells())), '#2873e1');
|
||||
searchInput.style.display = '';
|
||||
filterInput.style.display = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
refreshUi();
|
||||
|
||||
function addTagsToCells(cells, tagList)
|
||||
{
|
||||
if (cells.length > 0 && tagList.length > 0)
|
||||
{
|
||||
graph.model.beginUpdate();
|
||||
|
||||
try
|
||||
{
|
||||
for (var i = 0; i < cells.length; i++)
|
||||
{
|
||||
var temp = getTagsForCell(cells[i]);
|
||||
var tags = temp.toLowerCase().split(' ');
|
||||
|
||||
for (var j = 0; j < tagList.length; j++)
|
||||
{
|
||||
var tag = tagList[j];
|
||||
var changed = false;
|
||||
|
||||
if (tags.length == 0 || mxUtils.indexOf(tags, tag) < 0)
|
||||
{
|
||||
temp = (temp.length > 0) ? temp + ' ' + tag : tag;
|
||||
changed = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (changed)
|
||||
{
|
||||
graph.setAttributeForCell(cells[i], 'tags', temp);
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
graph.model.endUpdate();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function removeTagsFromCells(cells, tagList)
|
||||
{
|
||||
if (cells.length > 0 && tagList.length > 0)
|
||||
{
|
||||
graph.model.beginUpdate();
|
||||
|
||||
try
|
||||
{
|
||||
for (var i = 0; i < cells.length; i++)
|
||||
{
|
||||
var tags = getTagsForCell(cells[i]);
|
||||
|
||||
if (tags.length > 0)
|
||||
{
|
||||
var tokens = tags.split(' ');
|
||||
var changed = false;
|
||||
|
||||
for (var j = 0; j < tagList.length; j++)
|
||||
{
|
||||
var idx = mxUtils.indexOf(tokens, tagList[j]);
|
||||
|
||||
if (idx >= 0)
|
||||
{
|
||||
tokens.splice(idx, 1);
|
||||
changed = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (changed)
|
||||
{
|
||||
graph.setAttributeForCell(cells[i], 'tags', tokens.join(' '));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
graph.model.endUpdate();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
graph.selectionModel.addListener(mxEvent.EVENT_CHANGE, function(sender, evt)
|
||||
{
|
||||
refreshUi();
|
||||
});
|
||||
|
||||
graph.model.addListener(mxEvent.EVENT_CHANGE, function(sender, evt)
|
||||
{
|
||||
refreshUi();
|
||||
});
|
||||
|
||||
mxEvent.addListener(filterInput, 'keyup', function()
|
||||
{
|
||||
updateTagCloud(getAllTags());
|
||||
});
|
||||
|
||||
mxEvent.addListener(searchInput, 'keyup', function(evt)
|
||||
{
|
||||
// Ctrl or Cmd keys
|
||||
if (evt.keyCode == 13)
|
||||
{
|
||||
addTagsToCells(graph.getSelectionCells(), searchInput.value.toLowerCase().split(' '));
|
||||
searchInput.value = '';
|
||||
}
|
||||
});
|
||||
|
||||
this.window = new mxWindow(mxResources.get('hiddenTags'), div, x, y, w, null, true, true);
|
||||
this.window.destroyOnClose = false;
|
||||
this.window.setMaximizable(false);
|
||||
this.window.setResizable(true);
|
||||
this.window.setScrollable(true);
|
||||
this.window.setClosable(true);
|
||||
this.window.contentWrapper.style.overflowY = 'scroll';
|
||||
|
||||
this.window.addListener('show', mxUtils.bind(this, function()
|
||||
{
|
||||
this.window.fit();
|
||||
|
||||
if (this.window.isVisible())
|
||||
{
|
||||
searchInput.focus();
|
||||
|
||||
if (mxClient.IS_GC || mxClient.IS_FF || document.documentMode >= 5 || mxClient.IS_QUIRKS)
|
||||
{
|
||||
searchInput.select();
|
||||
}
|
||||
else
|
||||
{
|
||||
document.execCommand('selectAll', false, null);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
graph.container.focus();
|
||||
}
|
||||
}));
|
||||
|
||||
this.window.setLocation = function(x, y)
|
||||
{
|
||||
var iw = window.innerWidth || document.body.clientWidth || document.documentElement.clientWidth;
|
||||
var ih = window.innerHeight || document.body.clientHeight || document.documentElement.clientHeight;
|
||||
|
||||
x = Math.max(0, Math.min(x, iw - this.table.clientWidth));
|
||||
y = Math.max(0, Math.min(y, ih - this.table.clientHeight - 48));
|
||||
|
||||
if (this.getX() != x || this.getY() != y)
|
||||
{
|
||||
mxWindow.prototype.setLocation.apply(this, arguments);
|
||||
}
|
||||
};
|
||||
|
||||
var resizeListener = mxUtils.bind(this, function()
|
||||
{
|
||||
var x = this.window.getX();
|
||||
var y = this.window.getY();
|
||||
|
||||
this.window.setLocation(x, y);
|
||||
});
|
||||
|
||||
mxEvent.addListener(window, 'resize', resizeListener);
|
||||
|
||||
this.destroy = function()
|
||||
{
|
||||
mxEvent.removeListener(window, 'resize', resizeListener);
|
||||
this.window.destroy();
|
||||
}
|
||||
};
|
||||
|
||||
});
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=متصفح
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=قائمة
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=خيارات الإدخال الرياضي
|
||||
makeCopy=إنشاء نسخة
|
||||
manual=يدوي
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Долу вляво
|
|||
bottomRight=Долу вдясно
|
||||
bpmn=BPMN
|
||||
browser=Браузър
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Списък с водещи символи
|
||||
business=Бизнес
|
||||
busy=Операцията се изпълнява
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Математическа текстообработка
|
||||
makeCopy=Направи копие
|
||||
manual=Ръководство
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Dole lijevo
|
|||
bottomRight=Dole desno
|
||||
bpmn=BPMN
|
||||
browser=Pretraživač
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Numerisana lista
|
||||
business=Biznis
|
||||
busy=Operacija se izvršava
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematičke postavke pisanja
|
||||
makeCopy=Napravi kopiju
|
||||
manual=Ručno
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Abaix esquerra
|
|||
bottomRight=Abaix dreta
|
||||
bpmn=BPMN
|
||||
browser=Navegador
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Llista de pics
|
||||
business=Professional
|
||||
busy=Operació en marxa
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Composició tipogràfica matemàtica
|
||||
makeCopy=Fes una còpia
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Levý dolní
|
|||
bottomRight=Pravý dolní
|
||||
bpmn=BPMN
|
||||
browser=Prohlížeč
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bodový seznam
|
||||
business=Obchodní
|
||||
busy=Operace probíhá
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematické nastavení písma
|
||||
makeCopy=Udělat kopii
|
||||
manual=Manuál
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Nederst til venstre
|
|||
bottomRight=Nederst til højre
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Punktliste
|
||||
business=Business
|
||||
busy=Arbejder
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematisk tegnsætning
|
||||
makeCopy=Opret en kopi
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Unten links
|
|||
bottomRight=Unten rechts
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Ihr Browser unterstützt diesen Dateityp nicht.
|
||||
bulletedList=Aufzählungsliste
|
||||
business=Business
|
||||
busy=Vorgang wird ausgeführt
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematischer Formelsatz
|
||||
makeCopy=Kopie erstellen
|
||||
manual=Manuell
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -768,24 +770,23 @@ gridView=Rasteransicht
|
|||
resultsFor=Resultate für '{1}'
|
||||
oneDriveCharsNotAllowed=Unzulässige Zeichen: ~ " # % * : < > ? / \ { | }
|
||||
oneDriveInvalidDeviceName=Der eingegebene Gerätename ist ungültig
|
||||
officeNotLoggedOD=You are not logged in to OneDrive. Please open draw.io task pane and login first.
|
||||
officeSelectSingleDiag=Please select a single draw.io diagram only without other contents.
|
||||
officeSelectDiag=Please select a draw.io diagram.
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeNotLoggedOD=Sie sind nicht bei OneDrive angemeldet. Bitte öffnen Sie the draw.io Schaltfläche und melden Sie sich an.
|
||||
officeSelectSingleDiag=Bitte wählen Sie ein draw.io Diagramm aus ohne andere Elemente zu markieren.
|
||||
officeSelectDiag=Bitte wählen Sie ein draw.io Diagramm aus.
|
||||
officeCannotFindDiagram=Kein Diagramm in der Auswahl gefunden
|
||||
noDiagrams=Keine Diagramme gefunden
|
||||
authFailed=Authentifizierung fehlgeschlagen
|
||||
officeFailedAuthMsg=Unable to successfully authenticate user or authorize application.
|
||||
officeFailedAuthMsg=Die Anwendung konnte nicht erfolgreich authentifiziert oder authorisiert werden.
|
||||
convertingDiagramFailed=Diagramm konnte nicht konvertiert werden
|
||||
officeCopyImgErrMsg=Das Bild konnte wegen einer Beschränkung der Host-Anwendung nicht eingefügt werden. Bitte kopieren Sie es manuell und fügen Sie es dann ins Dokument ein.
|
||||
insertingImageFailed=Bild konnte nicht eingefügt werden
|
||||
officeCopyImgInst=Anleitung: Auf das Bild unten rechtsklicken. "Bild kopieren" im Kontextmenu auswählen. Danach im Dokument rechtsklicken und "Einfügen" im Kontextmenu auswählen.
|
||||
folderEmpty=Verzeichnis ist leer
|
||||
recent=Kürzlich
|
||||
sharedWithMe=Shared With Me
|
||||
sharedWithMe=Mit mir geteilt
|
||||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Ordner konnte nicht geladen werden
|
||||
errorAuthOD=Fehler beim Authentifizieren mit OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io fügt Diagramme von OneDrive in Ihr Dokument ein.
|
||||
officeStepsHeader=Dieses Add-in führt folgende Schritte aus:
|
||||
officeStep1=Mit OneDrive verbinden.
|
||||
|
@ -796,9 +797,9 @@ officeSelDiag=draw.io Diagramm auswählen:
|
|||
files=Dateien
|
||||
shared=Geteilt
|
||||
sharepoint=Sharepoint
|
||||
officeManualUpdateInst=Instructions: Copy draw.io diagram from the document. Then, in the box below, right-click and select "Paste" from the context menu.
|
||||
officeManualUpdateInst=Anleitung: Kopieren Sie das Diagramm im Dokument, rechtsklicken Sie unten und wählen Sie "Einfügen".
|
||||
officeClickToEdit=Klicken Sie auf das Symbol, um die Bearbeitung zu starten:
|
||||
pasteDiagram=Paste draw.io diagram here
|
||||
pasteDiagram=Diagramm hier einfügen
|
||||
connectOD=Mit OneDrive verbinden
|
||||
selectChildren=Kindknoten markieren
|
||||
selectSiblings=Geschwisterknoten markieren
|
||||
|
@ -818,113 +819,113 @@ timeAgo=Vor {1}
|
|||
confluenceCloud=Confluence Cloud
|
||||
libraries=Bibliotheken
|
||||
confAnchor=Confluence Page Anchor
|
||||
confTimeout=The connection has timed out
|
||||
confSrvTakeTooLong=The server at {1} is taking too long to respond.
|
||||
confCannotInsertNew=Cannot insert draw.io diagram to a new Confluence page
|
||||
confSaveTry=Please save the page and try again.
|
||||
confCannotGetID=Unable to determine page ID
|
||||
confContactAdmin=Please contact your Confluence administrator.
|
||||
readErr=Read Error
|
||||
editingErr=Editing Error
|
||||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
draftReadErr=Draft Read Error
|
||||
diagCantLoad=Diagram cannot be loaded
|
||||
draftWriteErr=Draft Write Error
|
||||
draftCantCreate=Draft could not be created
|
||||
confDuplName=Duplicate diagram name detected. Please pick another name.
|
||||
confSessionExpired=Looks like your session expired. Log in again to keep working.
|
||||
login=Login
|
||||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
showComments=Show Comments
|
||||
confError=Error: {1}
|
||||
confTimeout=Zeitüberschreitung der Verbindung
|
||||
confSrvTakeTooLong=Der Server {1} antwortet nicht
|
||||
confCannotInsertNew=Diagramme können nicht in neue Confluence Seiten eingefügt werden
|
||||
confSaveTry=Bitte speichern Sie die Seite und versuchen Sie es erneut.
|
||||
confCannotGetID=Seiten ID konnte nicht ermittelt werden
|
||||
confContactAdmin=Bitte wenden Sie sich an Ihren Confluence Administrator.
|
||||
readErr=Lesefehler
|
||||
editingErr=Bearbeitungsfehler
|
||||
confExtEditNotPossible=Dieses Diagramm kann nur bearbeitet werden, während Sie die Seite bearbeiten.
|
||||
confEditedExt=Diagramm/Seite wurde geändert
|
||||
diagNotFound=Diagramm nicht gefunden
|
||||
confEditedExtRefresh=Diagramm/Seite wurde geändert. Bitte aktualisieren Sie die Seite.
|
||||
confCannotEditDraftDelOrExt=Diagramme in Seitenentwürfen, gelöschte Diagramme und geänderte Diagramme können nicht bearbeitet werden.
|
||||
retBack=Zurückkehren
|
||||
confDiagNotPublished=Diagramm gehört zu keiner veröffentlichten Seite
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Dateiname zu kurz
|
||||
invalidChars=Ungültige Zeichen
|
||||
alreadyExst={1} existiert bereits
|
||||
draftReadErr=Fehler beim Lesen des Entwurfs
|
||||
diagCantLoad=Diagramm kann nicht geladen werden
|
||||
draftWriteErr=Fehler beim Schreiben des Entwurfs
|
||||
draftCantCreate=Entwurf konnte nicht erstellt werden
|
||||
confDuplName=Diagrammname bereits verwendet. Bitte wählen Sie einen anderen Namen.
|
||||
confSessionExpired=Ihre Sitzung ist abgelaufen, melden Sie sich erneut an, um weiterzuarbeiten.
|
||||
login=Anmelden
|
||||
drawPrev=draw.io Vorschau
|
||||
drwaDiag=draw.io Diagramm
|
||||
unknownErr=Unbekannter Fehler
|
||||
invalidCallFnNotFound=Ungültiger Aufruf: {1} nicht gefunden
|
||||
invalidCallErrOccured=Ungültiger Aufruf: Ein Fehler ist aufgetreten, {1}
|
||||
anonymous=Anonym
|
||||
confGotoPage=Zur übergeordneten Seite
|
||||
showComments=Kommentare anzeigen
|
||||
confError=Fehler: {1}
|
||||
gliffyImport=Gliffy Import
|
||||
gliffyImportInst1=Click the "Start Import" button to import all Gliffy diagrams to draw.io.
|
||||
gliffyImportInst2=Please note that the import procedure will take some time and the browser window must remain open until the import is completed.
|
||||
startImport=Start Import
|
||||
drawConfig=draw.io Configuration
|
||||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
unexpErrRefresh=Unexpected error, please refresh the page and try again.
|
||||
configJSONInst=Write draw.io JSON configuration in the editor below then click save. If you need help, please refer to
|
||||
thisPage=this page
|
||||
curCustLib=Current Custom Libraries
|
||||
libName=Library Name
|
||||
action=Action
|
||||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
pageIdsExpInst2=Please note that the export procedure will take some time and the browser window must remain open until the export is completed.
|
||||
startExp=Start Export
|
||||
refreshDrawIndex=Refresh draw.io Diagrams Index
|
||||
reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index.
|
||||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
confAUpdatePageFailed=Updating page "{1}" failed.
|
||||
confANoDiagFoundInPage=No {1} diagrams found in page "{2}".
|
||||
confAFetchPageFailed=Fetching the page failed.
|
||||
confANoDiagFound=No {1} diagrams found. Process finished.
|
||||
confASearchFailed=Searching for {1} diagrams failed. Please try again later.
|
||||
confAGliffyDiagFound=Gliffy diagram "{1}" found. Importing
|
||||
confAGliffyDiagImported=Gliffy diagram "{1}" imported successfully.
|
||||
confASavingImpGliffyFailed=Saving imported Gliffy diagram "{1}" failed.
|
||||
confAImportedFromByDraw=Imported from "{1}" by draw.io
|
||||
confAImportGliffyFailed=Importing Gliffy diagram "{1}" failed.
|
||||
confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
||||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
confAIndexDiagFailed=Indexing diagram "{1}" failed.
|
||||
confASkipDiagOtherPage=Skipped "{1}" as it belongs to another page!
|
||||
confADiagUptoDate=Diagram "{1}" is up to date.
|
||||
confACheckPagesWDraw=Checking pages having draw.io diagrams.
|
||||
confAErrOccured=An error occured!
|
||||
savedSucc=Saved successfully
|
||||
confASaveFailedErr=Saving Failed (Unexpected Error)
|
||||
character=Character
|
||||
confAConfPageDesc=This page contains draw.io configuration file (configuration.json) as attachment
|
||||
confALibPageDesc=This page contains draw.io custom libraries as attachments
|
||||
confATempPageDesc=This page contains draw.io custom templates as attachments
|
||||
working=Working
|
||||
confAConfSpaceDesc=This space is used to store draw.io configuration files and custom libraries/templates
|
||||
confANoCustLib=No Custom Libraries
|
||||
delFailed=Delete failed!
|
||||
showID=Show ID
|
||||
confAIncorrectLibFileType=Incorrect file type. Libraries should be XML files.
|
||||
uploading=Uploading
|
||||
confALibExist=This library already exists
|
||||
confAUploadSucc=Uploaded successfully
|
||||
confAUploadFailErr=Upload Failed (Unexpected Error)
|
||||
gliffyImportInst1=Klicken Sie "Import starten" um alle Gliffy Diagramme in draw.io zu importieren.
|
||||
gliffyImportInst2=Der Import kann einige Zeit in Anspruch nehmen. Das Browserfenster muss während dieser Zeit geöffnet bleiben.
|
||||
startImport=Import starten
|
||||
drawConfig=draw.io Konfiguration
|
||||
customLib=Benutzerdefinierte Bibliotheken
|
||||
customTemp=Benutzerdefinierte Vorlagen
|
||||
pageIdsExp=Seiten IDs Export
|
||||
drawReindex=draw.io Neuindexierung (beta)
|
||||
working=Wird ausgeführt
|
||||
drawConfigNotFoundInst=draw.io Konfig Space (DRAWIOCONFIG) existiert nicht. Dieses Space wird benötigt, um die Konfiguration und benutzerdefinierte Bibliotheken/Vorlagen zu speichern
|
||||
createConfSp=Konfig Space erstellen
|
||||
unexpErrRefresh=Unerwarteter Fehler, bitte laden Sie die Seite neu und versuchen Sie es noch einmal.
|
||||
configJSONInst=Fügen Sie die JSON Konfiguration für draw.io unten ein. Wenn Sie Hilfe brauchen, öffnen Sie
|
||||
thisPage=diese Seite
|
||||
curCustLib=Aktuelle benutzerdefinierte Bibliotheken
|
||||
libName=Name der Bibliothek
|
||||
action=Aktion
|
||||
drawConfID=draw.io Konfig ID
|
||||
addLibInst=Klicken Sie "Bibliothek hinzufügen" um eine neue Bibliothek hochzuladen.
|
||||
addLib=Bibliothek hinzufügen
|
||||
customTempInst1=Benutzerdefinierte Vorlagen sind draw.io Diagramme, gespeichert in untergeordneten Seiten der
|
||||
customTempInst2=Für mehr Informationen, öffnen Sie
|
||||
tempsPage=Vorlagenseite
|
||||
pageIdsExpInst1=Klicken Sie "Export starten" um alle Seiten IDs zu exportieren.
|
||||
pageIdsExpInst2=Der Export kann einige Zeit in Anspruch nehmen. Das Browserfenster muss während dieser Zeit geöffnet bleiben.
|
||||
startExp=Export starten
|
||||
refreshDrawIndex=draw.io Diagrammindex aktualisieren
|
||||
reindexInst1=Klicken Sie "Indexierung starten" um den draw.io Diagrammindex zu aktualisieren.
|
||||
reindexInst2=Die Indexierung kann einige Zeit in Anspruch nehmen. Das Browserfenster muss während dieser Zeit geöffnet bleiben.
|
||||
startIndexing=Indexierung starten
|
||||
confAPageFoundFetch=Seite "{1}" gefunden. Wird angefordert
|
||||
confAAllDiagDone=Alle {1} Diagramme verarbeitet. Prozess beendet.
|
||||
confAStartedProcessing=Seite "{1}" wird verarbeitet
|
||||
confAAllDiagInPageDone=Alle {1} Diagramme auf der Seite "{2}" erfolgreich verarbeitet.
|
||||
confAPartialDiagDone={1} on {2} {3} Diagrammen auf Seite "{4}" erfolgreich verarbeitet.
|
||||
confAUpdatePageFailed=Seite "{1}" konnte nicht aktualisiert werden.
|
||||
confANoDiagFoundInPage=Keine {1} Diagramme auf Seite "{2}" gefunden.
|
||||
confAFetchPageFailed=Seite konnte nicht geladen werden.
|
||||
confANoDiagFound=Keine {1} Diagramme gefunden. Prozess beendet.
|
||||
confASearchFailed=Suche nach {1} Diagrammen fehlgeschlagen. Versuchen Sie es bitte später noch einmal.
|
||||
confAGliffyDiagFound=Gliffy Diagramm "{1}" gefunden. Wird importiert
|
||||
confAGliffyDiagImported=Gliffy Diagramm "{1}" erfolgreich importiert.
|
||||
confASavingImpGliffyFailed=Importiertes Gliffy Diagramm "{1}" konnte nicht gespeichert werden.
|
||||
confAImportedFromByDraw=draw.io hat dies von "{1}" importiert.
|
||||
confAImportGliffyFailed=Gliffy Diagramm "{1}" konnte nicht importiert werden.
|
||||
confAFetchGliffyFailed=Gliffy Diagramm "{1}" konnte nicht geladen werden.
|
||||
confACheckBrokenDiagLnk=Suche nach ungültigen Verweisen.
|
||||
confADelDiagLinkOf=Lösche Verweis auf "{1}"
|
||||
confADupLnk=(doppelter Link)
|
||||
confADelDiagLnkFailed=Verweis auf "{1}" konnte nicht gelöscht werden.
|
||||
confAUnexpErrProcessPage=Unerwarteter Fehler beim Verarbeiten der Seite mit ID {1}
|
||||
confADiagFoundIndex=Diagramm "{1}" gefunden. Indexiere
|
||||
confADiagIndexSucc=Diagramm "{1}" wurde erfolgreich indexiert.
|
||||
confAIndexDiagFailed=Diagramm "{1}" konnte nicht indexiert werden.
|
||||
confASkipDiagOtherPage="{1}" übersprunge, das es zu einer anderen Seite gehört.
|
||||
confADiagUptoDate=Diagramm "{1}" ist aktuell.
|
||||
confACheckPagesWDraw=Ueberprüfe Seiten mit draw.io Diagrammen.
|
||||
confAErrOccured=Ein Fehler ist aufgetreten!
|
||||
savedSucc=Erfolgreich gespeichert
|
||||
confASaveFailedErr=Speichern fehlgeschlagen (unerwarteter Fehler)
|
||||
character=Zeichen
|
||||
confAConfPageDesc=Diese Seite enthält die draw.io Konfigurationsdatei (configuration.json) als Anhang
|
||||
confALibPageDesc=Diese Seite enthält benutzerdefinierte draw.io Bibliotheken als Anhänge.
|
||||
confATempPageDesc=Diese Seite enthält benutzerdefinierte draw.io Vorlagen als Anhänge.
|
||||
working=Wird ausgeführt
|
||||
confAConfSpaceDesc=Dieser Space wird verwendet, um die draw.io Konfiguration und benutzerdefinierte Bibliotheken/Vorlagen zu speichern.
|
||||
confANoCustLib=Keine benutzerdefinierten Bibliotheken
|
||||
delFailed=Löschen fehlgeschlagen
|
||||
showID=ID anzeigen
|
||||
confAIncorrectLibFileType=Ungültiger Dateityp. Nur Bibliotheken werden nur als XML Dateien unterstützt.
|
||||
uploading=Wird hochgeladen
|
||||
confALibExist=Diese Bibliothek existiert bereits
|
||||
confAUploadSucc=Erfolgreich hochgeladen
|
||||
confAUploadFailErr=Hochladen fehlgeschlagen (unerwarteter Fehler)
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Κάτω Αριστερά
|
|||
bottomRight=Κάτω Δεξιά
|
||||
bpmn=BPMN
|
||||
browser=Περιηγητής
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Λίστα με κουκκίδες
|
||||
business=Business
|
||||
busy=Λειτουργία σε εξέλιξη
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Μαθηματική ρύθμιση κειμένου προς εκτύπωση
|
||||
makeCopy=Δημιουργία αντιγράφου
|
||||
manual=Χειροκίνητα
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Abajo a la izquierda
|
|||
bottomRight=Abajo a la derecha
|
||||
bpmn=BPMN
|
||||
browser=Navegador
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Lista con viñetas
|
||||
business=Negocio
|
||||
busy=Operación en progreso
|
||||
|
@ -442,6 +443,7 @@ maps=Mapas
|
|||
mathematicalTypesetting=Composición tipográfica matemática
|
||||
makeCopy=Hacer una copia
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=All vasakul
|
|||
bottomRight=All paremal
|
||||
bpmn=BPMN
|
||||
browser=Brauser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Punktloetelu
|
||||
business=Äri
|
||||
busy=Toiming käimas
|
||||
|
@ -442,6 +443,7 @@ maps=Kaardid
|
|||
mathematicalTypesetting=Matemaatiline vormistus
|
||||
makeCopy=Tee koopia
|
||||
manual=Manuaalne
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=پایین چپ
|
|||
bottomRight=پایین راست
|
||||
bpmn=BPMN
|
||||
browser=مرورگر
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=لیست نقطه به نقطه
|
||||
business=کار
|
||||
busy=عملیات در حال انجام است
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=حروف چینی ریاضی
|
||||
makeCopy=ایجاد یک کپی
|
||||
manual=دَستی
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Alas vasemmalle
|
|||
bottomRight=Alas oikealle
|
||||
bpmn=BPMN
|
||||
browser=Selain
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Luettelomerkkilista
|
||||
business=Yritystoiminta
|
||||
busy=Toiminto käynnissä
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matemaattiset näppäilyasetukset
|
||||
makeCopy=Luo kopio
|
||||
manual=Manuaalinen
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Kaliwang Ibaba
|
|||
bottomRight=Kanang Ibaba
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Markadong listahan
|
||||
business=Negosyo
|
||||
busy=Ang operasyon ay nagpapatuloy
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematikong Typesetting
|
||||
makeCopy=Gumawa ng kopya
|
||||
manual=De-Mano
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Aligner en bas à gauche
|
|||
bottomRight=Aligner en bas à droite
|
||||
bpmn=BPMN
|
||||
browser=Navigateur
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Liste à puces
|
||||
business=Entreprise
|
||||
busy=Opération en cours
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Paramètres d'entrée mathématique
|
||||
makeCopy=Faire une copie
|
||||
manual=Manuel
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=שמאל למטה
|
|||
bottomRight=ימין למטה
|
||||
bpmn=BPMN
|
||||
browser=דפדפן
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=רשימת בולטים
|
||||
business=עסקים
|
||||
busy=הפעולה מתבצעת
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=סידור דפוס מתמטי
|
||||
makeCopy=צור עותק
|
||||
manual=ידני
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Alsó bal
|
|||
bottomRight=Alsó jobb
|
||||
bpmn=BPMN
|
||||
browser=Böngésző
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Felsorolás
|
||||
business=Üzleti
|
||||
busy=Művelet folyamatban
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematikai betűszedés
|
||||
makeCopy=Másolatot készít
|
||||
manual=Kézi
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=bottomLeft
|
|||
bottomRight=bottomRight
|
||||
bpmn=bpmn
|
||||
browser=browser
|
||||
browserUnsupportedFiletype=browserUnsupportedFiletype
|
||||
bulletedList=bulletedList
|
||||
business=business
|
||||
busy=busy
|
||||
|
@ -442,6 +443,7 @@ maps=maps
|
|||
mathematicalTypesetting=mathematicalTypesetting
|
||||
makeCopy=makeCopy
|
||||
manual=manual
|
||||
microsoftOffice=microsoftOffice
|
||||
microsoftExcel=microsoftExcel
|
||||
microsoftPowerPoint=microsoftPowerPoint
|
||||
microsoftWord=microsoftWord
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=sharedWithMe
|
|||
sharepointSites=sharepointSites
|
||||
errorFetchingFolder=errorFetchingFolder
|
||||
errorAuthOD=errorAuthOD
|
||||
officeCannotFindDiagram=officeCannotFindDiagram
|
||||
officeMainHeader=officeMainHeader
|
||||
officeStepsHeader=officeStepsHeader
|
||||
officeStep1=officeStep1
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Kiri Bawah
|
|||
bottomRight=Kanan Bawah
|
||||
bpmn=BPMN
|
||||
browser=Peramban
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Daftar Bullet
|
||||
business=Bisnis
|
||||
busy=Operasi sedang berjalan
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Tata Cetak Matematis
|
||||
makeCopy=Buat Salinan
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=In basso a sinistra
|
|||
bottomRight=In basso a destra
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Elenco puntato
|
||||
business=Business
|
||||
busy=Operazione in corso
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Parametri di scrittura matematica
|
||||
makeCopy=Fai una copia
|
||||
manual=Manuale
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=左下端
|
|||
bottomRight=右下端
|
||||
bpmn=BPMN
|
||||
browser=ブラウザ
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=箇条書き
|
||||
business=ビジネス
|
||||
busy=処理中
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=数式組版
|
||||
makeCopy=複製する
|
||||
manual=マニュアル
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=왼쪽 하단
|
|||
bottomRight=오른쪽 하단
|
||||
bpmn=BPMN
|
||||
browser=브라우저
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=글머리 기호
|
||||
business=비즈니스
|
||||
busy=작업이 진행 중입니다.
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=수학 공식 입력
|
||||
makeCopy=복사본 만들기
|
||||
manual=수동
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Kiri Bawah
|
|||
bottomRight=Kanan Bawah
|
||||
bpmn=BPMN
|
||||
browser=Pelayar
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Senarai Berbulet
|
||||
business=Perniagaan
|
||||
busy=Operasi sedang berjalan
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Atur Huruf Matematik
|
||||
makeCopy=Buat satu Salinan
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Linksonder
|
|||
bottomRight=Rechtsonder
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Lijst met opsommingstekens
|
||||
business=Zakelijk
|
||||
busy=Bewerking in uitvoering
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Wiskundige notatie
|
||||
makeCopy=Een kopie maken
|
||||
manual=Handleiding
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Nede til venstre
|
|||
bottomRight=Nede til høyre
|
||||
bpmn=BMPN
|
||||
browser=Nettleser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Kuleliste
|
||||
business=Business
|
||||
busy=Operasjon pågår
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematisk tegnsetting
|
||||
makeCopy=Lag en kopi
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Lewy dół
|
|||
bottomRight=Prawy dół
|
||||
bpmn=BMPN
|
||||
browser=Przeglądarka
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Lista wypunktowana
|
||||
business=Biznesowe
|
||||
busy=Operacja w toku
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematyczny zestaw znaków
|
||||
makeCopy=Zrób kopię
|
||||
manual=Ręczny
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Inferior esquerdo
|
|||
bottomRight=Inferior direito
|
||||
bpmn=BPMN
|
||||
browser=Navegador
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Lista com marcadores
|
||||
business=Negócio
|
||||
busy=Operação em andamento
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Sistema tipográfico matemático
|
||||
makeCopy=Fazer uma cópia
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Inferior esquerdo
|
|||
bottomRight=Inferior direito
|
||||
bpmn=BPMN
|
||||
browser=Navegador
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Lista com marcas
|
||||
business=Negócio
|
||||
busy=Operação em curso
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Composição tipográfica matemática
|
||||
makeCopy=Fazer uma cópia
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Aliniere în stânga
|
|||
bottomRight=Aliniere în dreapta
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Listă marcaje
|
||||
business=Business
|
||||
busy=Operațiune în progres
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Sistem tipografic matematic
|
||||
makeCopy=Fă o copie
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Левый нижний
|
|||
bottomRight=Правый нижний
|
||||
bpmn=BPMN
|
||||
browser=Браузер
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Маркированный список
|
||||
business=Бизнес
|
||||
busy=Операция выполняется
|
||||
|
@ -442,6 +443,7 @@ maps=Карты
|
|||
mathematicalTypesetting=Математический набор
|
||||
makeCopy=Создать копию
|
||||
manual=Вручную
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Dole levo
|
|||
bottomRight=Dole desno
|
||||
bpmn=BPMN
|
||||
browser=Pretraživač
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Numerisana lista
|
||||
business=Business
|
||||
busy=Operacija se izvršava
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematički slog
|
||||
makeCopy=Kreiraj kopiju
|
||||
manual=Ručno
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Justera vänster
|
|||
bottomRight=Justera höger
|
||||
bpmn=BPMN
|
||||
browser=Webbläsare
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Punktlista
|
||||
business=Verksamheter
|
||||
busy=Process pågående
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematisk typsättning
|
||||
makeCopy=Gör en kopia
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Bottom Left
|
|||
bottomRight=Bottom Right
|
||||
bpmn=BPMN
|
||||
browser=Browser
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Bulleted List
|
||||
business=Business
|
||||
busy=Operation in progress
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Mathematical Typesetting
|
||||
makeCopy=Make a Copy
|
||||
manual=Manual
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=จัดแนวที่มุมล่างด้านซ้า
|
|||
bottomRight=จัดแนวที่มุมล่างด้านขวา
|
||||
bpmn=BPMN
|
||||
browser=เบราส์เซอร์
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=รายการแบบมีจุดนำ
|
||||
business=ธุรกิจ
|
||||
busy=กำลังดำเนินการ
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=การตั้งค่าการพิมพ์ทางคณิตศาสตร์
|
||||
makeCopy=สร้างฉบับคัดลอก
|
||||
manual=คู่มือ
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Sola hizala
|
|||
bottomRight=Sağa hizala
|
||||
bpmn=BPMN
|
||||
browser=Tarayıcı
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Madde imli liste
|
||||
business=İş
|
||||
busy=İşlem yürütülmekte
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Matematiksel dizgi
|
||||
makeCopy=Kopyasını yap
|
||||
manual=Elle
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Лівий нижній
|
|||
bottomRight=Правий нижній
|
||||
bpmn=BPMN
|
||||
browser=Браузер
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Маркований список
|
||||
business=Бізнес
|
||||
busy=Операція виконується
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Математична верстка
|
||||
makeCopy=Зробити копію
|
||||
manual=Вручну
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=Dưới cùng bên trái
|
|||
bottomRight=Dưới cùng bên phải
|
||||
bpmn=BPMN
|
||||
browser=Trình duyệt
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=Danh sách chấm đầu dòng
|
||||
business=Kinh doanh
|
||||
busy=Đang xử lí
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=Sắp chữ kiểu toán học
|
||||
makeCopy=Tạo bản sao
|
||||
manual=Hướng dẫn
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=左下
|
|||
bottomRight=右下
|
||||
bpmn=BPMN
|
||||
browser=瀏覽器
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=項目符號清單
|
||||
business=商務
|
||||
busy=處理中
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=數學排版
|
||||
makeCopy=建立副本
|
||||
manual=手冊
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -73,6 +73,7 @@ bottomLeft=左下
|
|||
bottomRight=右下
|
||||
bpmn=BPMN
|
||||
browser=浏览器
|
||||
browserUnsupportedFiletype=Your browser does not support this filetype.
|
||||
bulletedList=项目符号列表
|
||||
business=商务
|
||||
busy=处理中
|
||||
|
@ -442,6 +443,7 @@ maps=Maps
|
|||
mathematicalTypesetting=数学排版
|
||||
makeCopy=创建副本
|
||||
manual=手册
|
||||
microsoftOffice=Microsoft Office
|
||||
microsoftExcel=Microsoft Excel
|
||||
microsoftPowerPoint=Microsoft PowerPoint
|
||||
microsoftWord=Microsoft Word
|
||||
|
@ -785,7 +787,6 @@ sharedWithMe=Shared With Me
|
|||
sharepointSites=Sharepoint Sites
|
||||
errorFetchingFolder=Error fetching folder items
|
||||
errorAuthOD=Error authenticating to OneDrive
|
||||
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
|
||||
officeMainHeader=draw.io adds diagrams from OneDrive to your document.
|
||||
officeStepsHeader=This add-in performs the following steps:
|
||||
officeStep1=Connects to OneDrive.
|
||||
|
@ -829,11 +830,11 @@ editingErr=Editing Error
|
|||
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
|
||||
confEditedExt=Diagram/Page edited externally
|
||||
diagNotFound=Diagram Not Found
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please, refresh the page.
|
||||
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
|
||||
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please, check the page.
|
||||
retBack=Return back
|
||||
confDiagNotPublished=The diagram does not belong to a published page
|
||||
createdByDraw=Created by Draw.io
|
||||
createdByDraw=Created by draw.io
|
||||
filenameShort=Filename too short
|
||||
invalidChars=Invalid characters
|
||||
alreadyExst={1} already exists
|
||||
|
@ -847,7 +848,7 @@ login=Login
|
|||
drawPrev=draw.io preview
|
||||
drwaDiag=draw.io diagram
|
||||
unknownErr=Unkown Error
|
||||
invalidCallFnNotFound=Invalid Call: {1} is not found.
|
||||
invalidCallFnNotFound=Invalid Call: {1} not found
|
||||
invalidCallErrOccured=Invalid Call: An error occured, {1}
|
||||
anonymous=Anonymous
|
||||
confGotoPage=Go to containing page
|
||||
|
@ -861,7 +862,7 @@ drawConfig=draw.io Configuration
|
|||
customLib=Custom Libraries
|
||||
customTemp=Custom Templates
|
||||
pageIdsExp=Page IDs Export
|
||||
drawReindex=draw.io re-indexing (Beta)
|
||||
drawReindex=draw.io re-indexing (beta)
|
||||
working=Working
|
||||
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
|
||||
createConfSp=Create Config Space
|
||||
|
@ -874,7 +875,7 @@ action=Action
|
|||
drawConfID=draw.io Config ID
|
||||
addLibInst=Click the "Add Library" button to upload a new library.
|
||||
addLib=Add Library
|
||||
customTempInst1=Custom Templates are draw.io diagrams saved in children pages of
|
||||
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
|
||||
customTempInst2=For more details, please refer to
|
||||
tempsPage=Templates page
|
||||
pageIdsExpInst1=Click the "Start Export" button to export all pages IDs.
|
||||
|
@ -885,7 +886,7 @@ reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index
|
|||
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
|
||||
startIndexing=Start Indexing
|
||||
confAPageFoundFetch=Page "{1}" found. Fetching
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished!
|
||||
confAAllDiagDone=All {1} diagrams processed. Process finished.
|
||||
confAStartedProcessing=Started processing page "{1}"
|
||||
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
|
||||
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
|
||||
|
@ -903,7 +904,7 @@ confAFetchGliffyFailed=Fetching Gliffy diagram "{1}" failed.
|
|||
confACheckBrokenDiagLnk=Checking for broken diagrams links.
|
||||
confADelDiagLinkOf=Deleting diagram link of "{1}"
|
||||
confADupLnk=(duplicate link)
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
|
||||
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
|
||||
confADiagFoundIndex=Diagram "{1}" found. Indexing
|
||||
confADiagIndexSucc=Diagram "{1}" indexed successfully.
|
||||
|
|
|
@ -224,7 +224,7 @@
|
|||
color:#188038 !important;
|
||||
}
|
||||
.geMenubarContainer, .geToolbarContainer, .geHsplit, .geVsplit {
|
||||
background-color:#ffffff;
|
||||
background-color:#fbfbfb;
|
||||
}
|
||||
.geMenubar {
|
||||
padding:0px 2px 0px 2px;
|
||||
|
@ -235,7 +235,7 @@
|
|||
cursor:default;
|
||||
}
|
||||
.geMenubarContainer .geItem:hover {
|
||||
background: #f1f3f4;
|
||||
background: #e0e0e0;
|
||||
}
|
||||
.geMenubarContainer .geItem:active {
|
||||
background: #e8f0fe;
|
||||
|
@ -300,7 +300,7 @@
|
|||
.geToolbarContainer .geButton:hover {
|
||||
opacity:1;
|
||||
_filter:none !important;
|
||||
background: #f1f3f4;
|
||||
background: #e0e0e0;
|
||||
}
|
||||
.geToolbarContainer .geButton:active {
|
||||
background: #e8f0fe;
|
||||
|
@ -319,7 +319,7 @@ div.mxWindow .geButton {
|
|||
filter:alpha(opacity=60);
|
||||
}
|
||||
.geToolbarContainer .geLabel:hover {
|
||||
background: #f1f3f4;
|
||||
background: #e0e0e0;
|
||||
opacity:0.9;
|
||||
filter:alpha(opacity=90) !important;
|
||||
}
|
||||
|
@ -337,7 +337,7 @@ div.mxWindow .geButton {
|
|||
background-color: #f8f9fa;
|
||||
}
|
||||
.geSidebarContainer {
|
||||
background:#ffffff;
|
||||
background:#fbfbfb;
|
||||
overflow:hidden;
|
||||
position:absolute;
|
||||
overflow:auto;
|
||||
|
@ -348,8 +348,10 @@ div.mxWindow .geButton {
|
|||
}
|
||||
.geSidebar {
|
||||
border-bottom:1px solid #e5e5e5;
|
||||
padding:8px;
|
||||
_padding:4px;
|
||||
padding:6px;
|
||||
padding-left:10px;
|
||||
_padding:2px;
|
||||
_padding-left:6px;
|
||||
padding-bottom:12px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
@ -367,15 +369,15 @@ div.mxWindow .geButton {
|
|||
line-height:1.4em;
|
||||
}
|
||||
.geSidebarContainer .geTitle:hover {
|
||||
background-color:#f1f3f4;
|
||||
background-color:#e0e0e0;
|
||||
}
|
||||
.geSidebarContainer .geDropTarget {
|
||||
border-radius:10px;
|
||||
border:2px dotted #e5e5e5;
|
||||
border:2px dotted #b0b0b0;
|
||||
text-align:center;
|
||||
padding:6px;
|
||||
margin:6px;
|
||||
color:#d0d0d0;
|
||||
color:#a0a0a0;
|
||||
fontSize:13px;
|
||||
}
|
||||
.geTitle img {
|
||||
|
@ -398,10 +400,10 @@ div.mxWindow .geButton {
|
|||
display:inline-block;
|
||||
background-repeat:no-repeat;
|
||||
background-position:50% 50%;
|
||||
cursor: move;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.geSidebar .geItem:hover {
|
||||
background-color:#f1f3f4;
|
||||
background-color:#e0e0e0;
|
||||
}
|
||||
.geItem {
|
||||
vertical-align: top;
|
||||
|
@ -409,7 +411,7 @@ div.mxWindow .geButton {
|
|||
}
|
||||
.geSidebarTooltip {
|
||||
position:absolute;
|
||||
background:white;
|
||||
background:#fbfbfb;
|
||||
overflow:hidden;
|
||||
box-shadow:0 2px 6px 2px rgba(60,64,67,.15);
|
||||
border-radius:6px;
|
||||
|
@ -464,7 +466,7 @@ div.mxWindow .geButton {
|
|||
border-bottom:1px solid #e5e5e5;
|
||||
}
|
||||
.geHsplit:hover, .geVsplit:hover {
|
||||
background-color:#f1f3f4;
|
||||
background-color:#e0e0e0;
|
||||
}
|
||||
.geDialog {
|
||||
position:absolute;
|
||||
|
|
Loading…
Reference in a new issue