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