David Benson 4 anni fa
parent
commit
c063d9f03c
69 ha cambiato i file con 879 aggiunte e 805 eliminazioni
  1. 8 0
      ChangeLog
  2. 1 1
      VERSION
  3. 19 18
      src/main/webapp/js/app.min.js
  4. 2 2
      src/main/webapp/js/diagramly/Editor.js
  5. 1 1
      src/main/webapp/js/diagramly/TrelloClient.js
  6. 20 13
      src/main/webapp/js/onedrive/mxODPicker.js
  7. 4 4
      src/main/webapp/js/viewer-static.min.js
  8. 4 4
      src/main/webapp/js/viewer.min.js
  9. 1 1
      src/main/webapp/mxgraph/mxClient.js
  10. 2 1
      src/main/webapp/resources/dia.txt
  11. 2 1
      src/main/webapp/resources/dia_am.txt
  12. 2 1
      src/main/webapp/resources/dia_ar.txt
  13. 2 1
      src/main/webapp/resources/dia_bg.txt
  14. 2 1
      src/main/webapp/resources/dia_bn.txt
  15. 2 1
      src/main/webapp/resources/dia_bs.txt
  16. 2 1
      src/main/webapp/resources/dia_ca.txt
  17. 2 1
      src/main/webapp/resources/dia_cs.txt
  18. 2 1
      src/main/webapp/resources/dia_da.txt
  19. 2 1
      src/main/webapp/resources/dia_de.txt
  20. 2 1
      src/main/webapp/resources/dia_el.txt
  21. 2 1
      src/main/webapp/resources/dia_eo.txt
  22. 2 1
      src/main/webapp/resources/dia_es.txt
  23. 2 1
      src/main/webapp/resources/dia_et.txt
  24. 2 1
      src/main/webapp/resources/dia_eu.txt
  25. 2 1
      src/main/webapp/resources/dia_fa.txt
  26. 2 1
      src/main/webapp/resources/dia_fi.txt
  27. 2 1
      src/main/webapp/resources/dia_fil.txt
  28. 2 1
      src/main/webapp/resources/dia_fr.txt
  29. 2 1
      src/main/webapp/resources/dia_gl.txt
  30. 2 1
      src/main/webapp/resources/dia_gu.txt
  31. 2 1
      src/main/webapp/resources/dia_he.txt
  32. 2 1
      src/main/webapp/resources/dia_hi.txt
  33. 2 1
      src/main/webapp/resources/dia_hr.txt
  34. 2 1
      src/main/webapp/resources/dia_hu.txt
  35. 1 0
      src/main/webapp/resources/dia_i18n.txt
  36. 2 1
      src/main/webapp/resources/dia_id.txt
  37. 2 1
      src/main/webapp/resources/dia_it.txt
  38. 2 1
      src/main/webapp/resources/dia_ja.txt
  39. 2 1
      src/main/webapp/resources/dia_kn.txt
  40. 705 704
      src/main/webapp/resources/dia_ko.txt
  41. 2 1
      src/main/webapp/resources/dia_lt.txt
  42. 2 1
      src/main/webapp/resources/dia_lv.txt
  43. 2 1
      src/main/webapp/resources/dia_ml.txt
  44. 2 1
      src/main/webapp/resources/dia_mr.txt
  45. 2 1
      src/main/webapp/resources/dia_ms.txt
  46. 2 1
      src/main/webapp/resources/dia_my.txt
  47. 2 1
      src/main/webapp/resources/dia_nl.txt
  48. 2 1
      src/main/webapp/resources/dia_no.txt
  49. 2 1
      src/main/webapp/resources/dia_pl.txt
  50. 2 1
      src/main/webapp/resources/dia_pt-br.txt
  51. 2 1
      src/main/webapp/resources/dia_pt.txt
  52. 2 1
      src/main/webapp/resources/dia_ro.txt
  53. 2 1
      src/main/webapp/resources/dia_ru.txt
  54. 2 1
      src/main/webapp/resources/dia_si.txt
  55. 2 1
      src/main/webapp/resources/dia_sk.txt
  56. 2 1
      src/main/webapp/resources/dia_sl.txt
  57. 2 1
      src/main/webapp/resources/dia_sr.txt
  58. 2 1
      src/main/webapp/resources/dia_sv.txt
  59. 2 1
      src/main/webapp/resources/dia_sw.txt
  60. 2 1
      src/main/webapp/resources/dia_ta.txt
  61. 2 1
      src/main/webapp/resources/dia_te.txt
  62. 2 1
      src/main/webapp/resources/dia_th.txt
  63. 2 1
      src/main/webapp/resources/dia_tr.txt
  64. 2 1
      src/main/webapp/resources/dia_uk.txt
  65. 2 1
      src/main/webapp/resources/dia_vi.txt
  66. 2 1
      src/main/webapp/resources/dia_zh-tw.txt
  67. 1 0
      src/main/webapp/resources/dia_zh.txt
  68. 1 1
      src/main/webapp/service-worker.js
  69. 1 1
      src/main/webapp/service-worker.js.map

