13.10.1 release

This commit is contained in:
David Benson [draw.io] 2020-11-22 16:49:47 +00:00
parent d464ad3fc0
commit 017c530047
72 changed files with 2785 additions and 2605 deletions

View file

@ -1,3 +1,7 @@
22-NOV-2020: 13.10.1
- Adds File, Embed, Notion
18-NOV-2020: 13.10.0
- Internal release for Github actions testing

View file

@ -1 +1 @@
13.10.0
13.10.1

View file

@ -1339,4 +1339,4 @@ function exportDiagram(event, args, directFinalize)
}
};
ipcMain.on('export', exportDiagram);
ipcMain.on('export', exportDiagram);

File diff suppressed because one or more lines are too long

View file

@ -1974,7 +1974,7 @@ App.prototype.showRatingBanner = function()
mxEvent.addListener(star4, 'click', mxUtils.bind(this, function(e)
{
mxEvent.consume(e);
window.open('https://marketplace.atlassian.com/apps/1210933/draw-io-diagrams-for-confluence?hosting=cloud&tab=reviews');
window.open('https://marketplace.atlassian.com/apps/1210933/draw-io-diagrams-for-confluence?hosting=server&tab=reviews');
onclose();
}));

View file

@ -5200,7 +5200,7 @@
/**
*
*/
EditorUi.prototype.createLink = function(linkTarget, linkColor, allPages, lightbox, editLink, layers, url, ignoreFile, params)
EditorUi.prototype.createLink = function(linkTarget, linkColor, allPages, lightbox, editLink, layers, url, ignoreFile, params, useOpenParameter)
{
params = (params != null) ? params : this.createUrlParameters(linkTarget, linkColor, allPages, lightbox, editLink, layers);
var file = this.getCurrentFile();
@ -5233,6 +5233,12 @@
{
params.push('title=' + encodeURIComponent(file.getTitle()));
}
if (useOpenParameter && data.length > 1)
{
params.push('open=' + data.substring(1));
data = '';
}
return ((lightbox && urlParams['dev'] != '1') ? EditorUi.lightboxHost :
(((mxClient.IS_CHROMEAPP || EditorUi.isElectronApp ||
@ -5459,7 +5465,7 @@
/**
*
*/
EditorUi.prototype.showPublishLinkDialog = function(title, hideShare, width, height, fn, showFrameOption, showSelectionOption)
EditorUi.prototype.showPublishLinkDialog = function(title, hideShare, width, height, fn, showFrameOption)
{
var div = document.createElement('div');
div.style.whiteSpace = 'nowrap';

View file

@ -3961,15 +3961,10 @@ LucidImporter = {};
if (nonBlockStyles != null && nonBlockStyles['c'])
{
var v = nonBlockStyles['c'].v;
var v = rgbToHex(nonBlockStyles['c'].v);
if (v != null)
{
if (v.charAt(0) != '#')
{
v = '#' + v;
}
v = v.substring(0, 7);
str += 'color:' + v + ';';
}
@ -4057,15 +4052,10 @@ LucidImporter = {};
if (styles['c'])
{
var v = styles['c'].v;
var v = rgbToHex(styles['c'].v);
if (v != null)
{
if (v.charAt(0) != '#')
{
v = '#' + v;
}
v = v.substring(0, 7);
str += 'color:' + v + ';';
}
@ -4673,14 +4663,7 @@ LucidImporter = {};
{
isC = true;
var currV = currM.v;
if (currV.charAt(0) != '#')
{
currV = '#' + currV;
}
var currV = currV.substring(0, 7);
var currV = rgbToHex(currM.v).substring(0, 7);
return mxConstants.STYLE_FONTCOLOR + '=' + currV + ';';
}
@ -5021,6 +5004,8 @@ LucidImporter = {};
if (typeof properties.LineColor === 'string')
{
properties.LineColor = rgbToHex(properties.LineColor);
if (properties.LineColor.length > 7)
{
var sOpac = "0x" + properties.LineColor.substring(properties.LineColor.length - 2, properties.LineColor.length);
@ -5034,6 +5019,8 @@ LucidImporter = {};
if (typeof properties.FillColor === 'string')
{
properties.FillColor = rgbToHex(properties.FillColor);
if (properties.FillColor.length > 7)
{
var fOpac = "0x" + properties.FillColor.substring(properties.FillColor.length - 2, properties.FillColor.length);
@ -5144,20 +5131,36 @@ LucidImporter = {};
return '';
}
function getColor(color)
function rgbToHex(color)
{
var clr = color? color.substring(0, 7) : null;
if (clr && clr.charAt(0) != '#' && clr.charAt(0).toLowerCase() != 'r')
if (color)
{
clr = '#' + clr;
if (color.substring(0, 3) == 'rgb')
{
color = '#' + color.match(/\d+/g).map(function(n)
{
var s = parseInt(n).toString(16);
return (s.length == 1? '0' : '') + s;
}).join('');
}
else if (color.charAt(0) != '#')
{
color = '#' + color;
}
}
return clr;
return color;
};
function getColor(color)
{
color = rgbToHex(color);
return color? color.substring(0, 7) : null;
}
function getOpacity2(color, style)
{
color = rgbToHex(color);
return color && color.length > 7? (style + '=' + Math.round(parseInt('0x' + color.substr(7)) / 2.55) + ';') : '';
}
@ -5734,15 +5737,10 @@ LucidImporter = {};
}
else if (obj.Value.m[i].n == 'c')
{
var v = obj.Value.m[i].v;
var v = rgbToHex(obj.Value.m[i].v);
if (v != null)
{
if (v.charAt(0) != '#')
{
v = '#' + v;
}
v = v.substring(0, 7);
}

View file

@ -165,7 +165,7 @@ LocalFile.prototype.saveFile = function(title, revision, success, error, useCurr
var binary = this.ui.useCanvasForExport && /(\.png)$/i.test(this.getTitle());
this.setShadowModified(false);
var data = this.getData();
var savedData = this.getData();
var done = mxUtils.bind(this, function()
{
@ -213,9 +213,10 @@ LocalFile.prototype.saveFile = function(title, revision, success, error, useCurr
{
this.fileHandle.getFile().then(mxUtils.bind(this, function(desc)
{
var lastDesc = this.desc;
this.savingFile = false;
this.desc = desc;
done();
this.fileSaved(savedData, lastDesc, done, errorWrapper);
}), errorWrapper);
}), errorWrapper);
}), errorWrapper);
@ -275,11 +276,11 @@ LocalFile.prototype.saveFile = function(title, revision, success, error, useCurr
{
doSave(imageData);
}), error, (this.ui.getCurrentFile() != this) ?
data : null, p.scale, p.border);
savedData : null, p.scale, p.border);
}
else
{
doSave(data);
doSave(savedData);
}
};

View file

@ -662,7 +662,14 @@
editorUi.actions.addAction('support...', function()
{
editorUi.openLink('https://github.com/jgraph/drawio/wiki/Getting-Support');
if (EditorUi.isElectronApp)
{
editorUi.openLink('https://github.com/jgraph/drawio-desktop/wiki/Getting-Support');
}
else
{
editorUi.openLink('https://github.com/jgraph/drawio/wiki/Getting-Support');
}
});
editorUi.actions.addAction('exportOptionsDisabled...', function()
@ -697,7 +704,14 @@
editorUi.actions.addAction('forkme', function()
{
editorUi.openLink('https://github.com/jgraph/drawio');
if (EditorUi.isElectronApp)
{
editorUi.openLink('https://github.com/jgraph/drawio-desktop');
}
else
{
editorUi.openLink('https://github.com/jgraph/drawio');
}
}).label = 'Fork me on GitHub...';
editorUi.actions.addAction('downloadDesktop...', function()
@ -1243,9 +1257,19 @@
{
input.focus();
}, 0);
this.addMenuItems(menu, ['-', 'keyboardShortcuts', 'quickStart',
'support', '-', 'forkme', 'downloadDesktop', '-', 'about'], parent);
if (EditorUi.isElectronApp)
{
console.log('electron help menu');
this.addMenuItems(menu, ['-', 'keyboardShortcuts', 'quickStart',
'support', '-', 'forkme', '-', 'about'], parent);
}
else
{
this.addMenuItems(menu, ['-', 'keyboardShortcuts', 'quickStart',
'support', '-', 'forkme', 'downloadDesktop', '-', 'about'], parent);
}
}
if (urlParams['test'] == '1')
@ -1796,6 +1820,26 @@
}
}, true);
}));
editorUi.actions.put('embedNotion', new Action(mxResources.get('notion') + '...', function()
{
editorUi.showPublishLinkDialog(mxResources.get('notion'), null, null, null,
function(linkTarget, linkColor, allPages, lightbox, editLink, layers, width, height)
{
if (editorUi.spinner.spin(document.body, mxResources.get('loading')))
{
editorUi.getPublicUrl(editorUi.getCurrentFile(), function(url)
{
editorUi.spinner.stop();
var dlg = new EmbedDialog(editorUi, editorUi.createLink(linkTarget, linkColor,
allPages, lightbox, editLink, layers, url, null, null, true));
editorUi.showDialog(dlg.container, 440, 240, true, true);
dlg.init();
});
}
}, true);
}));
editorUi.actions.put('publishLink', new Action(mxResources.get('link') + '...', function()
{
@ -2532,7 +2576,7 @@
if (urlParams['embed'] != '1' && !editorUi.isOffline())
{
this.addMenuItems(menu, ['-', 'googleDocs', 'googleSlides', 'googleSheets', '-', 'microsoftOffice'], parent);
this.addMenuItems(menu, ['-', 'googleDocs', 'googleSlides', 'googleSheets', '-', 'microsoftOffice', '-', 'embedNotion'], parent);
}
})));
@ -3961,4 +4005,4 @@
}), parent, null, true);
})));
};
})();
})();

