8.9.6 release
This commit is contained in:
parent
ece9fc021d
commit
d85fe0e718
75 changed files with 3414 additions and 3041 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
18-JUL-2018: 8.9.6
|
||||||
|
|
||||||
|
- Fixes vertical offset for text editing with small fonts
|
||||||
|
- Fixes repaint of placeholders in text for custom shapes
|
||||||
|
- Fixes lost cursor after certain keyboard shortcuts
|
||||||
|
- Fixes clipboard state after cut keyboard shortcut
|
||||||
|
- Fixes minor issues for Confluence Cloud
|
||||||
|
- Adds draft state for Trello attachments
|
||||||
|
- Uses mxGraph 3.9.9 beta 4
|
||||||
|
|
||||||
13-JUL-2018: 8.9.5
|
13-JUL-2018: 8.9.5
|
||||||
|
|
||||||
- Fixes clipping for MathJax print preview in Safari
|
- Fixes clipping for MathJax print preview in Safari
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
8.9.5
|
8.9.6
|
|
@ -1060,7 +1060,7 @@ mxGraphView.prototype.updateHtmlCanvasSize=function(a,b){if(null!=this.graph.con
|
||||||
mxGraphView.prototype.createVml=function(){var a=this.graph.container;if(null!=a){var b=a.offsetWidth,c=a.offsetHeight;this.canvas=this.createVmlPane(b,c);this.canvas.style.overflow="hidden";this.backgroundPane=this.createVmlPane(b,c);this.drawPane=this.createVmlPane(b,c);this.overlayPane=this.createVmlPane(b,c);this.decoratorPane=this.createVmlPane(b,c);this.canvas.appendChild(this.backgroundPane);this.canvas.appendChild(this.drawPane);this.canvas.appendChild(this.overlayPane);this.canvas.appendChild(this.decoratorPane);
|
mxGraphView.prototype.createVml=function(){var a=this.graph.container;if(null!=a){var b=a.offsetWidth,c=a.offsetHeight;this.canvas=this.createVmlPane(b,c);this.canvas.style.overflow="hidden";this.backgroundPane=this.createVmlPane(b,c);this.drawPane=this.createVmlPane(b,c);this.overlayPane=this.createVmlPane(b,c);this.decoratorPane=this.createVmlPane(b,c);this.canvas.appendChild(this.backgroundPane);this.canvas.appendChild(this.drawPane);this.canvas.appendChild(this.overlayPane);this.canvas.appendChild(this.decoratorPane);
|
||||||
a.appendChild(this.canvas)}};mxGraphView.prototype.createVmlPane=function(a,b){var c=document.createElement(mxClient.VML_PREFIX+":group");c.style.position="absolute";c.style.left="0px";c.style.top="0px";c.style.width=a+"px";c.style.height=b+"px";c.setAttribute("coordsize",a+","+b);c.setAttribute("coordorigin","0,0");return c};
|
a.appendChild(this.canvas)}};mxGraphView.prototype.createVmlPane=function(a,b){var c=document.createElement(mxClient.VML_PREFIX+":group");c.style.position="absolute";c.style.left="0px";c.style.top="0px";c.style.width=a+"px";c.style.height=b+"px";c.setAttribute("coordsize",a+","+b);c.setAttribute("coordorigin","0,0");return c};
|
||||||
mxGraphView.prototype.createSvg=function(){var a=this.graph.container;this.canvas=document.createElementNS(mxConstants.NS_SVG,"g");this.backgroundPane=document.createElementNS(mxConstants.NS_SVG,"g");this.canvas.appendChild(this.backgroundPane);this.drawPane=document.createElementNS(mxConstants.NS_SVG,"g");this.canvas.appendChild(this.drawPane);this.overlayPane=document.createElementNS(mxConstants.NS_SVG,"g");this.canvas.appendChild(this.overlayPane);this.decoratorPane=document.createElementNS(mxConstants.NS_SVG,
|
mxGraphView.prototype.createSvg=function(){var a=this.graph.container;this.canvas=document.createElementNS(mxConstants.NS_SVG,"g");this.backgroundPane=document.createElementNS(mxConstants.NS_SVG,"g");this.canvas.appendChild(this.backgroundPane);this.drawPane=document.createElementNS(mxConstants.NS_SVG,"g");this.canvas.appendChild(this.drawPane);this.overlayPane=document.createElementNS(mxConstants.NS_SVG,"g");this.canvas.appendChild(this.overlayPane);this.decoratorPane=document.createElementNS(mxConstants.NS_SVG,
|
||||||
"g");this.canvas.appendChild(this.decoratorPane);var b=document.createElementNS(mxConstants.NS_SVG,"svg");b.style.width="100%";b.style.height="100%";b.style.display="block";b.appendChild(this.canvas);if(mxClient.IS_IE||mxClient.IS_IE11)b.style.overflow="hidden";null!=a&&(a.appendChild(b),this.updateContainerStyle(a))};
|
"g");this.canvas.appendChild(this.decoratorPane);var b=document.createElementNS(mxConstants.NS_SVG,"svg");b.style.left="0px";b.style.top="0px";b.style.width="100%";b.style.height="100%";b.style.display="block";b.appendChild(this.canvas);if(mxClient.IS_IE||mxClient.IS_IE11)b.style.overflow="hidden";null!=a&&(a.appendChild(b),this.updateContainerStyle(a))};
|
||||||
mxGraphView.prototype.updateContainerStyle=function(a){var b=mxUtils.getCurrentStyle(a);null!=b&&"static"==b.position&&(a.style.position="relative");mxClient.IS_POINTER&&(a.style.touchAction="none")};
|
mxGraphView.prototype.updateContainerStyle=function(a){var b=mxUtils.getCurrentStyle(a);null!=b&&"static"==b.position&&(a.style.position="relative");mxClient.IS_POINTER&&(a.style.touchAction="none")};
|
||||||
mxGraphView.prototype.destroy=function(){var a=null!=this.canvas?this.canvas.ownerSVGElement:null;null==a&&(a=this.canvas);null!=a&&null!=a.parentNode&&(this.clear(this.currentRoot,!0),mxEvent.removeGestureListeners(document,null,this.moveHandler,this.endHandler),mxEvent.release(this.graph.container),a.parentNode.removeChild(a),this.decoratorPane=this.overlayPane=this.drawPane=this.backgroundPane=this.canvas=this.endHandler=this.moveHandler=null)};
|
mxGraphView.prototype.destroy=function(){var a=null!=this.canvas?this.canvas.ownerSVGElement:null;null==a&&(a=this.canvas);null!=a&&null!=a.parentNode&&(this.clear(this.currentRoot,!0),mxEvent.removeGestureListeners(document,null,this.moveHandler,this.endHandler),mxEvent.release(this.graph.container),a.parentNode.removeChild(a),this.decoratorPane=this.overlayPane=this.drawPane=this.backgroundPane=this.canvas=this.endHandler=this.moveHandler=null)};
|
||||||
function mxCurrentRootChange(a,b){this.view=a;this.previous=this.root=b;this.isUp=null==b;if(!this.isUp)for(var c=this.view.currentRoot,d=this.view.graph.getModel();null!=c;){if(c==b){this.isUp=!0;break}c=d.getParent(c)}}
|
function mxCurrentRootChange(a,b){this.view=a;this.previous=this.root=b;this.isUp=null==b;if(!this.isUp)for(var c=this.view.currentRoot,d=this.view.graph.getModel();null!=c;){if(c==b){this.isUp=!0;break}c=d.getParent(c)}}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
|
|
||||||
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
# THIS FILE WAS GENERATED. DO NOT MODIFY!
|
||||||
# 07/13/2018 05:41 PM
|
# 07/18/2018 05:43 PM
|
||||||
|
|
||||||
app.html
|
app.html
|
||||||
index.html?offline=1
|
index.html?offline=1
|
||||||
|
|
1238
src/main/webapp/js/app.min.js
vendored
1238
src/main/webapp/js/app.min.js
vendored
File diff suppressed because one or more lines are too long
1976
src/main/webapp/js/atlas-viewer.min.js
vendored
1976
src/main/webapp/js/atlas-viewer.min.js
vendored
File diff suppressed because one or more lines are too long
538
src/main/webapp/js/atlas.min.js
vendored
538
src/main/webapp/js/atlas.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7237,18 +7237,39 @@ var EditGeometryDialog = function(editorUi, vertices)
|
||||||
var right = document.createElement('td');
|
var right = document.createElement('td');
|
||||||
table.style.paddingLeft = '6px';
|
table.style.paddingLeft = '6px';
|
||||||
|
|
||||||
|
mxUtils.write(left, mxResources.get('relative') + ':');
|
||||||
|
|
||||||
|
var relInput = document.createElement('input');
|
||||||
|
relInput.setAttribute('type', 'checkbox');
|
||||||
|
|
||||||
|
if (geo != null && geo.relative)
|
||||||
|
{
|
||||||
|
relInput.setAttribute('checked', 'checked');
|
||||||
|
relInput.defaultChecked = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.init = function()
|
||||||
|
{
|
||||||
|
relInput.focus();
|
||||||
|
};
|
||||||
|
|
||||||
|
right.appendChild(relInput);
|
||||||
|
|
||||||
|
row.appendChild(left);
|
||||||
|
row.appendChild(right);
|
||||||
|
|
||||||
|
tbody.appendChild(row);
|
||||||
|
|
||||||
|
row = document.createElement('tr');
|
||||||
|
left = document.createElement('td');
|
||||||
|
right = document.createElement('td');
|
||||||
|
|
||||||
mxUtils.write(left, mxResources.get('left') + ':');
|
mxUtils.write(left, mxResources.get('left') + ':');
|
||||||
|
|
||||||
var xInput = document.createElement('input');
|
var xInput = document.createElement('input');
|
||||||
xInput.setAttribute('type', 'text');
|
xInput.setAttribute('type', 'text');
|
||||||
xInput.style.width = '100px';
|
xInput.style.width = '100px';
|
||||||
xInput.value = (geo != null) ? geo.x : '';
|
xInput.value = (geo != null) ? geo.x : '';
|
||||||
|
|
||||||
this.init = function()
|
|
||||||
{
|
|
||||||
xInput.focus();
|
|
||||||
xInput.select();
|
|
||||||
};
|
|
||||||
|
|
||||||
right.appendChild(xInput);
|
right.appendChild(xInput);
|
||||||
|
|
||||||
|
@ -7279,6 +7300,42 @@ var EditGeometryDialog = function(editorUi, vertices)
|
||||||
left = document.createElement('td');
|
left = document.createElement('td');
|
||||||
right = document.createElement('td');
|
right = document.createElement('td');
|
||||||
|
|
||||||
|
mxUtils.write(left, mxResources.get('dx') + ':');
|
||||||
|
|
||||||
|
var dxInput = document.createElement('input');
|
||||||
|
dxInput.setAttribute('type', 'text');
|
||||||
|
dxInput.style.width = '100px';
|
||||||
|
dxInput.value = (geo != null && geo.offset != null) ? geo.offset.x : '';
|
||||||
|
|
||||||
|
right.appendChild(dxInput);
|
||||||
|
|
||||||
|
row.appendChild(left);
|
||||||
|
row.appendChild(right);
|
||||||
|
|
||||||
|
tbody.appendChild(row);
|
||||||
|
|
||||||
|
row = document.createElement('tr');
|
||||||
|
left = document.createElement('td');
|
||||||
|
right = document.createElement('td');
|
||||||
|
|
||||||
|
mxUtils.write(left, mxResources.get('dy') + ':');
|
||||||
|
|
||||||
|
var dyInput = document.createElement('input');
|
||||||
|
dyInput.setAttribute('type', 'text');
|
||||||
|
dyInput.style.width = '100px';
|
||||||
|
dyInput.value = (geo != null && geo.offset != null) ? geo.offset.y : '';
|
||||||
|
|
||||||
|
right.appendChild(dyInput);
|
||||||
|
|
||||||
|
row.appendChild(left);
|
||||||
|
row.appendChild(right);
|
||||||
|
|
||||||
|
tbody.appendChild(row);
|
||||||
|
|
||||||
|
row = document.createElement('tr');
|
||||||
|
left = document.createElement('td');
|
||||||
|
right = document.createElement('td');
|
||||||
|
|
||||||
mxUtils.write(left, mxResources.get('width') + ':');
|
mxUtils.write(left, mxResources.get('width') + ':');
|
||||||
|
|
||||||
var wInput = document.createElement('input');
|
var wInput = document.createElement('input');
|
||||||
|
@ -7338,6 +7395,8 @@ var EditGeometryDialog = function(editorUi, vertices)
|
||||||
editorUi.hideDialog();
|
editorUi.hideDialog();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
cancelBtn.className = 'geBtn';
|
||||||
|
|
||||||
var applyBtn = mxUtils.button(mxResources.get('apply'), function()
|
var applyBtn = mxUtils.button(mxResources.get('apply'), function()
|
||||||
{
|
{
|
||||||
editorUi.hideDialog();
|
editorUi.hideDialog();
|
||||||
|
@ -7355,6 +7414,8 @@ var EditGeometryDialog = function(editorUi, vertices)
|
||||||
|
|
||||||
if (graph.isCellMovable(vertices[i]))
|
if (graph.isCellMovable(vertices[i]))
|
||||||
{
|
{
|
||||||
|
g.relative = relInput.checked;
|
||||||
|
|
||||||
if (mxUtils.trim(xInput.value).length > 0)
|
if (mxUtils.trim(xInput.value).length > 0)
|
||||||
{
|
{
|
||||||
g.x = Number(xInput.value);
|
g.x = Number(xInput.value);
|
||||||
|
@ -7364,6 +7425,26 @@ var EditGeometryDialog = function(editorUi, vertices)
|
||||||
{
|
{
|
||||||
g.y = Number(yInput.value);
|
g.y = Number(yInput.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mxUtils.trim(dxInput.value).length > 0)
|
||||||
|
{
|
||||||
|
if (g.offset == null)
|
||||||
|
{
|
||||||
|
g.offset = new mxPoint();
|
||||||
|
}
|
||||||
|
|
||||||
|
g.offset.x = Number(dxInput.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mxUtils.trim(dyInput.value).length > 0)
|
||||||
|
{
|
||||||
|
if (g.offset == null)
|
||||||
|
{
|
||||||
|
g.offset = new mxPoint();
|
||||||
|
}
|
||||||
|
|
||||||
|
g.offset.y = Number(dyInput.value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (graph.isCellResizable(vertices[i]))
|
if (graph.isCellResizable(vertices[i]))
|
||||||
|
@ -7393,7 +7474,9 @@ var EditGeometryDialog = function(editorUi, vertices)
|
||||||
graph.getModel().endUpdate();
|
graph.getModel().endUpdate();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
applyBtn.className = 'geBtn gePrimaryBtn';
|
||||||
|
|
||||||
mxEvent.addListener(div, 'keypress', function(e)
|
mxEvent.addListener(div, 'keypress', function(e)
|
||||||
{
|
{
|
||||||
if (e.keyCode == 13)
|
if (e.keyCode == 13)
|
||||||
|
|
|
@ -5754,6 +5754,9 @@
|
||||||
{
|
{
|
||||||
for (var i = 0; i < diagrams.length; i++)
|
for (var i = 0; i < diagrams.length; i++)
|
||||||
{
|
{
|
||||||
|
// Imported pages must obtain a new ID
|
||||||
|
diagrams[i].removeAttribute('id');
|
||||||
|
|
||||||
var page = this.updatePageRoot(new DiagramPage(diagrams[i]));
|
var page = this.updatePageRoot(new DiagramPage(diagrams[i]));
|
||||||
var index = this.pages.length;
|
var index = this.pages.length;
|
||||||
|
|
||||||
|
@ -7623,7 +7626,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
textInput.parentNode.removeChild(textInput);
|
textInput.parentNode.removeChild(textInput);
|
||||||
mxUtils.clearSelection();
|
|
||||||
|
// Workaround for lost cursor in focused element
|
||||||
|
if (this.dialog == null)
|
||||||
|
{
|
||||||
|
mxUtils.clearSelection();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}), 0);
|
}), 0);
|
||||||
}));
|
}));
|
||||||
|
@ -7642,6 +7650,7 @@
|
||||||
{
|
{
|
||||||
if (graph.isEnabled())
|
if (graph.isEnabled())
|
||||||
{
|
{
|
||||||
|
mxClipboard.copy(graph);
|
||||||
this.copyCells(textInput, true);
|
this.copyCells(textInput, true);
|
||||||
clearInput();
|
clearInput();
|
||||||
}
|
}
|
||||||
|
|
|
@ -459,7 +459,7 @@
|
||||||
if (vertices.length > 0)
|
if (vertices.length > 0)
|
||||||
{
|
{
|
||||||
var dlg = new EditGeometryDialog(editorUi, vertices);
|
var dlg = new EditGeometryDialog(editorUi, vertices);
|
||||||
editorUi.showDialog(dlg.container, 180, 180, true, true);
|
editorUi.showDialog(dlg.container, 190, 250, true, true);
|
||||||
dlg.init();
|
dlg.init();
|
||||||
}
|
}
|
||||||
}, null, null, Editor.ctrlKey + '+Shift+M');
|
}, null, null, Editor.ctrlKey + '+Shift+M');
|
||||||
|
@ -2466,12 +2466,13 @@
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Overrides edit menu to add find
|
// Overrides edit menu to add find and editGeometry
|
||||||
this.put('edit', new Menu(mxUtils.bind(this, function(menu, parent)
|
this.put('edit', new Menu(mxUtils.bind(this, function(menu, parent)
|
||||||
{
|
{
|
||||||
this.addMenuItems(menu, ['undo', 'redo', '-', 'cut', 'copy', 'paste', 'delete', '-', 'duplicate', '-',
|
this.addMenuItems(menu, ['undo', 'redo', '-', 'cut', 'copy', 'paste', 'delete', '-', 'duplicate', '-',
|
||||||
'find', '-',
|
'find', '-',
|
||||||
'editData', 'editTooltip', 'editStyle', '-', 'edit', '-', 'editLink', 'openLink', '-',
|
'editData', 'editTooltip', '-', 'editStyle', 'editGeometry', '-',
|
||||||
|
'edit', '-', 'editLink', 'openLink', '-',
|
||||||
'selectVertices', 'selectEdges', 'selectAll', 'selectNone', '-', 'lockUnlock']);
|
'selectVertices', 'selectEdges', 'selectAll', 'selectNone', '-', 'lockUnlock']);
|
||||||
})));
|
})));
|
||||||
|
|
||||||
|
|
|
@ -516,7 +516,7 @@ EditorUi.initMinimalTheme = function()
|
||||||
|
|
||||||
if (graph.getSelectionCount() == 1)
|
if (graph.getSelectionCount() == 1)
|
||||||
{
|
{
|
||||||
this.addMenuItems(menu, ['-', 'editTooltip', 'editStyle', '-'], null, evt);
|
this.addMenuItems(menu, ['editTooltip', '-', 'editStyle', 'editGeometry', '-'], null, evt);
|
||||||
|
|
||||||
if (graph.isCellFoldable(graph.getSelectionCell()))
|
if (graph.isCellFoldable(graph.getSelectionCell()))
|
||||||
{
|
{
|
||||||
|
|
|
@ -177,6 +177,12 @@ SelectPage.prototype.execute = function()
|
||||||
page.viewState = graph.getViewState();
|
page.viewState = graph.getViewState();
|
||||||
page.root = graph.model.root;
|
page.root = graph.model.root;
|
||||||
|
|
||||||
|
if (page.model != null)
|
||||||
|
{
|
||||||
|
// Updates internal structures of offpage model
|
||||||
|
page.model.rootChanged(page.root);
|
||||||
|
}
|
||||||
|
|
||||||
// Transitions for switching pages
|
// Transitions for switching pages
|
||||||
// var curIndex = mxUtils.indexOf(this.ui.pages, page);
|
// var curIndex = mxUtils.indexOf(this.ui.pages, page);
|
||||||
// mxUtils.setPrefixedStyle(graph.view.canvas.style, 'transition', null);
|
// mxUtils.setPrefixedStyle(graph.view.canvas.style, 'transition', null);
|
||||||
|
|
|
@ -266,26 +266,30 @@ TrelloClient.prototype.insertFile = function(filename, data, success, error, asL
|
||||||
*/
|
*/
|
||||||
TrelloClient.prototype.saveFile = function(file, success, error)
|
TrelloClient.prototype.saveFile = function(file, success, error)
|
||||||
{
|
{
|
||||||
// delete file first, then write it again
|
// write the file first (with the same name), then delete the old file
|
||||||
|
// so that nothing is lost if something goes wrong with deleting
|
||||||
var ids = file.meta.compoundId.split(this.SEPARATOR);
|
var ids = file.meta.compoundId.split(this.SEPARATOR);
|
||||||
|
|
||||||
var fn = mxUtils.bind(this, function(data)
|
var fn = mxUtils.bind(this, function(data)
|
||||||
{
|
{
|
||||||
Trello.del('cards/' + ids[0] + '/attachments/' + ids[1], mxUtils.bind(this, function()
|
this.writeFile(file.meta.name, data, ids[0], function(meta)
|
||||||
{
|
{
|
||||||
this.writeFile(file.meta.name, data, ids[0], success, error);
|
Trello.del('cards/' + ids[0] + '/attachments/' + ids[1], mxUtils.bind(this, function()
|
||||||
}), mxUtils.bind(this, function(err)
|
{
|
||||||
{
|
success(meta);
|
||||||
if (err.status == 401)
|
}), mxUtils.bind(this, function(err)
|
||||||
|
{
|
||||||
|
if (err.status == 401)
|
||||||
{
|
{
|
||||||
// KNOWN: Does not wait for popup to close for callback
|
// KNOWN: Does not wait for popup to close for callback
|
||||||
this.authenticate(callback, error, true);
|
this.authenticate(callback, error, true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
error();
|
error();
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
}, error);
|
||||||
});
|
});
|
||||||
|
|
||||||
var callback = mxUtils.bind(this, function()
|
var callback = mxUtils.bind(this, function()
|
||||||
|
|
155
src/main/webapp/js/embed-static.min.js
vendored
155
src/main/webapp/js/embed-static.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -629,7 +629,7 @@ var TextareaDialog = function(editorUi, title, url, fn, cancelFn, cancelTitle, w
|
||||||
|
|
||||||
if (addButtons != null)
|
if (addButtons != null)
|
||||||
{
|
{
|
||||||
addButtons(td);
|
addButtons(td, nameInput);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fn != null)
|
if (fn != null)
|
||||||
|
|
|
@ -2372,7 +2372,7 @@ Graph.prototype.convertValueToString = function(cell)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return cell.value.getAttribute('label');
|
return cell.value.getAttribute('label') || '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5107,6 +5107,29 @@ if (typeof mxVertexHandler != 'undefined')
|
||||||
return select;
|
return select;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if the given stencil contains any placeholder text.
|
||||||
|
*/
|
||||||
|
Graph.prototype.stencilHasPlaceholders = function(stencil)
|
||||||
|
{
|
||||||
|
if (stencil != null && stencil.fgNode != null)
|
||||||
|
{
|
||||||
|
var node = stencil.fgNode.firstChild;
|
||||||
|
|
||||||
|
while (node != null)
|
||||||
|
{
|
||||||
|
if (node.nodeName == 'text' && node.getAttribute('placeholders') == '1')
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
node = node.nextSibling;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the child cells with placeholders if metadata of a cell has changed.
|
* Updates the child cells with placeholders if metadata of a cell has changed.
|
||||||
*/
|
*/
|
||||||
|
@ -5125,7 +5148,14 @@ if (typeof mxVertexHandler != 'undefined')
|
||||||
{
|
{
|
||||||
for (var i = 0; i < desc.length; i++)
|
for (var i = 0; i < desc.length; i++)
|
||||||
{
|
{
|
||||||
if (this.isReplacePlaceholders(desc[i]))
|
var state = this.view.getState(desc[i]);
|
||||||
|
|
||||||
|
if (state != null && state.shape != null && state.shape.stencil != null &&
|
||||||
|
this.stencilHasPlaceholders(state.shape.stencil))
|
||||||
|
{
|
||||||
|
this.removeStateForCell(desc[i]);
|
||||||
|
}
|
||||||
|
else if (this.isReplacePlaceholders(desc[i]))
|
||||||
{
|
{
|
||||||
this.view.invalidate(desc[i], false, false);
|
this.view.invalidate(desc[i], false, false);
|
||||||
}
|
}
|
||||||
|
@ -8057,7 +8087,6 @@ if (typeof mxVertexHandler != 'undefined')
|
||||||
{
|
{
|
||||||
this.linkHint = createHint();
|
this.linkHint = createHint();
|
||||||
this.linkHint.style.padding = '6px 8px 6px 8px';
|
this.linkHint.style.padding = '6px 8px 6px 8px';
|
||||||
this.linkHint.style.fontSize = '90%';
|
|
||||||
this.linkHint.style.opacity = '1';
|
this.linkHint.style.opacity = '1';
|
||||||
this.linkHint.style.filter = '';
|
this.linkHint.style.filter = '';
|
||||||
|
|
||||||
|
|
155
src/main/webapp/js/reader.min.js
vendored
155
src/main/webapp/js/reader.min.js
vendored
File diff suppressed because one or more lines are too long
1976
src/main/webapp/js/viewer.min.js
vendored
1976
src/main/webapp/js/viewer.min.js
vendored
File diff suppressed because one or more lines are too long
1
src/main/webapp/plugins/webcola/cola.min.js
vendored
1
src/main/webapp/plugins/webcola/cola.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -526,7 +526,7 @@ mxWebColaAdaptor.prototype.computeVertexDegrees = function()
|
||||||
for (var id in cells)
|
for (var id in cells)
|
||||||
{
|
{
|
||||||
var cell = cells[id];
|
var cell = cells[id];
|
||||||
if (cell.isEdge())
|
if (cell.isEdge() && cell.source != null && cell.target != null)
|
||||||
{
|
{
|
||||||
// scan all edges, ignore other types
|
// scan all edges, ignore other types
|
||||||
var sourceId = cell.source.id;
|
var sourceId = cell.source.id;
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=قابل للإخفاء
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=تعليقات/ملاحظات
|
commentsNotes=تعليقات/ملاحظات
|
||||||
|
compress=Compress
|
||||||
connect=اتصل
|
connect=اتصل
|
||||||
connecting=بصدد الاتصال
|
connecting=بصدد الاتصال
|
||||||
connectWithDrive=اتصل بجوجل درايف
|
connectWithDrive=اتصل بجوجل درايف
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=انسخ
|
duplicate=انسخ
|
||||||
duplicateIt=انسخ {1}
|
duplicateIt=انسخ {1}
|
||||||
divider=فاصل
|
divider=فاصل
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=شرق
|
east=شرق
|
||||||
edit=تعديل
|
edit=تعديل
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=يبدو أنك قمت ببعض التعجيلات في وض
|
||||||
redo=إعادة تنفيذ الأمر
|
redo=إعادة تنفيذ الأمر
|
||||||
refresh=إعادة تحميل
|
refresh=إعادة تحميل
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=تذكرني
|
rememberMe=تذكرني
|
||||||
rememberThisSetting=تذكر هذا الخيار
|
rememberThisSetting=تذكر هذا الخيار
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Свиващо
|
||||||
comic=Комично
|
comic=Комично
|
||||||
comment=Коментар
|
comment=Коментар
|
||||||
commentsNotes=Коментари/Бележки
|
commentsNotes=Коментари/Бележки
|
||||||
|
compress=Compress
|
||||||
connect=Свързване
|
connect=Свързване
|
||||||
connecting=Свързване
|
connecting=Свързване
|
||||||
connectWithDrive=Свързване с Google Drive
|
connectWithDrive=Свързване с Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Дубликат
|
duplicate=Дубликат
|
||||||
duplicateIt=Дубликат {1}
|
duplicateIt=Дубликат {1}
|
||||||
divider=Разделител
|
divider=Разделител
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Изток
|
east=Изток
|
||||||
edit=Редактиране
|
edit=Редактиране
|
||||||
editData=Редактиране на данни
|
editData=Редактиране на данни
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Изглежда сте направили някои проме
|
||||||
redo=Поправка
|
redo=Поправка
|
||||||
refresh=Обновяване
|
refresh=Обновяване
|
||||||
regularExpression=Регулярен израз
|
regularExpression=Регулярен израз
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Запомни ме
|
rememberMe=Запомни ме
|
||||||
rememberThisSetting=Запомняне на тази настройка
|
rememberThisSetting=Запомняне на тази настройка
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Zatvorljivo
|
||||||
comic=Komično
|
comic=Komično
|
||||||
comment=Komentar
|
comment=Komentar
|
||||||
commentsNotes=Komentari/Zabilješke
|
commentsNotes=Komentari/Zabilješke
|
||||||
|
compress=Compress
|
||||||
connect=Poveži
|
connect=Poveži
|
||||||
connecting=Povezivanje
|
connecting=Povezivanje
|
||||||
connectWithDrive=Poveži sa Google Diskom
|
connectWithDrive=Poveži sa Google Diskom
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplikat
|
duplicate=Duplikat
|
||||||
duplicateIt=Duplikat{1}
|
duplicateIt=Duplikat{1}
|
||||||
divider=Djelitelj
|
divider=Djelitelj
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Istok
|
east=Istok
|
||||||
edit=Uredi
|
edit=Uredi
|
||||||
editData=Uredi podatke
|
editData=Uredi podatke
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Izgleda da ste napravili nekoliko izmjena dok ste bili offline.
|
||||||
redo=Ponovi
|
redo=Ponovi
|
||||||
refresh=Osvježi
|
refresh=Osvježi
|
||||||
regularExpression=Regularan izraz
|
regularExpression=Regularan izraz
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Zapamti me
|
rememberMe=Zapamti me
|
||||||
rememberThisSetting=Zapamti ova podešavanja
|
rememberThisSetting=Zapamti ova podešavanja
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Minimitzable
|
||||||
comic=Còmic
|
comic=Còmic
|
||||||
comment=Comentari
|
comment=Comentari
|
||||||
commentsNotes=Comentaris/Notes
|
commentsNotes=Comentaris/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connecta
|
connect=Connecta
|
||||||
connecting=Connectant
|
connecting=Connectant
|
||||||
connectWithDrive=Connecta amb Google Drive
|
connectWithDrive=Connecta amb Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicar
|
duplicate=Duplicar
|
||||||
duplicateIt=Duplica {1}
|
duplicateIt=Duplica {1}
|
||||||
divider=Separador
|
divider=Separador
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Est
|
east=Est
|
||||||
edit=Edita
|
edit=Edita
|
||||||
editData=Edita les dades
|
editData=Edita les dades
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Sembla que hes fet canvis mentres estaves desconnectat. Disculpa
|
||||||
redo=Refés
|
redo=Refés
|
||||||
refresh=Refresca
|
refresh=Refresca
|
||||||
regularExpression=Expressió normal
|
regularExpression=Expressió normal
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Recorda'm
|
rememberMe=Recorda'm
|
||||||
rememberThisSetting=Recorda la configuració actual
|
rememberThisSetting=Recorda la configuració actual
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Sbalovací
|
||||||
comic=Komixový
|
comic=Komixový
|
||||||
comment=Komentář
|
comment=Komentář
|
||||||
commentsNotes=Komentáře/Poznámky
|
commentsNotes=Komentáře/Poznámky
|
||||||
|
compress=Compress
|
||||||
connect=Připojit
|
connect=Připojit
|
||||||
connecting=Připojuji
|
connecting=Připojuji
|
||||||
connectWithDrive=Připojit ke službě Disk Google
|
connectWithDrive=Připojit ke službě Disk Google
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplikovat
|
duplicate=Duplikovat
|
||||||
duplicateIt=Duplikovat {1}
|
duplicateIt=Duplikovat {1}
|
||||||
divider=Oddělovač
|
divider=Oddělovač
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Východ
|
east=Východ
|
||||||
edit=Upravit
|
edit=Upravit
|
||||||
editData=Upravit data
|
editData=Upravit data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Vypadá to, že když jste byli offline, provedli jste nějaké
|
||||||
redo=Opakovat
|
redo=Opakovat
|
||||||
refresh=Obnovit
|
refresh=Obnovit
|
||||||
regularExpression=Regulární výraz
|
regularExpression=Regulární výraz
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Pamatovat si mě
|
rememberMe=Pamatovat si mě
|
||||||
rememberThisSetting=Pamatovat si toto nastavení
|
rememberThisSetting=Pamatovat si toto nastavení
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Kan foldes sammen
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Kommentar
|
comment=Kommentar
|
||||||
commentsNotes=Kommentarer/bemærkninger
|
commentsNotes=Kommentarer/bemærkninger
|
||||||
|
compress=Komprimieren
|
||||||
connect=Tilslut
|
connect=Tilslut
|
||||||
connecting=Tilslutter
|
connecting=Tilslutter
|
||||||
connectWithDrive=Tilslut Google Drev
|
connectWithDrive=Tilslut Google Drev
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Dupliker
|
duplicate=Dupliker
|
||||||
duplicateIt=Dupliker {1}
|
duplicateIt=Dupliker {1}
|
||||||
divider=Skillelinje
|
divider=Skillelinje
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Øst
|
east=Øst
|
||||||
edit=Rediger
|
edit=Rediger
|
||||||
editData=Rediger data
|
editData=Rediger data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Det ser ud til, at du har foretaget ændringer, mens du var offl
|
||||||
redo=Gentag
|
redo=Gentag
|
||||||
refresh=Genindlæs
|
refresh=Genindlæs
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL nicht zugelassen
|
relativeUrlNotAllowed=Relative URL nicht zugelassen
|
||||||
rememberMe=Husk mig
|
rememberMe=Husk mig
|
||||||
rememberThisSetting=Husk denne indstilling
|
rememberThisSetting=Husk denne indstilling
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Einklappbar
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Kommentar
|
comment=Kommentar
|
||||||
commentsNotes=Kommentare/Notizen
|
commentsNotes=Kommentare/Notizen
|
||||||
|
compress=Compress
|
||||||
connect=Verbinden
|
connect=Verbinden
|
||||||
connecting=Verbindungsaufbau
|
connecting=Verbindungsaufbau
|
||||||
connectWithDrive=Mit Google Drive verbinden
|
connectWithDrive=Mit Google Drive verbinden
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplizieren
|
duplicate=Duplizieren
|
||||||
duplicateIt={1} duplizieren
|
duplicateIt={1} duplizieren
|
||||||
divider=Trennlinie
|
divider=Trennlinie
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Ost
|
east=Ost
|
||||||
edit=Bearbeiten
|
edit=Bearbeiten
|
||||||
editData=Daten bearbeiten
|
editData=Daten bearbeiten
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Es wurden Änderungen gemacht während Sie offline waren. Diese
|
||||||
redo=Wiederherstellen
|
redo=Wiederherstellen
|
||||||
refresh=Aktualisieren
|
refresh=Aktualisieren
|
||||||
regularExpression=Regulärer Ausdruck
|
regularExpression=Regulärer Ausdruck
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Angemeldet bleiben
|
rememberMe=Angemeldet bleiben
|
||||||
rememberThisSetting=Diese Einstellung speichern
|
rememberThisSetting=Diese Einstellung speichern
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Αναδιπλούμενος
|
||||||
comic=Κωμικό
|
comic=Κωμικό
|
||||||
comment=Σχόλιο
|
comment=Σχόλιο
|
||||||
commentsNotes=Σχόλια/Σημειώσεις
|
commentsNotes=Σχόλια/Σημειώσεις
|
||||||
|
compress=Compress
|
||||||
connect=Σύνδεση
|
connect=Σύνδεση
|
||||||
connecting=Γίνεται Σύνδεση
|
connecting=Γίνεται Σύνδεση
|
||||||
connectWithDrive=Σύνδεση με το Google Drive
|
connectWithDrive=Σύνδεση με το Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Διπλότυπο
|
duplicate=Διπλότυπο
|
||||||
duplicateIt=Διπλότυπο {1}
|
duplicateIt=Διπλότυπο {1}
|
||||||
divider=Διαχωριστικό
|
divider=Διαχωριστικό
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Ανατολή
|
east=Ανατολή
|
||||||
edit=Επεξεργασία
|
edit=Επεξεργασία
|
||||||
editData=Επεξεργασία δεδομένων
|
editData=Επεξεργασία δεδομένων
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Φαίνεται, ότι έχετε κάνει μερικές α
|
||||||
redo=Επανάληψη
|
redo=Επανάληψη
|
||||||
refresh=Ανανέωση
|
refresh=Ανανέωση
|
||||||
regularExpression=Κανονική Έκφραση
|
regularExpression=Κανονική Έκφραση
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Να με θυμάσαι
|
rememberMe=Να με θυμάσαι
|
||||||
rememberThisSetting=Θυμήσου αυτή τη ρύθμιση
|
rememberThisSetting=Θυμήσου αυτή τη ρύθμιση
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Redakti
|
edit=Redakti
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Reducible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comentario
|
comment=Comentario
|
||||||
commentsNotes=Comentarios/Notas
|
commentsNotes=Comentarios/Notas
|
||||||
|
compress=Compress
|
||||||
connect=Conectar
|
connect=Conectar
|
||||||
connecting=Conectando
|
connecting=Conectando
|
||||||
connectWithDrive=Conectar con Google Drive
|
connectWithDrive=Conectar con Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicar
|
duplicate=Duplicar
|
||||||
duplicateIt=Duplicar {1}
|
duplicateIt=Duplicar {1}
|
||||||
divider=Separador
|
divider=Separador
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Este
|
east=Este
|
||||||
edit=Editar
|
edit=Editar
|
||||||
editData=Editar datos
|
editData=Editar datos
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Parece que ha hecho algunos cambios mientras estaba desconectado
|
||||||
redo=Rehacer
|
redo=Rehacer
|
||||||
refresh=Refrescar
|
refresh=Refrescar
|
||||||
regularExpression=Expresión Regular
|
regularExpression=Expresión Regular
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Recuérdeme
|
rememberMe=Recuérdeme
|
||||||
rememberThisSetting=Recordar esta configuración
|
rememberThisSetting=Recordar esta configuración
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Vähendatav
|
||||||
comic=Koomiks
|
comic=Koomiks
|
||||||
comment=Kommentaar
|
comment=Kommentaar
|
||||||
commentsNotes=Märkused
|
commentsNotes=Märkused
|
||||||
|
compress=Compress
|
||||||
connect=Ühenda
|
connect=Ühenda
|
||||||
connecting=Ühendamas
|
connecting=Ühendamas
|
||||||
connectWithDrive=Ühenda Google Drive'iga
|
connectWithDrive=Ühenda Google Drive'iga
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Koopia
|
duplicate=Koopia
|
||||||
duplicateIt=Koopia {1}
|
duplicateIt=Koopia {1}
|
||||||
divider=Jagaja
|
divider=Jagaja
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Ida
|
east=Ida
|
||||||
edit=Muuda
|
edit=Muuda
|
||||||
editData=Muuda andmeid
|
editData=Muuda andmeid
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Tundub, et oled teinud mõned muudatused offline'is. Vabandame,
|
||||||
redo=Tee uuesti
|
redo=Tee uuesti
|
||||||
refresh=Värskenda
|
refresh=Värskenda
|
||||||
regularExpression=Tavaline väljendus
|
regularExpression=Tavaline väljendus
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Jäta mind meelde
|
rememberMe=Jäta mind meelde
|
||||||
rememberThisSetting=Jäta see seade meelde
|
rememberThisSetting=Jäta see seade meelde
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=قابل
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=نظر
|
comment=نظر
|
||||||
commentsNotes=نظرات/نکات
|
commentsNotes=نظرات/نکات
|
||||||
|
compress=Compress
|
||||||
connect=متصل شدن
|
connect=متصل شدن
|
||||||
connecting=در حال اتصال
|
connecting=در حال اتصال
|
||||||
connectWithDrive=اتصال از طریق گوگل درایو
|
connectWithDrive=اتصال از طریق گوگل درایو
|
||||||
|
@ -189,6 +190,8 @@ dropbox=دراپ باکس
|
||||||
duplicate=نسخه یکسان
|
duplicate=نسخه یکسان
|
||||||
duplicateIt=نسخه یکسان {1}
|
duplicateIt=نسخه یکسان {1}
|
||||||
divider=جدا کننده
|
divider=جدا کننده
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=شرق
|
east=شرق
|
||||||
edit=ویرایش
|
edit=ویرایش
|
||||||
editData=ویرایش دادهها
|
editData=ویرایش دادهها
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=به نظر می رسد که در حالت آفلاین تغ
|
||||||
redo=دوباره انجام دادن
|
redo=دوباره انجام دادن
|
||||||
refresh=ریفرش
|
refresh=ریفرش
|
||||||
regularExpression=بیان معمول
|
regularExpression=بیان معمول
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=مرا به خاطر بسپار
|
rememberMe=مرا به خاطر بسپار
|
||||||
rememberThisSetting=این تنظیمات را به خاطر بسپار
|
rememberThisSetting=این تنظیمات را به خاطر بسپار
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Pienennettävä
|
||||||
comic=Käsinkirjoitettu
|
comic=Käsinkirjoitettu
|
||||||
comment=Kommentti
|
comment=Kommentti
|
||||||
commentsNotes=Kommentit/Muistiinpanot
|
commentsNotes=Kommentit/Muistiinpanot
|
||||||
|
compress=Compress
|
||||||
connect=Yhdistä
|
connect=Yhdistä
|
||||||
connecting=Yhdistetään
|
connecting=Yhdistetään
|
||||||
connectWithDrive=Yhdistä Google Driveen
|
connectWithDrive=Yhdistä Google Driveen
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Kopioi
|
duplicate=Kopioi
|
||||||
duplicateIt=Kopioi {1}
|
duplicateIt=Kopioi {1}
|
||||||
divider=Jakaja
|
divider=Jakaja
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Itä
|
east=Itä
|
||||||
edit=Muokkaa
|
edit=Muokkaa
|
||||||
editData=Muokkaa tietoja
|
editData=Muokkaa tietoja
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Näyttää siltä, että olet tehnyt muutoksia offline-tilassa.
|
||||||
redo=Toista
|
redo=Toista
|
||||||
refresh=Virkistä
|
refresh=Virkistä
|
||||||
regularExpression=Säännöllinen ilme
|
regularExpression=Säännöllinen ilme
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Muista minut
|
rememberMe=Muista minut
|
||||||
rememberThisSetting=Muista tämä asetus
|
rememberThisSetting=Muista tämä asetus
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Pwedeng Pakitirin
|
||||||
comic=Sulat-kamay
|
comic=Sulat-kamay
|
||||||
comment=Kumento
|
comment=Kumento
|
||||||
commentsNotes=Mga Kumento/Paalala
|
commentsNotes=Mga Kumento/Paalala
|
||||||
|
compress=Compress
|
||||||
connect=Kumonekta
|
connect=Kumonekta
|
||||||
connecting=Kumukonekta
|
connecting=Kumukonekta
|
||||||
connectWithDrive=Kumonekta gamit ang Google Drive
|
connectWithDrive=Kumonekta gamit ang Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Gumawa ng kopya
|
duplicate=Gumawa ng kopya
|
||||||
duplicateIt=Gumawa ng kopya {1}
|
duplicateIt=Gumawa ng kopya {1}
|
||||||
divider=Dibisyon
|
divider=Dibisyon
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Silangan
|
east=Silangan
|
||||||
edit=I-edit
|
edit=I-edit
|
||||||
editData=I-edit ang datos
|
editData=I-edit ang datos
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Mukhang gumawa ka ng ilang mga pagbabago nang ikaw ay offline.
|
||||||
redo=Gawing muli
|
redo=Gawing muli
|
||||||
refresh=I-refresh
|
refresh=I-refresh
|
||||||
regularExpression=Karaniwang pagpapahayag
|
regularExpression=Karaniwang pagpapahayag
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Tandaan ako
|
rememberMe=Tandaan ako
|
||||||
rememberThisSetting=Tandaan ang setting na ito
|
rememberThisSetting=Tandaan ang setting na ito
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Réductible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Commentaire
|
comment=Commentaire
|
||||||
commentsNotes=Commentaires/Notes
|
commentsNotes=Commentaires/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connecter
|
connect=Connecter
|
||||||
connecting=Connexion en cours
|
connecting=Connexion en cours
|
||||||
connectWithDrive=Connecter avec Google Drive
|
connectWithDrive=Connecter avec Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Dupliquer
|
duplicate=Dupliquer
|
||||||
duplicateIt=Dupliquer {1}
|
duplicateIt=Dupliquer {1}
|
||||||
divider=Séparateur
|
divider=Séparateur
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Est
|
east=Est
|
||||||
edit=Modifier
|
edit=Modifier
|
||||||
editData=Modifier les paramètres
|
editData=Modifier les paramètres
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Il semble que des modifications hors ligne ont été effectuées
|
||||||
redo=Refaire
|
redo=Refaire
|
||||||
refresh=Rafraichir
|
refresh=Rafraichir
|
||||||
regularExpression=Expression régulière
|
regularExpression=Expression régulière
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Se souvenir de moi
|
rememberMe=Se souvenir de moi
|
||||||
rememberThisSetting=Se rappeler de ce paramètre
|
rememberThisSetting=Se rappeler de ce paramètre
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=ניתן לפירוק
|
||||||
comic=כתב יד
|
comic=כתב יד
|
||||||
comment=תגובה
|
comment=תגובה
|
||||||
commentsNotes=תגובות/הערות
|
commentsNotes=תגובות/הערות
|
||||||
|
compress=Compress
|
||||||
connect=חבר
|
connect=חבר
|
||||||
connecting=מחבר
|
connecting=מחבר
|
||||||
connectWithDrive=חבר באמצעות גוגל דרייב
|
connectWithDrive=חבר באמצעות גוגל דרייב
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=שכפל
|
duplicate=שכפל
|
||||||
duplicateIt=שכפל {1}
|
duplicateIt=שכפל {1}
|
||||||
divider=מחלק
|
divider=מחלק
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=מזרח
|
east=מזרח
|
||||||
edit=ערוך
|
edit=ערוך
|
||||||
editData=ערוך מידע
|
editData=ערוך מידע
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=נראה שביצעת מספר שינויים במצב לא
|
||||||
redo=בצע שוב
|
redo=בצע שוב
|
||||||
refresh=רענן
|
refresh=רענן
|
||||||
regularExpression=ביטוי רגיל
|
regularExpression=ביטוי רגיל
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=זכור אותי
|
rememberMe=זכור אותי
|
||||||
rememberThisSetting=זוכר את ההגדרות האלו
|
rememberThisSetting=זוכר את ההגדרות האלו
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Összevonható
|
||||||
comic=Szabadkéz
|
comic=Szabadkéz
|
||||||
comment=Megjegyzés
|
comment=Megjegyzés
|
||||||
commentsNotes=Kommentárok/Jegyzetek
|
commentsNotes=Kommentárok/Jegyzetek
|
||||||
|
compress=Compress
|
||||||
connect=Csatlakoztat
|
connect=Csatlakoztat
|
||||||
connecting=Csatlakoztatás
|
connecting=Csatlakoztatás
|
||||||
connectWithDrive=Csatlkakoztatás a Google Drive-val
|
connectWithDrive=Csatlkakoztatás a Google Drive-val
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplikát
|
duplicate=Duplikát
|
||||||
duplicateIt={1}-t duplikál
|
duplicateIt={1}-t duplikál
|
||||||
divider=Osztó
|
divider=Osztó
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Kelet
|
east=Kelet
|
||||||
edit=Szerkeszt
|
edit=Szerkeszt
|
||||||
editData=Adatot szerkeszt
|
editData=Adatot szerkeszt
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Úgy látszik néhány változást csinált miközben le volt ka
|
||||||
redo=Helyrehoz
|
redo=Helyrehoz
|
||||||
refresh=Frissít
|
refresh=Frissít
|
||||||
regularExpression=Reguláris kifejezés
|
regularExpression=Reguláris kifejezés
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Emlékezz rám
|
rememberMe=Emlékezz rám
|
||||||
rememberThisSetting=Emlékezz erre a beállításra
|
rememberThisSetting=Emlékezz erre a beállításra
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=collapsible
|
||||||
comic=comic
|
comic=comic
|
||||||
comment=comment
|
comment=comment
|
||||||
commentsNotes=commentsNotes
|
commentsNotes=commentsNotes
|
||||||
|
compress=compress
|
||||||
connect=connect
|
connect=connect
|
||||||
connecting=connecting
|
connecting=connecting
|
||||||
connectWithDrive=connectWithDrive
|
connectWithDrive=connectWithDrive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=dropbox
|
||||||
duplicate=duplicate
|
duplicate=duplicate
|
||||||
duplicateIt=duplicateIt
|
duplicateIt=duplicateIt
|
||||||
divider=divider
|
divider=divider
|
||||||
|
dx=dx
|
||||||
|
dy=dy
|
||||||
east=east
|
east=east
|
||||||
edit=edit
|
edit=edit
|
||||||
editData=editData
|
editData=editData
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=realtimeTimeout
|
||||||
redo=redo
|
redo=redo
|
||||||
refresh=refresh
|
refresh=refresh
|
||||||
regularExpression=regularExpression
|
regularExpression=regularExpression
|
||||||
|
relative=relative
|
||||||
relativeUrlNotAllowed=relativeUrlNotAllowed
|
relativeUrlNotAllowed=relativeUrlNotAllowed
|
||||||
rememberMe=rememberMe
|
rememberMe=rememberMe
|
||||||
rememberThisSetting=rememberThisSetting
|
rememberThisSetting=rememberThisSetting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Dapat dipersempit
|
||||||
comic=Komik
|
comic=Komik
|
||||||
comment=Komentar
|
comment=Komentar
|
||||||
commentsNotes=Komentar/Catatan
|
commentsNotes=Komentar/Catatan
|
||||||
|
compress=Compress
|
||||||
connect=Hubungkan
|
connect=Hubungkan
|
||||||
connecting=Menghubungkan
|
connecting=Menghubungkan
|
||||||
connectWithDrive=Hubungkan dengan Google Drive
|
connectWithDrive=Hubungkan dengan Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplikasikan
|
duplicate=Duplikasikan
|
||||||
duplicateIt=Duplikasikan {1}
|
duplicateIt=Duplikasikan {1}
|
||||||
divider=Pemisah
|
divider=Pemisah
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Timur
|
east=Timur
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Sepertinya Anda melakukan beberapa perubahan saat offline. Maaf,
|
||||||
redo=Ulangi
|
redo=Ulangi
|
||||||
refresh=Segarkan
|
refresh=Segarkan
|
||||||
regularExpression=Regex
|
regularExpression=Regex
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Ingat saya
|
rememberMe=Ingat saya
|
||||||
rememberThisSetting=Ingat pengaturan ini
|
rememberThisSetting=Ingat pengaturan ini
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Riducibile
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Commento
|
comment=Commento
|
||||||
commentsNotes=Commenti/Note
|
commentsNotes=Commenti/Note
|
||||||
|
compress=Compress
|
||||||
connect=Connetti
|
connect=Connetti
|
||||||
connecting=Connessione
|
connecting=Connessione
|
||||||
connectWithDrive=Connetti con Google Drive
|
connectWithDrive=Connetti con Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplica
|
duplicate=Duplica
|
||||||
duplicateIt=Duplica{1}
|
duplicateIt=Duplica{1}
|
||||||
divider=Dividere
|
divider=Dividere
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Est
|
east=Est
|
||||||
edit=Modifica
|
edit=Modifica
|
||||||
editData=Modifica i dati
|
editData=Modifica i dati
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Sembra che tu abbia fatto alcune modifiche mentre eri offline. P
|
||||||
redo=Ripeti
|
redo=Ripeti
|
||||||
refresh=Aggiorna
|
refresh=Aggiorna
|
||||||
regularExpression=Espressione regolare
|
regularExpression=Espressione regolare
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Ricordati di me
|
rememberMe=Ricordati di me
|
||||||
rememberThisSetting=Ricorda queste impostazioni
|
rememberThisSetting=Ricorda queste impostazioni
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=折りたたみ可
|
||||||
comic=コミック
|
comic=コミック
|
||||||
comment=コメント
|
comment=コメント
|
||||||
commentsNotes=コメント / 備考
|
commentsNotes=コメント / 備考
|
||||||
|
compress=Compress
|
||||||
connect=接続する
|
connect=接続する
|
||||||
connecting=接続中
|
connecting=接続中
|
||||||
connectWithDrive=Googleドライブに接続する
|
connectWithDrive=Googleドライブに接続する
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=複製
|
duplicate=複製
|
||||||
duplicateIt={1}を複製する
|
duplicateIt={1}を複製する
|
||||||
divider=分割
|
divider=分割
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=右
|
east=右
|
||||||
edit=編集
|
edit=編集
|
||||||
editData=データを編集
|
editData=データを編集
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=オフライン時にいくつかの修正があったようで
|
||||||
redo=やり直し
|
redo=やり直し
|
||||||
refresh=リフレッシュ
|
refresh=リフレッシュ
|
||||||
regularExpression=正規表現
|
regularExpression=正規表現
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=保存する
|
rememberMe=保存する
|
||||||
rememberThisSetting=設定を保存
|
rememberThisSetting=設定を保存
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=접기가능
|
||||||
comic=코믹
|
comic=코믹
|
||||||
comment=의견
|
comment=의견
|
||||||
commentsNotes=의견/메모
|
commentsNotes=의견/메모
|
||||||
|
compress=Compress
|
||||||
connect=연결
|
connect=연결
|
||||||
connecting=연결중
|
connecting=연결중
|
||||||
connectWithDrive=구글 드라이브에 연결
|
connectWithDrive=구글 드라이브에 연결
|
||||||
|
@ -189,6 +190,8 @@ dropbox=드롭박스
|
||||||
duplicate=복제
|
duplicate=복제
|
||||||
duplicateIt={1} 복제
|
duplicateIt={1} 복제
|
||||||
divider=분할
|
divider=분할
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=우측
|
east=우측
|
||||||
edit=편집
|
edit=편집
|
||||||
editData=데이터 편집
|
editData=데이터 편집
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=일부 변경내용이 오프라인 상태에서 입력되었습
|
||||||
redo=다시 실행
|
redo=다시 실행
|
||||||
refresh=새로 고침
|
refresh=새로 고침
|
||||||
regularExpression=일반 표현
|
regularExpression=일반 표현
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=로그인 기억하기
|
rememberMe=로그인 기억하기
|
||||||
rememberThisSetting=이 설정 기억하기
|
rememberThisSetting=이 설정 기억하기
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Boleh diruntuhkan
|
||||||
comic=Komik
|
comic=Komik
|
||||||
comment=Ulasan
|
comment=Ulasan
|
||||||
commentsNotes=Ulasan-ulasan/Nota-nota
|
commentsNotes=Ulasan-ulasan/Nota-nota
|
||||||
|
compress=Compress
|
||||||
connect=Menyambung
|
connect=Menyambung
|
||||||
connecting=Sedang menyambung
|
connecting=Sedang menyambung
|
||||||
connectWithDrive=Sambung dengan Google Drive
|
connectWithDrive=Sambung dengan Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Menduakan
|
duplicate=Menduakan
|
||||||
duplicateIt=Menduakan {1}
|
duplicateIt=Menduakan {1}
|
||||||
divider=Pembahagi
|
divider=Pembahagi
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Timur
|
east=Timur
|
||||||
edit=Sunting
|
edit=Sunting
|
||||||
editData=Sunting Data
|
editData=Sunting Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Nampaknya anda telah membuat beberapa perubahan semasa di luar t
|
||||||
redo=Buat semula
|
redo=Buat semula
|
||||||
refresh=Segarkan semula
|
refresh=Segarkan semula
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Ingat saya
|
rememberMe=Ingat saya
|
||||||
rememberThisSetting=Ingat tetapan ini
|
rememberThisSetting=Ingat tetapan ini
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Inklapbaar
|
||||||
comic=Rafelig
|
comic=Rafelig
|
||||||
comment=Commentaar
|
comment=Commentaar
|
||||||
commentsNotes=Commentaren/Opmerkingen
|
commentsNotes=Commentaren/Opmerkingen
|
||||||
|
compress=Compress
|
||||||
connect=Verbinden
|
connect=Verbinden
|
||||||
connecting=Verbinding maken
|
connecting=Verbinding maken
|
||||||
connectWithDrive=Verbinden met Google Drive
|
connectWithDrive=Verbinden met Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Dupliceren
|
duplicate=Dupliceren
|
||||||
duplicateIt={1} dupliceren
|
duplicateIt={1} dupliceren
|
||||||
divider=Scheiding
|
divider=Scheiding
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Rechts
|
east=Rechts
|
||||||
edit=Bewerken
|
edit=Bewerken
|
||||||
editData=Gegevens bewerken
|
editData=Gegevens bewerken
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Het lijkt alsof u enkele wijzigingen hebt aangebracht terwijl u
|
||||||
redo=Opnieuw
|
redo=Opnieuw
|
||||||
refresh=Herladen
|
refresh=Herladen
|
||||||
regularExpression=Reguliere expressie
|
regularExpression=Reguliere expressie
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relatieve URL niet toegestaan
|
relativeUrlNotAllowed=Relatieve URL niet toegestaan
|
||||||
rememberMe=Onthoud mij
|
rememberMe=Onthoud mij
|
||||||
rememberThisSetting=Deze instelling onthouden
|
rememberThisSetting=Deze instelling onthouden
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Kan minimeres
|
||||||
comic=Tegneserie
|
comic=Tegneserie
|
||||||
comment=Kommenter
|
comment=Kommenter
|
||||||
commentsNotes=Kommentarer/notater
|
commentsNotes=Kommentarer/notater
|
||||||
|
compress=Compress
|
||||||
connect=Koble til
|
connect=Koble til
|
||||||
connecting=Kobler til
|
connecting=Kobler til
|
||||||
connectWithDrive=Koble til Google Drive
|
connectWithDrive=Koble til Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Dupliser
|
duplicate=Dupliser
|
||||||
duplicateIt=Dupliser {1}
|
duplicateIt=Dupliser {1}
|
||||||
divider=Separator
|
divider=Separator
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Øst
|
east=Øst
|
||||||
edit=Rediger
|
edit=Rediger
|
||||||
editData=Rediger data
|
editData=Rediger data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Det ser ut til at du har foretatt endringer mens du var offline.
|
||||||
redo=Gjør om
|
redo=Gjør om
|
||||||
refresh=Oppdater
|
refresh=Oppdater
|
||||||
regularExpression=Vanlige uttrykk
|
regularExpression=Vanlige uttrykk
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Husk meg
|
rememberMe=Husk meg
|
||||||
rememberThisSetting=Husk denne innstillingen
|
rememberThisSetting=Husk denne innstillingen
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Zwijalny
|
||||||
comic=Komiksowy
|
comic=Komiksowy
|
||||||
comment=Komentarz
|
comment=Komentarz
|
||||||
commentsNotes=Komentarze/uwagi
|
commentsNotes=Komentarze/uwagi
|
||||||
|
compress=Compress
|
||||||
connect=Połącz
|
connect=Połącz
|
||||||
connecting=Łączenie
|
connecting=Łączenie
|
||||||
connectWithDrive=Połącz z Dyskiem Google
|
connectWithDrive=Połącz z Dyskiem Google
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplikuj
|
duplicate=Duplikuj
|
||||||
duplicateIt=Duplikuj {1}
|
duplicateIt=Duplikuj {1}
|
||||||
divider=Znak podziału
|
divider=Znak podziału
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Wschód
|
east=Wschód
|
||||||
edit=Edytuj
|
edit=Edytuj
|
||||||
editData=Edytuj dane
|
editData=Edytuj dane
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Wygląda na to, że dokonał-eś/aś kilku zmian w trybie offlin
|
||||||
redo=Powtórz
|
redo=Powtórz
|
||||||
refresh=Odśwież
|
refresh=Odśwież
|
||||||
regularExpression=Wyrażenie regularne
|
regularExpression=Wyrażenie regularne
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Zapamiętaj mnie
|
rememberMe=Zapamiętaj mnie
|
||||||
rememberThisSetting=Zapamiętaj te ustawienia
|
rememberThisSetting=Zapamiętaj te ustawienia
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Minimizável
|
||||||
comic=Cômico
|
comic=Cômico
|
||||||
comment=Comentário
|
comment=Comentário
|
||||||
commentsNotes=Comentários/Notas
|
commentsNotes=Comentários/Notas
|
||||||
|
compress=Compress
|
||||||
connect=Conectar
|
connect=Conectar
|
||||||
connecting=Conectando
|
connecting=Conectando
|
||||||
connectWithDrive=Conecte-se com Google Drive
|
connectWithDrive=Conecte-se com Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicar
|
duplicate=Duplicar
|
||||||
duplicateIt=Duplicar {1]
|
duplicateIt=Duplicar {1]
|
||||||
divider=Dividir
|
divider=Dividir
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Leste
|
east=Leste
|
||||||
edit=Editar
|
edit=Editar
|
||||||
editData=Editar dados
|
editData=Editar dados
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Parece que você fez algumas mudanças enquanto estava offline.
|
||||||
redo=Refazer
|
redo=Refazer
|
||||||
refresh=Atualizar
|
refresh=Atualizar
|
||||||
regularExpression=Expressão habitual
|
regularExpression=Expressão habitual
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Lembre de mim
|
rememberMe=Lembre de mim
|
||||||
rememberThisSetting=Lembre dessa configuração
|
rememberThisSetting=Lembre dessa configuração
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Reduzível
|
||||||
comic=Cómico
|
comic=Cómico
|
||||||
comment=Comentário
|
comment=Comentário
|
||||||
commentsNotes=Comentários/Notas
|
commentsNotes=Comentários/Notas
|
||||||
|
compress=Compress
|
||||||
connect=Conetar
|
connect=Conetar
|
||||||
connecting=A conetar
|
connecting=A conetar
|
||||||
connectWithDrive=Conete-se com Google Drive
|
connectWithDrive=Conete-se com Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicar
|
duplicate=Duplicar
|
||||||
duplicateIt=Duplicar {1]
|
duplicateIt=Duplicar {1]
|
||||||
divider=Separador
|
divider=Separador
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Leste
|
east=Leste
|
||||||
edit=Editar
|
edit=Editar
|
||||||
editData=Editar os dados
|
editData=Editar os dados
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Parece que realizou algumas alterações enquanto estava descone
|
||||||
redo=Refazer
|
redo=Refazer
|
||||||
refresh=Atualizar
|
refresh=Atualizar
|
||||||
regularExpression=Expressão regular
|
regularExpression=Expressão regular
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Lembre-se de mim
|
rememberMe=Lembre-se de mim
|
||||||
rememberThisSetting=Lembre-se desta configuração
|
rememberThisSetting=Lembre-se desta configuração
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Reductibil
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comentariu
|
comment=Comentariu
|
||||||
commentsNotes=Comentarii/Note
|
commentsNotes=Comentarii/Note
|
||||||
|
compress=Compress
|
||||||
connect=Conectare
|
connect=Conectare
|
||||||
connecting=În curs de conectare
|
connecting=În curs de conectare
|
||||||
connectWithDrive=Conectare prin Google Drive
|
connectWithDrive=Conectare prin Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicare
|
duplicate=Duplicare
|
||||||
duplicateIt=Duplicare {1}
|
duplicateIt=Duplicare {1}
|
||||||
divider=Separare
|
divider=Separare
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Est
|
east=Est
|
||||||
edit=Editare
|
edit=Editare
|
||||||
editData=Editează date
|
editData=Editează date
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Se pare că ai făcut nişte modificări în timp ce erai offlin
|
||||||
redo=Refacere
|
redo=Refacere
|
||||||
refresh=Reîncarcă
|
refresh=Reîncarcă
|
||||||
regularExpression=Expresii regulare
|
regularExpression=Expresii regulare
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Ţine-mă minte
|
rememberMe=Ţine-mă minte
|
||||||
rememberThisSetting=Ţine minte această setare
|
rememberThisSetting=Ţine minte această setare
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Сворачиваемый
|
||||||
comic=Рукописный
|
comic=Рукописный
|
||||||
comment=Комментарий
|
comment=Комментарий
|
||||||
commentsNotes=Комментарии/Заметки
|
commentsNotes=Комментарии/Заметки
|
||||||
|
compress=Compress
|
||||||
connect=Соединить
|
connect=Соединить
|
||||||
connecting=Соединение
|
connecting=Соединение
|
||||||
connectWithDrive=Связать с Google Drive
|
connectWithDrive=Связать с Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Дублировать
|
duplicate=Дублировать
|
||||||
duplicateIt=Дублировать {1}
|
duplicateIt=Дублировать {1}
|
||||||
divider=Разделитель
|
divider=Разделитель
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Восток
|
east=Восток
|
||||||
edit=Правка
|
edit=Правка
|
||||||
editData=Редактировать данные
|
editData=Редактировать данные
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Похоже, вы внесли некоторые правки,
|
||||||
redo=Вернуть
|
redo=Вернуть
|
||||||
refresh=Обновить
|
refresh=Обновить
|
||||||
regularExpression=Регулярное выражение
|
regularExpression=Регулярное выражение
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Использование относительных адресов запрещено
|
relativeUrlNotAllowed=Использование относительных адресов запрещено
|
||||||
rememberMe=Запомнить меня
|
rememberMe=Запомнить меня
|
||||||
rememberThisSetting=Запомнить эту настройку
|
rememberThisSetting=Запомнить эту настройку
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Kolapsirajući
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Komentari/Beleške
|
commentsNotes=Komentari/Beleške
|
||||||
|
compress=Compress
|
||||||
connect=Poveži
|
connect=Poveži
|
||||||
connecting=Povezivanje
|
connecting=Povezivanje
|
||||||
connectWithDrive=Povezivanje sa Google Drive
|
connectWithDrive=Povezivanje sa Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplikat
|
duplicate=Duplikat
|
||||||
duplicateIt=Duplikat {1}
|
duplicateIt=Duplikat {1}
|
||||||
divider=Razdelnik
|
divider=Razdelnik
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Istok
|
east=Istok
|
||||||
edit=Uredi
|
edit=Uredi
|
||||||
editData=Uredi podatke
|
editData=Uredi podatke
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Izgleda da ste napravili nekoliko promena dok ste bili bez konek
|
||||||
redo=Ponovi
|
redo=Ponovi
|
||||||
refresh=Osveži
|
refresh=Osveži
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Zapamti me
|
rememberMe=Zapamti me
|
||||||
rememberThisSetting=Zapamti ovo podešavanje
|
rememberThisSetting=Zapamti ovo podešavanje
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Minimerbar
|
||||||
comic=Handskriven
|
comic=Handskriven
|
||||||
comment=Kommentar
|
comment=Kommentar
|
||||||
commentsNotes=Kommentarer/Anteckningar
|
commentsNotes=Kommentarer/Anteckningar
|
||||||
|
compress=Compress
|
||||||
connect=Anslut
|
connect=Anslut
|
||||||
connecting=Ansluter
|
connecting=Ansluter
|
||||||
connectWithDrive=Anslut till Google Drive
|
connectWithDrive=Anslut till Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicera
|
duplicate=Duplicera
|
||||||
duplicateIt=Duplicera {1}
|
duplicateIt=Duplicera {1}
|
||||||
divider=Avgränsare
|
divider=Avgränsare
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Öster
|
east=Öster
|
||||||
edit=Redigera
|
edit=Redigera
|
||||||
editData=Redigera data
|
editData=Redigera data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Det ser ut som du gjort några ändringar medan du inte varit up
|
||||||
redo=Ändra inmatning
|
redo=Ändra inmatning
|
||||||
refresh=Uppdatera
|
refresh=Uppdatera
|
||||||
regularExpression=Vanligt uttryck
|
regularExpression=Vanligt uttryck
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Kom ihåg mig
|
rememberMe=Kom ihåg mig
|
||||||
rememberThisSetting=Kom ihåg denna inställningen
|
rememberThisSetting=Kom ihåg denna inställningen
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Collapsible
|
||||||
comic=Comic
|
comic=Comic
|
||||||
comment=Comment
|
comment=Comment
|
||||||
commentsNotes=Comments/Notes
|
commentsNotes=Comments/Notes
|
||||||
|
compress=Compress
|
||||||
connect=Connect
|
connect=Connect
|
||||||
connecting=Connecting
|
connecting=Connecting
|
||||||
connectWithDrive=Connect with Google Drive
|
connectWithDrive=Connect with Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Duplicate
|
duplicate=Duplicate
|
||||||
duplicateIt=Duplicate {1}
|
duplicateIt=Duplicate {1}
|
||||||
divider=Divider
|
divider=Divider
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=East
|
east=East
|
||||||
edit=Edit
|
edit=Edit
|
||||||
editData=Edit Data
|
editData=Edit Data
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=It looks like you've made a few changes while offline. We're sor
|
||||||
redo=Redo
|
redo=Redo
|
||||||
refresh=Refresh
|
refresh=Refresh
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Remember me
|
rememberMe=Remember me
|
||||||
rememberThisSetting=Remember this setting
|
rememberThisSetting=Remember this setting
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=ที่สามารถย่อได้
|
||||||
comic=การ์ตูน
|
comic=การ์ตูน
|
||||||
comment=ความคิดเห็น
|
comment=ความคิดเห็น
|
||||||
commentsNotes=ความคิดเห็น/บันทึกข้อความ
|
commentsNotes=ความคิดเห็น/บันทึกข้อความ
|
||||||
|
compress=Compress
|
||||||
connect=เชื่อมต่อ
|
connect=เชื่อมต่อ
|
||||||
connecting=กำลังเชื่อมต่อ
|
connecting=กำลังเชื่อมต่อ
|
||||||
connectWithDrive=เชื่อมต่อกับ Google Drive
|
connectWithDrive=เชื่อมต่อกับ Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=ดร็อปบ็อกซ์
|
||||||
duplicate=ทำซ้ำ
|
duplicate=ทำซ้ำ
|
||||||
duplicateIt=ทำซ้ำ{1}
|
duplicateIt=ทำซ้ำ{1}
|
||||||
divider=ตัวแบ่ง
|
divider=ตัวแบ่ง
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=ทิศตะวันออก
|
east=ทิศตะวันออก
|
||||||
edit=แก้ไข
|
edit=แก้ไข
|
||||||
editData=แก้ไขข้อมูล
|
editData=แก้ไขข้อมูล
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=คุณได้ทำการเปลี่ยนแปล
|
||||||
redo=ทำอีกครั้ง
|
redo=ทำอีกครั้ง
|
||||||
refresh=รีเฟรช
|
refresh=รีเฟรช
|
||||||
regularExpression=นิพจน์ปกติ
|
regularExpression=นิพจน์ปกติ
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=จำฉันไว้
|
rememberMe=จำฉันไว้
|
||||||
rememberThisSetting=จำการตั้งค่านี้
|
rememberThisSetting=จำการตั้งค่านี้
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Daraltılabilir
|
||||||
comic=Komedi
|
comic=Komedi
|
||||||
comment=Yorumlar
|
comment=Yorumlar
|
||||||
commentsNotes=Yorumlar/Notlar
|
commentsNotes=Yorumlar/Notlar
|
||||||
|
compress=Compress
|
||||||
connect=Bağlan
|
connect=Bağlan
|
||||||
connecting=Bağlanıyor
|
connecting=Bağlanıyor
|
||||||
connectWithDrive=Google Drive ile bağlan
|
connectWithDrive=Google Drive ile bağlan
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Çoğalt
|
duplicate=Çoğalt
|
||||||
duplicateIt={1} Çoğalt
|
duplicateIt={1} Çoğalt
|
||||||
divider=Bölücü
|
divider=Bölücü
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Doğu
|
east=Doğu
|
||||||
edit=Düzenle
|
edit=Düzenle
|
||||||
editData=Veriyi düzenle
|
editData=Veriyi düzenle
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Görünüşe göre çevrimdışıyken bazı değişiklikler yapm
|
||||||
redo=Yinele
|
redo=Yinele
|
||||||
refresh=Yenile
|
refresh=Yenile
|
||||||
regularExpression=Düzenli anlatım
|
regularExpression=Düzenli anlatım
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Beni hatırla
|
rememberMe=Beni hatırla
|
||||||
rememberThisSetting=Bu ayarı hatırla
|
rememberThisSetting=Bu ayarı hatırla
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Згортуване
|
||||||
comic="Від руки"
|
comic="Від руки"
|
||||||
comment=Коментар
|
comment=Коментар
|
||||||
commentsNotes=Коментарі/Примітки
|
commentsNotes=Коментарі/Примітки
|
||||||
|
compress=Compress
|
||||||
connect=Підключити
|
connect=Підключити
|
||||||
connecting=Підключаю
|
connecting=Підключаю
|
||||||
connectWithDrive=Зв'язати з Google Drive
|
connectWithDrive=Зв'язати з Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Дублювати
|
duplicate=Дублювати
|
||||||
duplicateIt=Дублювати {1}
|
duplicateIt=Дублювати {1}
|
||||||
divider=Розподілювач
|
divider=Розподілювач
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Схід
|
east=Схід
|
||||||
edit=Редагувати
|
edit=Редагувати
|
||||||
editData=Редагувати дані
|
editData=Редагувати дані
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Схоже, що ви внесли деякі зміни, пер
|
||||||
redo=Повторити
|
redo=Повторити
|
||||||
refresh=Поновити
|
refresh=Поновити
|
||||||
regularExpression=Регулярне вираження
|
regularExpression=Регулярне вираження
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Запам'ятати мене
|
rememberMe=Запам'ятати мене
|
||||||
rememberThisSetting=Запам'ятати це налаштування
|
rememberThisSetting=Запам'ятати це налаштування
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=Có thể thu gọn
|
||||||
comic=Viết tay
|
comic=Viết tay
|
||||||
comment=Bình luận
|
comment=Bình luận
|
||||||
commentsNotes=Bình luận/Ghi chú
|
commentsNotes=Bình luận/Ghi chú
|
||||||
|
compress=Compress
|
||||||
connect=Kết nối
|
connect=Kết nối
|
||||||
connecting=Đang kết nối
|
connecting=Đang kết nối
|
||||||
connectWithDrive=Kết nối với Google Drive
|
connectWithDrive=Kết nối với Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=Tạo bản sao
|
duplicate=Tạo bản sao
|
||||||
duplicateIt=Tạo bản sao cho {1}
|
duplicateIt=Tạo bản sao cho {1}
|
||||||
divider=Đường phân chia
|
divider=Đường phân chia
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=Hướng Đông
|
east=Hướng Đông
|
||||||
edit=Chỉnh sửa
|
edit=Chỉnh sửa
|
||||||
editData=Chỉnh sửa dữ liệu
|
editData=Chỉnh sửa dữ liệu
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=Có vẻ như bạn đã làm một số thay đổi khi đăng
|
||||||
redo=Làm lại
|
redo=Làm lại
|
||||||
refresh=Làm mới
|
refresh=Làm mới
|
||||||
regularExpression=Regular Expression
|
regularExpression=Regular Expression
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=Ghi nhớ đăng nhập
|
rememberMe=Ghi nhớ đăng nhập
|
||||||
rememberThisSetting=Ghi nhớ cài đặt này
|
rememberThisSetting=Ghi nhớ cài đặt này
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=可收展
|
||||||
comic=手繪
|
comic=手繪
|
||||||
comment=評論
|
comment=評論
|
||||||
commentsNotes=評論/備註
|
commentsNotes=評論/備註
|
||||||
|
compress=Compress
|
||||||
connect=連線
|
connect=連線
|
||||||
connecting=連線中
|
connecting=連線中
|
||||||
connectWithDrive=連結至Google雲端硬碟
|
connectWithDrive=連結至Google雲端硬碟
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=復制
|
duplicate=復制
|
||||||
duplicateIt=復制{1}
|
duplicateIt=復制{1}
|
||||||
divider=分隔線
|
divider=分隔線
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=向右漸層
|
east=向右漸層
|
||||||
edit=編輯
|
edit=編輯
|
||||||
editData=編輯數據
|
editData=編輯數據
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=似乎您在離線時作了一些更改。很遺憾,這些更
|
||||||
redo=重作
|
redo=重作
|
||||||
refresh=更新
|
refresh=更新
|
||||||
regularExpression=正規表示式
|
regularExpression=正規表示式
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=記住我
|
rememberMe=記住我
|
||||||
rememberThisSetting=記住設定
|
rememberThisSetting=記住設定
|
||||||
|
|
|
@ -114,6 +114,7 @@ collapsible=可收起
|
||||||
comic=手绘
|
comic=手绘
|
||||||
comment=评论
|
comment=评论
|
||||||
commentsNotes=评论/备注
|
commentsNotes=评论/备注
|
||||||
|
compress=Compress
|
||||||
connect=连接
|
connect=连接
|
||||||
connecting=连接中
|
connecting=连接中
|
||||||
connectWithDrive=连接Google Drive
|
connectWithDrive=连接Google Drive
|
||||||
|
@ -189,6 +190,8 @@ dropbox=Dropbox
|
||||||
duplicate=复制
|
duplicate=复制
|
||||||
duplicateIt=复制{1}
|
duplicateIt=复制{1}
|
||||||
divider=分隔线
|
divider=分隔线
|
||||||
|
dx=Dx
|
||||||
|
dy=Dy
|
||||||
east=向右
|
east=向右
|
||||||
edit=编辑
|
edit=编辑
|
||||||
editData=编辑数据
|
editData=编辑数据
|
||||||
|
@ -547,6 +550,7 @@ realtimeTimeout=似乎您在离线状态下做过更改。对不起,这些更
|
||||||
redo=重做
|
redo=重做
|
||||||
refresh=刷新
|
refresh=刷新
|
||||||
regularExpression=正则表达式
|
regularExpression=正则表达式
|
||||||
|
relative=Relative
|
||||||
relativeUrlNotAllowed=Relative URL not allowed
|
relativeUrlNotAllowed=Relative URL not allowed
|
||||||
rememberMe=记住我
|
rememberMe=记住我
|
||||||
rememberThisSetting=记住此设置
|
rememberThisSetting=记住此设置
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
.geDiagramContainer {
|
.geDiagramContainer {
|
||||||
background-color:#ffffff;
|
background-color:#ffffff;
|
||||||
border: 1px solid #e5e5e5;
|
border: 1px solid #e5e5e5;
|
||||||
|
font-size:0px;
|
||||||
outline:none;
|
outline:none;
|
||||||
}
|
}
|
||||||
.geMenubar, .geToolbar {
|
.geMenubar, .geToolbar {
|
||||||
|
@ -57,6 +58,7 @@
|
||||||
box-shadow: 1px 1px 2px 0px #ddd;
|
box-shadow: 1px 1px 2px 0px #ddd;
|
||||||
opacity:0.8;
|
opacity:0.8;
|
||||||
filter:alpha(opacity=80);
|
filter:alpha(opacity=80);
|
||||||
|
font-size:9pt;
|
||||||
}
|
}
|
||||||
.geStatusAlert {
|
.geStatusAlert {
|
||||||
white-space:nowrap;
|
white-space:nowrap;
|
||||||
|
|
Loading…
Reference in a new issue