+ 8 - 0
ChangeLog

@@ -1,3 +1,11 @@
+17-NOV-2021: 15.8.1
+
+- Changes Trello API key
+- Adds drawiolib files in OneDrive inline picker
+- Fixes preview for libraries in OneDrive picker
+- Fixes connectable for multiple vertices https://github.com/jgraph/drawio/issues/2383
+- Update to kr translations, thanks to Hochul cho
+
 17-NOV-2021: 15.8.0
 
 - Switches to command line deployment script

+ 1 - 1
VERSION

@@ -1 +1 @@
-15.8.0
+15.8.1

File diff suppressed because it is too large
+ 19 - 18
src/main/webapp/js/app.min.js


+ 2 - 2
src/main/webapp/js/diagramly/Editor.js

@@ -457,13 +457,13 @@
         {name: 'portConstraintRotation', dispName: 'Rotate Constraint', type: 'bool', defVal: false},
         {name: 'connectable', dispName: 'Connectable', type: 'bool', getDefaultValue: function(state, format)
         {
-        	var cell = (state.vertices.length == 1 && state.edges.length == 0) ? state.vertices[0] : null;
+        	var cell = (state.vertices.length > 0 && state.edges.length == 0) ? state.vertices[0] : null;
         	var graph = format.editorUi.editor.graph;
         	
         	return graph.isCellConnectable(cell);
         }, isVisible: function(state, format)
         {
-    		return state.vertices.length == 1 && state.edges.length == 0;
+    		return state.vertices.length > 0 && state.edges.length == 0;
         }},
         {name: 'allowArrows', dispName: 'Allow Arrows', type: 'bool', defVal: true},
         {name: 'snapToPoint', dispName: 'Snap to Point', type: 'bool', defVal: false},

+ 1 - 1
src/main/webapp/js/diagramly/TrelloClient.js

@@ -12,7 +12,7 @@ TrelloClient = function(editorUi)
 mxUtils.extend(TrelloClient, DrawioClient);
 
 TrelloClient.prototype.key = (window.location.hostname == 'test.draw.io') ?
-	'e73615c79cf7e381aef91c85936e9553' : 'e73615c79cf7e381aef91c85936e9553';
+	'e89d109082298ce91f6576f82f458551' : 'e89d109082298ce91f6576f82f458551';
 
 TrelloClient.prototype.baseUrl = 'https://api.trello.com/1/';
 

+ 20 - 13
src/main/webapp/js/onedrive/mxODPicker.js

@@ -310,7 +310,9 @@ function mxODPicker(container, previewFn, getODFilesList, getODFileInfo, getRece
 						}
 						
 						var doc = mxUtils.parseXml(cnt);