View file

@ -5027,20 +5027,19 @@ var com;
return styleMap;
};
mxVsdxUtils.isInsideTriangle = function (x, y, ax, ay, bx, by, cx, cy) {
bx = bx - ax;
by = by - ay;
cx = cx - ax;
cy = cy - ay;
ax = 0;
ay = 0;
var d = bx * cy - cx * by;
var wa = (x * (by - cy) + y * (cx - bx) + bx * cy - cx * by) / d;
var wb = (x * cy - y * cx) / d;
var wc = (y * bx - x * by) / d;
if (wa > 0 && wa < 1 && wb > 0 && wb < 1 && wc > 0 && wc < 1) {
return true;
}
return false;
function sign (p1x, p1y, p2x, p2y, p3x, p3y)
{
return (p1x - p3x) * (p2y - p3y) - (p2x - p3x) * (p1y - p3y);
}
var d1 = sign(x, y, ax, ay, bx, by);
var d2 = sign(x, y, bx, by, cx, cy);
var d3 = sign(x, y, cx, cy, ax, ay);
var has_neg = (d1 < 0) || (d2 < 0) || (d3 < 0);
var has_pos = (d1 > 0) || (d2 > 0) || (d3 > 0);
return !(has_neg && has_pos);
};
return mxVsdxUtils;
}());
@ -6724,7 +6723,8 @@ var com;
var sweep = (x2 - x1) * (y3 - y1) - (y2 - y1) * (x3 - x1);
var sf = (sweep > 0) ? "0" : "1";
var laf = "0";
if (com.mxgraph.io.vsdx.mxVsdxUtils.isInsideTriangle(p0x, p0y, p1x, p1y, p2x, p2y, p3x, p3y) && this.isReflexAngle(p0x, p0y, p1x, p1y, p2x, p2y, p3x, p3y)) {
if (com.mxgraph.io.vsdx.mxVsdxUtils.isInsideTriangle(p0x, p0y, p1x, p1y, p2x, p2y, p3x, p3y)) // && this.isReflexAngle(p0x, p0y, p1x, p1y, p2x, p2y, p3x, p3y)) { //Inside triangle works alone in all test cases so far
{
laf = "1";
}
shape.setLastX(x);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=‫غير متاح‬
notAUtf8File=Not a UTF-8 file
notConnected=‫غير متصل‬
note=‫ملاحظة‬
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=‫ليس هناك استعمال ل {1}؟‬
numberedList=‫لائحة مرقمة‬
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Не е налично
notAUtf8File=Не е UTF-8 файл
notConnected=Не е свързано
note=Забележка
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Не използвате {1}?
numberedList=Номериран списък
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Nije dostupno
notAUtf8File=Nije UTG-8 fajl
notConnected=Nije povezano
note=Zabilješka
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Ne koristi se {1}?
numberedList=Numerisana lista
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=No disponible
notAUtf8File=No és un fitxer UTF-8
notConnected=No connectat
note=Nota
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=No utilitzes {1}?
numberedList=Llista numerada
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Není k dispozici
notAUtf8File=Není soubor v kódování UTF-8
notConnected=Nepřipojeno
note=Poznámka
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Nepoužíváte {1}?
numberedList=Číselný seznam
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Ikke tilgængelig
notAUtf8File=Ikke en UTF-8 fil
notConnected=Ikke forbundet
note=Bemærkning
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Bruger du ikke {1}?
numberedList=Nummereret liste
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Nicht verfügbar
notAUtf8File=Keine UTF-8 Datei
notConnected=Nicht verbunden
note=Hinweis
notion=Notion
notSatisfiedWithImport=Nicht zufrieden mit dem Import?
notUsingService=Sie verwenden nicht {1}?
numberedList=Nummerierte Liste
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Μη διαθέσιμο
notAUtf8File=Δεν είναι αρχείο UTF-8
notConnected=Μη συνδεδεμένο
note=Σημείωση
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Μη χρήση {1};
numberedList=Αριθμημένη λίστα
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=No disponible
notAUtf8File=No es un archivo UTF-8
notConnected=No conectado
note=Nota
notion=Notion
notSatisfiedWithImport=¿No está satisfecho con la importación?
notUsingService=¿No utiliza {1}?
numberedList=Lista numerada
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Pole saadaval
notAUtf8File=Pole UTF-8 fail
notConnected=Pole ühendust
note=Märge
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Ei kasuta {1}?
numberedList=Nummerdatud nimekiri
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Ez dago eskuragarri
notAUtf8File=Ez da UTF-8 fitxategia
notConnected=Konektatu gabe
note=Oharra
notion=Notion
notSatisfiedWithImport=Inportazioak ez zaitu gogobete?
notUsingService=Ez duzu {1} erabiltzen?
numberedList=Zerrenda zenbakitua
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=‫در دسترس نیست‬
notAUtf8File=‫فایل UTF-8 نیست‬
notConnected=‫متصل نیست‬
note=‫یادداشت‬
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=‫از {1} استفاده نمی کنید؟‬
numberedList=‫لیست شماره ای‬
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Ei käytettävissä
notAUtf8File=Ei UTF-8-tiedosto
notConnected=Ei yhteyttä
note=Merkintä
notion=Notion
notSatisfiedWithImport=Etkö ole tyytyväinen tuontiin?
notUsingService={1} ei käytössä?
numberedList=Numeroitu lista
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Hindi magagamit
notAUtf8File=Hindi UTF-8 na file
notConnected=Hindi konektado
note=Paalala
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Hindi gumagamit ng {1}?
numberedList=De-numerong listahan
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=N'est pas disponible
notAUtf8File=N'est pas un fichier UTF-8
notConnected=Non connecté
note=Remarque
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Pas en train d'utiliser {1}?
numberedList=Liste numérotée
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Non dispoñíbel
notAUtf8File=Non é un arquivo UTF-8
notConnected=Non está conectado
note=Nota
notion=Notion
notSatisfiedWithImport=Non che convence a importación?
notUsingService=Non se está a empregar {1}?
numberedList=Lista numerada
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=‫לא זמין‬
notAUtf8File=‫זהו אינו קובץ UTF-8
notConnected=‫לא מחובר‬
note=‫הערה‬
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=‫לא משתמש ב-{1}?
numberedList=‫רשימה ממוספרת‬
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Nem elérhető
notAUtf8File=Nem UTF-8 fájl
notConnected=Nincs csatlakoztatva
note=Jegyzet
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Nem használja a(z) {1}-t?
numberedList=Számozott lista
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=notAvailable
notAUtf8File=notAUtf8File
notConnected=notConnected
note=note
notion=notion
notSatisfiedWithImport=notSatisfiedWithImport
notUsingService=notUsingService
numberedList=numberedList
@ -1049,3 +1050,4 @@ pageLayers=pageLayers
customize=customize
firstPage=firstPage
curEditorState=curEditorState
noAnchorsFound=noAnchorsFound

View file

@ -516,6 +516,7 @@ notAvailable=Tidak tersedia
notAUtf8File=Bukan berkas UTF-8
notConnected=Tidak tersambung
note=Catatan
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Tidak menggunakan {1}?
numberedList=Daftar urutan nomor
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Non disponibile
notAUtf8File=Non un file UTF-8
notConnected=Non connesso
note=Nota
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Non stai utilizzando {1}?
numberedList=Lista numerata
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=不可
notAUtf8File=UTF-8ではありません
notConnected=接続されていません
note=備考
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService={1}を使っていませんか?
numberedList=番号付きリスト
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=이용 불가
notAUtf8File=UTF-8 파일이 아닙니다
notConnected=연결되지 않음
note=메모
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService={1} 서비스를 사용하지 않고 계십니까?
numberedList=글머리 번호
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Nepasiekiamas
notAUtf8File=Failo koduotė ne UTF-8
notConnected=Neprisijungta
note=Pastaba
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Ar nenorite naudoti {1}?
numberedList=Sunumeruotas sąrašas
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Tidak tersedia
notAUtf8File=Bukan fail UTF-8
notConnected=Tidak bersambung
note=Nota
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Tidak menggunakan {1}?
numberedList=Senarai bernombor
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Niet beschikbaar
notAUtf8File=Geen UTF-8-bestand
notConnected=Niet verbonden
note=Opmerking
notion=Notion
notSatisfiedWithImport=Niet tevreden over deze import?
notUsingService=Gebruikt u {1} niet?
numberedList=Genummerde lijst
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Ikke tilgjengelig
notAUtf8File=Ikke en UTF-8 fil
notConnected=Ikke tilkoblet
note=Notat
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Bruker du ikke {1}?
numberedList=Nummerert liste
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Niedostępny
notAUtf8File=To nie jest plik z kodowaniem UTF-8
notConnected=Niepołączony
note=Notka
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Nie używasz {1}?
numberedList=Lista numerowana
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Não está disponível
notAUtf8File=Não é um arquivo UTF-8
notConnected=Não conetado
note=Nota
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Não está utilizando {1}?
numberedList=Lista numerada
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Não está disponível
notAUtf8File=Não é um ficheiro UTF-8
notConnected=Não conetado
note=Nota
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Não está a utilizar {1}?
numberedList=Lista numerada
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Nu este disponibil
notAUtf8File=Nu este un fișier UTF-8
notConnected=Neconectat
note=Notă
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Nu foloseşti {1}?
numberedList=Listă numerotată
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Недоступно
notAUtf8File=Кодировка файла отличается от UTF-8
notConnected=Не подключен
note=Заметка
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Не хотите использовать {1}?
numberedList=Нумерованный список
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Nije dostupan
notAUtf8File=Not a UTF-8 file
notConnected=Bez konekcije
note=Beleška
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Ne koristite {1}?
numberedList=Numerisana lista
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Inte tillgänglig
notAUtf8File=Inte en UTF-8 fil
notConnected=Inte ansluten
note=Anteckning
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Använder inte {1}?
numberedList=Numrerad lista
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=ไม่ว่าง
notAUtf8File=ไม่ใช่ไฟล์ UTF-8
notConnected=ไม่มีการเชื่อมต่อ
note=บันทึกข้อความ
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=ไม่ได้ใช้อยู่ {1}?
numberedList=รายการที่ใส่เลขหมายแล้ว
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Müsait değil
notAUtf8File=UTF-8 dosyası değil
notConnected=Bağlı değil
note=Not
notion=Notion
notSatisfiedWithImport=İçe aktarımdan memnun değil misiniz?
notUsingService={1} kullanılmıyor mu?
numberedList=Numaralı liste
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Недоступно
notAUtf8File=Не є файлом UTF-8
notConnected=Не підключений
note=Примітка
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Не використовуєте {1}?
numberedList=Очислований список
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=Không khả dụng
notAUtf8File=Không phải tập tin định dạng UTF-8
notConnected=Chưa kết nối
note=Ghi chú
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Không sử dụng {1}?
numberedList=Danh sách đánh số
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=不可用
notAUtf8File=非 UTF-8 檔案
notConnected=未連線
note=備註
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=未使用 {1} ?
numberedList=編號清單
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -516,6 +516,7 @@ notAvailable=不可用
notAUtf8File=非 UTF-8 格式文件
notConnected=未连接
note=备注
notion=Notion
notSatisfiedWithImport=对导入不满意?
notUsingService=未使用 {1}?
numberedList=编号列表
@ -1049,3 +1050,4 @@ pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found

View file

@ -6,11 +6,11 @@ if (workbox)
workbox.precaching.precacheAndRoute([
{
"url": "js/app.min.js",
"revision": "c041db82ed8abb8847879971aedae3c6"
"revision": "9755cf32df14e4340e24c253a865a134"
},
{
"url": "js/extensions.min.js",
"revision": "4c100ac03de2866a13012d391896fe8c"
"revision": "f200da4699564c731c291bd441caca4c"
},
{
"url": "js/stencils.min.js",
@ -58,7 +58,7 @@ if (workbox)
},
{
"url": "js/viewer-static.min.js",
"revision": "cad6a55aea16d40dbe3128ac7fe1c105"
"revision": "e5ad69a35d812ed3233edb0eab9b677d"
},
{
"url": "connect/jira/editor-1-3-3.html",
@ -136,6 +136,10 @@ if (workbox)
"url": "connect/confluence/macroEditor-1-4-8.html",
"revision": "689fa63fd3a384662b4199f6e4a5b5c1"
},
{
"url": "connect/confluence/includeDiagram-1-4-8.js",
"revision": "89fbf5627db3c57633fbc3a64949e58b"
},
{
"url": "connect/confluence/macro-editor.js",
"revision": "26a726d518d3927274cfc35eff079e5f"
@ -174,231 +178,231 @@ if (workbox)
},
{
"url": "resources/dia.txt",
"revision": "de190b93a3c076cf40af8bb39e40dfa9"
"revision": "8733209e276e6a4a505ee5125f909975"
},
{
"url": "resources/dia_am.txt",
"revision": "a1fc7526ca5b8588a64e3377cf3120e2"
"revision": "ace5bc749217e6a77134f02390e4f1f1"
},
{
"url": "resources/dia_ar.txt",
"revision": "f9af9cb1752563f5acaf08e0b07f1da4"
"revision": "73fd084da82bcc0b5790448a3816b29d"
},
{
"url": "resources/dia_bg.txt",
"revision": "f57ae7fd8ccec11e7a3529b76af3d747"
"revision": "3a8e15d99e4b543a5e85655a5338c281"
},
{
"url": "resources/dia_bn.txt",
"revision": "68037102409786433d60ed3f859b642a"
"revision": "a3feffd9e506733e9a841b1ee10658c1"
},
{
"url": "resources/dia_bs.txt",
"revision": "f532a0707851af566347518d89c27b51"
"revision": "236811473861bbffaa18241ee4d8a97a"
},
{
"url": "resources/dia_ca.txt",
"revision": "d85e93465cca8b428c1120f0acd9ae28"
"revision": "5b950f2a4fc0746b94e9ac69f2ce8916"
},
{
"url": "resources/dia_cs.txt",
"revision": "06b339ee3b4085efc351b685e3f1354d"
"revision": "724f31a43ce428f5862ded71ef054dcf"
},
{
"url": "resources/dia_da.txt",
"revision": "acbd9a62a875b281829f905767128230"
"revision": "371d2351e0345d3abe502814b013f4df"
},
{
"url": "resources/dia_de.txt",
"revision": "09ed8e10641968d8de962911ef65da3f"
"revision": "3129c81de199ef19bf3f8bc61ac13f1a"
},
{
"url": "resources/dia_el.txt",
"revision": "38102572412a5b8faf10aa8344a9f83a"
"revision": "892f0e1063d1af586471379c47b87ab8"
},
{
"url": "resources/dia_eo.txt",
"revision": "ef1c6c2ed3fd4e0db2ee4e04f1187b21"
"revision": "7264f5f103d310564431fb0d491e5286"
},
{
"url": "resources/dia_es.txt",
"revision": "24cd67b6662d18541ccaaabbaad88f87"
"revision": "05d8118ad9b594c10bef527a78a87059"
},
{
"url": "resources/dia_et.txt",
"revision": "bb6a46eb04283b7283ae0c158df4700e"
"revision": "f433b2f1121fd1f626266ea2a27408db"
},
{
"url": "resources/dia_eu.txt",
"revision": "391aa438973d87ee6d5287e1bf838487"
"revision": "6b651aeadfaadf21009ac21372b067a6"
},
{
"url": "resources/dia_fa.txt",
"revision": "d28c5040da8bf451bc4aa051d7f1ab46"
"revision": "e4a5f3d81aeb1362fbd09387fed596c7"
},
{
"url": "resources/dia_fi.txt",
"revision": "748df968c98b7868181be88730fbd2b4"
"revision": "a35ce05dcc8814ff84d7b8234e61b55a"
},
{
"url": "resources/dia_fil.txt",
"revision": "9b60dc89bb166e7f45cdf39cb76a84d0"
"revision": "76ebe03a9b39af0dfd10cc9d32d5665c"
},
{
"url": "resources/dia_fr.txt",
"revision": "1a62e1035ea8a24080b8b26d6d6ff632"
"revision": "e58f690c8f149e0f696a779a7c0320e7"
},
{
"url": "resources/dia_gl.txt",
"revision": "674a3f4e374102420f5194f189bc3d5b"
"revision": "acb4aa76289adcf1f32bae208f748bb1"
},
{
"url": "resources/dia_gu.txt",
"revision": "78e1be784facbe7a8d6d9e159282c5b3"
"revision": "e6a3caf222fe156a973f59d5dfedcb07"
},
{
"url": "resources/dia_he.txt",
"revision": "889d173e04f3b4e7b32a2e415f4c69d7"
"revision": "35686a29265e71a690db39ccb7239d3d"
},
{
"url": "resources/dia_hi.txt",
"revision": "f901763535a205b60cc8389042e52b2b"
"revision": "3a6e7ed4790cfe5769bc9c1800e7d875"
},
{
"url": "resources/dia_hr.txt",
"revision": "ff16616e64764d1ab11a92c69e6c1626"
"revision": "538b746015c0657327a9e729a155d6e5"
},
{
"url": "resources/dia_hu.txt",
"revision": "5d9a49cbd35eb4f43d10e4af5056778f"
"revision": "d1f0be963d5c4e575e0f165fdcfa298a"
},
{
"url": "resources/dia_id.txt",
"revision": "40cdcbb9109b4b131b358740f2ddde13"
"revision": "45e7a5e2f179f042bc0ebc23a6f676d3"
},
{
"url": "resources/dia_it.txt",
"revision": "ab99719bd6e55e787960bd0507988d96"
"revision": "bace48a922fe3307752896d7c900f9b2"
},
{
"url": "resources/dia_ja.txt",
"revision": "4faaea87a512259d48e0a7fd275427a6"
"revision": "cd3f22d7d11ec0bde5cfcba668273d23"
},
{
"url": "resources/dia_kn.txt",
"revision": "4b64ea13e6955b8bb5a490776588148a"
"revision": "221958b7acc2488670290a6ef4390e4d"
},
{
"url": "resources/dia_ko.txt",
"revision": "9e1591491419d4fabc51c3ba3ff90120"
"revision": "ecf668d65f943c6acb0a94563e79c553"
},
{
"url": "resources/dia_lt.txt",
"revision": "6a375ff56f396a660e59bf4e46afcdc6"
"revision": "3f1e6ca57cf264e829f8892f77225cbc"
},
{
"url": "resources/dia_lv.txt",
"revision": "27667f03e94a77ac53bbafbadafa50e1"
"revision": "457cb8526d28b4fbd6c926b9665c5deb"
},
{
"url": "resources/dia_ml.txt",
"revision": "631140efb84d374c61b83e277bad4977"
"revision": "b326f760d3be39cb5e77f2f4b8b8a4b8"
},
{
"url": "resources/dia_mr.txt",
"revision": "e0d581fd2624b03a3deea989ae366e96"
"revision": "c4743ae7481e253e8e0909cf27ceeaaf"
},
{
"url": "resources/dia_ms.txt",
"revision": "879f0629abc5091b6a78ebc8d5b600d5"
"revision": "f77d4640df1b3dd7d0d67cb8203295b4"
},
{
"url": "resources/dia_my.txt",
"revision": "de190b93a3c076cf40af8bb39e40dfa9"
"revision": "8733209e276e6a4a505ee5125f909975"
},
{
"url": "resources/dia_nl.txt",
"revision": "96e55140a04b2415fd2f4ee3334b480f"
"revision": "da5d1549c389e8e7a2a18a29a7d95cba"
},
{
"url": "resources/dia_no.txt",
"revision": "c50f94d04d94bec6c93676826d377b85"
"revision": "5072c414b9287b37cd4fdccf5a9b0919"
},
{
"url": "resources/dia_pl.txt",
"revision": "6e88c8020d687f6ebce9e2e08ebac7c9"
"revision": "6acc732c2861dffc23a253ff0dd6761d"
},
{
"url": "resources/dia_pt-br.txt",
"revision": "35fb06e216b780dbaf96464e3c2dc90c"
"revision": "70d696ea980c3e3115cc43dc9ef4dc3b"
},
{
"url": "resources/dia_pt.txt",
"revision": "5aca1ccc4d3a2d7cfc168ea33493842e"
"revision": "fb0af09caad5ae27bfb858aa666dfee8"
},
{
"url": "resources/dia_ro.txt",
"revision": "2a1c1e4a553388708fc117fd340239c8"
"revision": "cd45bd63b6806b80949b0c7c5508f6bb"
},
{
"url": "resources/dia_ru.txt",
"revision": "973f0a7477fdbda66f5f15edf925b7c3"
"revision": "4f0c9aeded5da47b88c3f917fca54ced"
},
{
"url": "resources/dia_si.txt",
"revision": "de190b93a3c076cf40af8bb39e40dfa9"
"revision": "8733209e276e6a4a505ee5125f909975"
},
{
"url": "resources/dia_sk.txt",
"revision": "d33eb3bc05b94cbfe9ad2420ee8882a2"
"revision": "03edad1f1eff6bb1026e47e1921909db"
},
{
"url": "resources/dia_sl.txt",
"revision": "dc573e3fd72ba4c6d32d7882065d02c2"
"revision": "16f343699e4b881220119fe9551d1353"
},
{
"url": "resources/dia_sr.txt",
"revision": "97a823046ba86b73534a0f6b085d52cd"
"revision": "cfc44e5f8535b6d187e63f7b22a1ac1d"
},
{
"url": "resources/dia_sv.txt",
"revision": "be7f71786839774295d08c1767067d9e"
"revision": "1bbf251296bff1f7910fdf5a1b21eb36"
},
{
"url": "resources/dia_sw.txt",
"revision": "0341a01387ca54b6f2dd76ed2b8e30e4"
"revision": "dd58003191a30814dad67783bc6f995f"
},
{
"url": "resources/dia_ta.txt",
"revision": "98e410b8833291cd7ef265954410b5d2"
"revision": "cd8b95a81b04959b689ac30d56b77cd3"
},
{
"url": "resources/dia_te.txt",
"revision": "6c44b88ee6d6e7991c8277bc846880e6"
"revision": "9813a1ce0b0b8f98c25234f71bcd2830"
},
{
"url": "resources/dia_th.txt",
"revision": "b055d031e851b170bd3693499410f2ce"
"revision": "3183c27c1e51a55ab577d67648d3b96c"
},
{
"url": "resources/dia_tr.txt",
"revision": "8f25ae2a3cbb883b445a8da0405ea22c"
"revision": "d0980646e2ff1a05714f842b6d9e43cc"
},
{
"url": "resources/dia_uk.txt",
"revision": "1e86ccfec7303deab0ca13b3636bade4"
"revision": "ebf1e79c45e9f34b290f949493484176"
},
{
"url": "resources/dia_vi.txt",
"revision": "65d91d3054b75a53e380cdde8a1461da"
"revision": "e7e9b62dbb979bd79e38f13bee281ec1"
},
{
"url": "resources/dia_zh-tw.txt",
"revision": "fbdd9b26946969bceb2aad61931f2068"
"revision": "b3b0fa685db998e0cd35e79377457d35"
},
{
"url": "resources/dia_zh.txt",
"revision": "496906f6793ba62f3afcc07343f1fb1f"
"revision": "7a960dab42bbe246881e38f4f4a71816"
},
{
"url": "favicon.ico",