-						var node = Editor.extractGraphModel(doc.documentElement);
+
+						var node = (doc.documentElement.nodeName == 'mxlibrary') ?
+							doc.documentElement : Editor.extractGraphModel(doc.documentElement);
 
 						if (node != null)
 						{
@@ -378,14 +380,12 @@ function mxODPicker(container, previewFn, getODFilesList, getODFileInfo, getRece
 			spinner.stop();
 		};
 		
-		if (file == null || file.folder) 
+		if (file == null || file.folder || /\.drawiolib$/.test(file.name)) 
 		{
 			showRenderMsg(mxResources.get('noPreview'));
 			return;
 		}
 		
-		spinner.spin(prevDiv);
-		
 		try
 		{
 			// Workaround for parentReference access
@@ -395,20 +395,27 @@ function mxODPicker(container, previewFn, getODFilesList, getODFileInfo, getRece
 			}
 
 			loadingPreviewFile = file;
-			
+			spinner.spin(prevDiv);
+		
 			getDrawioFileDoc(file, function(doc)
 			{
+				spinner.stop();
+
 				if (loadingPreviewFile != file)
 				{
 					return;
 				}
-
-				var diagrams = doc.getElementsByTagName('diagram');
-				curViewer = AspectDialog.prototype.createViewer(prevDiv,
-						diagrams.length == 0? doc.documentElement : diagrams[0],
-						null, 'transparent');
-
-				spinner.stop();
+				else if (doc.documentElement.nodeName == 'mxlibrary')
+				{
+					showRenderMsg(mxResources.get('noPreview'));
+				}
+				else
+				{
+					var diagrams = doc.getElementsByTagName('diagram');
+					curViewer = AspectDialog.prototype.createViewer(prevDiv,
+							diagrams.length == 0? doc.documentElement : diagrams[0],
+							null, 'transparent');
+				}
 			}, 
 			function() //If the file is not a draw.io diagram
 			{
@@ -697,7 +704,7 @@ function mxODPicker(container, previewFn, getODFilesList, getODFileInfo, getRece
 				
 				if (file.folder || mimeType == 'text/html' || mimeType == 'text/xml' || mimeType == 'application/xml' || mimeType == 'image/png' 
 					|| /\.svg$/.test(file.name) || /\.html$/.test(file.name) || /\.xml$/.test(file.name) || /\.png$/.test(file.name)
-					|| /\.drawio$/.test(file.name))
+					|| /\.drawio$/.test(file.name) || /\.drawiolib$/.test(file.name))
 				{
 					potentialDrawioFiles.push(file);
 				}

File diff suppressed because it is too large
+ 4 - 4
src/main/webapp/js/viewer-static.min.js


File diff suppressed because it is too large
+ 4 - 4
src/main/webapp/js/viewer.min.js


File diff suppressed because it is too large
+ 1 - 1
src/main/webapp/mxgraph/mxClient.js


+ 2 - 1
src/main/webapp/resources/dia.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_am.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ar.txt

@@ -282,7 +282,7 @@ feedbackSent=‫تم إرسال التعليق بنجاح.‬
 floorplans=Floorplans
 file=‫ملف‬
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_bg.txt

@@ -282,7 +282,7 @@ feedbackSent=Обратната връзка е изпратена успешн
 floorplans=План на помещенията
 file=Файл
 fileChangedOverwriteDialog=Файлът беше променен. Презаписване на промените?
-fileChangedSyncDialog=Файлът е променен. Искате ли да синхронизирате тези промени?
+fileChangedSyncDialog=Файлът е променен.
 fileChangedSync=Файлът е променен. Щракнете тук, за да синхронизирате.
 overwrite=Презаписване
 synchronize=Синхронизиране
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_bn.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_bs.txt

@@ -282,7 +282,7 @@ feedbackSent=Povratna informacija uspješno poslata.
 floorplans=Tlocrt
 file=Fajl
 fileChangedOverwriteDialog=Fajl izmjenjen. Piši preko izmjena. 
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Piši preko
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ca.txt

@@ -282,7 +282,7 @@ feedbackSent=S'ha enviat la seva opinió correctament.
 floorplans=Plànols
 file=Fitxer
 fileChangedOverwriteDialog=S'ha modificat el fitxer. Esteu segur que voleu desar el fitxer i sobreescriure els canvis?
-fileChangedSyncDialog=S'ha modificat el fitxer. Esteu segur que voleu sincronitzar els canvis? 
+fileChangedSyncDialog=S'ha modificat el fitxer.
 fileChangedSync=S'ha modificat el fitxer. Feu clic aquí per sincronitzar.
 overwrite=Sobreescriu
 synchronize=Sincronitza
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_cs.txt

@@ -282,7 +282,7 @@ feedbackSent=Zpětná vazba úspěšně odeslána
 floorplans=Půdorysy
 file=Soubor
 fileChangedOverwriteDialog=Soubor by změněn. Přepsat změny?
-fileChangedSyncDialog=Soubor byl změněn. Chcete tyto změny synchronizovat?
+fileChangedSyncDialog=Soubor byl změněn.
 fileChangedSync=Soubor byl změněn. Pokud chcete synchronizovat, klikněte sem.
 overwrite=Přepsat
 synchronize=Synchronizovat
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_da.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback blev sendt.
 floorplans=Grundplan
 file=Fil
 fileChangedOverwriteDialog=Filen blev ændret. Overskriv ændringer?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overskriv
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_de.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback erfolgreich versendet.
 floorplans=Grundriss
 file=Datei
 fileChangedOverwriteDialog=Die Datei wurde geändert. Möchten Sie die Datei speichern und die Änderungen überschreiben?
-fileChangedSyncDialog=
 Die Datei wurde geändert. Klicken Sie auf "Ja", um die Änderungen zusammenzuführen, oder auf "Nein", um sie zu überschreiben.
 
+fileChangedSyncDialog=Die Datei wurde geändert.
 fileChangedSync=Die Datei wurde geändert. Hier klicken um zu synchronisieren.
 overwrite=Überschreiben
 synchronize=Synchronisieren
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_el.txt

@@ -282,7 +282,7 @@ feedbackSent=Η ανατροφοδότηση εστάλει με επιτυχί
 floorplans=Κατόψεις
 file=Αρχείο
 fileChangedOverwriteDialog=Το αρχείο τροποποιήθηκε. Θέλετε να αποθηκεύσετε το αρχείο και να αντικατασταθούν οι αλλαγές;
-fileChangedSyncDialog=Το αρχείο τροποποιήθηκε. Θέλετε να συγχρονιστούν οι αλλαγές;
+fileChangedSyncDialog=Το αρχείο τροποποιήθηκε.
 fileChangedSync=Το αρχείο τροποποιήθηκε. Επιλέξτε εδώ για συγχρονισμό.
 overwrite=Αντικατάσταση
 synchronize=Συγχρονισμός
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_eo.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=Dosiero
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_es.txt

@@ -282,7 +282,7 @@ feedbackSent=Su opinión ha sido enviada exitosamente.
 floorplans=Planos
 file=Archivo
 fileChangedOverwriteDialog=El archivo fue modificado. ¿Sobrescribir los cambios?
-fileChangedSyncDialog=El archivo fue modificado. ¿Desea sincronizar los cambios?
+fileChangedSyncDialog=El archivo fue modificado.
 fileChangedSync=El archivo fue modificado. Presione para sincronizar.
 overwrite=Sobrescribir
 synchronize=Sincronizar
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_et.txt

@@ -282,7 +282,7 @@ feedbackSent=Tagasiside edukalt saadetud.
 floorplans=Plaanid
 file=Fail
 fileChangedOverwriteDialog=Faili muudeti. Kirjutab muudatused üle?
-fileChangedSyncDialog=Faili on muudetud. Kas soovid need muudatused ühildada?
+fileChangedSyncDialog=Faili on muudetud.
 fileChangedSync=Faili on muudetud. Kliki siin et muudatused ühildada.
 overwrite=Kirjuta üle
 synchronize=Sünkroniseeri
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_eu.txt

@@ -282,7 +282,7 @@ feedbackSent=Iruzkina behar bezala bidali da.
 floorplans=Planoak
 file=Fitxategia
 fileChangedOverwriteDialog=Fitxategia aldatu da. Nahi al duzu fitxategia gorde eta aldaketa horiekin gainidaztea?
-fileChangedSyncDialog=Fitxategia aldatu da. Nahi al duzu aldaketa horiek sinkronizatzea?
+fileChangedSyncDialog=Fitxategia aldatu da.
 fileChangedSync=Fitxategia gordetua. Egin klik hemen sinkronizatzeko
 overwrite=Gainidatzi
 synchronize=Sinkronizatu
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=Ezin dituzu diagramak editatu plataforma mugikorrean, mesedez erab
 website=Webgunea
 check4Updates=Bilat eguneraketak
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_fa.txt

@@ -282,7 +282,7 @@ feedbackSent=‫نظرات با موفقیت ارسال شد.‬
 floorplans=‫طرح کف‬
 file=‫فایل‬
 fileChangedOverwriteDialog=‫فایل تغییر داده شده است. این تغییرات بر روی نسخه فعلی ذخیره شود؟ ‬
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=‫ذخیره بر روی نسخه فعلی‬
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_fi.txt

@@ -282,7 +282,7 @@ feedbackSent=Palaute lähetetty onnistuneesti.
 floorplans=Pohjapiirrokset
 file=Tiedosto
 fileChangedOverwriteDialog=Tiedostoa on muokattu. Haluatko tallentaa tiedoston ja korvata muutokset?
-fileChangedSyncDialog=Tiedostoa on muokattu. Haluatko synkronoida nämä muutokset?
+fileChangedSyncDialog=Tiedostoa on muokattu.
 fileChangedSync=Tiedostoa on muokattu. Napsauta tätä synkronoidaksesi.
 overwrite=Korvaa
 synchronize=Synkronoi
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=Et voi muokata kaavioita mobiilialustalla, käytä työpöytäohje
 website=Verkkosivusto
 check4Updates=Tarkista päivitykset
 attWriteFailedRetry={1}: Liitteen kirjoitus epäonnistui, yritetään uudelleen {2} sekunnin kuluttua...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_fil.txt

@@ -282,7 +282,7 @@ feedbackSent=Ang Kumento ay matagumpay na naipadala
 floorplans=Mga Floorplan
 file=File
 fileChangedOverwriteDialog=Ang File ay nabago. Sapawan ang mga pagbabago?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Sapawan
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_fr.txt

@@ -282,7 +282,7 @@ feedbackSent=Commentaire envoyé.
 floorplans=Plans de sol
 file=Fichier
 fileChangedOverwriteDialog=Fichier modifié ; écraser ces changements ?
-fileChangedSyncDialog=Fichier modifié ; le synchroniser ?
+fileChangedSyncDialog=Fichier modifié.
 fileChangedSync=Fichier modifié ; cliquer ici pour le synchroniser.
 overwrite=Ecraser
 synchronize=Synchroniser
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_gl.txt

@@ -282,7 +282,7 @@ feedbackSent=Comentarios enviados correctamente.
 floorplans=Planos de planta
 file=Arquivo
 fileChangedOverwriteDialog=O arquivo foi modificado. Queres gardar o arquivo e sobreescribir as alteracións?
-fileChangedSyncDialog=O arquivo foi modificado. Queres sincronizar as alteracións?
+fileChangedSyncDialog=O arquivo foi modificado.
 fileChangedSync=O arquivo foi modificado. Preme aquí para sincronizar.
 overwrite=Sobreescribir.
 synchronize=Sincronizar
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_gu.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_he.txt

@@ -282,7 +282,7 @@ feedbackSent=‫המשוב נשלח בהצלחה.‬
 floorplans=‫תכניות קומה‬
 file=‫קובץ‬
 fileChangedOverwriteDialog=‫נערכו שינויים בקובץ. להחליף את השינויים?‬
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=‫להחליף‬
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_hi.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_hr.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_hu.txt

@@ -282,7 +282,7 @@ feedbackSent=Visszajelzés sikeresen elküldve.
 floorplans=Alaprajzok
 file=Fájl
 fileChangedOverwriteDialog=A fájl megváltozott. Átírja a változásokat?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Átír
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 1 - 0
src/main/webapp/resources/dia_i18n.txt

@@ -1169,3 +1169,4 @@ viewerOnlyMsg=viewerOnlyMsg
 website=website
 check4Updates=check4Updates
 attWriteFailedRetry=attWriteFailedRetry
+confPartialPageList=confPartialPageList

+ 2 - 1
src/main/webapp/resources/dia_id.txt

@@ -282,7 +282,7 @@ feedbackSent=Umpan balik berhasil dikirim.
 floorplans=Denah lantai
 file=Berkas
 fileChangedOverwriteDialog=Berkas diubah. Timpa perubahan?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Timpa
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_it.txt

@@ -282,7 +282,7 @@ feedbackSent=Segnalazione inviata correttamente.
 floorplans=Piantine
 file=File
 fileChangedOverwriteDialog=Il file è stato cambiato. Vuoi sovrascrivere le modifiche?
-fileChangedSyncDialog=Il file è stato modificato. Vuoi sincronizzare le modifiche?
+fileChangedSyncDialog=Il file è stato modificato.
 fileChangedSync=Il file è stato modificato. Fai clic qui per sincronizzare le modifiche.
 overwrite=Sovrascrivi
 synchronize=Sincronizza
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ja.txt

@@ -282,7 +282,7 @@ feedbackSent=フィードバックは正しく送信されました。
 floorplans=フロアプラン
 file=ファイル
 fileChangedOverwriteDialog=ファイルが変更されました。変更を上書きしますか。
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=上書き
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_kn.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

File diff suppressed because it is too large
+ 705 - 704
src/main/webapp/resources/dia_ko.txt


+ 2 - 1
src/main/webapp/resources/dia_lt.txt

@@ -282,7 +282,7 @@ feedbackSent=Atsiliepimai sėkmingai išsiųsti.
 floorplans=Aukštų planai
 file=Failas
 fileChangedOverwriteDialog=Failas buvo modifikuotas. Ar norite išsaugoti failą ir perrašyti tuos pakeitimus?
-fileChangedSyncDialog=Failas buvo modifikuotas. Ar norite sinchronizuoti tuos pakeitimus?
+fileChangedSyncDialog=Failas buvo modifikuotas.
 fileChangedSync=Failas buvo modifikuotas. Spustelėkite čia norėdami sinchronizuoti.
 overwrite=Perrašyti
 synchronize=Sinchronizuoti
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_lv.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ml.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_mr.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ms.txt

@@ -282,7 +282,7 @@ feedbackSent=Maklum balas berjaya dihantar.
 floorplans=Pelan lantai
 file=Fail
 fileChangedOverwriteDialog=Fail telah diubah. Tulis ganti perubahan?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Tulis ganti
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_my.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_nl.txt

@@ -282,7 +282,7 @@ feedbackSent=Opmerkingen verstuurd.
 floorplans=Plattegronden
 file=Bestand
 fileChangedOverwriteDialog=Bestand is gewijzigd. Wijzigingen overschrijven?
-fileChangedSyncDialog=Het bestand is gewijzigd. Wilt u deze aanpassingen synchroniseren?
+fileChangedSyncDialog=Het bestand is gewijzigd.
 fileChangedSync=Het bestand is gewijzigd. Wilt u deze aanpassingen synchroniseren?
 overwrite=Overschrijven
 synchronize=Synchroniseren
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_no.txt

@@ -282,7 +282,7 @@ feedbackSent=Tilbakemelding sendt.
 floorplans=Plantegninger
 file=Fil
 fileChangedOverwriteDialog=Filen ble endret. Vil du overskrive endringene?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overskriv
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_pl.txt

@@ -282,7 +282,7 @@ feedbackSent=Przesyłanie opinii powiodło się.
 floorplans=Rzuty pomieszczeń
 file=Plik
 fileChangedOverwriteDialog=Plik został zmieniony. Nadpisać zmiany?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Nadpisz
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_pt-br.txt

@@ -282,7 +282,7 @@ feedbackSent=Comentário enviado com sucesso.
 floorplans=Planta baixa
 file=Arquivo
 fileChangedOverwriteDialog=Esse arquivo foi editado. Deseja salvar o arquivo e substituir trechos com as alterações externas?
-fileChangedSyncDialog=Esse arquivo foi editado. Deseja sincronizar com a edição mais recente?
+fileChangedSyncDialog=Esse arquivo foi editado.
 fileChangedSync=Esse arquivo foi editado. Clique aqui para sincronizar.
 overwrite=Substituir
 synchronize=Sincronizar
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_pt.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback enviado com sucesso.
 floorplans=Plantas
 file=Ficheiro
 fileChangedOverwriteDialog=Ficheiro foi modificado. Sobrepor modificações?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Sobrepor
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ro.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback trimis cu succes.
 floorplans=Planuri
 file=Fișier
 fileChangedOverwriteDialog=Fișierul a fost modificat. Suprascrieți modificările?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Suprascrieți.
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ru.txt

@@ -282,7 +282,7 @@ feedbackSent=Сообщение для обратной связи успешн
 floorplans=Планы помещений
 file=Файл
 fileChangedOverwriteDialog=Файл был изменён. Заменить файл новой версией?
-fileChangedSyncDialog=Файл был изменён. Синхронизировать внесённые изменения?
+fileChangedSyncDialog=Файл был изменён.
 fileChangedSync=Файл был изменён. Нажмите здесь чтобы синхронизировать изменения
 overwrite=Заменить
 synchronize=Объединить
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_si.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_sk.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_sl.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_sr.txt

@@ -282,7 +282,7 @@ feedbackSent=Povratna informacija je uspešno poslata.
 floorplans=Tlocrt
 file=Datoteka
 fileChangedOverwriteDialog=Datoteka je promenjena. Pregazi izmene?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Prebriši
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_sv.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback har skickats korrekt.
 floorplans=Planritningar
 file=Fil
 fileChangedOverwriteDialog=Filen har ändrats. Vill du skriva över?
-fileChangedSyncDialog=Filen har ändrats. Vill du synkronisera ändringar?
+fileChangedSyncDialog=Filen har ändrats.
 fileChangedSync=Filen har ändrats. Klicka här för att synkronisera.
 overwrite=Skriva över
 synchronize=Synkronisera
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_sw.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_ta.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_te.txt

@@ -282,7 +282,7 @@ feedbackSent=Feedback successfully sent.
 floorplans=Floorplans
 file=File
 fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Overwrite
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_th.txt

@@ -282,7 +282,7 @@ feedbackSent=การส่งผลตอบรับเสร็จสมบ
 floorplans=แปลนอาคาร
 file=ไฟล์
 fileChangedOverwriteDialog=มีการเปลี่ยนแปลงไฟล์แล้ว ต้องการเปลี่ยนแปลงทับหรือไม่
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=เขียนทับ
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_tr.txt

@@ -282,7 +282,7 @@ feedbackSent=Geri-bildirim başarıyla gönderildi.
 floorplans=Kat planları
 file=Dosya
 fileChangedOverwriteDialog=Dosya değiştirildi. Değişiklikleri yinelemek ister misiniz?
-fileChangedSyncDialog=Dosya değiştirldi. Değişiklikleri senkronize etmek ister misiniz?
+fileChangedSyncDialog=Dosya değiştirldi.
 fileChangedSync=Dosya değiştirildi. Değişiklikleri senkronize etmek için buraya tıklayınız.
 overwrite=Yinele
 synchronize=Senkronize et
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_uk.txt

@@ -282,7 +282,7 @@ feedbackSent=Повідомлення відгуку успішно надісл
 floorplans=Плани приміщень
 file=Файл
 fileChangedOverwriteDialog=Цей файл було змінено. Перезаписати зміни?
-fileChangedSyncDialog=Цей файл було змінено. Чи бажаєте успільнити ці зміни?
+fileChangedSyncDialog=Цей файл було змінено.
 fileChangedSync=Цей  файл змінено. Кляцніть тут щоб успільнити.
 overwrite=Перезаписати
 synchronize=Успільнити.
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_vi.txt

@@ -282,7 +282,7 @@ feedbackSent=Gửi phản hồi thành công.
 floorplans=Nội thất
 file=Tập tin
 fileChangedOverwriteDialog=Tập tin đã được thay đổi. Ghi đè các thay đổi?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=Ghi đè
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 2 - 1
src/main/webapp/resources/dia_zh-tw.txt

@@ -282,7 +282,7 @@ feedbackSent=回饋傳送成功。
 floorplans=平面圖
 file=檔案
 fileChangedOverwriteDialog=檔案已更改。是否覆蓋更改?
-fileChangedSyncDialog=The file has been modified. Click 'Yes' to merge changes or 'No' to overwrite.
+fileChangedSyncDialog=The file has been modified.
 fileChangedSync=The file has been modified. Click here to synchronize.
 overwrite=覆蓋
 synchronize=Synchronize
@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

+ 1 - 0
src/main/webapp/resources/dia_zh.txt

@@ -1169,3 +1169,4 @@ viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use th
 website=Website 
 check4Updates=Check for updates
 attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
+confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only. 

File diff suppressed because it is too large
+ 1 - 1
src/main/webapp/service-worker.js


File diff suppressed because it is too large
+ 1 - 1
src/main/webapp/service-worker.js.map