diff --git a/apps/api/wopi/convert-and-edit-wopi.ejs b/apps/api/wopi/convert-and-edit-wopi.ejs index 5f2ab0ccd..a2d411c55 100644 --- a/apps/api/wopi/convert-and-edit-wopi.ejs +++ b/apps/api/wopi/convert-and-edit-wopi.ejs @@ -28,12 +28,12 @@ html { height: 100%; width: 100%; + font-family: Arial, Helvetica, "Helvetica Neue", sans-serif; } body { background: #fff; color: #333; - font-family: Arial, Tahoma,sans-serif; font-size: 12px; font-weight: normal; height: 100%; @@ -45,58 +45,157 @@ body { .form { height: 100%; + display: flex; + align-items: center; + justify-content: center; } -div { - margin: 0; - padding: 0; -} - -.app-error-panel { - position: absolute; - width: 100%; - height: 100%; - top: 0; - background-color: #f4f4f4; - z-index: 10; -} - -.message-block { - display: inline-block; - vertical-align: middle; - width: 100%; -} - -.message-inner { - width: 550px; - margin: auto; - padding: 30px; - background-color: #e3e3e3; - text-align: center; +.content { + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-end; } .title { - font-size: 24px; - margin: 0 0 14px; + font-style: normal; + font-weight: 400; + font-size: 18px; + line-height: 160%; + display: flex; + align-items: center; + text-align: center; + + color: #333333; } -.text { - font-size: 16px; +.description { + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 160%; + + display: flex; + align-items: center; + text-align: center; + + margin-top: 8px; + + color: #333333; } +.icon { + margin-top: 49px; + width: 34px; + height: 48px; +} + +.icon-succes { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAYAAAB0WahSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAENSURBVHgB7ZnBDYJAEEX/oN4pQTvQmxcTO7EEsQLtQKyA2AF2QOLFm5ZAB3InZB0WRDOJXCQbNPMSkmX3wGMyn8NAYEywHMMUES+nfPlwRwzKNxReUqolro4F3slYZjZkib2VIByBQUBhksEBtgAodjBYwYwiMuuFsSeUT8oSwSEs43Mh7rzMvOema4nqmU31fQ89QUUkKiLpjciw7bD5xnQEHc706ew3KtL2Bl2jzSrR1Eg0NRJtVommRqKpkWizSjQ1Ek2NRJtV8n+p+bafNDUSbVaJikhURFKK2FmnHb46ppo+v0Ru1W6xN8F8DEfUU+dtdYNTb34KeDyGTkGDGWvFcAu3hElKiXL8/gBwm2fFT+wjuQAAAABJRU5ErkJggg=="); + +} + +.icon-error { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAwCAYAAAB0WahSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEBSURBVHgB7ZfRDYIwEIavtAM4QkfpA3uoE6gTiJswCIl99NEJSNyAAUhqz0BiGoOoVyjmvoTk6EP7c/ffAQDM0snz3OEFkciAiQBF2bg0DBmfGPIb8yZjVgEz02cuo5gBFHsomJmqqt5XhepFN2YfnqzMYhC9m1+1EfWn4dAZyXTN4EAbNWyISCYjLCRk0CNTdE0Pd00ImzXk/7rmVz9x14SwWUNYSAgLCUEhDQbGmBVMzPOZKOSKgVJqDxMjpVx3ocXfCeODc7dwaNu2tNY2EBHMhH/wnQ8LvHfObR6T04vBhSPMw8lP8EJiVNe11VrfhBBYMw3xwYxf/LX1IkpcuAMGtltNGCBFYAAAAABJRU5ErkJggg=="); +} + +#error .icon { + margin-bottom: 107px; +} + +.spiner-image { + background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDQ0IiBzdHJva2Utd2lkdGg9IjEuNSIgcj0iNy4yNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTYwJSwgNDAlIiAvPjwvc3ZnPg=="); + margin-top: 49px; + width: 48px; + height: 48px; +} + +#spiner { + animation-duration: .8s; + animation-name: rotation; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + +@keyframes rotation { + from { + transform: rotate(0); + } + + to { + transform: rotate(360deg); + } +} + +.button { + margin-top: 50px; + cursor: pointer; + display: inline-block; + border-width: 0px; + border-radius: 3px; + font-weight: 600; + line-height: 133%; + letter-spacing: 0.04em; + padding: 19px 24px; + text-align: center; + text-transform: uppercase; +} + +button:disabled, button[disabled]{ + cursor: default; +} + +.button.gray { + color: #AAAAAA; + background: #444444; +} + + +.button.orange { + color: #FFFFFF; + border: 1px solid #FF6F3D; + background: #FF6F3D; +} + +.button.orange:not(:disabled):hover { + background: #ff7a4b; +} + +.button.orange:disabled, .button.orange[disabled]{ + background: #EDC2B3; + border: 1px solid #EDC2B3; + cursor: default; +} + + + -
- Converting your file so you can edit it... - +
+
+
+
Converting your file so you can edit it...
+ + +
+
+ + +
-
- diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html index 1e5070650..869023d30 100644 --- a/apps/documenteditor/main/index_loader.html +++ b/apps/documenteditor/main/index_loader.html @@ -273,6 +273,7 @@ + diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 5fde1d311..61c298d5a 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -187,6 +187,8 @@ "Common.define.smartArt.textGridMatrix": "Matriu de quadrícula", "Common.define.smartArt.textGroupedList": "Llista agrupada", "Common.Translation.textMoreButton": "Més", + "Common.Translation.tipFileLocked": "El document està bloquejat per editar-lo. Podeu fer canvis i desar-los com a còpia local més tard.", + "Common.Translation.tipFileReadOnly": "El document és només de lectura, l'edició està bloquejada. Podeu fer canvis i desar la còpia local més tard.", "Common.Translation.warnFileLocked": "No pots editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", @@ -1000,6 +1002,8 @@ "DE.Controllers.Main.warnProcessRightsChange": "No tens permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Ves al començament del document", + "DE.Controllers.Print.txtCustom": "Personalització", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Introduïu un sol número de pàgina o un sol interval de pàgines (per exemple, 5-12). O podeu imprimir en PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Advertiment", "DE.Controllers.Search.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", "DE.Controllers.Search.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", @@ -2461,6 +2465,11 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Estableix només la vora superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sense vores", + "DE.Views.PrintWithPreview.txtAllPages": "Totes les pàgines", + "DE.Views.PrintWithPreview.txtBottom": "Inferior", + "DE.Views.PrintWithPreview.txtCurrentPage": "Pàgina actual", + "DE.Views.PrintWithPreview.txtCustom": "Personalització", + "DE.Views.PrintWithPreview.txtCustomPages": "Impressió personalitzada", "DE.Views.ProtectDialog.textComments": "Comentaris", "DE.Views.ProtectDialog.textForms": "Omplir formularis", "DE.Views.ProtectDialog.txtAllow": "Només permet aquest tipus d'edició del document", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 2b8497a10..23795ec4f 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -125,6 +125,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Scatter med jævne linjer og markører", "Common.define.chartData.textStock": "Aktie", "Common.define.chartData.textSurface": "Overflade", + "Common.define.smartArt.textAccentProcess": "(intet)", "Common.Translation.warnFileLocked": "Dokumentet er i brug af en anden applikation. Du kan fortsætte med at redigere og gemme en kopi.", "Common.Translation.warnFileLockedBtnEdit": "Opret en kopi", "Common.Translation.warnFileLockedBtnView": "Åben for visning", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 62b78faba..2b8ac27e3 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Vertikale Bildliste", "Common.define.smartArt.textVerticalProcess": "Vertikaler Prozess", "Common.Translation.textMoreButton": "Mehr", + "Common.Translation.tipFileLocked": "Das Dokument ist für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die Datei später als lokale Kopie speichern.", + "Common.Translation.tipFileReadOnly": "Das Dokument ist schreibgeschützt und für die Bearbeitung gesperrt. Sie können Änderungen vornehmen und die lokale Kopie später speichern.", "Common.Translation.warnFileLocked": "Die Datei wird in einer anderen App bearbeitet. Sie können die Bearbeitung fortsetzen und die Kopie dieser Datei speichern.", "Common.Translation.warnFileLockedBtnEdit": "Kopie erstellen", "Common.Translation.warnFileLockedBtnView": "Schreibgeschützt öffnen", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Symbolleiste ausblenden", "Common.Views.Header.textHideLines": "Lineale verbergen", "Common.Views.Header.textHideStatusBar": "Statusleiste verbergen", + "Common.Views.Header.textReadOnly": "Schreibgeschützt", "Common.Views.Header.textRemoveFavorite": "Aus Favoriten entfernen", "Common.Views.Header.textShare": "Freigeben", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Datei herunterladen", "Common.Views.Header.tipGoEdit": "Aktuelle Datei bearbeiten", "Common.Views.Header.tipPrint": "Datei drucken", + "Common.Views.Header.tipPrintQuick": "Schnelldruck", "Common.Views.Header.tipRedo": "Wiederholen", "Common.Views.Header.tipSave": "Speichern", "Common.Views.Header.tipSearch": "Suchen", @@ -829,6 +833,7 @@ "DE.Controllers.Main.textRequestMacros": "Ein Makro stellt eine Anfrage an die URL. Möchten Sie die Anfrage an die %1 zulassen?", "DE.Controllers.Main.textShape": "Form", "DE.Controllers.Main.textStrict": "Formaler Modus", + "DE.Controllers.Main.textTryQuickPrint": "Sie haben Schnelldruck gewählt: Das gesamte Dokument wird auf dem zuletzt gewählten oder dem Standarddrucker gedruckt.
Sollen Sie fortfahren?", "DE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.", "DE.Controllers.Main.textTryUndoRedoWarn": "Die Optionen Rückgängig/Wiederholen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.", "DE.Controllers.Main.textUndo": "Rückgängig", @@ -1102,6 +1107,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", "DE.Controllers.Navigation.txtBeginning": "Anfang des Dokuments", "DE.Controllers.Navigation.txtGotoBeginning": "Zum Anfang des Dokuments übergehnen", + "DE.Controllers.Print.textMarginsLast": " Benutzerdefiniert als letzte", + "DE.Controllers.Print.txtCustom": "Benutzerdefiniert", + "DE.Controllers.Print.txtPrintRangeInvalid": "Ungültiger Druckbereich", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Geben Sie entweder eine einzelne Seitenzahl oder einen einzelnen Seitenbereich ein (z. B. 5-12). Oder Sie können in PDF drucken.", "DE.Controllers.Search.notcriticalErrorTitle": "Achtung", "DE.Controllers.Search.textNoTextFound": "Die Daten, nach denen Sie gesucht haben, können nicht gefunden werden. Bitte ändern Sie die Suchparameter.", "DE.Controllers.Search.textReplaceSkipped": "Der Ersatzvorgang wurde durchgeführt. {0} Vorkommen wurden ausgelassen.", @@ -2020,6 +2029,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Keine", "DE.Views.FileMenuPanels.Settings.txtProofing": "Rechtschreibprüfung", "DE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Die Schaltfläche Schnelldruck in der Kopfzeile des Editors anzeigen", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Das Dokument wird auf dem zuletzt ausgewählten oder dem standardmäßigen Drucker gedruckt", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Alle aktivieren", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Alle Makros ohne Benachrichtigung aktivieren", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Änderungen anzeigen", @@ -2577,6 +2588,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatisch", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen", + "DE.Views.PrintWithPreview.textMarginsLast": " Benutzerdefiniert als letzte", + "DE.Views.PrintWithPreview.textMarginsModerate": "Mittelmäßig", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Schmal", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "Normal (US)", + "DE.Views.PrintWithPreview.textMarginsWide": "Breit", + "DE.Views.PrintWithPreview.txtAllPages": "Alle Seiten", + "DE.Views.PrintWithPreview.txtBottom": "Unten", + "DE.Views.PrintWithPreview.txtCurrentPage": "Aktuelle Seite", + "DE.Views.PrintWithPreview.txtCustom": "Benutzerdefiniert", + "DE.Views.PrintWithPreview.txtCustomPages": "Benutzerdefinierter Druck", + "DE.Views.PrintWithPreview.txtLandscape": "Querformat", + "DE.Views.PrintWithPreview.txtLeft": "Links", + "DE.Views.PrintWithPreview.txtMargins": "Ränder", + "DE.Views.PrintWithPreview.txtOf": "von {0}", + "DE.Views.PrintWithPreview.txtPage": "Seite", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Ungültige Seitennummer", + "DE.Views.PrintWithPreview.txtPageOrientation": "Seitenausrichtung", + "DE.Views.PrintWithPreview.txtPages": "Seiten", + "DE.Views.PrintWithPreview.txtPageSize": "Seitengröße", + "DE.Views.PrintWithPreview.txtPortrait": "Hochformat", + "DE.Views.PrintWithPreview.txtPrint": "Drucken", + "DE.Views.PrintWithPreview.txtPrintPdf": "Als PDF-Datei drucken", + "DE.Views.PrintWithPreview.txtPrintRange": "Druckbereich", + "DE.Views.PrintWithPreview.txtRight": "Rechts", + "DE.Views.PrintWithPreview.txtSelection": "Auswahl", + "DE.Views.PrintWithPreview.txtTop": "Oben", "DE.Views.ProtectDialog.textComments": "Kommentare", "DE.Views.ProtectDialog.textForms": "Ausfüllen von Formularen", "DE.Views.ProtectDialog.textReview": "Überarbeitungen", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 9e3d44221..4afd63f17 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -11,6 +11,7 @@ "Common.Controllers.ExternalMergeEditor.warningTitle": "Προειδοποίηση", "Common.Controllers.ExternalOleEditor.textAnonymous": "Ανώνυμος", "Common.Controllers.ExternalOleEditor.textClose": "Κλείσιμο", + "Common.Controllers.ExternalOleEditor.warningTitle": "Προειδοποίηση", "Common.Controllers.History.notcriticalErrorTitle": "Προειδοποίηση", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Για να γίνει σύγκριση εγγράφων όλες οι σημειωμένες αλλαγές εντός τους θα θεωρηθούν αποδεκτές. Θέλετε να συνεχίσετε;", "Common.Controllers.ReviewChanges.textAtLeast": "τουλάχιστον", @@ -123,7 +124,45 @@ "Common.define.chartData.textScatterSmoothMarker": "Διασπορά με ομαλές γραμμές και δείκτες", "Common.define.chartData.textStock": "Μετοχή", "Common.define.chartData.textSurface": "Επιφάνεια", + "Common.define.smartArt.textAccentedPicture": "Εικόνα με Τόνους", + "Common.define.smartArt.textAccentProcess": "Διεργασία Τονισμού", + "Common.define.smartArt.textAlternatingFlow": "Εναλλασσόμενη Ροή", + "Common.define.smartArt.textAlternatingHexagons": "Εναλλασσόμενα Εξάγωνα", + "Common.define.smartArt.textAlternatingPictureBlocks": "Εναλλασσόμενα Μπλοκ Εικόνων", + "Common.define.smartArt.textAlternatingPictureCircles": "Εναλλασσόμενοι Κύκλοι Εικόνων", + "Common.define.smartArt.textArchitectureLayout": "Αρχιτεκτονικό Σχέδιο", + "Common.define.smartArt.textArrowRibbon": "Κορδέλα με Βέλος", + "Common.define.smartArt.textAscendingPictureAccentProcess": "Αύξουσα έμφαση εικόνας", + "Common.define.smartArt.textBalance": "Ισορροπία", + "Common.define.smartArt.textBasicBendingProcess": "Βασική Διεργασία Κλίσης", + "Common.define.smartArt.textBasicBlockList": "Βασική Λίστα Μπλοκ", + "Common.define.smartArt.textBasicCycle": "Βασικός Κύκλος", + "Common.define.smartArt.textBasicMatrix": "Βασικός Πίνακας", + "Common.define.smartArt.textBasicPie": "Βασική Πίτα", + "Common.define.smartArt.textBasicProcess": "Βασική Διεργασία", + "Common.define.smartArt.textBasicPyramid": "Βασική Πυραμίδα", + "Common.define.smartArt.textBasicRadial": "Βασικό Ακτινικό ", + "Common.define.smartArt.textBasicTarget": "Βασικός Στόχος", + "Common.define.smartArt.textBasicTimeline": "Βασική Χρονική Ακολουθία", + "Common.define.smartArt.textBasicVenn": "Βασικό Venn", + "Common.define.smartArt.textBendingPictureBlocks": "Κεκλιμένα Μπλοκ Εικόνων", + "Common.define.smartArt.textBendingPictureCaption": "Κεκλιμένη Λεζάντα Εικόνας", + "Common.define.smartArt.textBendingPictureCaptionList": "Κεκλιμένη Λίστα Λεζάντων Εικόνας", + "Common.define.smartArt.textCaptionedPictures": "Εικόνες με Λεζάντα", + "Common.define.smartArt.textConvergingArrows": "Συμβαλλόμενα Βέλη", + "Common.define.smartArt.textDivergingArrows": "Αποκλίνοντα Βέλη", + "Common.define.smartArt.textEquation": "Εξίσωση", + "Common.define.smartArt.textHierarchy": "Ιεραρχία", + "Common.define.smartArt.textList": "Λίστα", + "Common.define.smartArt.textNameAndTitleOrganizationChart": "Όνομα και Τίτλος", + "Common.define.smartArt.textOther": "Άλλα", + "Common.define.smartArt.textPicture": "Εικόνα", + "Common.define.smartArt.textProcess": "Διεργασία", + "Common.define.smartArt.textProcessList": "Λίστα διεργασιών", + "Common.define.smartArt.textPyramid": "Πυραμίδα", + "Common.define.smartArt.textReverseList": "Αντίστροφη λίστα", "Common.Translation.textMoreButton": "Περισσότερα", + "Common.Translation.tipFileLocked": "Το έγγραφο είναι κλειδωμένο για επεξεργασία. Μπορείτε να κάνετε αλλαγές και να τις αποθηκεύσετε αργότερα ως τοπικό αντίγραφο.", "Common.Translation.warnFileLocked": "Δεν μπορείτε να επεξεργαστείτε αυτό το αρχείο επειδή επεξεργάζεται σε άλλη εφαρμογή.", "Common.Translation.warnFileLockedBtnEdit": "Δημιουργία αντιγράφου", "Common.Translation.warnFileLockedBtnView": "Άνοιγμα για προβολή", @@ -219,7 +258,7 @@ "Common.Views.About.txtTel": "Tηλ.: ", "Common.Views.About.txtVersion": "Έκδοση ", "Common.Views.AutoCorrectDialog.textAdd": "Προσθήκη", - "Common.Views.AutoCorrectDialog.textApplyText": "Εφαρμογή Κατά Την Πληκτρολόγηση", + "Common.Views.AutoCorrectDialog.textApplyText": "Εφαρμογή κατά την πληκτρολόγηση", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Αυτόματη Διόρθωση", "Common.Views.AutoCorrectDialog.textAutoFormat": "Αυτόματη Μορφοποίηση Κατά Την Πληκτρολόγηση", "Common.Views.AutoCorrectDialog.textBulleted": "Αυτόματες λίστες κουκκίδων", @@ -284,6 +323,8 @@ "Common.Views.DocumentAccessDialog.textLoading": "Φόρτωση ...", "Common.Views.DocumentAccessDialog.textTitle": "Ρυθμίσεις Διαμοιρασμού", "Common.Views.ExternalDiagramEditor.textTitle": "Συντάκτης Γραφήματος", + "Common.Views.ExternalEditor.textClose": "Κλείσιμο", + "Common.Views.ExternalEditor.textSave": "Αποθήκευση & Έξοδος", "Common.Views.ExternalMergeEditor.textTitle": "Παραλήπτες Συγχωνευμένης Αλληλογραφίας", "Common.Views.Header.labelCoUsersDescr": "Οι χρήστες που επεξεργάζονται το αρχείο:", "Common.Views.Header.textAddFavorite": "Σημείωση ως αγαπημένο", @@ -292,6 +333,7 @@ "Common.Views.Header.textCompactView": "Απόκρυψη Γραμμής Εργαλείων", "Common.Views.Header.textHideLines": "Απόκρυψη Χαράκων", "Common.Views.Header.textHideStatusBar": "Απόκρυψη Γραμμής Κατάστασης", + "Common.Views.Header.textReadOnly": "Μόνο για ανάγνωση", "Common.Views.Header.textRemoveFavorite": "Αφαίρεση από τα Αγαπημένα", "Common.Views.Header.textShare": "Διαμοιρασμός", "Common.Views.Header.textZoom": "Εστίαση", @@ -349,6 +391,7 @@ "Common.Views.Plugins.textStart": "Εκκίνηση", "Common.Views.Plugins.textStop": "Διακοπή", "Common.Views.Protection.hintAddPwd": "Κρυπτογράφηση με συνθηματικό", + "Common.Views.Protection.hintDelPwd": "Διαγραφή συνθηματικού", "Common.Views.Protection.hintPwd": "Αλλαγή ή διαγραφή συνθηματικού", "Common.Views.Protection.hintSignature": "Προσθήκη ψηφιακής υπογραφής ή γραμμής υπογραφής", "Common.Views.Protection.txtAddPwd": "Προσθήκη συνθηματικού", @@ -460,6 +503,7 @@ "Common.Views.SaveAsDlg.textTitle": "Φάκελος για αποθήκευση", "Common.Views.SearchPanel.textCaseSensitive": "Διάκριση Πεζών-Κεφαλαίων", "Common.Views.SearchPanel.textCloseSearch": "Κλείσιμο αναζήτησης", + "Common.Views.SearchPanel.textContentChanged": "Το έγγραφο τροποποιήθηκε.", "Common.Views.SearchPanel.textFind": "Εύρεση", "Common.Views.SearchPanel.textFindAndReplace": "Εύρεση και Αντικατάσταση", "Common.Views.SearchPanel.textMatchUsingRegExp": "Ταίριασμα χρησιμοποιώντας κανονικές εκφράσεις (regexp)", @@ -468,6 +512,7 @@ "Common.Views.SearchPanel.textReplace": "Αντικατάσταση", "Common.Views.SearchPanel.textReplaceAll": "Αντικατάσταση Όλων", "Common.Views.SearchPanel.textReplaceWith": "Αντικατάσταση με", + "Common.Views.SearchPanel.textSearchAgain": "{0}Διενέργεια νέας αναζήτησης{1} για ακριβή αποτελέσματα.", "Common.Views.SearchPanel.textSearchResults": "Αποτελέσματα αναζήτησης: {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Υπάρχουν πάρα πολλά αποτελέσματα για εμφάνιση εδώ", "Common.Views.SearchPanel.textWholeWords": "Ολόκληρες λέξεις μόνο", @@ -491,6 +536,7 @@ "Common.Views.SignDialog.tipFontName": "Όνομα Γραμματοσειράς", "Common.Views.SignDialog.tipFontSize": "Μέγεθος Γραμματοσειράς", "Common.Views.SignSettingsDialog.textAllowComment": "Να επιτρέπεται στον υπογράφοντα να προσθέτει σχόλιο στο διάλογο υπογραφής", + "Common.Views.SignSettingsDialog.textDefInstruction": "Πριν υπογράψετε το έγγραφο, βεβαιωθείτε για την ορθότητα των περιεχομένων.", "Common.Views.SignSettingsDialog.textInfoEmail": "Ηλεκτρονική Διεύθυνση", "Common.Views.SignSettingsDialog.textInfoName": "Όνομα", "Common.Views.SignSettingsDialog.textInfoTitle": "Τίτλος Υπογράφοντος", @@ -570,12 +616,18 @@ "DE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", "DE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων για λεπτομέρειες.", "DE.Controllers.Main.errorForceSave": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου. Χρησιμοποιήστε την επιλογή «Λήψη ως» για να αποθηκεύσετε το αρχείο στον σκληρό δίσκο του υπολογιστή σας ή δοκιμάστε ξανά αργότερα.", + "DE.Controllers.Main.errorInconsistentExt": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου δεν αντιστοιχούν στην κατάληξή του ονόματός του.", + "DE.Controllers.Main.errorInconsistentExtDocx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε αρχεία κειμένου (π.χ. docx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", + "DE.Controllers.Main.errorInconsistentExtPdf": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε μια από τις ακόλουθες μορφές: pdf/djvu/xps/oxps, αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", + "DE.Controllers.Main.errorInconsistentExtPptx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε παρουσιάσεις (π.χ. pptx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", + "DE.Controllers.Main.errorInconsistentExtXlsx": "Προέκυψε σφάλμα κατά το άνοιγμα του αρχείου.
Τα περιεχόμενα του αρχείου αντιστοιχούν σε υπολογιστικά φύλλα (π.χ. xlsx), αλλά το αρχείο έχει ασύμφωνη κατάληξη: %1.", "DE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", "DE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", "DE.Controllers.Main.errorLoadingFont": "Οι γραμματοσειρές δεν έχουν φορτωθεί.
Παρακαλούμε επικοινωνήστε με τον διαχειριστή του Εξυπηρετητή Εγγράφων σας.", "DE.Controllers.Main.errorMailMergeLoadFile": "Η φόρτωση του εγγράφου απέτυχε. Παρακαλούμε επιλέξτε ένα διαφορετικό αρχείο.", "DE.Controllers.Main.errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.", "DE.Controllers.Main.errorNoTOC": "Δεν υπάρχει πίνακας περιεχομένων για ενημέρωση. Μπορείτε να εισαγάγετε ένα από την καρτέλα Αναφορές.", + "DE.Controllers.Main.errorPasswordIsNotCorrect": "Ο κωδικός που εισάγατε δεν είναι σωστός.
Βεβαιωθείτε ότι το πλήκτρο CAPS LOCK είναι ανενεργό και ότι χρησιμοποιείτε κεφαλαία όπου χρειάζεται.", "DE.Controllers.Main.errorProcessSaveResult": "Αποτυχία αποθήκευσης.", "DE.Controllers.Main.errorServerVersion": "Αναβαθμίστηκε η έκδοση του συντάκτη. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", "DE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας του εγγράφου έληξε. Παρακαλούμε επαναφορτώστε τη σελίδα.", @@ -631,6 +683,7 @@ "DE.Controllers.Main.textClose": "Κλείσιμο", "DE.Controllers.Main.textCloseTip": "Κάντε κλικ για να κλείσει η υπόδειξη", "DE.Controllers.Main.textContactUs": "Επικοινωνήστε με το τμήμα πωλήσεων", + "DE.Controllers.Main.textContinue": "Συνέχεια", "DE.Controllers.Main.textConvertEquation": "Η εξίσωση αυτή δημιουργήθηκε με παλαιότερη έκδοση του συντάκτη εξισώσεων που δεν υποστηρίζεται πια. Για να την επεξεργαστείτε, μετατρέψτε την σε μορφή Office Math ML.
Να μετατραπεί τώρα;", "DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.
Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", "DE.Controllers.Main.textDisconnect": "Η σύνδεση χάθηκε", @@ -651,6 +704,7 @@ "DE.Controllers.Main.textStrict": "Αυστηρή κατάσταση", "DE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.
Κάντε κλικ στο κουμπί 'Αυστηρή κατάσταση' για να μεταβείτε στην Αυστηρή κατάσταση συν-επεξεργασίας όπου επεξεργάζεστε το αρχείο χωρίς παρέμβαση άλλων χρηστών και στέλνετε τις αλλαγές σας αφού τις αποθηκεύσετε. Η μετάβαση μεταξύ των δύο καταστάσεων γίνεται μέσω των Προηγμένων Ρυθμίσεων.", "DE.Controllers.Main.textTryUndoRedoWarn": "Οι λειτουργίες Αναίρεση/Επανάληψη απενεργοποιούνται για τη λειτουργία γρήγορης συν-επεξεργασίας.", + "DE.Controllers.Main.textUndo": "Αναίρεση", "DE.Controllers.Main.titleLicenseExp": "Η άδεια έληξε", "DE.Controllers.Main.titleServerVersion": "Ο συντάκτης ενημερώθηκε", "DE.Controllers.Main.titleUpdateVersion": "Η έκδοση άλλαξε", @@ -921,7 +975,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", "DE.Controllers.Navigation.txtBeginning": "Έναρξη εγγράφου", "DE.Controllers.Navigation.txtGotoBeginning": "Μετάβαση στην αρχή του εγγράφου", + "DE.Controllers.Print.textMarginsLast": "Τελευταίο προσαρμοσμένο", + "DE.Controllers.Print.txtCustom": "Προσαρμοσμένο", "DE.Controllers.Search.notcriticalErrorTitle": "Προειδοποίηση", + "DE.Controllers.Search.textReplaceSkipped": "Η αντικατάσταση έχει γίνει. {0} περιστατικά παραλείφθηκαν.", "DE.Controllers.Search.warnReplaceString": "{0} δεν είναι ένας έγκυρος ειδικός χαρακτήρας για το πλαίσιο Αντικατάσταση με.", "DE.Controllers.Statusbar.textDisconnect": "Η σύνδεση χάθηκε
Απόπειρα επανασύνδεσης. Παρακαλούμε, ελέγξτε τις ρυθμίσεις σύνδεσης.", "DE.Controllers.Statusbar.textHasChanges": "Έχουν εντοπιστεί νέες αλλαγές", @@ -1317,14 +1374,22 @@ "DE.Views.CellsAddDialog.textRow": "Γραμμές", "DE.Views.CellsAddDialog.textTitle": "Εισαγωγή Πολλών", "DE.Views.CellsAddDialog.textUp": "Πάνω από τον δρομέα", + "DE.Views.ChartSettings.text3dDepth": "Βάθος (% της βάσης)", + "DE.Views.ChartSettings.text3dRotation": "Περιστροφή 3Δ", "DE.Views.ChartSettings.textAdvanced": "Εμφάνιση προηγμένων ρυθμίσεων", + "DE.Views.ChartSettings.textAutoscale": "Αυτόματη κλιμάκωση", "DE.Views.ChartSettings.textChartType": "Αλλαγή Τύπου Γραφήματος", + "DE.Views.ChartSettings.textDefault": "Προεπιλεγμένη Περιστροφή", + "DE.Views.ChartSettings.textDown": "Κάτω", "DE.Views.ChartSettings.textEditData": "Επεξεργασία Δεδομένων", "DE.Views.ChartSettings.textHeight": "Ύψος", + "DE.Views.ChartSettings.textLeft": "Αριστερά", "DE.Views.ChartSettings.textOriginalSize": "Πραγματικό Μέγεθος", + "DE.Views.ChartSettings.textRight": "Δεξιά", "DE.Views.ChartSettings.textSize": "Μέγεθος", "DE.Views.ChartSettings.textStyle": "Τεχνοτροπία", "DE.Views.ChartSettings.textUndock": "Απαγκίστρωση από τον πίνακα", + "DE.Views.ChartSettings.textUp": "Επάνω", "DE.Views.ChartSettings.textWidth": "Πλάτος", "DE.Views.ChartSettings.textWrap": "Τεχνοτροπία Αναδίπλωσης", "DE.Views.ChartSettings.txtBehind": "Πίσω από το Κείμενο", @@ -1338,7 +1403,7 @@ "DE.Views.ControlSettingsDialog.strGeneral": "Γενικά", "DE.Views.ControlSettingsDialog.textAdd": "Προσθήκη", "DE.Views.ControlSettingsDialog.textAppearance": "Εμφάνιση", - "DE.Views.ControlSettingsDialog.textApplyAll": "Εφαρμογή σε Όλα", + "DE.Views.ControlSettingsDialog.textApplyAll": "Εφαρμογή σε όλα", "DE.Views.ControlSettingsDialog.textBox": "Οριοθετημένο κουτί", "DE.Views.ControlSettingsDialog.textChange": "Επεξεργασία", "DE.Views.ControlSettingsDialog.textCheckbox": "Πλαίσιο ελέγχου", @@ -1416,14 +1481,23 @@ "DE.Views.DateTimeDialog.textLang": "Γλώσσα", "DE.Views.DateTimeDialog.textUpdate": "Αυτόματη ενημέρωση", "DE.Views.DateTimeDialog.txtTitle": "Ημερομηνία & Ώρα", + "DE.Views.DocProtection.hintProtectDoc": "Προστασία εγγράφου", + "DE.Views.DocProtection.txtDocProtectedComment": "Το έγγραφο προστατεύεται.
Μπορείτε μόνο να εισάγετε σχόλια στο έγγραφο.", + "DE.Views.DocProtection.txtDocProtectedForms": "Το έγγραφο προστατεύεται.
Μπορείτε μόνο να συμπληρώσετε φόρμες μέσα στο έγγραφο.", + "DE.Views.DocProtection.txtDocProtectedTrack": "Το έγγραφο προστατεύεται.
Μπορείτε να επεξεργαστείτε το έγγραφο, αλλά όλες οι αλλαγές θα καταγραφούν.", + "DE.Views.DocProtection.txtDocProtectedView": "Το έγγραφο προστατεύεται.
Μπορείτε μόνο να δείτε το έγγραφο.", + "DE.Views.DocProtection.txtDocUnlockDescription": "Εισάγετε συνθηματικό για αναίρεση της προστασίας εγγράφου", "DE.Views.DocumentHolder.aboveText": "Πάνω από", "DE.Views.DocumentHolder.addCommentText": "Προσθήκη Σχολίου", "DE.Views.DocumentHolder.advancedDropCapText": "Ρυθμίσεις Αρχιγράμματος", + "DE.Views.DocumentHolder.advancedEquationText": "Ρυθμίσεις εξίσωσης", "DE.Views.DocumentHolder.advancedFrameText": "Προηγμένες Ρυθμίσεις Πλαισίου", "DE.Views.DocumentHolder.advancedParagraphText": "Προηγμένες Ρυθμίσεις Παραγράφου", "DE.Views.DocumentHolder.advancedTableText": "Προηγμένες Ρυθμίσεις Πίνακα", "DE.Views.DocumentHolder.advancedText": "Προηγμένες Ρυθμίσεις", "DE.Views.DocumentHolder.alignmentText": "Στοίχιση", + "DE.Views.DocumentHolder.allLinearText": "Όλα - Γραμμικό", + "DE.Views.DocumentHolder.allProfText": "Όλα - Επαγγελματικό", "DE.Views.DocumentHolder.belowText": "Παρακάτω", "DE.Views.DocumentHolder.breakBeforeText": "Αλλαγή σελίδας πριν", "DE.Views.DocumentHolder.bulletsText": "Κουκκίδες και Αρίθμηση", @@ -1432,6 +1506,8 @@ "DE.Views.DocumentHolder.centerText": "Κέντρο", "DE.Views.DocumentHolder.chartText": "Προηγμένες Ρυθμίσεις Γραφήματος", "DE.Views.DocumentHolder.columnText": "Στήλη", + "DE.Views.DocumentHolder.currLinearText": "Τρέχον - Γραμμικό", + "DE.Views.DocumentHolder.currProfText": "Τρέχον - Επαγγελματικό", "DE.Views.DocumentHolder.deleteColumnText": "Διαγραφή Στήλης", "DE.Views.DocumentHolder.deleteRowText": "Διαγραφή Γραμμής", "DE.Views.DocumentHolder.deleteTableText": "Διαγραφή Πίνακα", @@ -1444,6 +1520,7 @@ "DE.Views.DocumentHolder.editFooterText": "Επεξεργασία Υποσέλιδου", "DE.Views.DocumentHolder.editHeaderText": "Επεξεργασία Κεφαλίδας", "DE.Views.DocumentHolder.editHyperlinkText": "Επεξεργασία Υπερσυνδέσμου", + "DE.Views.DocumentHolder.eqToInlineText": "Αλλαγή σε Εντός Κειμένου", "DE.Views.DocumentHolder.guestText": "Επισκέπτης", "DE.Views.DocumentHolder.hyperlinkText": "Υπερσύνδεσμος", "DE.Views.DocumentHolder.ignoreAllSpellText": "Αγνόηση Όλων", @@ -1737,10 +1814,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Έκδοση PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Τοποθεσία", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Άτομα που έχουν δικαιώματα", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Σύμβολα με διαστήματα", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Χαρακτήρες με διαστήματα", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Στατιστικά", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Θέμα", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Σύμβολα", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Χαρακτήρες", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Τίτλος", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Μεταφορτώθηκε", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Λέξεις", @@ -1827,12 +1904,17 @@ "DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος", "DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων", "DE.Views.FormSettings.textCombobox": "Πολλαπλές Επιλογές", + "DE.Views.FormSettings.textComplex": "Σύνθετο Πεδίο", "DE.Views.FormSettings.textConnected": "Συνδεδεμένα πεδία", "DE.Views.FormSettings.textDelete": "Διαγραφή", + "DE.Views.FormSettings.textDigits": "Ψηφία", "DE.Views.FormSettings.textDisconnect": "Αποσύνδεση", "DE.Views.FormSettings.textDropDown": "Πτυσσόμενη Λίστα", + "DE.Views.FormSettings.textExact": "Ακριβώς", "DE.Views.FormSettings.textField": "Πεδίο Κειμένου", "DE.Views.FormSettings.textFixed": "Πεδίο σταθερού μεγέθους", + "DE.Views.FormSettings.textFormat": "Μορφή", + "DE.Views.FormSettings.textFormatSymbols": "Επιτρεπτά Σύμβολα", "DE.Views.FormSettings.textFromFile": "Από Αρχείο", "DE.Views.FormSettings.textFromStorage": "Από Αποθηκευτικό Χώρο", "DE.Views.FormSettings.textFromUrl": "Από διεύθυνση URL", @@ -1840,10 +1922,12 @@ "DE.Views.FormSettings.textImage": "Εικόνα", "DE.Views.FormSettings.textKey": "Κλειδί", "DE.Views.FormSettings.textLock": "Κλείδωμα", + "DE.Views.FormSettings.textMask": "Τυχαία Μάσκα", "DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων", "DE.Views.FormSettings.textMulti": "Πεδίο πολλών γραμμών", "DE.Views.FormSettings.textNever": "Ποτέ", "DE.Views.FormSettings.textNoBorder": "Χωρίς περίγραμμα", + "DE.Views.FormSettings.textNone": "Κανένα", "DE.Views.FormSettings.textPlaceholder": "Δέσμευση Θέσης", "DE.Views.FormSettings.textRadiobox": "Κουμπί Επιλογής", "DE.Views.FormSettings.textRequired": "Απαιτείται", @@ -1862,10 +1946,13 @@ "DE.Views.FormSettings.textWidth": "Πλάτος κελιού", "DE.Views.FormsTab.capBtnCheckBox": "Πλαίσιο επιλογής", "DE.Views.FormsTab.capBtnComboBox": "Πολλαπλές Επιλογές", + "DE.Views.FormsTab.capBtnComplex": "Σύνθετο Πεδίο", "DE.Views.FormsTab.capBtnDownloadForm": "Λήψη ως oform", "DE.Views.FormsTab.capBtnDropDown": "Πτυσσόμενη Λίστα", + "DE.Views.FormsTab.capBtnEmail": "Διεύθυνση email", "DE.Views.FormsTab.capBtnImage": "Εικόνα", "DE.Views.FormsTab.capBtnNext": "Επόμενο Πεδίο", + "DE.Views.FormsTab.capBtnPhone": "Αριθμός τηλεφώνου", "DE.Views.FormsTab.capBtnPrev": "Προηγούμενο Πεδίο", "DE.Views.FormsTab.capBtnRadioBox": "Κουμπί Επιλογής", "DE.Views.FormsTab.capBtnSaveForm": "Αποθήκευση ως oform", @@ -1961,7 +2048,7 @@ "DE.Views.ImageSettingsAdvanced.strMargins": "Απόσταση Κειμένου", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Απόλυτο", "DE.Views.ImageSettingsAdvanced.textAlignment": "Στοίχιση", - "DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο", + "DE.Views.ImageSettingsAdvanced.textAlt": "Εναλλακτικό κείμενο", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Περιγραφή", "DE.Views.ImageSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Τίτλος", @@ -2296,11 +2383,15 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Κάτω", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Κεντραρισμένη", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Απόσταση Χαρακτήρων", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Συμφραζόμενα", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Συμφραζόμενα και ", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Συμφραζόμενα και ιστορικά", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Προεπιλεγμένος Στηλοθέτης", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Εφέ", "DE.Views.ParagraphSettingsAdvanced.textExact": "Ακριβώς", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Πρώτη γραμμή", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Αρνητική", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Ιστορικά", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Πλήρης στοίχιση", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Γέμισμα γραμμής", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Αριστερά", @@ -2329,6 +2420,36 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Ορισμός μόνο του πάνω περιγράμματος", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Αυτόματα", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Χωρίς περιγράμματα", + "DE.Views.PrintWithPreview.textMarginsLast": "Τελευταίο προσαρμοσμένο", + "DE.Views.PrintWithPreview.textMarginsModerate": "Μέτριο", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Στενό", + "DE.Views.PrintWithPreview.textMarginsNormal": "Κανονικά", + "DE.Views.PrintWithPreview.textMarginsWide": "Πλατύ", + "DE.Views.PrintWithPreview.txtAllPages": "Όλες οι σελίδες", + "DE.Views.PrintWithPreview.txtBottom": "Κάτω Μέρος", + "DE.Views.PrintWithPreview.txtCurrentPage": "Τρέχουσα σελίδα", + "DE.Views.PrintWithPreview.txtCustom": "Προσαρμοσμένο", + "DE.Views.PrintWithPreview.txtCustomPages": "Προσαρμοσμένη εκτύπωση", + "DE.Views.PrintWithPreview.txtLeft": "Αριστερά", + "DE.Views.PrintWithPreview.txtMargins": "Περιθώρια", + "DE.Views.PrintWithPreview.txtOf": "από {0}", + "DE.Views.PrintWithPreview.txtPage": "Σελίδα", + "DE.Views.PrintWithPreview.txtPages": "Σελίδες", + "DE.Views.PrintWithPreview.txtPrint": "Εκτύπωση", + "DE.Views.PrintWithPreview.txtPrintPdf": "Εκτύπωση σε PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Εύρος εκτύπωσης", + "DE.Views.PrintWithPreview.txtRight": "Δεξιά", + "DE.Views.PrintWithPreview.txtSelection": "Επιλογή", + "DE.Views.PrintWithPreview.txtTop": "Κορυφή", + "DE.Views.ProtectDialog.textComments": "Σχόλια", + "DE.Views.ProtectDialog.textForms": "Συμπλήρωση φορμών", + "DE.Views.ProtectDialog.txtAllow": "Να επιτρέπεται μόνο τέτοια επεξεργασία στο έγγραφο", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Το συνθηματικό επιβεβαίωσης δεν είναι πανομοιότυπο", + "DE.Views.ProtectDialog.txtOptional": "προαιρετικό", + "DE.Views.ProtectDialog.txtPassword": "Κωδικός", + "DE.Views.ProtectDialog.txtProtect": "Προστασία", + "DE.Views.ProtectDialog.txtRepeat": "Επανάληψη κωδικού", + "DE.Views.ProtectDialog.txtTitle": "Προστασία", "DE.Views.RightMenu.txtChartSettings": "Ρυθμίσεις γραφήματος", "DE.Views.RightMenu.txtFormSettings": "Ρυθμίσεις Φόρμας", "DE.Views.RightMenu.txtHeaderFooterSettings": "Ρυθμίσεις κεφαλίδας και υποσέλιδου", @@ -2430,6 +2551,10 @@ "DE.Views.Statusbar.tipZoomIn": "Μεγέθυνση", "DE.Views.Statusbar.tipZoomOut": "Σμίκρυνση", "DE.Views.Statusbar.txtPageNumInvalid": "Μη έγκυρος αριθμός σελίδας", + "DE.Views.Statusbar.txtPages": "Σελίδες", + "DE.Views.Statusbar.txtParagraphs": "Παράγραφοι", + "DE.Views.Statusbar.txtSymbols": "Σύμβολα", + "DE.Views.Statusbar.txtWords": "Λέξεις", "DE.Views.StyleTitleDialog.textHeader": "Δημιουργία Νέας Τεχνοτροπίας", "DE.Views.StyleTitleDialog.textNextStyle": "Τεχνοτροπία επόμενης παραγράφου", "DE.Views.StyleTitleDialog.textTitle": "Τίτλος", @@ -2519,8 +2644,12 @@ "DE.Views.TableSettings.tipOuter": "Ορισμός μόνο του εξωτερικού περιγράμματος", "DE.Views.TableSettings.tipRight": "Ορισμός μόνο του εξωτερικού δεξιού περιγράμματος", "DE.Views.TableSettings.tipTop": "Ορισμός μόνο του εξωτερικού πάνω περιγράμματος", + "DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Πίνακες με Περιθώρια & Γραμμές", + "DE.Views.TableSettings.txtGroupTable_Custom": "Προσαρμοσμένο", "DE.Views.TableSettings.txtNoBorders": "Χωρίς περιγράμματα", "DE.Views.TableSettings.txtTable_Accent": "Τόνος", + "DE.Views.TableSettings.txtTable_Bordered": "Με Περιθώρια", + "DE.Views.TableSettings.txtTable_BorderedAndLined": "Με Περιθώρια & Γραμμές", "DE.Views.TableSettings.txtTable_Colorful": "Πολύχρωμο", "DE.Views.TableSettings.txtTable_Dark": "Σκούρο", "DE.Views.TableSettings.txtTable_GridTable": "Πίνακας Πλέγματος", @@ -2531,7 +2660,7 @@ "DE.Views.TableSettingsAdvanced.textAlign": "Στοίχιση", "DE.Views.TableSettingsAdvanced.textAlignment": "Στοίχιση", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Απόσταση μεταξύ κελιών", - "DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό Κείμενο", + "DE.Views.TableSettingsAdvanced.textAlt": "Εναλλακτικό κείμενο", "DE.Views.TableSettingsAdvanced.textAltDescription": "Περιγραφή", "DE.Views.TableSettingsAdvanced.textAltTip": "Η εναλλακτική, κειμενική αναπαράσταση των πληροφοριών του οπτικού αντικειμένου, που θα αναγνωστεί σε ανθρώπους με προβλήματα όρασης ή γνωστικές αδυναμίες, για να κατανοήσουν καλύτερα τις πληροφορίες που περιέχονται στην εικόνα, αυτόματο σχήμα, γράφημα ή πίνακα.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Τίτλος", @@ -2659,6 +2788,7 @@ "DE.Views.Toolbar.capBtnInsImage": "Εικόνα", "DE.Views.Toolbar.capBtnInsPagebreak": "Αλλαγές", "DE.Views.Toolbar.capBtnInsShape": "Σχήμα", + "DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt", "DE.Views.Toolbar.capBtnInsSymbol": "Σύμβολο", "DE.Views.Toolbar.capBtnInsTable": "Πίνακας", "DE.Views.Toolbar.capBtnInsTextart": "Τεχνοκείμενο", @@ -2788,6 +2918,7 @@ "DE.Views.Toolbar.tipControls": "Εισαγωγή στοιχείων ελέγχου περιεχομένου", "DE.Views.Toolbar.tipCopy": "Αντιγραφή", "DE.Views.Toolbar.tipCopyStyle": "Αντιγραφή τεχνοτροπίας", + "DE.Views.Toolbar.tipCut": "Αποκοπή", "DE.Views.Toolbar.tipDateTime": "Εισαγωγή τρέχουσας ημερομηνίας και ώρας", "DE.Views.Toolbar.tipDecFont": "Μείωση μεγέθους γραμματοσειράς", "DE.Views.Toolbar.tipDecPrLeft": "Μείωση εσοχής", @@ -2839,6 +2970,7 @@ "DE.Views.Toolbar.tipRedo": "Επανάληψη", "DE.Views.Toolbar.tipSave": "Αποθήκευση", "DE.Views.Toolbar.tipSaveCoauth": "Αποθηκεύστε τις αλλαγές σας για να τις δουν οι άλλοι χρήστες.", + "DE.Views.Toolbar.tipSelectAll": "Επιλογή όλων ", "DE.Views.Toolbar.tipSendBackward": "Μεταφορά προς τα πίσω", "DE.Views.Toolbar.tipSendForward": "Μεταφορά προς τα εμπρός", "DE.Views.Toolbar.tipShowHiddenChars": "Μη εκτυπώσιμοι χαρακτήρες", @@ -2847,9 +2979,9 @@ "DE.Views.Toolbar.tipWatermark": "Επεξεργασία υδατοσήμου", "DE.Views.Toolbar.txtDistribHor": "Οριζόντια Κατανομή", "DE.Views.Toolbar.txtDistribVert": "Κατακόρυφη Κατανομή", - "DE.Views.Toolbar.txtMarginAlign": "Στοίχιση σε Περιθώριο", + "DE.Views.Toolbar.txtMarginAlign": "Στοίχιση στο περιθώριο", "DE.Views.Toolbar.txtObjectsAlign": "Στοίχιση Επιλεγμένων Αντικειμένων", - "DE.Views.Toolbar.txtPageAlign": "Στοίχιση σε Σελίδα", + "DE.Views.Toolbar.txtPageAlign": "Στοίχιση στη σελίδα", "DE.Views.Toolbar.txtScheme1": "Γραφείο", "DE.Views.Toolbar.txtScheme10": "Διάμεσο", "DE.Views.Toolbar.txtScheme11": "Μετρό", @@ -2882,6 +3014,10 @@ "DE.Views.ViewTab.textRulers": "Χάρακες", "DE.Views.ViewTab.textStatusBar": "Γραμμή Κατάστασης", "DE.Views.ViewTab.textZoom": "Εστίαση", + "DE.Views.ViewTab.tipDarkDocument": "Σκούρο έγγραφο", + "DE.Views.ViewTab.tipFitToPage": "Προσαρμογή στη σελίδα", + "DE.Views.ViewTab.tipFitToWidth": "Προσαρμογή στο πλάτος", + "DE.Views.ViewTab.tipHeadings": "Κεφαλίδες", "DE.Views.WatermarkSettingsDialog.textAuto": "Αυτόματα", "DE.Views.WatermarkSettingsDialog.textBold": "Έντονα", "DE.Views.WatermarkSettingsDialog.textColor": "Χρώμα κειμένου", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index d59b2e64c..7facfc752 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -291,7 +291,7 @@ "Common.Translation.warnFileLockedBtnEdit": "Create a copy", "Common.Translation.warnFileLockedBtnView": "Open for viewing", "Common.UI.ButtonColored.textAutoColor": "Automatic", - "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", + "Common.UI.ButtonColored.textNewColor": "Add new custom color", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "August", "Common.UI.Calendar.textDecember": "December", @@ -353,9 +353,9 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace all", "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", - "Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors", - "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", - "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", + "Common.UI.ThemeColorPalette.textRecentColors": "Recent colors", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme colors", "Common.UI.Themes.txtThemeClassicLight": "Classic Light", "Common.UI.Themes.txtThemeContrastDark": "Contrast Dark", "Common.UI.Themes.txtThemeDark": "Dark", @@ -464,6 +464,7 @@ "Common.Views.Header.textCompactView": "Hide Toolbar", "Common.Views.Header.textHideLines": "Hide Rulers", "Common.Views.Header.textHideStatusBar": "Hide Status Bar", + "Common.Views.Header.textReadOnly": "Read only", "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", "Common.Views.Header.textShare": "Share", "Common.Views.Header.textZoom": "Zoom", @@ -471,6 +472,7 @@ "Common.Views.Header.tipDownload": "Download file", "Common.Views.Header.tipGoEdit": "Edit current file", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Quick print", "Common.Views.Header.tipRedo": "Redo", "Common.Views.Header.tipSave": "Save", "Common.Views.Header.tipSearch": "Search", @@ -480,8 +482,6 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", - "Common.Views.Header.tipPrintQuick": "Quick print", - "Common.Views.Header.textReadOnly": "Read only", "Common.Views.History.textCloseHistory": "Close History", "Common.Views.History.textHide": "Collapse", "Common.Views.History.textHideAll": "Hide detailed changes", @@ -570,15 +570,15 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Close", "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", - "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", - "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remove all comments", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove current comments", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remove my comments", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", "Common.Views.ReviewChanges.txtCommentRemove": "Remove", "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", "Common.Views.ReviewChanges.txtCompare": "Compare", "Common.Views.ReviewChanges.txtCombine": "Combine", @@ -710,6 +710,15 @@ "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Document is protected. You may only insert comments to this document.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Document is protected. You may only fill in forms in this document.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Document is protected. You may edit this document, but all changes will be tracked.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Document is protected. You may only view this document.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", @@ -841,6 +850,7 @@ "DE.Controllers.Main.textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "DE.Controllers.Main.textShape": "Shape", "DE.Controllers.Main.textStrict": "Strict mode", + "DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "DE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", "DE.Controllers.Main.textUndo": "Undo", @@ -849,7 +859,7 @@ "DE.Controllers.Main.titleUpdateVersion": "Version changed", "DE.Controllers.Main.txtAbove": "above", "DE.Controllers.Main.txtArt": "Your text here", - "DE.Controllers.Main.txtBasicShapes": "Basic Shapes", + "DE.Controllers.Main.txtBasicShapes": "Basic shapes", "DE.Controllers.Main.txtBelow": "below", "DE.Controllers.Main.txtBookmarkError": "Error! Bookmark not defined.", "DE.Controllers.Main.txtButtons": "Buttons", @@ -864,7 +874,7 @@ "DE.Controllers.Main.txtEnterDate": "Enter a date", "DE.Controllers.Main.txtErrorLoadHistory": "History loading failed", "DE.Controllers.Main.txtEvenPage": "Even Page", - "DE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "DE.Controllers.Main.txtFiguredArrows": "Figured arrows", "DE.Controllers.Main.txtFirstPage": "First Page", "DE.Controllers.Main.txtFooter": "Footer", "DE.Controllers.Main.txtFormulaNotInTable": "The Formula Not In Table", @@ -1062,8 +1072,8 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", "DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "DE.Controllers.Main.txtStyle_Caption": "Caption", - "DE.Controllers.Main.txtStyle_endnote_text": "Endnote Text", - "DE.Controllers.Main.txtStyle_footnote_text": "Footnote Text", + "DE.Controllers.Main.txtStyle_endnote_text": "Endnote text", + "DE.Controllers.Main.txtStyle_footnote_text": "Footnote text", "DE.Controllers.Main.txtStyle_Heading_1": "Heading 1", "DE.Controllers.Main.txtStyle_Heading_2": "Heading 2", "DE.Controllers.Main.txtStyle_Heading_3": "Heading 3", @@ -1112,9 +1122,12 @@ "DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.
Do you want to continue?", "DE.Controllers.Navigation.txtBeginning": "Beginning of document", "DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document", + "DE.Controllers.Print.textMarginsLast": "Last Custom", + "DE.Controllers.Print.txtCustom": "Custom", + "DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Warning", "DE.Controllers.Search.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", "DE.Controllers.Search.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", @@ -1126,10 +1139,6 @@ "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", "DE.Controllers.Statusbar.tipReview": "Track changes", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "DE.Controllers.Print.txtCustom": "Custom", - "DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range", - "DE.Controllers.Print.textMarginsLast": "Last Custom", - "DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.", "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", "DE.Controllers.Toolbar.dataUrl": "Paste a data URL", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning", @@ -1144,7 +1153,7 @@ "DE.Controllers.Toolbar.textInsert": "Insert", "DE.Controllers.Toolbar.textIntegral": "Integrals", "DE.Controllers.Toolbar.textLargeOperator": "Large Operators", - "DE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "DE.Controllers.Toolbar.textLimitAndLog": "Limits and Logarithms", "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Operators", "DE.Controllers.Toolbar.textRadical": "Radicals", @@ -1180,52 +1189,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Hat", "DE.Controllers.Toolbar.txtAccent_Smile": "Breve", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "DE.Controllers.Toolbar.txtBracket_Angle": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Curve": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", + "DE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separator", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket", + "DE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separator", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object in parentheses", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", - "DE.Controllers.Toolbar.txtBracket_Line": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Round": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Square": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient in angle brackets", + "DE.Controllers.Toolbar.txtBracket_Line": "Vertical bars", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right vertical bar", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left vertical bar", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Double vertical bars", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right double vertical bar", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left double vertical bar", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Floor", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor", + "DE.Controllers.Toolbar.txtBracket_Round": "Parentheses", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separator", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis", + "DE.Controllers.Toolbar.txtBracket_Square": "Square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder between two right square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted square brackets", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder between two left square brackets", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right ceiling", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left ceiling", "DE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y over cap delta x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "partial y over partial x", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y over delta x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", "DE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", "DE.Controllers.Toolbar.txtFractionSmall": "Small fraction", @@ -1261,63 +1270,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", "DE.Controllers.Toolbar.txtIntegral_dx": "Differential x", "DE.Controllers.Toolbar.txtIntegral_dy": "Differential y", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with stacked limits", "DE.Controllers.Toolbar.txtIntegralDouble": "Double integral", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral with limits", "DE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral with stacked limits", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral with limits", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral with limits", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral with limits", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Integral with limits", "DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation over k of n choose k", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation example using two indices", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation with subscript/superscript limits", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with limits", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with subscript lower limit", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with subscript/superscript limits", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", @@ -1332,10 +1341,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2 by 2 matrix in double vertical bars", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2 by 2 determinant", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty 2 by 2 matrix in parentheses", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty 2 by 2 matrix in brackets", "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", @@ -1344,12 +1353,12 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", - "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix in parentheses", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix in brackets", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix with zeros", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 identity matrix with blank off-diagonal cells", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix with zeros", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix with blank off-diagonal cells", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", @@ -1361,8 +1370,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", "DE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left double arrow below", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left double arrow above", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", @@ -1371,16 +1380,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of quadratic formula", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", "DE.Controllers.Toolbar.txtRadicalSqrt": "Square root", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e to the minus i omega t", + "DE.Controllers.Toolbar.txtScriptCustom_3": "x squared", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y left superscript n left subscript one", "DE.Controllers.Toolbar.txtScriptSub": "Subscript", "DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", @@ -1639,6 +1648,7 @@ "DE.Views.DocProtection.txtDocProtectedView": "Document is protected.
You may only view this document.", "DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document", "DE.Views.DocProtection.txtProtectDoc": "Protect Document", + "DE.Views.DocProtection.txtUnlockTitle": "Unprotect Document", "DE.Views.DocumentHolder.aboveText": "Above", "DE.Views.DocumentHolder.addCommentText": "Add comment", "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", @@ -1669,8 +1679,8 @@ "DE.Views.DocumentHolder.directHText": "Horizontal", "DE.Views.DocumentHolder.directionText": "Text direction", "DE.Views.DocumentHolder.editChartText": "Edit data", - "DE.Views.DocumentHolder.editFooterText": "Edit Footer", - "DE.Views.DocumentHolder.editHeaderText": "Edit Header", + "DE.Views.DocumentHolder.editFooterText": "Edit footer", + "DE.Views.DocumentHolder.editHeaderText": "Edit header", "DE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", "DE.Views.DocumentHolder.eqToInlineText": "Change to Inline", "DE.Views.DocumentHolder.guestText": "Guest", @@ -1735,7 +1745,7 @@ "DE.Views.DocumentHolder.textDistributeRows": "Distribute rows", "DE.Views.DocumentHolder.textEditControls": "Content control settings", "DE.Views.DocumentHolder.textEditPoints": "Edit Points", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit Wrap Boundary", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Edit wrap boundary", "DE.Views.DocumentHolder.textFlipH": "Flip Horizontally", "DE.Views.DocumentHolder.textFlipV": "Flip Vertically", "DE.Views.DocumentHolder.textFollow": "Follow move", @@ -1969,10 +1979,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Version", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbols with spaces", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Characters with spaces", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistics", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbols", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Characters", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", @@ -2043,6 +2053,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "View None", "DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without a notification", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Show track changes", @@ -2060,9 +2072,8 @@ "DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Download as", "DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save Copy as", "DE.Views.FileMenuPanels.RecentFiles.txtOpenRecent": "Open Recent", - "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header", - "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer", "DE.Views.FormSettings.textAlways": "Always", + "DE.Views.FormSettings.textAnyone": "Anyone", "DE.Views.FormSettings.textAspect": "Lock aspect ratio", "DE.Views.FormSettings.textAtLeast": "At least", "DE.Views.FormSettings.textAuto": "Auto", @@ -2074,12 +2085,16 @@ "DE.Views.FormSettings.textCombobox": "Combo Box", "DE.Views.FormSettings.textComplex": "Complex Field", "DE.Views.FormSettings.textConnected": "Fields connected", + "DE.Views.FormSettings.textCreditCard": "Credit Card Number (e.g 4111-1111-1111-1111)", + "DE.Views.FormSettings.textDateField": "Date & Time Field", + "DE.Views.FormSettings.textDateFormat": "Display the date like this", "DE.Views.FormSettings.textDelete": "Delete", "DE.Views.FormSettings.textDigits": "Digits", "DE.Views.FormSettings.textDisconnect": "Disconnect", "DE.Views.FormSettings.textDropDown": "Dropdown", "DE.Views.FormSettings.textExact": "Exactly", "DE.Views.FormSettings.textField": "Text Field", + "DE.Views.FormSettings.textFillRoles": "Who needs to fill this out?", "DE.Views.FormSettings.textFixed": "Fixed size field", "DE.Views.FormSettings.textFormat": "Format", "DE.Views.FormSettings.textFormatSymbols": "Allowed Symbols", @@ -2089,6 +2104,7 @@ "DE.Views.FormSettings.textGroupKey": "Group key", "DE.Views.FormSettings.textImage": "Image", "DE.Views.FormSettings.textKey": "Key", + "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Lock", "DE.Views.FormSettings.textMask": "Arbitrary Mask", @@ -2097,6 +2113,8 @@ "DE.Views.FormSettings.textNever": "Never", "DE.Views.FormSettings.textNoBorder": "No border", "DE.Views.FormSettings.textNone": "None", + "DE.Views.FormSettings.textPhone1": "Phone Number (e.g. (123) 456-7890)", + "DE.Views.FormSettings.textPhone2": "Phone Number (e.g. +447911123456)", "DE.Views.FormSettings.textPlaceholder": "Placeholder", "DE.Views.FormSettings.textRadiobox": "Radio Button", "DE.Views.FormSettings.textReg": "Regular Expression", @@ -2111,9 +2129,12 @@ "DE.Views.FormSettings.textTipUp": "Move up", "DE.Views.FormSettings.textTooBig": "Image is Too Big", "DE.Views.FormSettings.textTooSmall": "Image is Too Small", + "DE.Views.FormSettings.textUKPassport": "UK Passport Number (e.g. 925665416)", "DE.Views.FormSettings.textUnlock": "Unlock", + "DE.Views.FormSettings.textUSSSN": "US SSN (e.g. 123-45-6789)", "DE.Views.FormSettings.textValue": "Value Options", "DE.Views.FormSettings.textWidth": "Cell width", + "DE.Views.FormSettings.textZipCodeUS": "US Zip Code (e.g. 92663 or 92663-1234)", "DE.Views.FormsTab.capBtnCheckBox": "Checkbox", "DE.Views.FormsTab.capBtnComboBox": "Combo Box", "DE.Views.FormsTab.capBtnComplex": "Complex Field", @@ -2129,6 +2150,10 @@ "DE.Views.FormsTab.capBtnSubmit": "Submit", "DE.Views.FormsTab.capBtnText": "Text Field", "DE.Views.FormsTab.capBtnView": "View Form", + "DE.Views.FormsTab.capCreditCard": "Credit Card", + "DE.Views.FormsTab.capDateTime": "Date & Time", + "DE.Views.FormsTab.capZipCode": "Zip Code", + "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Clear Fields", "DE.Views.FormsTab.textClearFields": "Clear All Fields", "DE.Views.FormsTab.textCreateForm": "Add fields and create a fillable OFORM document", @@ -2140,10 +2165,14 @@ "DE.Views.FormsTab.tipCheckBox": "Insert checkbox", "DE.Views.FormsTab.tipComboBox": "Insert combo box", "DE.Views.FormsTab.tipComplexField": "Insert complex field", + "DE.Views.FormsTab.tipCreditCard": "Insert credit card number", + "DE.Views.FormsTab.tipDateTime": "Insert date and time", "DE.Views.FormsTab.tipDownloadForm": "Download a file as a fillable OFORM document", "DE.Views.FormsTab.tipDropDown": "Insert dropdown list", "DE.Views.FormsTab.tipEmailField": "Insert email address", + "DE.Views.FormsTab.tipFixedText": "Insert fixed text field", "DE.Views.FormsTab.tipImageField": "Insert image", + "DE.Views.FormsTab.tipInlineText": "Insert inline text field", "DE.Views.FormsTab.tipNextForm": "Go to the next field", "DE.Views.FormsTab.tipPhoneField": "Insert phone number", "DE.Views.FormsTab.tipPrevForm": "Go to the previous field", @@ -2152,6 +2181,11 @@ "DE.Views.FormsTab.tipSubmit": "Submit form", "DE.Views.FormsTab.tipTextField": "Insert text field", "DE.Views.FormsTab.tipViewForm": "View form", + "DE.Views.FormsTab.tipZipCode": "Insert zip code", + "DE.Views.FormsTab.txtFixedDesc": "Insert fixed text field", + "DE.Views.FormsTab.txtFixedText": "Fixed", + "DE.Views.FormsTab.txtInlineDesc": "Insert inline text field", + "DE.Views.FormsTab.txtInlineText": "Inline", "DE.Views.FormsTab.txtUntitled": "Untitled", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left", @@ -2333,21 +2367,21 @@ "DE.Views.Links.capBtnTOF": "Table of Figures", "DE.Views.Links.confirmDeleteFootnotes": "Do you want to delete all footnotes?", "DE.Views.Links.confirmReplaceTOF": "Do you want to replace the selected table of figures?", - "DE.Views.Links.mniConvertNote": "Convert All Notes", - "DE.Views.Links.mniDelFootnote": "Delete All Notes", - "DE.Views.Links.mniInsEndnote": "Insert Endnote", - "DE.Views.Links.mniInsFootnote": "Insert Footnote", - "DE.Views.Links.mniNoteSettings": "Notes Settings", + "DE.Views.Links.mniConvertNote": "Convert all notes", + "DE.Views.Links.mniDelFootnote": "Delete all notes", + "DE.Views.Links.mniInsEndnote": "Insert endnote", + "DE.Views.Links.mniInsFootnote": "Insert footnote", + "DE.Views.Links.mniNoteSettings": "Notes settings", "DE.Views.Links.textContentsRemove": "Remove table of contents", "DE.Views.Links.textContentsSettings": "Settings", "DE.Views.Links.textConvertToEndnotes": "Convert All Footnotes to Endnotes", "DE.Views.Links.textConvertToFootnotes": "Convert All Endnotes to Footnotes", - "DE.Views.Links.textGotoEndnote": "Go to Endnotes", - "DE.Views.Links.textGotoFootnote": "Go to Footnotes", + "DE.Views.Links.textGotoEndnote": "Go to endnotes", + "DE.Views.Links.textGotoFootnote": "Go to footnotes", "DE.Views.Links.textSwapNotes": "Swap Footnotes and Endnotes", "DE.Views.Links.textUpdateAll": "Update entire table", "DE.Views.Links.textUpdatePages": "Update page numbers only", - "DE.Views.Links.tipAddText": "Include heading in the Table of Contents", + "DE.Views.Links.tipAddText": "Include heading in the table of contents", "DE.Views.Links.tipBookmarks": "Create a bookmark", "DE.Views.Links.tipCaption": "Insert caption", "DE.Views.Links.tipContents": "Insert table of contents", @@ -2358,7 +2392,7 @@ "DE.Views.Links.tipTableFigures": "Insert table of figures", "DE.Views.Links.tipTableFiguresUpdate": "Update table of figures", "DE.Views.Links.titleUpdateTOF": "Update Table of Figures", - "DE.Views.Links.txtDontShowTof": "Do Not Show in Table of Contents", + "DE.Views.Links.txtDontShowTof": "Do not show in table of contents", "DE.Views.Links.txtLevel": "Level", "DE.Views.ListSettingsDialog.textAuto": "Automatic", "DE.Views.ListSettingsDialog.textCenter": "Center", @@ -2606,45 +2640,46 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders", + "DE.Views.PrintWithPreview.textMarginsLast": "Last Custom", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderate", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Wide", + "DE.Views.PrintWithPreview.txtAllPages": "All pages", + "DE.Views.PrintWithPreview.txtBottom": "Bottom", + "DE.Views.PrintWithPreview.txtCurrentPage": "Current page", + "DE.Views.PrintWithPreview.txtCustom": "Custom", + "DE.Views.PrintWithPreview.txtCustomPages": "Custom print", + "DE.Views.PrintWithPreview.txtLandscape": "Landscape", + "DE.Views.PrintWithPreview.txtLeft": "Left", + "DE.Views.PrintWithPreview.txtMargins": "Margins", + "DE.Views.PrintWithPreview.txtOf": "of {0}", + "DE.Views.PrintWithPreview.txtPage": "Page", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid", + "DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation", + "DE.Views.PrintWithPreview.txtPages": "Pages", + "DE.Views.PrintWithPreview.txtPageSize": "Page size", + "DE.Views.PrintWithPreview.txtPortrait": "Portrait", + "DE.Views.PrintWithPreview.txtPrint": "Print", + "DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Print range", + "DE.Views.PrintWithPreview.txtRight": "Right", + "DE.Views.PrintWithPreview.txtSelection": "Selection", + "DE.Views.PrintWithPreview.txtTop": "Top", "DE.Views.ProtectDialog.textComments": "Comments", "DE.Views.ProtectDialog.textForms": "Filling forms", "DE.Views.ProtectDialog.textReview": "Tracked changes", "DE.Views.ProtectDialog.textView": "No changes (Read only)", "DE.Views.ProtectDialog.txtAllow": "Allow only this type of editing in the document", "DE.Views.ProtectDialog.txtIncorrectPwd": "Confirmation password is not identical", + "DE.Views.ProtectDialog.txtLimit": "Password is limited to 15 characters", "DE.Views.ProtectDialog.txtOptional": "optional", "DE.Views.ProtectDialog.txtPassword": "Password", "DE.Views.ProtectDialog.txtProtect": "Protect", "DE.Views.ProtectDialog.txtRepeat": "Repeat password", "DE.Views.ProtectDialog.txtTitle": "Protect", "DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", - "DE.Views.PrintWithPreview.txtPrint": "Print", - "DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF", - "DE.Views.PrintWithPreview.txtPrintRange": "Print range", - "DE.Views.PrintWithPreview.txtCurrentPage": "Current page", - "DE.Views.PrintWithPreview.txtAllPages": "All pages", - "DE.Views.PrintWithPreview.txtSelection": "Selection", - "DE.Views.PrintWithPreview.txtCustomPages": "Custom print", - "DE.Views.PrintWithPreview.txtPageSize": "Page size", - "DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation", - "DE.Views.PrintWithPreview.txtPortrait": "Portrait", - "DE.Views.PrintWithPreview.txtLandscape": "Landscape", - "DE.Views.PrintWithPreview.txtCustom": "Custom", - "DE.Views.PrintWithPreview.txtMargins": "Margins", - "DE.Views.PrintWithPreview.txtTop": "Top", - "DE.Views.PrintWithPreview.txtBottom": "Bottom", - "DE.Views.PrintWithPreview.txtLeft": "Left", - "DE.Views.PrintWithPreview.txtRight": "Right", - "DE.Views.PrintWithPreview.txtPage": "Page", - "DE.Views.PrintWithPreview.txtOf": "of {0}", - "DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid", - "DE.Views.PrintWithPreview.txtPages": "Pages", - "DE.Views.PrintWithPreview.textMarginsLast": "Last Custom", - "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", - "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", - "DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow", - "DE.Views.PrintWithPreview.textMarginsModerate": "Moderate", - "DE.Views.PrintWithPreview.textMarginsWide": "Wide", "DE.Views.RightMenu.txtChartSettings": "Chart settings", "DE.Views.RightMenu.txtFormSettings": "Form Settings", "DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings", @@ -2655,6 +2690,35 @@ "DE.Views.RightMenu.txtSignatureSettings": "Signature settings", "DE.Views.RightMenu.txtTableSettings": "Table settings", "DE.Views.RightMenu.txtTextArtSettings": "Text Art settings", + "DE.Views.RoleDeleteDlg.textLabel": "To delete this role, you need to move the fields associated with it to another role.", + "DE.Views.RoleDeleteDlg.textSelect": "Select for field merger role", + "DE.Views.RoleDeleteDlg.textTitle": "Delete Role", + "DE.Views.RoleEditDlg.capBtnManager": "Manage Roles", + "DE.Views.RoleEditDlg.errNameExists": "Role with such a name already exists.", + "DE.Views.RoleEditDlg.textEmptyError": "Role name must not be empty.", + "DE.Views.RoleEditDlg.textName": "Role name", + "DE.Views.RoleEditDlg.textNoHighlight": "No highlighting", + "DE.Views.RoleEditDlg.tipManager": "Manage Roles", + "DE.Views.RoleEditDlg.txtTitleEdit": "Edit Role", + "DE.Views.RoleEditDlg.txtTitleNew": "Create New Role", + "DE.Views.RolesManagerDlg.closeButtonText ": "Close", + "DE.Views.RolesManagerDlg.textAnyone": "Anyone", + "DE.Views.RolesManagerDlg.textDelete": "Delete", + "DE.Views.RolesManagerDlg.textDescription": "Add roles and set the order in which the fillers receive and sign the document", + "DE.Views.RolesManagerDlg.textDown": "Move role down", + "DE.Views.RolesManagerDlg.textEdit": "Edit", + "DE.Views.RolesManagerDlg.textEmpty": "No roles have been created yet.
Create at least one role and it will appear in this field.", + "DE.Views.RolesManagerDlg.textNew": "New", + "DE.Views.RolesManagerDlg.textUp": "Move role up", + "DE.Views.RolesManagerDlg.txtTitle": "Manage Roles", + "DE.Views.RolesManagerDlg.warnCantDelete": "You cannot delete this role because it has associated fields.", + "DE.Views.RolesManagerDlg.warnDelete": "Are you sure you want to delete the role {0}?", + "DE.Views.SaveFormDlg.saveButtonText": "Save", + "DE.Views.SaveFormDlg.textAnyone": "Anyone", + "DE.Views.SaveFormDlg.textDescription": "When saving to the oform, only roles with fields are added to the filling list", + "DE.Views.SaveFormDlg.textEmpty": "There are no roles associated with fields.", + "DE.Views.SaveFormDlg.textFill": "Filling list", + "DE.Views.SaveFormDlg.txtTitle": "Save as Form", "DE.Views.ShapeSettings.strBackground": "Background color", "DE.Views.ShapeSettings.strChange": "Change Autoshape", "DE.Views.ShapeSettings.strColor": "Color", @@ -2688,7 +2752,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Pattern", "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radial", - "DE.Views.ShapeSettings.textRecentlyUsed": "Recently Used", + "DE.Views.ShapeSettings.textRecentlyUsed": "Recently used", "DE.Views.ShapeSettings.textRotate90": "Rotate 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Select Picture", @@ -2746,6 +2810,12 @@ "DE.Views.Statusbar.tipZoomIn": "Zoom in", "DE.Views.Statusbar.tipZoomOut": "Zoom out", "DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid", + "DE.Views.Statusbar.txtPages": "Pages", + "DE.Views.Statusbar.txtParagraphs": "Paragraphs", + "DE.Views.Statusbar.txtSpaces": "Symbols with spaces", + "DE.Views.Statusbar.txtSymbols": "Symbols", + "DE.Views.Statusbar.txtWordCount": "Word count", + "DE.Views.Statusbar.txtWords": "Words", "DE.Views.StyleTitleDialog.textHeader": "Create new style", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textTitle": "Title", @@ -2999,37 +3069,37 @@ "DE.Views.Toolbar.capImgGroup": "Group", "DE.Views.Toolbar.capImgWrapping": "Wrapping", "DE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word", - "DE.Views.Toolbar.mniCustomTable": "Insert Custom Table", - "DE.Views.Toolbar.mniDrawTable": "Draw Table", + "DE.Views.Toolbar.mniCustomTable": "Insert custom table", + "DE.Views.Toolbar.mniDrawTable": "Draw table", "DE.Views.Toolbar.mniEditControls": "Control Settings", "DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings", - "DE.Views.Toolbar.mniEditFooter": "Edit Footer", - "DE.Views.Toolbar.mniEditHeader": "Edit Header", - "DE.Views.Toolbar.mniEraseTable": "Erase Table", + "DE.Views.Toolbar.mniEditFooter": "Edit footer", + "DE.Views.Toolbar.mniEditHeader": "Edit header", + "DE.Views.Toolbar.mniEraseTable": "Erase table", "DE.Views.Toolbar.mniFromFile": "From File", "DE.Views.Toolbar.mniFromStorage": "From Storage", "DE.Views.Toolbar.mniFromUrl": "From URL", - "DE.Views.Toolbar.mniHiddenBorders": "Hidden Table Borders", - "DE.Views.Toolbar.mniHiddenChars": "Nonprinting Characters", - "DE.Views.Toolbar.mniHighlightControls": "Highlight Settings", + "DE.Views.Toolbar.mniHiddenBorders": "Hidden table borders", + "DE.Views.Toolbar.mniHiddenChars": "Nonprinting characters", + "DE.Views.Toolbar.mniHighlightControls": "Highlight settings", "DE.Views.Toolbar.mniImageFromFile": "Image from File", "DE.Views.Toolbar.mniImageFromStorage": "Image from Storage", "DE.Views.Toolbar.mniImageFromUrl": "Image from URL", "DE.Views.Toolbar.mniInsertSSE": "Insert Spreadsheet", "DE.Views.Toolbar.mniLowerCase": "lowercase", - "DE.Views.Toolbar.mniRemoveFooter": "Remove Footer", - "DE.Views.Toolbar.mniRemoveHeader": "Remove Header", + "DE.Views.Toolbar.mniRemoveFooter": "Remove footer", + "DE.Views.Toolbar.mniRemoveHeader": "Remove header", "DE.Views.Toolbar.mniSentenceCase": "Sentence case.", - "DE.Views.Toolbar.mniTextToTable": "Convert Text to Table", + "DE.Views.Toolbar.mniTextToTable": "Convert text to table", "DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE", "DE.Views.Toolbar.mniUpperCase": "UPPERCASE", - "DE.Views.Toolbar.strMenuNoFill": "No Fill", + "DE.Views.Toolbar.strMenuNoFill": "No fill", "DE.Views.Toolbar.textAutoColor": "Automatic", "DE.Views.Toolbar.textBold": "Bold", "DE.Views.Toolbar.textBottom": "Bottom: ", "DE.Views.Toolbar.textChangeLevel": "Change List Level", "DE.Views.Toolbar.textCheckboxControl": "Check box", - "DE.Views.Toolbar.textColumnsCustom": "Custom Columns", + "DE.Views.Toolbar.textColumnsCustom": "Custom columns", "DE.Views.Toolbar.textColumnsLeft": "Left", "DE.Views.Toolbar.textColumnsOne": "One", "DE.Views.Toolbar.textColumnsRight": "Right", @@ -3037,18 +3107,18 @@ "DE.Views.Toolbar.textColumnsTwo": "Two", "DE.Views.Toolbar.textComboboxControl": "Combo box", "DE.Views.Toolbar.textContinuous": "Continuous", - "DE.Views.Toolbar.textContPage": "Continuous Page", - "DE.Views.Toolbar.textCustomLineNumbers": "Line Numbering Options", + "DE.Views.Toolbar.textContPage": "Continuous page", + "DE.Views.Toolbar.textCustomLineNumbers": "Line numbering options", "DE.Views.Toolbar.textDateControl": "Date", "DE.Views.Toolbar.textDropdownControl": "Drop-down list", - "DE.Views.Toolbar.textEditWatermark": "Custom Watermark", - "DE.Views.Toolbar.textEvenPage": "Even Page", + "DE.Views.Toolbar.textEditWatermark": "Custom watermark", + "DE.Views.Toolbar.textEvenPage": "Even page", "DE.Views.Toolbar.textInMargin": "In Margin", - "DE.Views.Toolbar.textInsColumnBreak": "Insert Column Break", + "DE.Views.Toolbar.textInsColumnBreak": "Insert column break", "DE.Views.Toolbar.textInsertPageCount": "Insert number of pages", - "DE.Views.Toolbar.textInsertPageNumber": "Insert page number", - "DE.Views.Toolbar.textInsPageBreak": "Insert Page Break", - "DE.Views.Toolbar.textInsSectionBreak": "Insert Section Break", + "DE.Views.Toolbar.textInsertPageNumber": "Insert Page Number", + "DE.Views.Toolbar.textInsPageBreak": "Insert page break", + "DE.Views.Toolbar.textInsSectionBreak": "Insert section break", "DE.Views.Toolbar.textInText": "In Text", "DE.Views.Toolbar.textItalic": "Italic", "DE.Views.Toolbar.textLandscape": "Landscape", @@ -3061,19 +3131,19 @@ "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Wide", "DE.Views.Toolbar.textNewColor": "Add New Custom Color", - "DE.Views.Toolbar.textNextPage": "Next Page", + "DE.Views.Toolbar.textNextPage": "Next page", "DE.Views.Toolbar.textNoHighlight": "No highlighting", "DE.Views.Toolbar.textNone": "None", - "DE.Views.Toolbar.textOddPage": "Odd Page", - "DE.Views.Toolbar.textPageMarginsCustom": "Custom Margins", - "DE.Views.Toolbar.textPageSizeCustom": "Custom Page Size", + "DE.Views.Toolbar.textOddPage": "Odd page", + "DE.Views.Toolbar.textPageMarginsCustom": "Custom margins", + "DE.Views.Toolbar.textPageSizeCustom": "Custom page size", "DE.Views.Toolbar.textPictureControl": "Picture", "DE.Views.Toolbar.textPlainControl": "Plain text", "DE.Views.Toolbar.textPortrait": "Portrait", "DE.Views.Toolbar.textRemoveControl": "Remove Content Control", - "DE.Views.Toolbar.textRemWatermark": "Remove Watermark", - "DE.Views.Toolbar.textRestartEachPage": "Restart Each Page", - "DE.Views.Toolbar.textRestartEachSection": "Restart Each Section", + "DE.Views.Toolbar.textRemWatermark": "Remove watermark", + "DE.Views.Toolbar.textRestartEachPage": "Restart each page", + "DE.Views.Toolbar.textRestartEachSection": "Restart each section", "DE.Views.Toolbar.textRichControl": "Rich text", "DE.Views.Toolbar.textRight": "Right: ", "DE.Views.Toolbar.textStrikeout": "Strikethrough", @@ -3085,7 +3155,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Subscript", "DE.Views.Toolbar.textSuperscript": "Superscript", - "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for Current Paragraph", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for current paragraph", "DE.Views.Toolbar.textTabCollaboration": "Collaboration", "DE.Views.Toolbar.textTabFile": "File", "DE.Views.Toolbar.textTabHome": "Home", @@ -3132,7 +3202,7 @@ "DE.Views.Toolbar.tipInsertEquation": "Insert equation", "DE.Views.Toolbar.tipInsertHorizontalText": "Insert horizontal text box", "DE.Views.Toolbar.tipInsertImage": "Insert image", - "DE.Views.Toolbar.tipInsertNum": "Insert Page Number", + "DE.Views.Toolbar.tipInsertNum": "Insert page number", "DE.Views.Toolbar.tipInsertShape": "Insert autoshape", "DE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt", "DE.Views.Toolbar.tipInsertSymbol": "Insert symbol", @@ -3165,10 +3235,11 @@ "DE.Views.Toolbar.tipPageMargins": "Page margins", "DE.Views.Toolbar.tipPageOrient": "Page orientation", "DE.Views.Toolbar.tipPageSize": "Page size", - "DE.Views.Toolbar.tipParagraphStyle": "Paragraph Style", + "DE.Views.Toolbar.tipParagraphStyle": "Paragraph style", "DE.Views.Toolbar.tipPaste": "Paste", "DE.Views.Toolbar.tipPrColor": "Shading", "DE.Views.Toolbar.tipPrint": "Print", + "DE.Views.Toolbar.tipPrintQuick": "Quick print", "DE.Views.Toolbar.tipRedo": "Redo", "DE.Views.Toolbar.tipSave": "Save", "DE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", @@ -3179,11 +3250,11 @@ "DE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", "DE.Views.Toolbar.tipUndo": "Undo", "DE.Views.Toolbar.tipWatermark": "Edit watermark", - "DE.Views.Toolbar.txtDistribHor": "Distribute Horizontally", - "DE.Views.Toolbar.txtDistribVert": "Distribute Vertically", - "DE.Views.Toolbar.txtMarginAlign": "Align to Margin", + "DE.Views.Toolbar.txtDistribHor": "Distribute horizontally", + "DE.Views.Toolbar.txtDistribVert": "Distribute vertically", + "DE.Views.Toolbar.txtMarginAlign": "Align to margin", "DE.Views.Toolbar.txtObjectsAlign": "Align Selected Objects", - "DE.Views.Toolbar.txtPageAlign": "Align to Page", + "DE.Views.Toolbar.txtPageAlign": "Align to page", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Median", "DE.Views.Toolbar.txtScheme11": "Metro", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index b3eab7ade..5cb403800 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -285,6 +285,7 @@ "Common.define.smartArt.textVerticalPictureList": "Lista vertical de imágenes", "Common.define.smartArt.textVerticalProcess": "Proceso vertical", "Common.Translation.textMoreButton": "Más", + "Common.Translation.tipFileLocked": "El documento está bloqueado para su edición. Puede hacer cambios y guardarlo como copia local más tarde.", "Common.Translation.warnFileLocked": "No puede editar este archivo porque está siendo editado en otra aplicación.", "Common.Translation.warnFileLockedBtnEdit": "Crear una copia", "Common.Translation.warnFileLockedBtnView": "Abrir para visualizar", @@ -458,6 +459,7 @@ "Common.Views.Header.textCompactView": "Esconder barra de herramientas", "Common.Views.Header.textHideLines": "Ocultar reglas", "Common.Views.Header.textHideStatusBar": "Ocultar barra de estado", + "Common.Views.Header.textReadOnly": "Sólo lectura", "Common.Views.Header.textRemoveFavorite": "Eliminar de Favoritos", "Common.Views.Header.textShare": "Compartir", "Common.Views.Header.textZoom": "Ampliación", @@ -465,6 +467,7 @@ "Common.Views.Header.tipDownload": "Descargar archivo", "Common.Views.Header.tipGoEdit": "Editar archivo actual", "Common.Views.Header.tipPrint": "Imprimir archivo", + "Common.Views.Header.tipPrintQuick": "Impresión rápida", "Common.Views.Header.tipRedo": "Rehacer", "Common.Views.Header.tipSave": "Guardar", "Common.Views.Header.tipSearch": "Búsqueda", @@ -1102,6 +1105,9 @@ "DE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado", "DE.Controllers.Navigation.txtBeginning": "Principio del documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir al principio de", + "DE.Controllers.Print.textMarginsLast": "Último personalizado", + "DE.Controllers.Print.txtCustom": "Personalizado", + "DE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impresión no válido", "DE.Controllers.Search.notcriticalErrorTitle": "Advertencia", "DE.Controllers.Search.textNoTextFound": "No se puede encontrar los datos que usted busca. Por favor, ajuste los parámetros de búsqueda.", "DE.Controllers.Search.textReplaceSkipped": "Se ha realizado la sustitución. Se han omitido {0} ocurrencias.", @@ -1951,10 +1957,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versión PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicación", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas que tienen derechos", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos con espacios", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caracteres con espacios", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estadísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Asunto", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caracteres", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiquetas", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Subido", @@ -2020,6 +2026,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Ver Ningunos", "DE.Views.FileMenuPanels.Settings.txtProofing": "Revisión", "DE.Views.FileMenuPanels.Settings.txtPt": "Punto", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar el botón Impresión Rápida en el encabezado del editor", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "El documento se imprimirá en la última impresora seleccionada o predeterminada", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todo", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas las macros sin notificación ", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar control de cambios", @@ -2577,6 +2585,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Fijar sólo borde superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sin bordes", + "DE.Views.PrintWithPreview.textMarginsLast": "Último personalizado", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderado", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Estrecho", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Amplio", + "DE.Views.PrintWithPreview.txtAllPages": "Todas las páginas", + "DE.Views.PrintWithPreview.txtBottom": "Parte inferior", + "DE.Views.PrintWithPreview.txtCurrentPage": "Página actual", + "DE.Views.PrintWithPreview.txtCustom": "Personalizado", + "DE.Views.PrintWithPreview.txtCustomPages": "Impresión personalizada", + "DE.Views.PrintWithPreview.txtLandscape": "Horizontal", + "DE.Views.PrintWithPreview.txtLeft": "Izquierdo", + "DE.Views.PrintWithPreview.txtMargins": "Márgenes", + "DE.Views.PrintWithPreview.txtOf": "de {0}", + "DE.Views.PrintWithPreview.txtPage": "Página", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Número de página no válido", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientación de página", + "DE.Views.PrintWithPreview.txtPages": "Páginas", + "DE.Views.PrintWithPreview.txtPageSize": "Tamaño de página", + "DE.Views.PrintWithPreview.txtPortrait": "Vertical", + "DE.Views.PrintWithPreview.txtPrint": "Imprimir", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir en PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Intervalo de impresión", + "DE.Views.PrintWithPreview.txtRight": "Derecho", + "DE.Views.PrintWithPreview.txtSelection": "Selección ", + "DE.Views.PrintWithPreview.txtTop": "Parte superior", "DE.Views.ProtectDialog.textComments": "Comentarios", "DE.Views.ProtectDialog.textForms": "Relleno de formularios", "DE.Views.ProtectDialog.textReview": "Cambios realizados", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 49413d270..cdc6a0c84 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -256,6 +256,8 @@ "Common.define.smartArt.textSubStepProcess": "Azpi-urratsen prozesua", "Common.define.smartArt.textTabList": "Fitxa-zerrenda", "Common.Translation.textMoreButton": "Gehiago", + "Common.Translation.tipFileLocked": "Dokumentua editatzeko blokeatuta dago. Aldaketak egin eta kopia lokal bezala gorde dezakezu gero.", + "Common.Translation.tipFileReadOnly": "Dokumentua irakurtzeko soilik da eta editatzea blokeatuta dago. Aldaketak egin eta kopia lokal bat gorde dezakezu gero.", "Common.Translation.warnFileLocked": "Ezin duzu fitxategi hau editatu, beste aplikazio batean editatzen ari direlako.", "Common.Translation.warnFileLockedBtnEdit": "Sortu kopia", "Common.Translation.warnFileLockedBtnView": "Ireki ikusteko", @@ -429,6 +431,7 @@ "Common.Views.Header.textCompactView": "Ezkutatu tresna-barra", "Common.Views.Header.textHideLines": "Ezkutatu erregelak", "Common.Views.Header.textHideStatusBar": "Ezkutatu egoera-barra", + "Common.Views.Header.textReadOnly": "Irakurtzeko soilik", "Common.Views.Header.textRemoveFavorite": "Kendu gogokoetatik", "Common.Views.Header.textShare": "Partekatu", "Common.Views.Header.textZoom": "Zooma", @@ -436,6 +439,7 @@ "Common.Views.Header.tipDownload": "Deskargatu fitxategia", "Common.Views.Header.tipGoEdit": "Editatu uneko fitxategia", "Common.Views.Header.tipPrint": "Inprimatu fitxategia", + "Common.Views.Header.tipPrintQuick": "Inprimatze bizkorra", "Common.Views.Header.tipRedo": "Berregin", "Common.Views.Header.tipSave": "Gorde", "Common.Views.Header.tipSearch": "Bilatu", @@ -1070,6 +1074,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Fitxategi hau editatzeko baimena ukatu zaizu.", "DE.Controllers.Navigation.txtBeginning": "Dokumentuaren hasiera", "DE.Controllers.Navigation.txtGotoBeginning": "Joan dokumentuaren hasierara", + "DE.Controllers.Print.textMarginsLast": "Azken pertsonalizatua", + "DE.Controllers.Print.txtCustom": "Pertsonalizatua", + "DE.Controllers.Print.txtPrintRangeInvalid": "Inprimaketa-bitarte baliogabea", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Sartu orri-zenbaki bat edo orri-tarte bat (adibidez, 5-12). Edo PDFra inprimatu dezakezu.", "DE.Controllers.Search.notcriticalErrorTitle": "Abisua", "DE.Controllers.Search.textNoTextFound": "Bilatu duzun datua ezin izan da aurkitu. Doitu bilaketaren ezarpenak.", "DE.Controllers.Search.textReplaceSkipped": "Ordezkapena burutu da. {0} agerraldi saltatu dira.", @@ -1982,6 +1990,7 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Ez ikusi batere", "DE.Views.FileMenuPanels.Settings.txtProofing": "Zuzenketa", "DE.Views.FileMenuPanels.Settings.txtPt": "Puntua", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Erakutsi Inprimatze bizkorra botoia editoreko goiburuan", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Gaitu guztiak", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Gaitu makro guztiak jakinarazpenik gabe", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Erakutsi aldaketen kontrola", @@ -2539,6 +2548,30 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Ezarri goiko ertza soilik", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automatikoa", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Ertzik gabe", + "DE.Views.PrintWithPreview.textMarginsLast": "Azken pertsonalizatua", + "DE.Views.PrintWithPreview.textMarginsModerate": "Ertaina", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Estua", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normala", + "DE.Views.PrintWithPreview.txtAllPages": "Orri guztiak", + "DE.Views.PrintWithPreview.txtBottom": "Behean", + "DE.Views.PrintWithPreview.txtCurrentPage": "Uneko orria", + "DE.Views.PrintWithPreview.txtCustom": "Pertsonalizatua", + "DE.Views.PrintWithPreview.txtCustomPages": "Inprimatze pertsonalizatua", + "DE.Views.PrintWithPreview.txtLandscape": "Horizontala", + "DE.Views.PrintWithPreview.txtLeft": "Ezkerra", + "DE.Views.PrintWithPreview.txtMargins": "Marjinak", + "DE.Views.PrintWithPreview.txtOf": "{0}-(e)tik", + "DE.Views.PrintWithPreview.txtPage": "Orria", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Orrialde-zenbaki baliogabea", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orriaren orientazioa", + "DE.Views.PrintWithPreview.txtPages": "Orriak", + "DE.Views.PrintWithPreview.txtPageSize": "Orriaren tamaina", + "DE.Views.PrintWithPreview.txtPortrait": "Bertikala", + "DE.Views.PrintWithPreview.txtPrint": "Inprimatu", + "DE.Views.PrintWithPreview.txtPrintPdf": "Inprimatu PDFra", + "DE.Views.PrintWithPreview.txtPrintRange": "Inprimatu barrutia", + "DE.Views.PrintWithPreview.txtRight": "Eskuina", + "DE.Views.PrintWithPreview.txtSelection": "Hautapena", "DE.Views.ProtectDialog.textComments": "Iruzkinak", "DE.Views.ProtectDialog.textForms": "Formularioak betetzea", "DE.Views.ProtectDialog.textView": "Aldaketarik ez (irakurtzeko soilik)", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 3942e5d0c..47056b06b 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -1045,7 +1045,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Sijainti", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Henkilöt, joilla ovat oikeudet", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolit välilyönneillä", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Merkkiä välilyönneillä", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Tilastot", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolit", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Asiakirjan otsikko", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 3404ee030..c92eb37c1 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Liste d’images verticale", "Common.define.smartArt.textVerticalProcess": "Processus vertical", "Common.Translation.textMoreButton": "Plus", + "Common.Translation.tipFileLocked": "Le document est verrouillé pour l'édition. Vous pouvez apporter des modifications et l'enregistrer comme copie locale ultérieurement.", + "Common.Translation.tipFileReadOnly": "Le fichier est disponible en lecture seule. Pour sauvegarder vos modifications, enregistrez le fichier sous un nouveau nom ou à un autre endroit.", "Common.Translation.warnFileLocked": "Vous ne pouvez pas modifier ce fichier car il a été modifié avec une autre application.", "Common.Translation.warnFileLockedBtnEdit": "Créer une copie", "Common.Translation.warnFileLockedBtnView": "Ouvrir pour visualisation", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Masquer la barre d'outils", "Common.Views.Header.textHideLines": "Masquer les règles", "Common.Views.Header.textHideStatusBar": "Masquer la barre d'état", + "Common.Views.Header.textReadOnly": "Lecture seule", "Common.Views.Header.textRemoveFavorite": "Enlever des favoris", "Common.Views.Header.textShare": "Partager", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Télécharger le fichier", "Common.Views.Header.tipGoEdit": "Modifier le fichier courant", "Common.Views.Header.tipPrint": "Imprimer le fichier", + "Common.Views.Header.tipPrintQuick": "Impression rapide", "Common.Views.Header.tipRedo": "Rétablir", "Common.Views.Header.tipSave": "Enregistrer", "Common.Views.Header.tipSearch": "Recherche", @@ -562,13 +566,13 @@ "Common.Views.ReviewChanges.txtClose": "Fermer", "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de co-édition ", "Common.Views.ReviewChanges.txtCommentRemAll": "Supprimer tous les commentaires", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Supprimer les commentaires existants", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Supprimer les commentaires actuels", "Common.Views.ReviewChanges.txtCommentRemMy": "Supprimer mes commentaires", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Supprimer mes commentaires actuels", "Common.Views.ReviewChanges.txtCommentRemove": "Supprimer", "Common.Views.ReviewChanges.txtCommentResolve": "Résoudre", "Common.Views.ReviewChanges.txtCommentResolveAll": "Marquer tous les commentaires comme résolus", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Résoudre les commentaires actuels", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Marquer les commentaires actuels comme résolus", "Common.Views.ReviewChanges.txtCommentResolveMy": "Marquer mes commentaires comme résolus", "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Marquer mes commentaires comme résolus", "Common.Views.ReviewChanges.txtCompare": "Comparer", @@ -612,6 +616,7 @@ "Common.Views.ReviewPopover.textCancel": "Annuler", "Common.Views.ReviewPopover.textClose": "Fermer", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Entrez votre commentaire ici", "Common.Views.ReviewPopover.textFollowMove": "Suivre le Mouvement", "Common.Views.ReviewPopover.textMention": "+mention donne l'accès au document et notifie par courriel ", "Common.Views.ReviewPopover.textMentionNotify": "+mention notifie l'utilisateur par courriel", @@ -699,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Ne plus me demander à nouveau", "Common.Views.UserNameDialog.textLabel": "Étiquette :", "Common.Views.UserNameDialog.textLabelError": "Étiquette ne doit pas être vide", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Le document est protégé. Vous pouvez uniquement laisser des commentaires dans ce document.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Le document est protégé. Vous pouvez uniquement remplir les formulaires de ce document.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Le document est protégé. Vous pouvez modifier ce document, mais toutes les modifications seront suivies.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Le document est protégé. Vous pouvez uniquement consulter ce document.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Le document a été protégé par un autre utilisateur.\nVous pouvez uniquement laisser des commentaires dans ce document.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Le document a été protégé par un autre utilisateur.\nVous pouvez uniquement remplir les formulaires de ce document.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Le document a été protégé par un autre utilisateur.\nVous pouvez modifier ce document, mais toutes les modifications seront suivies.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Le document a été protégé par un autre utilisateur.\nVous pouvez uniquement afficher ce document.", + "DE.Controllers.DocProtection.txtWasUnprotected": "La protection du document a été retirée.", "DE.Controllers.LeftMenu.leavePageText": "Toutes les modifications non enregistrées dans ce document seront perdus.
Cliquez sur \"Annuler\", puis \"Enregistrer\" pour les sauver. Cliquez sur \"OK\" pour annuler toutes les modifications non enregistrées.", "DE.Controllers.LeftMenu.newDocumentTitle": "Document sans nom", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertissement", @@ -726,6 +740,7 @@ "DE.Controllers.Main.downloadTitleText": "Téléchargement du document", "DE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
Veuillez contacter l'administrateur de Document Server.", "DE.Controllers.Main.errorBadImageUrl": "L'URL de l'image est incorrecte", + "DE.Controllers.Main.errorCannotPasteImg": "Il n'est pas possible de coller cette image à partir du Presse-papiers, mais vous pouvez l'enregistrer sur votre appareil et l'insérer à partir de là, ou vous pouvez copier l'image sans texte et la coller dans le document.", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.", "DE.Controllers.Main.errorComboSeries": "Résultats de traduction\nPour créer un graphique combiné, sélectionnez au moins deux séries de données. ", "DE.Controllers.Main.errorCompare": "La fonctionnalité «‎ Comparaison des documents » n'est pas disponible lors de co-édition.", @@ -829,6 +844,7 @@ "DE.Controllers.Main.textRequestMacros": "Une macro fait une demande à l'URL. Voulez-vous autoriser la demande à l'adresse %1 ?", "DE.Controllers.Main.textShape": "Forme", "DE.Controllers.Main.textStrict": "Mode strict", + "DE.Controllers.Main.textTryQuickPrint": "Vous avez sélectionné Impression rapide : l'ensemble du document sera imprimé sur la dernière imprimante sélectionnée ou celle par défaut.
Voulez-vous continuer ?", "DE.Controllers.Main.textTryUndoRedo": "Les fonctions annuler/rétablir sont désactivées pour le mode de co-édition rapide.
Cliquez sur le bouton \"Mode strict\" pour passer au mode de la co-édition stricte pour modifier le fichier sans interférence d'autres utilisateurs et envoyer vos modifications seulement après que vous les enregistrez. Vous pouvez basculer entre les modes de co-édition à l'aide de paramètres avancés d'éditeur.", "DE.Controllers.Main.textTryUndoRedoWarn": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", "DE.Controllers.Main.textUndo": "Annuler", @@ -1051,7 +1067,7 @@ "DE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", "DE.Controllers.Main.txtStyle_Caption": "Légende", "DE.Controllers.Main.txtStyle_endnote_text": "Texte de note de fin", - "DE.Controllers.Main.txtStyle_footnote_text": "Texte de la note de bas de page", + "DE.Controllers.Main.txtStyle_footnote_text": "Texte de pied de page", "DE.Controllers.Main.txtStyle_Heading_1": "Titre 1", "DE.Controllers.Main.txtStyle_Heading_2": "Titre 2", "DE.Controllers.Main.txtStyle_Heading_3": "Titre 3", @@ -1102,6 +1118,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", "DE.Controllers.Navigation.txtBeginning": "Début du document", "DE.Controllers.Navigation.txtGotoBeginning": "Aller au début du document", + "DE.Controllers.Print.textMarginsLast": "Derniers personnalisés", + "DE.Controllers.Print.txtCustom": "Personnalisé", + "DE.Controllers.Print.txtPrintRangeInvalid": "Plage d'impression non valide", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Saisissez un numéro de page unique ou une plage de pages unique (par exemple, 5-12). Vous pouvez également imprimer en PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Avertissement", "DE.Controllers.Search.textNoTextFound": "Les données que vous recherchez n'ont pas pu être trouvées. Veuillez modifier vos options de recherche.", "DE.Controllers.Search.textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.", @@ -1127,7 +1147,7 @@ "DE.Controllers.Toolbar.textInsert": "Insérer", "DE.Controllers.Toolbar.textIntegral": "Intégrales", "DE.Controllers.Toolbar.textLargeOperator": "Grands opérateurs", - "DE.Controllers.Toolbar.textLimitAndLog": "Limites et logarithmes ", + "DE.Controllers.Toolbar.textLimitAndLog": "Limites et logarithmes", "DE.Controllers.Toolbar.textMatrix": "Matrices", "DE.Controllers.Toolbar.textOperator": "Opérateurs", "DE.Controllers.Toolbar.textRadical": "Radicaux", @@ -1163,52 +1183,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Chapeau", "DE.Controllers.Toolbar.txtAccent_Smile": "Brève", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "DE.Controllers.Toolbar.txtBracket_Angle": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Crochets avec séparateurs", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Crochets avec séparateurs", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Curve": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Crochets avec séparateurs", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Crochet unique", + "DE.Controllers.Toolbar.txtBracket_Angle": "Crochets pointus", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Crochets pointus avec séparateur", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Crochets pointus avec deux séparateurs", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Crochet angulaire droite", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Crochet angulaire à gauche", + "DE.Controllers.Toolbar.txtBracket_Curve": "Accolades", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Accolades avec séparateur", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Accolade droite", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Accolade gauche", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Cas (deux conditions)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Cas (trois conditions)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Objet empilé", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Objet empilé", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Objet de pile entre parenthèses", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemple de cas", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Coefficient binomial", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coefficient binomial", - "DE.Controllers.Toolbar.txtBracket_Line": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Crochets", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Crochets", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Round": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Crochets avec séparateurs", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Crochet unique", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coefficient binomial entre crochets pointus", + "DE.Controllers.Toolbar.txtBracket_Line": "Barres verticales", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Barre verticale droite", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Barre verticale gauche", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Barres verticales doubles", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Double barre verticale droite", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Double barre verticale gauche", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Plancher", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Plancher à droite", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Plancher à gauche", + "DE.Controllers.Toolbar.txtBracket_Round": "Parenthèses", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parenthèses avec séparateur", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Parenthèse droite", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Parenthèse gauche", "DE.Controllers.Toolbar.txtBracket_Square": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Crochets", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Crochets", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Crochets", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Crochets", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Crochet unique", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Crochet unique", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder entre deux crochets droits", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Crochets inversés", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Crochet droit", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Crochet gauche", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder entre deux crochets gauches", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double crochets", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Double crochet droit", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Double crochet gauche", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Plafond", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Plafond à droite", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Plafond à gauche", "DE.Controllers.Toolbar.txtFractionDiagonal": "Fraction oblique", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Différentiel", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Différentiel", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Différentiel", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Différentiel", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dx sur dy", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y sur cap delta x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "partielle y sur partielle x", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "y delta sur delta x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Fraction sur une ligne", "DE.Controllers.Toolbar.txtFractionPi_2": "Pi divisé par 2", "DE.Controllers.Toolbar.txtFractionSmall": "Petite fraction", @@ -1244,63 +1264,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Thêta différentiel", "DE.Controllers.Toolbar.txtIntegral_dx": "Différentiel x", "DE.Controllers.Toolbar.txtIntegral_dy": "Différentiel y", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Intégrale", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Intégrale avec limites empilées", "DE.Controllers.Toolbar.txtIntegralDouble": "Double intégrale", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double intégrale", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double intégrale", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Intégrale double avec limites empilées", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Intégrale double avec limites", "DE.Controllers.Toolbar.txtIntegralOriented": "Intégrale de contour", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Intégrale de contour", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Intégrale de contour avec limites empilées", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Intégrale de surface", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Intégrale de surface", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Intégrale de surface", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Intégrale de contour", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Intégrale de surface avec limites empilées", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Intégrale de surface avec limites", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Intégrale de contour avec limites", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Intégrale de volume", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Intégrale de volume", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Intégrale de volume", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Intégrale", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Intégrale de volume avec limites empilées", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Intégrale de volume avec limites", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Intégrale avec limites", "DE.Controllers.Toolbar.txtIntegralTriple": "Triple intégrale", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple intégrale", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple intégrale", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Coin", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Coin", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Coin", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Coin", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Coin", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Intégrale triple avec limites empilées", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Intégrale triple avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Et logique", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Et logique avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Et logique avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Et logique avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Et logique avec limites en indice/exposant", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-produit", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-produit", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-produit", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-produit", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-produit", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produit", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "en V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "en V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "en V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "en V", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "en V", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduit avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduit avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduit avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduit avec limites en indice/en exposant", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Somme sur k de n choix k", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Somme de i égal à zéro à n", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemple de somme utilisant deux indices", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemple de produit", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemple d’union", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Ou logique", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Ou logique avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Ou logique avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Ou logique avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Ou logique avec limites en indice/exposant", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection avec limites en indice/exposant", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produit", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produit", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produit", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produit", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produit", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produit avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produit avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produit avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produit avec limites en indice/exposant", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somme", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somme", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Somme avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Somme avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Somme avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Somme avec limites en indice/exposant", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union avec limite inférieure", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union avec limites", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union avec limite inférieure en indice", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union avec limites en indice/exposant", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemple de limite", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemple de maximum", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limite", @@ -1315,10 +1335,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "Matrice vide 1x3", "DE.Controllers.Toolbar.txtMatrix_2_1": "Matrice vide 2x1", "DE.Controllers.Toolbar.txtMatrix_2_2": "Matrice vide 2x2", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice vide avec crochets", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice vide avec crochets", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice vide avec crochets", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice vide avec crochets", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice 2x2 vide avec doubles barres verticales", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Déterminant 2x2 vide", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice d’identité 2x2 vide entre parenthèses", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice d’identité 2x2 vide entre crochets", "DE.Controllers.Toolbar.txtMatrix_2_3": "Matrice vide 2x3", "DE.Controllers.Toolbar.txtMatrix_3_1": "Matrice vide 3x1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Matrice vide 3x2", @@ -1327,12 +1347,12 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Points d'interligne", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Points diagonaux", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Points verticaux", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice avec pointillés", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice avec pointillés", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice d'identité 2x2", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice avec pointillés entre parenthèses", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice avec pointillés entre crochets", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice d’identité 2x2 avec zéros", "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice d'identité 3x3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice d'identité 3x3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice d'identité 3x3", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice d’identité 3x3 avec zéros", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice d’identité 3x3 avec cellules hors diagonale vides", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Flèche gauche-droite en dessous", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Flèche gauche-droite au-dessus", "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Flèche vers la gauche en dessous", @@ -1344,8 +1364,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Les rendements Delta", "DE.Controllers.Toolbar.txtOperator_Definition": "Égal par définition à", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta égal à", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Flèche gauche-droite en dessous", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Flèche gauche-droite au-dessus", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Double flèche gauche-droite au-dessous", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Double flèche gauche-droite au-dessus", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Flèche vers la gauche en dessous", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Flèche vers la gauche au-dessus", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Flèche vers la droite en dessous", @@ -1354,16 +1374,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Moins égal", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Égal", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Mesuré(e) par", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Côté droit de la formule quadratique", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Racine carrée de a au carré plus b au carré", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Racine carrée avec degré", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Racine cubique", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical avec degré", "DE.Controllers.Toolbar.txtRadicalSqrt": "Racine carrée", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x indice y au carré", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e au i négatif oméga t", + "DE.Controllers.Toolbar.txtScriptCustom_3": "x au carré", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y exposant gauche n indice gauche un", "DE.Controllers.Toolbar.txtScriptSub": "Indice", "DE.Controllers.Toolbar.txtScriptSubSup": "Indice-Exposant", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Indice-Exposant gauche", @@ -1622,6 +1642,7 @@ "DE.Views.DocProtection.txtDocProtectedView": "Le document est protégé.
Vous ne pouvez que visualiser ce document.", "DE.Views.DocProtection.txtDocUnlockDescription": "Saisissez le mot de passe pour déprotéger le document", "DE.Views.DocProtection.txtProtectDoc": "Protéger le document", + "DE.Views.DocProtection.txtUnlockTitle": "Déprotéger le document", "DE.Views.DocumentHolder.aboveText": "Au-dessus", "DE.Views.DocumentHolder.addCommentText": "Ajouter un commentaire", "DE.Views.DocumentHolder.advancedDropCapText": "Paramètres de la lettrine", @@ -1951,10 +1972,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Version PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Emplacement", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personnes qui ont des droits", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboles avec des espaces", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caractères avec espaces", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiques", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Sujet", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboles", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caractères", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titre du document", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Chargé", @@ -2020,6 +2041,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Surligner aucune modification", "DE.Views.FileMenuPanels.Settings.txtProofing": "Vérification", "DE.Views.FileMenuPanels.Settings.txtPt": "Point", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afficher le bouton d'impression rapide dans l'en-tête de l'éditeur", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Le document sera imprimé sur la dernière imprimante sélectionnée ou par défaut", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Activer tout", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Activer toutes les macros sans notification", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Afficher le suivi des modifications", @@ -2305,7 +2328,7 @@ "DE.Views.Links.confirmDeleteFootnotes": "Souhaitez-vous supprimer toutes les notes de bas de page ?", "DE.Views.Links.confirmReplaceTOF": "Voulez vous remplacer la table des figures sélectionnée ?", "DE.Views.Links.mniConvertNote": "Convertir toutes les notes", - "DE.Views.Links.mniDelFootnote": "Supprimer les notes de bas de page", + "DE.Views.Links.mniDelFootnote": "Supprimer toutes les notes", "DE.Views.Links.mniInsEndnote": "Insérer une note de fin", "DE.Views.Links.mniInsFootnote": "Insérer une note de bas de page", "DE.Views.Links.mniNoteSettings": "Paramètres des notes", @@ -2314,7 +2337,7 @@ "DE.Views.Links.textConvertToEndnotes": "Convertir tous les pieds de page aux notes de fin", "DE.Views.Links.textConvertToFootnotes": "Convertir toutes les notes de fin aux pieds de page", "DE.Views.Links.textGotoEndnote": "Passer aux notes de fin", - "DE.Views.Links.textGotoFootnote": "Accéder aux notes de bas de page", + "DE.Views.Links.textGotoFootnote": "Passer aux notes de bas de page", "DE.Views.Links.textSwapNotes": "Changer les notes de pied de page et les notes de fin", "DE.Views.Links.textUpdateAll": "Actualiser le tableau entier", "DE.Views.Links.textUpdatePages": "Actualiser les numéros de page uniquement", @@ -2577,6 +2600,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Seulement bordure supérieure", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Pas de bordures", + "DE.Views.PrintWithPreview.textMarginsLast": "Derniers personnalisés", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moyennes", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Étroites", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normales", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US normale", + "DE.Views.PrintWithPreview.textMarginsWide": "Larges", + "DE.Views.PrintWithPreview.txtAllPages": "Toutes les pages", + "DE.Views.PrintWithPreview.txtBottom": "Bas", + "DE.Views.PrintWithPreview.txtCurrentPage": "Page active", + "DE.Views.PrintWithPreview.txtCustom": "Personnalisé", + "DE.Views.PrintWithPreview.txtCustomPages": "Impression personnalisée", + "DE.Views.PrintWithPreview.txtLandscape": "Paysage", + "DE.Views.PrintWithPreview.txtLeft": "Gauche", + "DE.Views.PrintWithPreview.txtMargins": "Marges", + "DE.Views.PrintWithPreview.txtOf": "de {0}", + "DE.Views.PrintWithPreview.txtPage": "Page", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Numéro de page non valide", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientation de page", + "DE.Views.PrintWithPreview.txtPages": "Pages", + "DE.Views.PrintWithPreview.txtPageSize": "Taille de page", + "DE.Views.PrintWithPreview.txtPortrait": "Portrait", + "DE.Views.PrintWithPreview.txtPrint": "Imprimer", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimer au format PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Zone d'impression", + "DE.Views.PrintWithPreview.txtRight": "Droite", + "DE.Views.PrintWithPreview.txtSelection": "Sélection", + "DE.Views.PrintWithPreview.txtTop": "Haut", "DE.Views.ProtectDialog.textComments": "Commentaires", "DE.Views.ProtectDialog.textForms": "Remplissage des formulaires", "DE.Views.ProtectDialog.textReview": "Modifications", @@ -2632,7 +2682,7 @@ "DE.Views.ShapeSettings.textPatternFill": "Modèle", "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radial", - "DE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisé", + "DE.Views.ShapeSettings.textRecentlyUsed": "Récemment utilisés", "DE.Views.ShapeSettings.textRotate90": "Faire pivoter de 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", "DE.Views.ShapeSettings.textSelectImage": "Sélectionner l'image", @@ -2690,6 +2740,12 @@ "DE.Views.Statusbar.tipZoomIn": "Zoom avant", "DE.Views.Statusbar.tipZoomOut": "Zoom arrière", "DE.Views.Statusbar.txtPageNumInvalid": "Numéro de page non valide", + "DE.Views.Statusbar.txtPages": "Pages", + "DE.Views.Statusbar.txtParagraphs": "Paragraphes", + "DE.Views.Statusbar.txtSpaces": "Symboles avec espaces", + "DE.Views.Statusbar.txtSymbols": "Symboles", + "DE.Views.Statusbar.txtWordCount": "Nombre de mots", + "DE.Views.Statusbar.txtWords": "Mots", "DE.Views.StyleTitleDialog.textHeader": "Créer un nouveau style", "DE.Views.StyleTitleDialog.textNextStyle": "Style du nouveau paragraphe", "DE.Views.StyleTitleDialog.textTitle": "Titre", @@ -2943,7 +2999,7 @@ "DE.Views.Toolbar.capImgGroup": "Grouper", "DE.Views.Toolbar.capImgWrapping": "Retour à la ligne", "DE.Views.Toolbar.mniCapitalizeWords": "Mettre en majuscule chaque mot", - "DE.Views.Toolbar.mniCustomTable": "Inserer un tableau personnalisé", + "DE.Views.Toolbar.mniCustomTable": "Insérer un tableau personnalisé", "DE.Views.Toolbar.mniDrawTable": "Dessiner un tableau", "DE.Views.Toolbar.mniEditControls": "Paramètres de contrôle", "DE.Views.Toolbar.mniEditDropCap": "Paramètres de la lettrine", @@ -2953,7 +3009,7 @@ "DE.Views.Toolbar.mniFromFile": "Depuis un fichier", "DE.Views.Toolbar.mniFromStorage": "A partir de l'espace de stockage", "DE.Views.Toolbar.mniFromUrl": "À partir de l'URL", - "DE.Views.Toolbar.mniHiddenBorders": "Bordures du tableau cachées", + "DE.Views.Toolbar.mniHiddenBorders": "Bordures de tableau cachées", "DE.Views.Toolbar.mniHiddenChars": "Caractères non imprimables", "DE.Views.Toolbar.mniHighlightControls": "Paramètres de surbrillance", "DE.Views.Toolbar.mniImageFromFile": "Image à partir d'un fichier", @@ -2967,7 +3023,7 @@ "DE.Views.Toolbar.mniTextToTable": "Convertir un texte en tableau", "DE.Views.Toolbar.mniToggleCase": "Inverser la casse", "DE.Views.Toolbar.mniUpperCase": "Majuscules", - "DE.Views.Toolbar.strMenuNoFill": "Pas de remplissage", + "DE.Views.Toolbar.strMenuNoFill": "Aucun remplissage", "DE.Views.Toolbar.textAutoColor": "Automatique", "DE.Views.Toolbar.textBold": "Gras", "DE.Views.Toolbar.textBottom": "En bas: ", @@ -2982,7 +3038,7 @@ "DE.Views.Toolbar.textComboboxControl": "Zone de liste déroulante", "DE.Views.Toolbar.textContinuous": "Continue", "DE.Views.Toolbar.textContPage": "Page continue", - "DE.Views.Toolbar.textCustomLineNumbers": "Paramètres de la numérotation de lignes", + "DE.Views.Toolbar.textCustomLineNumbers": "Options de numérotation de ligne", "DE.Views.Toolbar.textDateControl": "Date", "DE.Views.Toolbar.textDropdownControl": "Liste déroulante", "DE.Views.Toolbar.textEditWatermark": "Filigrane personnalisé", @@ -2992,7 +3048,7 @@ "DE.Views.Toolbar.textInsertPageCount": "Insérer le nombre de pages", "DE.Views.Toolbar.textInsertPageNumber": "Insérer le numéro de page", "DE.Views.Toolbar.textInsPageBreak": "Insérer un saut de page", - "DE.Views.Toolbar.textInsSectionBreak": "Insérer un saut de section", + "DE.Views.Toolbar.textInsSectionBreak": "Insérer saut de section", "DE.Views.Toolbar.textInText": "Dans le Texte", "DE.Views.Toolbar.textItalic": "Italique", "DE.Views.Toolbar.textLandscape": "Paysage", @@ -3010,14 +3066,14 @@ "DE.Views.Toolbar.textNone": "Aucune", "DE.Views.Toolbar.textOddPage": "Page impaire", "DE.Views.Toolbar.textPageMarginsCustom": "Marges personnalisées", - "DE.Views.Toolbar.textPageSizeCustom": "Taille personnalisée", + "DE.Views.Toolbar.textPageSizeCustom": "Taille de page personnalisée", "DE.Views.Toolbar.textPictureControl": "Image", "DE.Views.Toolbar.textPlainControl": "Insérer un contrôle de contenu en texte brut", "DE.Views.Toolbar.textPortrait": "Portrait", "DE.Views.Toolbar.textRemoveControl": "Supprimer le contrôle du contenu", "DE.Views.Toolbar.textRemWatermark": "Supprimer le filigrane", - "DE.Views.Toolbar.textRestartEachPage": "Restaurer chaque page", - "DE.Views.Toolbar.textRestartEachSection": "Restaurer chaque section", + "DE.Views.Toolbar.textRestartEachPage": "Redémarrer à chaque page", + "DE.Views.Toolbar.textRestartEachSection": "Redémarrer à chaque section", "DE.Views.Toolbar.textRichControl": "Insérer un contrôle de contenu en texte enrichi", "DE.Views.Toolbar.textRight": "A droite: ", "DE.Views.Toolbar.textStrikeout": "Barré", @@ -3111,8 +3167,9 @@ "DE.Views.Toolbar.tipPageSize": "Taille de la page", "DE.Views.Toolbar.tipParagraphStyle": "Style de paragraphe", "DE.Views.Toolbar.tipPaste": "Coller", - "DE.Views.Toolbar.tipPrColor": "Couleur d'arrière-plan de paragraphe", + "DE.Views.Toolbar.tipPrColor": "Ombrage", "DE.Views.Toolbar.tipPrint": "Imprimer", + "DE.Views.Toolbar.tipPrintQuick": "Impression rapide", "DE.Views.Toolbar.tipRedo": "Rétablir", "DE.Views.Toolbar.tipSave": "Enregistrer", "DE.Views.Toolbar.tipSaveCoauth": "Enregistrez vos modifications pour que les autres utilisateurs puissent les voir.", @@ -3125,9 +3182,9 @@ "DE.Views.Toolbar.tipWatermark": "Modifier le filigrane", "DE.Views.Toolbar.txtDistribHor": "Distribuer horizontalement", "DE.Views.Toolbar.txtDistribVert": "Distribuer verticalement", - "DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge", + "DE.Views.Toolbar.txtMarginAlign": "Aligner sur la marge", "DE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", - "DE.Views.Toolbar.txtPageAlign": "Aligner par rapport à la page", + "DE.Views.Toolbar.txtPageAlign": "Aligner sur la page", "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Médian", "DE.Views.Toolbar.txtScheme11": "Métro", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 690700d25..fe0fb06bf 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -41,7 +41,7 @@ "Common.Controllers.ReviewChanges.textItalic": "Dőlt", "Common.Controllers.ReviewChanges.textJustify": "Igazítás sorkizártra", "Common.Controllers.ReviewChanges.textKeepLines": "Sorok egyben tartása", - "Common.Controllers.ReviewChanges.textKeepNext": "Következővel együtt tartás", + "Common.Controllers.ReviewChanges.textKeepNext": "Tovább a következővel", "Common.Controllers.ReviewChanges.textLeft": "Balra rendez", "Common.Controllers.ReviewChanges.textLineSpacing": "Sortávolság:", "Common.Controllers.ReviewChanges.textMultiple": "Többszörös", @@ -202,7 +202,7 @@ "Common.define.smartArt.textInterconnectedBlockProcess": "Kapcsolódó blokkfolyamat", "Common.define.smartArt.textInterconnectedRings": "Kapcsolódó gyűrűk", "Common.define.smartArt.textInvertedPyramid": "Fordított piramis", - "Common.define.smartArt.textLabeledHierarchy": "Megcímkézett hierarchia", + "Common.define.smartArt.textLabeledHierarchy": "Hierarchia címkézve", "Common.define.smartArt.textLinearVenn": "Lineáris Venn", "Common.define.smartArt.textLinedList": "Vonalas lista", "Common.define.smartArt.textList": "Lista", @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Vertikális képlista", "Common.define.smartArt.textVerticalProcess": "Vertikális folyamat", "Common.Translation.textMoreButton": "Több", + "Common.Translation.tipFileLocked": "A dokumentum szerkesztésre zárolt. A módosításokat elvégezheti, és helyi másolatként később is elmentheti.", + "Common.Translation.tipFileReadOnly": "A dokumentum csak olvasható, szerkesztésre zárolt. A módosításokat később is elvégezheti és elmentheti a helyi másolatot.", "Common.Translation.warnFileLocked": "Nem szerkesztheti ezt a fájlt, mert egy másik alkalmazásban szerkesztik.", "Common.Translation.warnFileLockedBtnEdit": "Másolat létrehozása", "Common.Translation.warnFileLockedBtnView": "Megnyitva megtekintésre", @@ -375,8 +377,8 @@ "Common.Utils.String.textCtrl": "Ctrl", "Common.Utils.String.textShift": "Váltás", "Common.Views.About.txtAddress": "Cím:", - "Common.Views.About.txtLicensee": "LICENC VÁSÁRLÓ", - "Common.Views.About.txtLicensor": "LICENCTULAJDONOS", + "Common.Views.About.txtLicensee": "LICENC JOGOSULTJA", + "Common.Views.About.txtLicensor": "LICENZOR", "Common.Views.About.txtMail": "e-mail:", "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "Tel.: ", @@ -391,7 +393,7 @@ "Common.Views.AutoCorrectDialog.textDoubleSpaces": "Pont hozzáadása dupla szóközzel", "Common.Views.AutoCorrectDialog.textFLCells": "A táblázat celláinak első betűje nagybetű legyen", "Common.Views.AutoCorrectDialog.textFLSentence": "A mondatok nagy betűvel kezdődjenek", - "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati utak hiperhivatkozásokkal", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet és hálózati útvonalak hiperhivatkozásokon keresztül", "Common.Views.AutoCorrectDialog.textHyphens": "Kötőjelek (--) gondolatjellel (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematikai automatikus javítás", "Common.Views.AutoCorrectDialog.textNumbered": "Automatikus számozott listák", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Eszköztár elrejtése", "Common.Views.Header.textHideLines": "Vonalzók elrejtése", "Common.Views.Header.textHideStatusBar": "Állapotsor elrejtése", + "Common.Views.Header.textReadOnly": "Csak olvasható", "Common.Views.Header.textRemoveFavorite": "Eltávolítás a kedvencekből", "Common.Views.Header.textShare": "Megosztás", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Fájl letöltése", "Common.Views.Header.tipGoEdit": "Az aktuális fájl szerkesztése", "Common.Views.Header.tipPrint": "Fájl nyomtatása", + "Common.Views.Header.tipPrintQuick": "Gyorsnyomtatás", "Common.Views.Header.tipRedo": "Újra", "Common.Views.Header.tipSave": "Ment", "Common.Views.Header.tipSearch": "Keresés", @@ -831,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "A makró kérést intéz az URL-hez. Szeretné engedélyezni a kérést a %1-hoz?", "DE.Controllers.Main.textShape": "Alakzat", "DE.Controllers.Main.textStrict": "Biztonságos mód", + "DE.Controllers.Main.textTryQuickPrint": "Ön a gyorsnyomtatást választotta: a teljes dokumentum az előzőleg kiválasztott vagy alapértelmezett nyomtatóra kerül kinyomtatásra.
Szeretné folytatni?", "DE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", "DE.Controllers.Main.textTryUndoRedoWarn": "A Visszavonás/Újra funkciók le vannak tiltva a Gyors társszerkesztés módban.", "DE.Controllers.Main.textUndo": "Vissza", @@ -879,12 +884,12 @@ "DE.Controllers.Main.txtSameAsPrev": "Az előzővel azonos", "DE.Controllers.Main.txtSection": "-Szakasz", "DE.Controllers.Main.txtSeries": "Sorozatok", - "DE.Controllers.Main.txtShape_accentBorderCallout1": "1. szövegbuborék (kerettel és vonallal)", - "DE.Controllers.Main.txtShape_accentBorderCallout2": "2. szövegbuborék (kerettel és vonallal)", - "DE.Controllers.Main.txtShape_accentBorderCallout3": "3. szövegbuborék (kerettel és vonallal)", - "DE.Controllers.Main.txtShape_accentCallout1": "1. szövegbuborék (vonallal)", - "DE.Controllers.Main.txtShape_accentCallout2": "2. szövegbuborék (vonallal)", - "DE.Controllers.Main.txtShape_accentCallout3": "3. szövegbuborék (vonallal)", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Jelmagyarázat az 1. sorral (keret és jelölősáv)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Jelmagyarázat a 2. sorral (keret és jelölősáv)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Jelmagyarázat a 3. sorral (keret és jelölősáv)", + "DE.Controllers.Main.txtShape_accentCallout1": "Jelmagyarázat az 1. vonallal (jelölő sáv)", + "DE.Controllers.Main.txtShape_accentCallout2": "Jelmagyarázat a 2. vonallal (jelölő sáv)", + "DE.Controllers.Main.txtShape_accentCallout3": "Jelmagyarázat a 3. vonallal (jelölősáv)", "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Vissza vagy előző gomb", "DE.Controllers.Main.txtShape_actionButtonBeginning": "Kezdő gomb", "DE.Controllers.Main.txtShape_actionButtonBlank": "Inaktív gomb", @@ -905,13 +910,13 @@ "DE.Controllers.Main.txtShape_bentUpArrow": "Felhajlított nyíl", "DE.Controllers.Main.txtShape_bevel": "Tompaszög", "DE.Controllers.Main.txtShape_blockArc": "Körív blokk", - "DE.Controllers.Main.txtShape_borderCallout1": "1. vonalfelirat", - "DE.Controllers.Main.txtShape_borderCallout2": "2. szövegbuborék", - "DE.Controllers.Main.txtShape_borderCallout3": "3. szövegbuborék", + "DE.Controllers.Main.txtShape_borderCallout1": "Magyarázat az 1. sorral", + "DE.Controllers.Main.txtShape_borderCallout2": "Jelmagyarázat a 2. sorral", + "DE.Controllers.Main.txtShape_borderCallout3": "Jelmagyarázat a 3. sorral", "DE.Controllers.Main.txtShape_bracePair": "Dupla zárójel", - "DE.Controllers.Main.txtShape_callout1": "1. szövegbuborék (keret nélkül)", - "DE.Controllers.Main.txtShape_callout2": "2. szövegbuborék (keret nélkül)", - "DE.Controllers.Main.txtShape_callout3": "3. szövegbuborék (keret nélkül)", + "DE.Controllers.Main.txtShape_callout1": "Jelmagyarázat az 1. sorral (keret nélkül)", + "DE.Controllers.Main.txtShape_callout2": "Jelmagyarázat a 2. sorral (keret nélkül)", + "DE.Controllers.Main.txtShape_callout3": "Jelmagyarázat a 3. sorral (keret nélkül)", "DE.Controllers.Main.txtShape_can": "Henger", "DE.Controllers.Main.txtShape_chevron": "Szarufa", "DE.Controllers.Main.txtShape_chord": "Akkord", @@ -984,7 +989,7 @@ "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Jelmagyarázat jobbra-balra", "DE.Controllers.Main.txtShape_leftRightUpArrow": "Jobbra-balra-felfele nyíl", "DE.Controllers.Main.txtShape_leftUpArrow": "Balra felfele nyíl", - "DE.Controllers.Main.txtShape_lightningBolt": "Villámlás", + "DE.Controllers.Main.txtShape_lightningBolt": "Villámcsapás", "DE.Controllers.Main.txtShape_line": "Vonal", "DE.Controllers.Main.txtShape_lineWithArrow": "Nyíl", "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dupla nyíl", @@ -1063,7 +1068,7 @@ "DE.Controllers.Main.txtStyle_Heading_7": "Címsor 7", "DE.Controllers.Main.txtStyle_Heading_8": "Címsor 8", "DE.Controllers.Main.txtStyle_Heading_9": "Címsor 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Erőteljes idézet", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Kiválasztott idézet", "DE.Controllers.Main.txtStyle_List_Paragraph": "Lista bekezdés", "DE.Controllers.Main.txtStyle_No_Spacing": "Nincs térköz", "DE.Controllers.Main.txtStyle_Normal": "Normál", @@ -1104,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", "DE.Controllers.Navigation.txtBeginning": "Dokumentum eleje", "DE.Controllers.Navigation.txtGotoBeginning": "Ugorj a dokumentum elejére", + "DE.Controllers.Print.textMarginsLast": "Legutóbbi egyéni beállítás", + "DE.Controllers.Print.txtCustom": "Egyedi", + "DE.Controllers.Print.txtPrintRangeInvalid": "Érvénytelen nyomtatási terület", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Adjon meg egy oldalszámot vagy az oldalak tartományát (például 5-12). Vagy PDF-be nyomtathat.", "DE.Controllers.Search.notcriticalErrorTitle": "Figyelmeztetés", "DE.Controllers.Search.textNoTextFound": "A keresett adatot nem sikerült megtalálni. Kérjük, módosítsa a keresési beállításokat.", "DE.Controllers.Search.textReplaceSkipped": "A csere megtörtént. {0} események kihagyásra kerültek.", @@ -1160,7 +1169,7 @@ "DE.Controllers.Toolbar.txtAccent_Grave": "Grave", "DE.Controllers.Toolbar.txtAccent_GroupBot": "Alsó karakterek csoportosítása", "DE.Controllers.Toolbar.txtAccent_GroupTop": "Fenti karakterek csoportosítása", - "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards harpoon above", + "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Felső szigony balra", "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards harpoon above", "DE.Controllers.Toolbar.txtAccent_Hat": "Tető", "DE.Controllers.Toolbar.txtAccent_Smile": "Bréve", @@ -1337,7 +1346,7 @@ "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 egység-mátrix", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Jobbra-balra nyíl lent", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Jobbra-balra nyíl fent", - "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Balra mutató nyíl lent", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Balra nyíl alul", "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Balra mutató nyíl fent", "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Jobbra nyíl lent", "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Jobbra nyíl fent", @@ -1348,7 +1357,7 @@ "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egyenlő", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Jobbra-balra nyíl lent", "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Jobbra-balra nyíl fent", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Balra mutató nyíl lent", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Balra nyíl alul", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Balra mutató nyíl fent", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Jobbra nyíl lent", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Jobbra nyíl fent", @@ -1368,7 +1377,7 @@ "DE.Controllers.Toolbar.txtScriptCustom_4": "Script", "DE.Controllers.Toolbar.txtScriptSub": "Alsó index", "DE.Controllers.Toolbar.txtScriptSubSup": "Alsó-felső index", - "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Bal alsó-felső index", + "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Bal oldali-felső index", "DE.Controllers.Toolbar.txtScriptSup": "Felső index", "DE.Controllers.Toolbar.txtSymbol_about": "Körülbelül", "DE.Controllers.Toolbar.txtSymbol_additional": "Kiegészítés", @@ -1407,7 +1416,7 @@ "DE.Controllers.Toolbar.txtSymbol_in": "Eleme", "DE.Controllers.Toolbar.txtSymbol_inc": "Növekmény", "DE.Controllers.Toolbar.txtSymbol_infinity": "Végtelenség", - "DE.Controllers.Toolbar.txtSymbol_iota": "Ióta", + "DE.Controllers.Toolbar.txtSymbol_iota": "lota", "DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "DE.Controllers.Toolbar.txtSymbol_leftarrow": "Balra nyíl", @@ -1727,7 +1736,7 @@ "DE.Views.DocumentHolder.textFromFile": "Fájlból", "DE.Views.DocumentHolder.textFromStorage": "Tárolóból", "DE.Views.DocumentHolder.textFromUrl": "URL-ből", - "DE.Views.DocumentHolder.textJoinList": "Számozás, felsorolás folytatása", + "DE.Views.DocumentHolder.textJoinList": "Csatlakozás az előző listához", "DE.Views.DocumentHolder.textLeft": "Cellák balra tolása", "DE.Views.DocumentHolder.textNest": "Táblázat beágyazása", "DE.Views.DocumentHolder.textNextPage": "Következő oldal", @@ -1826,8 +1835,8 @@ "DE.Views.DocumentHolder.txtInsertEqBefore": "Egyenlet beszúrása elötte", "DE.Views.DocumentHolder.txtKeepTextOnly": "Csak szöveg megtartása", "DE.Views.DocumentHolder.txtLimitChange": "Helylimitek módosítása", - "DE.Views.DocumentHolder.txtLimitOver": "Szöveg fölötti limit", - "DE.Views.DocumentHolder.txtLimitUnder": "Szöveg alatti limit", + "DE.Views.DocumentHolder.txtLimitOver": "Szöveg fölötti limitáció", + "DE.Views.DocumentHolder.txtLimitUnder": "Szöveg alatti limitáció", "DE.Views.DocumentHolder.txtMatchBrackets": "Zárójelek és argumentum egyenlő magasságú", "DE.Views.DocumentHolder.txtMatrixAlign": "Mátrix elrendezés", "DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött", @@ -1953,10 +1962,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Verzió", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Hely", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Jogosult személyek", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Szimbólumlomok szóközökkel", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Karakterek szóközökkel", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statisztika", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Tárgy", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Szimbólumok", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakterek", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Címkék", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Cím", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Feltöltve", @@ -2022,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Semmit nem mutat", "DE.Views.FileMenuPanels.Settings.txtProofing": "Korrigálás", "DE.Views.FileMenuPanels.Settings.txtPt": "Pont", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "A gyorsnyomtatás gomb megjelenítése a szerkesztő fejlécében", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "A dokumentum az utoljára kiválasztott vagy alapértelmezett nyomtatón kerül kinyomtatásra.", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Összes engedélyezése", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Minden értesítés nélküli makró engedélyezése", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Sávváltozások megjelenítése", @@ -2278,7 +2289,7 @@ "DE.Views.LeftMenu.tipTitles": "Címek", "DE.Views.LeftMenu.txtDeveloper": "FEJLESZTŐI MÓD", "DE.Views.LeftMenu.txtEditor": "Dokumentumszerkesztő", - "DE.Views.LeftMenu.txtLimit": "Korlátozza a hozzáférést", + "DE.Views.LeftMenu.txtLimit": "Hozzáféréskorlátozás", "DE.Views.LeftMenu.txtTrial": "PRÓBA MÓD", "DE.Views.LeftMenu.txtTrialDev": "Próba fejlesztői mód", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Sorszámozás hozzáadása", @@ -2503,7 +2514,7 @@ "DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Elötte", "DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Speciális", "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Sorok egyben tartása", - "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Következővel együtt tartás", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Tovább a következővel", "DE.Views.ParagraphSettingsAdvanced.strMargins": "Belső margók", "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Árva sor", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Betűtípus", @@ -2542,7 +2553,7 @@ "DE.Views.ParagraphSettingsAdvanced.textHanging": "Függő", "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Történeti", "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Történelmi és mérlegelési", - "DE.Views.ParagraphSettingsAdvanced.textJustified": "Sorkizárt", + "DE.Views.ParagraphSettingsAdvanced.textJustified": "Jogos", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Vezető", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Bal", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Szint", @@ -2579,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Csak felső szegély beállítása", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Nincsenek szegélyek", + "DE.Views.PrintWithPreview.textMarginsLast": "Legutóbbi egyéni beállítás", + "DE.Views.PrintWithPreview.textMarginsModerate": "Mérsékelt", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Keskeny", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normál", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "Normál (USA)", + "DE.Views.PrintWithPreview.textMarginsWide": "Széles", + "DE.Views.PrintWithPreview.txtAllPages": "Minden oldal", + "DE.Views.PrintWithPreview.txtBottom": "Alul", + "DE.Views.PrintWithPreview.txtCurrentPage": "Aktuális oldal", + "DE.Views.PrintWithPreview.txtCustom": "Egyedi", + "DE.Views.PrintWithPreview.txtCustomPages": "Egyedi nyomtatás", + "DE.Views.PrintWithPreview.txtLandscape": "Fekvő", + "DE.Views.PrintWithPreview.txtLeft": "Bal", + "DE.Views.PrintWithPreview.txtMargins": "Margók", + "DE.Views.PrintWithPreview.txtOf": "-ból/ből {0}", + "DE.Views.PrintWithPreview.txtPage": "Oldal", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Hibás oldalszám", + "DE.Views.PrintWithPreview.txtPageOrientation": "Lap elrendezés", + "DE.Views.PrintWithPreview.txtPages": "Oldalak", + "DE.Views.PrintWithPreview.txtPageSize": "Oldal méret", + "DE.Views.PrintWithPreview.txtPortrait": "Álló", + "DE.Views.PrintWithPreview.txtPrint": "Nyomtatás", + "DE.Views.PrintWithPreview.txtPrintPdf": "Nyomtatás PDF-be", + "DE.Views.PrintWithPreview.txtPrintRange": "Nyomtatási tartomány", + "DE.Views.PrintWithPreview.txtRight": "Jobb", + "DE.Views.PrintWithPreview.txtSelection": "Választás", + "DE.Views.PrintWithPreview.txtTop": "Felső", "DE.Views.ProtectDialog.textComments": "Megjegyzések", "DE.Views.ProtectDialog.textForms": "Nyomtatványok kitöltése", "DE.Views.ProtectDialog.textReview": "Követett változások", @@ -2997,10 +3035,10 @@ "DE.Views.Toolbar.textInsSectionBreak": "Szakasztörés beszúrása", "DE.Views.Toolbar.textInText": "Szövegben", "DE.Views.Toolbar.textItalic": "Dőlt", - "DE.Views.Toolbar.textLandscape": "Tájkép", + "DE.Views.Toolbar.textLandscape": "Fekvő", "DE.Views.Toolbar.textLeft": "Bal:", "DE.Views.Toolbar.textListSettings": "Lista beállítások", - "DE.Views.Toolbar.textMarginsLast": "Előző egyéni beállítások", + "DE.Views.Toolbar.textMarginsLast": "Legutóbbi egyéni beállítás", "DE.Views.Toolbar.textMarginsModerate": "Mérsékelt", "DE.Views.Toolbar.textMarginsNarrow": "Keskeny", "DE.Views.Toolbar.textMarginsNormal": "Normál", @@ -3046,7 +3084,7 @@ "DE.Views.Toolbar.textTop": "Felső:", "DE.Views.Toolbar.textUnderline": "Aláhúzott", "DE.Views.Toolbar.tipAlignCenter": "Középre rendez", - "DE.Views.Toolbar.tipAlignJust": "Sorkizárt", + "DE.Views.Toolbar.tipAlignJust": "Igazított", "DE.Views.Toolbar.tipAlignLeft": "Balra rendez", "DE.Views.Toolbar.tipAlignRight": "Jobbra rendez", "DE.Views.Toolbar.tipBack": "Vissza", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 3a598bd36..fe993bc49 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Ուղղաձիգ նկարի ցուցակ", "Common.define.smartArt.textVerticalProcess": "Ուղղաձիգ ընթացք", "Common.Translation.textMoreButton": "Ավել", + "Common.Translation.tipFileLocked": "Փաստաթուղթը կողպված է խմբագրման համար:Դուք կարող եք փոփոխություններ կատարել և հետագայում պահպանել այն որպես տեղական պատճեն:", + "Common.Translation.tipFileReadOnly": "Փաստաթուղթը միայն կարդալու է և կողպված է խմբագրման համար:ուք կարող եք փոփոխություններ կատարել ևպահպանել դրա տեղային պատճենն ավելի ուշ :", "Common.Translation.warnFileLocked": "Դուք չեք կարող խմբագրել այս ֆայլը, քանի որ այն խմբագրվում է մեկ այլ հավելվածում:", "Common.Translation.warnFileLockedBtnEdit": "Ստեղծել պատճեն", "Common.Translation.warnFileLockedBtnView": "Բացել դիտման համար", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Թաքցնել գործիքագոտին", "Common.Views.Header.textHideLines": "Թաքցնել քանոնները", "Common.Views.Header.textHideStatusBar": "Թաքցնել վիճակագոտին", + "Common.Views.Header.textReadOnly": "Միայն կարդալու", "Common.Views.Header.textRemoveFavorite": "Ջնջել ընտրված ցուցակից", "Common.Views.Header.textShare": "Տարածել", "Common.Views.Header.textZoom": "Խոշորացնել", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Ներբեռնել ֆայլը", "Common.Views.Header.tipGoEdit": "Խմբագրել ընթացիկ ֆայլը", "Common.Views.Header.tipPrint": "Տպել ֆայլը", + "Common.Views.Header.tipPrintQuick": "Արագ տպում", "Common.Views.Header.tipRedo": "Վերարկել", "Common.Views.Header.tipSave": "Պահպանել", "Common.Views.Header.tipSearch": "Որոնել", @@ -612,6 +616,7 @@ "Common.Views.ReviewPopover.textCancel": "Չեղարկել", "Common.Views.ReviewPopover.textClose": "Փակել", "Common.Views.ReviewPopover.textEdit": "Լավ", + "Common.Views.ReviewPopover.textEnterComment": "Այստեղ մուտքագրել Ձեր մեկնաբանությունը", "Common.Views.ReviewPopover.textFollowMove": "Վերադառնալ սկզբնական վայր", "Common.Views.ReviewPopover.textMention": "+նշումը թույլ կտա մուտք գործել փաստաթուղթ և ուղարկել էլ․ նամակ", "Common.Views.ReviewPopover.textMentionNotify": "+նշումը օգտատիրոջը կտեղեկացնի էլ.փոստի միջոցով", @@ -699,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Այլևս չհարցնել", "Common.Views.UserNameDialog.textLabel": "Պիտակ։", "Common.Views.UserNameDialog.textLabelError": "Տվյալների պիտակ չպետք է դատարկ լինի", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Փաստաթուղթը պաշտպանված է։ Դուք կարող եք միայն մեկնաբանություններ զետեղել այս փաստաթղթում:", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Փաստաթուղթը պաշտպանված է։ Այս փաստաթղթում կարող եք լրացնել միայն ձևերը:", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Փաստաթուղթը պաշտպանված է։ Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:", + "DE.Controllers.DocProtection.txtIsProtectedView": "Փաստաթուղթը պաշտպանված է։ Դուք միայն կարող եք դիտել այս փաստաթուղթը:", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտվողի կողմից: Դուք կարող եք միայն մեկնաբանություններ զետեղել այս փաստաթղթում:", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտվողի կողմից: Դուք կարող եք միայն լրացնել ձևեր այս փաստաթղթում:", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտատիրոջ կողմից: Դուք կարող եք խմբագրել այս փաստաթուղթը, բայց բոլոր փոփոխությունները կհետևվեն:", + "DE.Controllers.DocProtection.txtWasProtectedView": "Փաստաթուղթը պաշտպանված է մեկ այլ օգտվողի կողմից: Դուք կարող եք դիտել միայն այս փաստաթուղթը:", + "DE.Controllers.DocProtection.txtWasUnprotected": "Փաստաթուղթն անպաշտպան է:", "DE.Controllers.LeftMenu.leavePageText": "Բոլոր չպահպանված փոփոխումներն այս փաստաթղթում կկորչեն։
Դրանք պահպանելու համար սեղմեք «Չեղարկել», ապա «Պահպանել»։ Չպահպանված փոփոխումներն անտեսելու համար սեղմեք «Լավ»։", "DE.Controllers.LeftMenu.newDocumentTitle": "Անանուն փաստաթուղթ", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Զգուշացում", @@ -726,6 +740,7 @@ "DE.Controllers.Main.downloadTitleText": "Փաստաթղթի ներբեռնում", "DE.Controllers.Main.errorAccessDeny": "Դուք փորձում եք կատարել գործողություն, որի իրավունքը չունեք։
Դիմեք փաստաթղթերի ձեր սպասարկիչի վարիչին։", "DE.Controllers.Main.errorBadImageUrl": "Նկարի URL-ը սխալ է", + "DE.Controllers.Main.errorCannotPasteImg": "Մենք չենք կարող տեղադրել այս պատկերը Սեղմատախտակից, բայց դուք կարող եք պահել այն ձեր սարքում և տեղադրել այնտեղից, կամ կարող եք պատճենել պատկերն առանց տեքստի և տեղադրել այն փաստաթղթում:", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Սպասարկիչի հետ կապն ընդհատվել է։ Փաստաթուղթն այս պահին չի կարող խմբագրվել։", "DE.Controllers.Main.errorComboSeries": "Համակցված աղյուսակ ստեղծելու համար ընտրել տվյալների առնվազն երկու շարք:", "DE.Controllers.Main.errorCompare": "Համեմատել փաստաթղթերի գործառույթը հնարավոր չէ համատեղ խմբագրելիս:", @@ -829,6 +844,7 @@ "DE.Controllers.Main.textRequestMacros": "Մակրոն հարցում է անում URL-ին: Ցանկանու՞մ եք թույլ տալ հարցումը %1-ին:", "DE.Controllers.Main.textShape": "Պատկեր", "DE.Controllers.Main.textStrict": "Խիստ աշխատակարգ", + "DE.Controllers.Main.textTryQuickPrint": "Դուք ընտրել եք Արագ տպում` ամբողջ փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա:
Ցանկանու՞մ եք շարունակել։", "DE.Controllers.Main.textTryUndoRedo": "Համախմբագրման արագ աշխատակարգում հետարկումն ու վերարկումն անջատված են։
«Խիստ աշխատակարգ»-ի սեղմումով անցեք համախմբագրման խիստ աշխատակարգին, որպեսզի նիշքը խմբագրեք առանց այլ օգտատերերի միջամտության և փոփոխումներն ուղարկեք միայն դրանք պահպանելուց հետո։ Կարող եք համախմբագրման աշխատակարգերը փոխել լրացուցիչ կարգավորումների միջոցով։", "DE.Controllers.Main.textTryUndoRedoWarn": "Հետարկումն ու վերարկումն գործառույթներն անջատված են արագ համատեղ խմբագրման ռեժիմի համար:", "DE.Controllers.Main.textUndo": "Հետարկել", @@ -1102,6 +1118,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Ձեզ թույլ չի տրվում խմբագրել այս ֆայլը։", "DE.Controllers.Navigation.txtBeginning": "Փաստաթղթի սկիզբ", "DE.Controllers.Navigation.txtGotoBeginning": "Գնալ փաստաթղթի սկիզբ", + "DE.Controllers.Print.textMarginsLast": "Վերջին օգտագործումը", + "DE.Controllers.Print.txtCustom": "Հարմարեցված", + "DE.Controllers.Print.txtPrintRangeInvalid": "Տպման անվավեր տիրույթ", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Մուտքագրեք կա՛մ մեկ էջի համար, կա՛մ մեկ էջի տիրույթ (օրինակ՝ 5-12): Կամ կարող եք տպել PDF-ով:", "DE.Controllers.Search.notcriticalErrorTitle": "Զգուշացում", "DE.Controllers.Search.textNoTextFound": "Ձեր փնտրած տվյալները չեն գտնվել:Խնդրում ենք կարգաբերել Ձեր որոնման ընտրանքները:", "DE.Controllers.Search.textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:", @@ -1622,6 +1642,7 @@ "DE.Views.DocProtection.txtDocProtectedView": "Փաստաթուղթը պաշտպանված է:
Դուք կարող եք դիտել միայն այս փաստաթուղթը:", "DE.Views.DocProtection.txtDocUnlockDescription": "Փաստաթուղթը չպաշտպանելու համար մուտքագրեք գաղտնաբառ։", "DE.Views.DocProtection.txtProtectDoc": "Պաշտպանել փաստաթուղթը", + "DE.Views.DocProtection.txtUnlockTitle": "Պաշտպանազերծել փաստաթուղթը", "DE.Views.DocumentHolder.aboveText": "Վերև", "DE.Views.DocumentHolder.addCommentText": "Ավելացնել մեկնաբանություն", "DE.Views.DocumentHolder.advancedDropCapText": "Սկզբնատառի կարգավորումներ", @@ -2020,6 +2041,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Ոչ մեկ չդիտել", "DE.Views.FileMenuPanels.Settings.txtProofing": "Ստուգում ", "DE.Views.FileMenuPanels.Settings.txtPt": "Կետ", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Ցուցադրել «Արագ տպել» կոճակը խմբագրի վերնագրում", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Փաստաթուղթը կտպվի վերջին ընտրված կամ սկզբնադիր տպիչի վրա", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Միացնել բոլորը", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Առանց ծանուցման միացնել բոլոր մակրոները", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Ցույց տալ հետագծի փոփոխությունները", @@ -2034,6 +2057,7 @@ "DE.Views.FileMenuPanels.Settings.txtWin": "ինչպես Windows-ում", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Աշխատատարածք", "DE.Views.FormSettings.textAlways": "Միշտ", + "DE.Views.FormSettings.textAnyone": "Յուրաքանչյուրը", "DE.Views.FormSettings.textAspect": "Պահպանեք համամասնությունները", "DE.Views.FormSettings.textAtLeast": "առնվազն", "DE.Views.FormSettings.textAuto": "Ավտոմատ", @@ -2045,12 +2069,16 @@ "DE.Views.FormSettings.textCombobox": "Համակցված տուփ", "DE.Views.FormSettings.textComplex": "Համալիր դաշտ", "DE.Views.FormSettings.textConnected": "Դաշտերը միացված են", + "DE.Views.FormSettings.textCreditCard": "Վարկային քարտի համար (օր.՝ 4111-1111-1111-1111)", + "DE.Views.FormSettings.textDateField": "Ամսաթիվ/Ժամ դաշտ", + "DE.Views.FormSettings.textDateFormat": "Ցուցադրել ամիս-ամսաթիվն այսպես՝", "DE.Views.FormSettings.textDelete": "Ջնջել", "DE.Views.FormSettings.textDigits": "Թվանիշեր", "DE.Views.FormSettings.textDisconnect": "Անջատել", "DE.Views.FormSettings.textDropDown": "Բացվող", "DE.Views.FormSettings.textExact": "ճշգրիտ", "DE.Views.FormSettings.textField": "Տեքստի դաշտ", + "DE.Views.FormSettings.textFillRoles": "Ո՞վ պետք է լրացնի սա:", "DE.Views.FormSettings.textFixed": "ֆիքսված չափի դաշտ", "DE.Views.FormSettings.textFormat": "Ձևաչափ", "DE.Views.FormSettings.textFormatSymbols": "Թույլատրված նշաններ", @@ -2060,6 +2088,7 @@ "DE.Views.FormSettings.textGroupKey": "Խմբի բանալի", "DE.Views.FormSettings.textImage": "Նկար", "DE.Views.FormSettings.textKey": "Բանալի ", + "DE.Views.FormSettings.textLang": "Լեզու", "DE.Views.FormSettings.textLetters": "Նամակներ", "DE.Views.FormSettings.textLock": "Արգելափակել ", "DE.Views.FormSettings.textMask": "Կամայական դիմակ", @@ -2068,6 +2097,8 @@ "DE.Views.FormSettings.textNever": "Երբեք", "DE.Views.FormSettings.textNoBorder": "Առանց եզրագծի", "DE.Views.FormSettings.textNone": "Ոչ մեկը", + "DE.Views.FormSettings.textPhone1": "Հեռախոսահամար (օր՝ (123) 456-7890)", + "DE.Views.FormSettings.textPhone2": "Հեռախոսահամար (օր՝+447911123456)", "DE.Views.FormSettings.textPlaceholder": "Տեղապահ ", "DE.Views.FormSettings.textRadiobox": "Ընտրանքի կոճակ ", "DE.Views.FormSettings.textReg": "Կանոնավոր արտահայտություն", @@ -2082,9 +2113,12 @@ "DE.Views.FormSettings.textTipUp": "Շարժվել վերև", "DE.Views.FormSettings.textTooBig": "Նկարը չափազանց մեծ է", "DE.Views.FormSettings.textTooSmall": "Նկարը չափազանց փոքր է", + "DE.Views.FormSettings.textUKPassport": "Մեծ Բրիտանիայի Անձնագրի համարը (օր՝925665416)", "DE.Views.FormSettings.textUnlock": "Ապակողպել", + "DE.Views.FormSettings.textUSSSN": "ԱՄՆ SSN (օր՝ 123-45-6789)", "DE.Views.FormSettings.textValue": "Արժեքի ընտրանքներ", "DE.Views.FormSettings.textWidth": "Վանդակի լայնությունը", + "DE.Views.FormSettings.textZipCodeUS": "ԱՄՆ Փոստային դասիչ(կոդ) (օր՝ 92663 կամ 92663-1234)", "DE.Views.FormsTab.capBtnCheckBox": "Ստուգանիշ", "DE.Views.FormsTab.capBtnComboBox": "Համակցված տուփ", "DE.Views.FormsTab.capBtnComplex": "Համալիր դաշտ", @@ -2100,6 +2134,10 @@ "DE.Views.FormsTab.capBtnSubmit": "Հաստատել", "DE.Views.FormsTab.capBtnText": "Տեքստի դաշտ", "DE.Views.FormsTab.capBtnView": "Դիտման ձևը", + "DE.Views.FormsTab.capCreditCard": "Վարկային քարտ", + "DE.Views.FormsTab.capDateTime": "Ամսաթիվ/Ժամ", + "DE.Views.FormsTab.capZipCode": "Փոստային դասիչ(կոդ)", + "DE.Views.FormsTab.textAnyone": "Յուրաքանչյուրը", "DE.Views.FormsTab.textClear": "Մաքրել դաշտերը", "DE.Views.FormsTab.textClearFields": "Մաքրել բոլոր դաշտերը", "DE.Views.FormsTab.textCreateForm": "Ավելացնել դաշտեր և ստեղծել լրացվող OFORM փաստաթուղթ:", @@ -2111,10 +2149,14 @@ "DE.Views.FormsTab.tipCheckBox": "Տեղադրել ստուգանիշ ", "DE.Views.FormsTab.tipComboBox": "Տեղադրել համակցված տուփ ", "DE.Views.FormsTab.tipComplexField": "Զետեղել բարդ դաշտ", + "DE.Views.FormsTab.tipCreditCard": "Զետեղել վարկային քարտի համարը", + "DE.Views.FormsTab.tipDateTime": "Զետեղել Ամսաթիվ եւ ժամ", "DE.Views.FormsTab.tipDownloadForm": "Ներբեռնել ֆայլը որպես լրացվող OFORM փաստաթուղթ", "DE.Views.FormsTab.tipDropDown": "Տեղադրել բացվող ցուցակ", "DE.Views.FormsTab.tipEmailField": "Զետեղել էլ. հասցե", + "DE.Views.FormsTab.tipFixedText": "Զետեղել ֆիքսված տեքստային դաշտը", "DE.Views.FormsTab.tipImageField": "Զետեղել նկար", + "DE.Views.FormsTab.tipInlineText": "Զետեղել ներտող տեքստային դաշտ", "DE.Views.FormsTab.tipNextForm": "Գնալ հաջորդ դաշտ", "DE.Views.FormsTab.tipPhoneField": "Զետեղել հեռախոսահամար", "DE.Views.FormsTab.tipPrevForm": "Գնալ նախորդ դաշտ", @@ -2123,6 +2165,11 @@ "DE.Views.FormsTab.tipSubmit": "Ներկայացնել ձևը", "DE.Views.FormsTab.tipTextField": "Տեղադրեք տեքստային դաշտ", "DE.Views.FormsTab.tipViewForm": "Դիտման ձևը", + "DE.Views.FormsTab.tipZipCode": "Զետեղել փոստային դասիչը(կոդը)", + "DE.Views.FormsTab.txtFixedDesc": "Զետեղել ֆիքսված տեքստային դաշտը", + "DE.Views.FormsTab.txtFixedText": "Հաստատուն", + "DE.Views.FormsTab.txtInlineDesc": "Զետեղել ներտող տեքստային դաշտ", + "DE.Views.FormsTab.txtInlineText": "Ներտողային", "DE.Views.FormsTab.txtUntitled": "Անանուն", "DE.Views.HeaderFooterSettings.textBottomCenter": "Ներքևից կենտրոնով", "DE.Views.HeaderFooterSettings.textBottomLeft": "Ձախ ներքևից", @@ -2577,12 +2624,40 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Սահմանել միայն վերին եզրագիծը", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Ինքնաշխատ", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Առանց եզրագծերի", + "DE.Views.PrintWithPreview.textMarginsLast": "Վերջին օգտագործումը", + "DE.Views.PrintWithPreview.textMarginsModerate": "Չափավոր", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Նեղ", + "DE.Views.PrintWithPreview.textMarginsNormal": "Սովորական", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "ԱՄՆ նորմալ", + "DE.Views.PrintWithPreview.textMarginsWide": "Լայն", + "DE.Views.PrintWithPreview.txtAllPages": "Բոլոր էջեր", + "DE.Views.PrintWithPreview.txtBottom": "Ներքև", + "DE.Views.PrintWithPreview.txtCurrentPage": "Ընթացիկ էջ", + "DE.Views.PrintWithPreview.txtCustom": "Հարմարեցված", + "DE.Views.PrintWithPreview.txtCustomPages": "Հարմարեցված տպագրություն", + "DE.Views.PrintWithPreview.txtLandscape": "Հորիզոնական", + "DE.Views.PrintWithPreview.txtLeft": "Ձախ", + "DE.Views.PrintWithPreview.txtMargins": "Լուսանցքներ", + "DE.Views.PrintWithPreview.txtOf": "{0}-ից", + "DE.Views.PrintWithPreview.txtPage": "Էջ", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Էջի համարն անվավեր է", + "DE.Views.PrintWithPreview.txtPageOrientation": "Էջի կողմնորոշում", + "DE.Views.PrintWithPreview.txtPages": "Էջեր", + "DE.Views.PrintWithPreview.txtPageSize": "Էջի չափ", + "DE.Views.PrintWithPreview.txtPortrait": "Ուղղաձիգ ", + "DE.Views.PrintWithPreview.txtPrint": "Տպել", + "DE.Views.PrintWithPreview.txtPrintPdf": "Տպել PDF-ով", + "DE.Views.PrintWithPreview.txtPrintRange": "Տպման տիրույթ", + "DE.Views.PrintWithPreview.txtRight": "Աջ", + "DE.Views.PrintWithPreview.txtSelection": "Ընտրություն", + "DE.Views.PrintWithPreview.txtTop": "Վերև", "DE.Views.ProtectDialog.textComments": "Մեկնաբանություններ", "DE.Views.ProtectDialog.textForms": "Լրացվող ձևեր", "DE.Views.ProtectDialog.textReview": "Հետագծված փոփոխություններ", "DE.Views.ProtectDialog.textView": "Փոփոխություններ չկան (Միայն-կարդալու)", "DE.Views.ProtectDialog.txtAllow": "Թույլատրել միայն այս տեսակի խմբագրումը փաստաթղթում", "DE.Views.ProtectDialog.txtIncorrectPwd": "Հաստատման գաղտնաբառը նույնը չէ", + "DE.Views.ProtectDialog.txtLimit": "Գաղտնաբառը սահմանափակված է 15 նիշով", "DE.Views.ProtectDialog.txtOptional": "ընտրովի", "DE.Views.ProtectDialog.txtPassword": "Գաղտնաբառ", "DE.Views.ProtectDialog.txtProtect": "Պաշտպանել", @@ -2599,6 +2674,35 @@ "DE.Views.RightMenu.txtSignatureSettings": "Ստորագրության կարգավորումներ", "DE.Views.RightMenu.txtTableSettings": "Աղյուսակի կարգավորումներ", "DE.Views.RightMenu.txtTextArtSettings": "Տեքստարվեստի կարգավորումներ", + "DE.Views.RoleDeleteDlg.textLabel": "Այս դերը ջնջելու համար հարկավոր է դրա հետ կապված դաշտերը տեղափոխել այլ դեր:", + "DE.Views.RoleDeleteDlg.textSelect": "Ընտրել դաշտի միաձուլման դերի համար", + "DE.Views.RoleDeleteDlg.textTitle": "Ջնջել Դերը", + "DE.Views.RoleEditDlg.capBtnManager": "Կառավարել դերերը", + "DE.Views.RoleEditDlg.errNameExists": "Նման անունով դեր արդեն գոյություն ունի։", + "DE.Views.RoleEditDlg.textEmptyError": "Դերի անվանումը չպետք է դատարկ լինի:", + "DE.Views.RoleEditDlg.textName": "Դերի անվանում", + "DE.Views.RoleEditDlg.textNoHighlight": "Առանց գունանշման", + "DE.Views.RoleEditDlg.tipManager": "Կառավարել դերերը", + "DE.Views.RoleEditDlg.txtTitleEdit": "Խմբագրել դերը", + "DE.Views.RoleEditDlg.txtTitleNew": "Ստեղծել նոր դեր", + "DE.Views.RolesManagerDlg.closeButtonText ": "Փակել", + "DE.Views.RolesManagerDlg.textAnyone": "Յուրաքանչյուրը", + "DE.Views.RolesManagerDlg.textDelete": "Ջնջել", + "DE.Views.RolesManagerDlg.textDescription": "Ավելացրեք դերեր և սահմանեք այն հերթականությունը, որով լրացնողներն ընդունում և ստորագրում են փաստաթուղթը", + "DE.Views.RolesManagerDlg.textDown": "Տեղափոխել դերը վար", + "DE.Views.RolesManagerDlg.textEdit": "Խմբագրել", + "DE.Views.RolesManagerDlg.textEmpty": "Դերեր դեռ չեն ստեղծվել։
Ստեղծեք առնվազն մեկ դեր և այն կհայտնվի այս դաշտում:", + "DE.Views.RolesManagerDlg.textNew": "Նոր", + "DE.Views.RolesManagerDlg.textUp": "Տեղափոխել դերը վեր", + "DE.Views.RolesManagerDlg.txtTitle": "Կառավարել դերերը", + "DE.Views.RolesManagerDlg.warnCantDelete": "Դուք չեք կարող ջնջել այս դերը, քանի որ այն ունի կապված դաշտեր:", + "DE.Views.RolesManagerDlg.warnDelete": "Համոզվա՞ծ եք, որ ցանկանում եք ջնջել {0} դերը:", + "DE.Views.SaveFormDlg.saveButtonText": "Պահպանել", + "DE.Views.SaveFormDlg.textAnyone": "Յուրաքանչյուրը", + "DE.Views.SaveFormDlg.textDescription": "Oform-ում պահելիս լրացվող ցուցակին ավելացվում են միայն դաշտերով դերեր", + "DE.Views.SaveFormDlg.textEmpty": "Դաշտերի հետ կապված դերեր չկան:", + "DE.Views.SaveFormDlg.textFill": "Լրացման ցուցակ", + "DE.Views.SaveFormDlg.txtTitle": "Պահպանել որպես Ձև", "DE.Views.ShapeSettings.strBackground": "Խորքի գույն", "DE.Views.ShapeSettings.strChange": "Փոխել ինքնաձևը", "DE.Views.ShapeSettings.strColor": "Գույն", @@ -2690,6 +2794,12 @@ "DE.Views.Statusbar.tipZoomIn": "Մեծացնել", "DE.Views.Statusbar.tipZoomOut": "Փոքրացնել", "DE.Views.Statusbar.txtPageNumInvalid": "Էջի համարն անվավեր է", + "DE.Views.Statusbar.txtPages": "Էջեր", + "DE.Views.Statusbar.txtParagraphs": "Պարբերություններ", + "DE.Views.Statusbar.txtSpaces": "Նշաններ բացատներով", + "DE.Views.Statusbar.txtSymbols": "Նշաններ", + "DE.Views.Statusbar.txtWordCount": "Բառահաշվարկ", + "DE.Views.Statusbar.txtWords": "Բառեր", "DE.Views.StyleTitleDialog.textHeader": "Ստեղծել նոր ոճ", "DE.Views.StyleTitleDialog.textNextStyle": "Հաջորդ պարբերության ոճը", "DE.Views.StyleTitleDialog.textTitle": "Վերնագիր", @@ -3113,6 +3223,7 @@ "DE.Views.Toolbar.tipPaste": "Փակցնել", "DE.Views.Toolbar.tipPrColor": "Պարբերության ֆոնի գույնը", "DE.Views.Toolbar.tipPrint": "Տպել", + "DE.Views.Toolbar.tipPrintQuick": "Արագ տպում", "DE.Views.Toolbar.tipRedo": "Վերարկել", "DE.Views.Toolbar.tipSave": "Պահպանել", "DE.Views.Toolbar.tipSaveCoauth": "Պահպանեք բոլոր փոփոխումները, որպեսզի այլ օգտատերեր տեսնեն դրանք։", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index f52f25a29..f6eae0e62 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Daftar Gambar Vertikal", "Common.define.smartArt.textVerticalProcess": "Proses Vertikal", "Common.Translation.textMoreButton": "Lainnya", + "Common.Translation.tipFileLocked": "Dokumen terkunci untuk diedit. Anda dapat membuat perubahan dan menyimpannya sebagai salinan lokal nanti.", + "Common.Translation.tipFileReadOnly": "Dokumen hanya dapat dibaca. Untuk menyimpan perubahan Anda, simpan file dengan nama baru atau di tempat lain.", "Common.Translation.warnFileLocked": "Anda tidak bisa edit file ini karena sedang di edit di aplikasi lain.", "Common.Translation.warnFileLockedBtnEdit": "Buat salinan", "Common.Translation.warnFileLockedBtnView": "Buka untuk dilihat", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Sembunyikan Toolbar", "Common.Views.Header.textHideLines": "Sembunyikan Mistar", "Common.Views.Header.textHideStatusBar": "Sembunyikan Bilah Status", + "Common.Views.Header.textReadOnly": "Hanya baca", "Common.Views.Header.textRemoveFavorite": "Hilangkan dari Favorit", "Common.Views.Header.textShare": "Bagikan", "Common.Views.Header.textZoom": "Pembesaran", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Unduh File", "Common.Views.Header.tipGoEdit": "Edit file saat ini", "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipPrintQuick": "Cetak cepat", "Common.Views.Header.tipRedo": "Ulangi", "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipSearch": "Cari", @@ -612,6 +616,7 @@ "Common.Views.ReviewPopover.textCancel": "Batalkan", "Common.Views.ReviewPopover.textClose": "Tutup", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textEnterComment": "Tuliskan komentar Anda di sini", "Common.Views.ReviewPopover.textFollowMove": "Ikuti pergerakan", "Common.Views.ReviewPopover.textMention": "+mention akan memberikan akses ke dokumen dan mengirimkan email", "Common.Views.ReviewPopover.textMentionNotify": "+mention akan mengingatkan user lewat email", @@ -726,6 +731,7 @@ "DE.Controllers.Main.downloadTitleText": "Mengunduh Dokumen", "DE.Controllers.Main.errorAccessDeny": "Anda mencoba melakukan sesuatu yang tidak memiliki izin.
Silakan hubungi admin Server Dokumen Anda.", "DE.Controllers.Main.errorBadImageUrl": "URL Gambar salah", + "DE.Controllers.Main.errorCannotPasteImg": "Kami tak bisa menempel gambar ini dari Papan Klip, tapi Anda dapat menyimpannya\nke perangkat Anda dan menyisipkannya dari sana, atau Anda dapat menyalin gambar\ntanpa teks dan menempelkannya ke dalam dokumen.", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Koneksi server terputus. Saat ini dokumen tidak dapat diedit.", "DE.Controllers.Main.errorComboSeries": "Untuk membuat grafik kombinasi, pilih setidaknya dua seri data.", "DE.Controllers.Main.errorCompare": "Fitur Membandingkan Dokumen tidak tersedia saat co-editing. ", @@ -829,6 +835,7 @@ "DE.Controllers.Main.textRequestMacros": "Sebuah makro melakukan permintaan ke URL. Apakah Anda akan mengizinkan permintaan ini ke %1?", "DE.Controllers.Main.textShape": "Bentuk", "DE.Controllers.Main.textStrict": "Mode strict", + "DE.Controllers.Main.textTryQuickPrint": "Anda telah memilih Cetak cepat: seluruh dokumen akan dicetak pada printer yang terakhir dipilih atau baku.
Apakah Anda hendak melanjutkan?", "DE.Controllers.Main.textTryUndoRedo": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.
Klik tombol 'Mode strict' untuk mengganti ke Mode Strict Co-editing untuk edit file tanpa gangguan dari user lain dan kirim perubahan Anda hanya setelah Anda menyimpannya. Anda bisa mengganti mode co-editing menggunakan editor di pengaturan lanjut.", "DE.Controllers.Main.textTryUndoRedoWarn": "Fungsi Undo/Redo dinonaktifkan untuk mode Co-editing Cepat.", "DE.Controllers.Main.textUndo": "Batalkan", @@ -1102,6 +1109,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Hak Anda untuk mengedit file ditolak.", "DE.Controllers.Navigation.txtBeginning": "Awal dokumen", "DE.Controllers.Navigation.txtGotoBeginning": "Pergi ke awal dokumen", + "DE.Controllers.Print.textMarginsLast": "Ubahan Terakhir", + "DE.Controllers.Print.txtCustom": "Ubahan", + "DE.Controllers.Print.txtPrintRangeInvalid": "Rentang cetak tidak valid", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Masukkan satu nomor halaman atau satu rentang halaman (misalnya, 5-12). Atau Anda bisa Cetak ke PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Peringatan", "DE.Controllers.Search.textNoTextFound": "Data yang Anda cari tidak ditemukan. Silakan atur opsi pencarian Anda.", "DE.Controllers.Search.textReplaceSkipped": "Penggantian telah dilakukan. {0} kemunculan telah dilewatkan.", @@ -1951,10 +1962,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versi PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang memiliki hak", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan spasi", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Karakter dengan spasi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subyek", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Karakter", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tag", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Judul", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Diunggah", @@ -2020,6 +2031,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Tidak Ada yang Dilihat", "DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing", "DE.Views.FileMenuPanels.Settings.txtPt": "Titik", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Tampilkan tombol Cetak Cepat dalam header editor", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Dokumen akan", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktifkan Semua", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktifkan semua macros tanpa notifikasi", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Tampilkan pelacak perubahan", @@ -2219,7 +2232,7 @@ "DE.Views.ImageSettingsAdvanced.textHeight": "Tinggi", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Horisontal", "DE.Views.ImageSettingsAdvanced.textHorizontally": "Secara Horizontal", - "DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan Tipe", + "DE.Views.ImageSettingsAdvanced.textJoinType": "Gabungkan tipe", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proporsi Konstan", "DE.Views.ImageSettingsAdvanced.textLeft": "Kiri", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Margin kiri", @@ -2529,8 +2542,8 @@ "DE.Views.ParagraphSettingsAdvanced.textCentered": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Spasi antar karakter", "DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual", - "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan", - "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, Bersejarah, dan", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan diskresioner", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Kontekstual, historis, dan diskresioner", "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan bersejarah", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab baku", "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Diskresional", @@ -2539,7 +2552,7 @@ "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Baris Pertama", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Menggantung", "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Bersejarah", - "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Bersejarah dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historis dan diskresioner", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Rata Kiri-Kanan", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", @@ -2556,10 +2569,10 @@ "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spasi", "DE.Views.ParagraphSettingsAdvanced.textStandard": "Standar saja", "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standar dan kontekstual", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, Kontekstual, dan Diskresional", - "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, Kontekstual, dan Bersejarah", - "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan Diskresional", - "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, Bersejarah, dan Diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standar, kontekstual, dan diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standar, kontekstual, dan historis", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standar dan diskresional", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standar, historis, dan diskresioner", "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standar dan bersejarah", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Tengah", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri", @@ -2577,6 +2590,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Buat Pembatas Atas Saja", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Otomatis", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Tidak ada pembatas", + "DE.Views.PrintWithPreview.textMarginsLast": "Ubahan Terakhir", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderat", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Sempit", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Lebar", + "DE.Views.PrintWithPreview.txtAllPages": "Semua halaman", + "DE.Views.PrintWithPreview.txtBottom": "Bawah", + "DE.Views.PrintWithPreview.txtCurrentPage": "Halaman saat ini", + "DE.Views.PrintWithPreview.txtCustom": "Ubahan", + "DE.Views.PrintWithPreview.txtCustomPages": "Cetak khusus", + "DE.Views.PrintWithPreview.txtLandscape": "Lansekap", + "DE.Views.PrintWithPreview.txtLeft": "Kiri", + "DE.Views.PrintWithPreview.txtMargins": "Margin", + "DE.Views.PrintWithPreview.txtOf": "dari {0}", + "DE.Views.PrintWithPreview.txtPage": "Halaman", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Nomor halaman tidak valid", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientasi halaman", + "DE.Views.PrintWithPreview.txtPages": "Halaman", + "DE.Views.PrintWithPreview.txtPageSize": "Ukuran halaman", + "DE.Views.PrintWithPreview.txtPortrait": "Potret", + "DE.Views.PrintWithPreview.txtPrint": "Cetak", + "DE.Views.PrintWithPreview.txtPrintPdf": "Cetak ke PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Rentang cetak", + "DE.Views.PrintWithPreview.txtRight": "Kanan", + "DE.Views.PrintWithPreview.txtSelection": "Pilihan", + "DE.Views.PrintWithPreview.txtTop": "Atas", "DE.Views.ProtectDialog.textComments": "Komentar", "DE.Views.ProtectDialog.textForms": "Formulir isian", "DE.Views.ProtectDialog.textReview": "Perubahan terlacak", @@ -3111,7 +3151,7 @@ "DE.Views.Toolbar.tipPageSize": "Ukuran Halaman", "DE.Views.Toolbar.tipParagraphStyle": "Model Paragraf", "DE.Views.Toolbar.tipPaste": "Tempel", - "DE.Views.Toolbar.tipPrColor": "Warna Latar Paragraf", + "DE.Views.Toolbar.tipPrColor": "Bayangan", "DE.Views.Toolbar.tipPrint": "Cetak", "DE.Views.Toolbar.tipRedo": "Ulangi", "DE.Views.Toolbar.tipSave": "Simpan", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 6656ea399..6f9254120 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1767,10 +1767,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "‎Versione PDF‎", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Percorso", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persone che hanno diritti", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboli compresi spazi", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caratteri compresi spazi", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiche", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Oggetto", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboli", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caratteri", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichette", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titolo documento", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Caricato", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 8ab147eb6..1523c9720 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "縦方向画像リスト", "Common.define.smartArt.textVerticalProcess": "縦方向ステップ", "Common.Translation.textMoreButton": "もっと", + "Common.Translation.tipFileLocked": "ドキュメントが編集用にロックされています。後で変更し、ローカルコピーとして保存することができます。", + "Common.Translation.tipFileReadOnly": "ドキュメントは閲覧用で、編集はロックされています。後で変更し、そのローカルコピーを保存することができます。", "Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", "Common.Translation.warnFileLockedBtnView": "閲覧するために開く", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "ツールバーを表示しない", "Common.Views.Header.textHideLines": "ルーラーを表示しない", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", + "Common.Views.Header.textReadOnly": "閲覧のみ", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", "Common.Views.Header.textShare": "共有", "Common.Views.Header.textZoom": "ズーム", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "ファイルをダウンロード", "Common.Views.Header.tipGoEdit": "現在のファイルを編集する", "Common.Views.Header.tipPrint": "ファイルを印刷する", + "Common.Views.Header.tipPrintQuick": "クイックプリント", "Common.Views.Header.tipRedo": "やり直し", "Common.Views.Header.tipSave": "保存する", "Common.Views.Header.tipSearch": "検索", @@ -829,6 +833,7 @@ "DE.Controllers.Main.textRequestMacros": "マクロがURLに対してリクエストを行います。%1へのリクエストを許可しますか?", "DE.Controllers.Main.textShape": "図形", "DE.Controllers.Main.textStrict": "厳格モード", + "DE.Controllers.Main.textTryQuickPrint": "クイックプリントが選択されています。ドキュメント全体が、最後に選択したプリンタまたはデフォルトのプリンタで印刷されます。
続行しますか?", "DE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能は無効になります。
「厳格モード」ボタンをクリックすると、他のユーザーの干渉を受けずにファイルを編集し、保存後に変更内容を送信する厳格共同編集モードに切り替わります。共同編集モードの切り替えは、エディタの詳細設定を使用して行うことができます。", "DE.Controllers.Main.textTryUndoRedoWarn": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。", "DE.Controllers.Main.textUndo": "元に戻す", @@ -1102,6 +1107,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", "DE.Controllers.Navigation.txtBeginning": "文書の先頭", "DE.Controllers.Navigation.txtGotoBeginning": "文書の先頭に移動する", + "DE.Controllers.Print.textMarginsLast": "最後に適用した設定", + "DE.Controllers.Print.txtCustom": "ユーザー設定", + "DE.Controllers.Print.txtPrintRangeInvalid": "無効な印刷範囲", + "DE.Controllers.Print.txtPrintRangeSingleRange": "ページ番号のみ、またはページ範囲のみを入力してください(例: 5-12)。または、PDFに印刷することもできます。", "DE.Controllers.Search.notcriticalErrorTitle": " 警告", "DE.Controllers.Search.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", "DE.Controllers.Search.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", @@ -1951,10 +1960,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDFのバージョン", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "場所", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "権利を有する者", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "スペースを含む記号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "文字数 (スペースを含む)", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "統計", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "件名", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "記号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "文字数", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "タグ", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "タイトル", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "アップロード済み", @@ -2020,6 +2029,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "表示なし", "DE.Views.FileMenuPanels.Settings.txtProofing": "校正", "DE.Views.FileMenuPanels.Settings.txtPt": "ポイント", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "クイックプリントボタンをエディタヘッダーに表示", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "最後に選択した、またはデフォルトのプリンターで印刷されます。", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "全てを有効にする", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "全てのマクロを有効にして、通知しない", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "変更履歴を表示する", @@ -2577,6 +2588,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "上罫線だけを設定", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "自動", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "罫線なし", + "DE.Views.PrintWithPreview.textMarginsLast": "最後に適用した設定", + "DE.Views.PrintWithPreview.textMarginsModerate": "中", + "DE.Views.PrintWithPreview.textMarginsNarrow": "狭い", + "DE.Views.PrintWithPreview.textMarginsNormal": "標準", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "ノーマル(アメリカの標準)", + "DE.Views.PrintWithPreview.textMarginsWide": "広い", + "DE.Views.PrintWithPreview.txtAllPages": "全ページ", + "DE.Views.PrintWithPreview.txtBottom": "下", + "DE.Views.PrintWithPreview.txtCurrentPage": "現在のページ", + "DE.Views.PrintWithPreview.txtCustom": "ユーザー設定", + "DE.Views.PrintWithPreview.txtCustomPages": "カスタム印刷", + "DE.Views.PrintWithPreview.txtLandscape": "横", + "DE.Views.PrintWithPreview.txtLeft": "左", + "DE.Views.PrintWithPreview.txtMargins": "余白", + "DE.Views.PrintWithPreview.txtOf": "{0}から", + "DE.Views.PrintWithPreview.txtPage": "ページ", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "ページ番号が正しくありません。", + "DE.Views.PrintWithPreview.txtPageOrientation": "印刷の向き", + "DE.Views.PrintWithPreview.txtPages": "ページ", + "DE.Views.PrintWithPreview.txtPageSize": "ページのサイズ", + "DE.Views.PrintWithPreview.txtPortrait": "縦", + "DE.Views.PrintWithPreview.txtPrint": "印刷", + "DE.Views.PrintWithPreview.txtPrintPdf": "PDFに印刷", + "DE.Views.PrintWithPreview.txtPrintRange": "印刷範囲\t", + "DE.Views.PrintWithPreview.txtRight": "右", + "DE.Views.PrintWithPreview.txtSelection": "選択", + "DE.Views.PrintWithPreview.txtTop": "上", "DE.Views.ProtectDialog.textComments": "コメント", "DE.Views.ProtectDialog.textForms": "フォームの入力", "DE.Views.ProtectDialog.textReview": "変更履歴", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index c3974d4ce..20850928d 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -1054,7 +1054,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Rindkopu", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Vieta", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personas kuriem ir tiesības", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbolu ar atstarpiem", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Rakstzīmes ar atstarpiem", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistika", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbolu", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Dokumentu nosaukums", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index fc5dd91d8..633baff59 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -1733,10 +1733,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF versie", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locatie", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen met rechten", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbolen met spaties", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Tekens met spaties", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistieken", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Onderwerp", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbolen", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Tekens", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Geupload", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Woorden", diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json index d0d1dec5e..6d7617513 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -942,6 +942,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Você não tem permissões para editar o ficheiro.", "DE.Controllers.Navigation.txtBeginning": "Início do documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", + "DE.Controllers.Print.txtCustom": "Personalizado", "DE.Controllers.Search.notcriticalErrorTitle": "Aviso", "DE.Controllers.Search.textNoTextFound": "Não foi possível localizar os dados procurados. Ajuste as opções de pesquisa.", "DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", @@ -1791,10 +1792,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versão PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Localização", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Pessoas que têm direitos", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Símbolos com espaços", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Carateres com espaços", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Estatísticas", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assunto", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbolos", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Carateres", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Título", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Carregado", @@ -2417,6 +2418,9 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas contorno superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem contornos", + "DE.Views.PrintWithPreview.txtAllPages": "Todas as páginas", + "DE.Views.PrintWithPreview.txtCustom": "Personalizado", + "DE.Views.PrintWithPreview.txtLeft": "Esquerda", "DE.Views.ProtectDialog.textComments": "Comentários", "DE.Views.ProtectDialog.textForms": "Preenchimento de formulários", "DE.Views.ProtectDialog.textReview": "Alterações rastreadas", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 81f60175f..727a2297d 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -285,6 +285,8 @@ "Common.define.smartArt.textVerticalPictureList": "Lista de imagens verticais", "Common.define.smartArt.textVerticalProcess": "Processo Vertical", "Common.Translation.textMoreButton": "Mais", + "Common.Translation.tipFileLocked": "O documento está bloqueado para edição. Você pode fazer alterações e salvá-lo como cópia local mais tarde.", + "Common.Translation.tipFileReadOnly": "O documento é somente leitura e está bloqueado para edição. Você pode fazer alterações e salvar sua cópia local posteriormente.", "Common.Translation.warnFileLocked": "Documento está em uso por outra aplicação. Você pode continuar editando e salvá-lo como uma cópia.", "Common.Translation.warnFileLockedBtnEdit": "Criar uma cópia", "Common.Translation.warnFileLockedBtnView": "Aberto para visualização", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Ocultar Barra de Ferramentas", "Common.Views.Header.textHideLines": "Ocultar Réguas", "Common.Views.Header.textHideStatusBar": "Ocultar Barra de Status", + "Common.Views.Header.textReadOnly": "Somente leitura", "Common.Views.Header.textRemoveFavorite": "Remover dos Favoritos", "Common.Views.Header.textShare": "Compartilhar", "Common.Views.Header.textZoom": "Ampliação", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Baixar arquivo", "Common.Views.Header.tipGoEdit": "Editar arquivo atual", "Common.Views.Header.tipPrint": "Imprimir arquivo", + "Common.Views.Header.tipPrintQuick": "Impressão rápida", "Common.Views.Header.tipRedo": "Refazer", "Common.Views.Header.tipSave": "Gravar", "Common.Views.Header.tipSearch": "Pesquisar", @@ -700,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Não perguntar novamente", "Common.Views.UserNameDialog.textLabel": "Rótulo:", "Common.Views.UserNameDialog.textLabelError": "O rótulo não pode estar vazio.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "O documento está protegido. Você só pode inserir comentários neste documento.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "O documento está protegido. Você só pode preencher os formulários deste documento.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "O documento está protegido. Você pode editar este documento, mas todas as alterações serão rastreadas.", + "DE.Controllers.DocProtection.txtIsProtectedView": "O documento está protegido. Você só pode visualizar este documento.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "O documento foi protegido por outro usuário.\nVocê só pode inserir comentários neste documento.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "O documento foi protegido por outro usuário.\nVocê só pode preencher os formulários deste documento.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "O documento foi protegido por outro usuário.\nVocê pode editar este documento, mas todas as alterações serão rastreadas.", + "DE.Controllers.DocProtection.txtWasProtectedView": "O documento foi protegido por outro usuário.\nVocê só pode visualizar este documento.", + "DE.Controllers.DocProtection.txtWasUnprotected": "O documento foi desprotegido.", "DE.Controllers.LeftMenu.leavePageText": "Todas as alterações não salvas neste documento serão perdidas.
Clique em \"Cancelar\" e depois em \"Salvar\" para salvá-las. Clique em \"OK\" para descartar todas as alterações não salvas.", "DE.Controllers.LeftMenu.newDocumentTitle": "Documento sem nome", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Aviso", @@ -831,6 +844,7 @@ "DE.Controllers.Main.textRequestMacros": "Uma macro faz uma solicitação para URL. Deseja permitir a solicitação para %1?", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modo estrito", + "DE.Controllers.Main.textTryQuickPrint": "Você selecionou Impressão rápida: todo o documento será impresso na última impressora selecionada ou padrão.
Deseja continuar?", "DE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer ficam desabilitadas no modo de Coedição Rápida.
Selecione o modo 'Estrito' para editar o aquivo sem que outros usuários interfiram e envie suas mudanças somente ao salvar o documento. Você pode alternar entre os modos de coedição usando as Configurações Avançadas.\",", "DE.Controllers.Main.textTryUndoRedoWarn": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido", "DE.Controllers.Main.textUndo": "Desfazer", @@ -1104,6 +1118,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", "DE.Controllers.Navigation.txtBeginning": "Início do documento", "DE.Controllers.Navigation.txtGotoBeginning": "Ir para o início do documento", + "DE.Controllers.Print.textMarginsLast": "Últimos personalizados", + "DE.Controllers.Print.txtCustom": "Personalizado", + "DE.Controllers.Print.txtPrintRangeInvalid": "Intervalo de impressão inválido", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Digite um único número de página ou um único intervalo de páginas (por exemplo, 5-12). Ou você pode imprimir em PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Aviso", "DE.Controllers.Search.textNoTextFound": "Os dados que você tem estado procurando não podem ser encontrados. Ajuste suas opções de pesquisa.", "DE.Controllers.Search.textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", @@ -2022,6 +2040,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Visualizar nenhum", "DE.Views.FileMenuPanels.Settings.txtProofing": "Revisão", "DE.Views.FileMenuPanels.Settings.txtPt": "Ponto", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Mostrar o botão Impressão rápida no cabeçalho do editor", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "O documento será impresso na última impressora selecionada ou padrão", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Habilitar todos", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Habilitar todas as macros sem uma notificação", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Mostrar alterações de faixa", @@ -2036,6 +2056,7 @@ "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Área de trabalho", "DE.Views.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAnyone": "Alguém", "DE.Views.FormSettings.textAspect": "Bloquear proporção", "DE.Views.FormSettings.textAtLeast": "Pelo menos", "DE.Views.FormSettings.textAuto": "Automático", @@ -2047,6 +2068,9 @@ "DE.Views.FormSettings.textCombobox": "Caixa de combinação", "DE.Views.FormSettings.textComplex": "Campo complexo", "DE.Views.FormSettings.textConnected": "Campos conectados", + "DE.Views.FormSettings.textCreditCard": "Número do cartão de crédito (por exemplo, 4111-1111-1111-1111)", + "DE.Views.FormSettings.textDateField": "Campo de data e hora", + "DE.Views.FormSettings.textDateFormat": "Mostra a data assim", "DE.Views.FormSettings.textDelete": "Excluir", "DE.Views.FormSettings.textDigits": "Dígitos", "DE.Views.FormSettings.textDisconnect": "Desconectar", @@ -2062,6 +2086,7 @@ "DE.Views.FormSettings.textGroupKey": "Chave de grupo", "DE.Views.FormSettings.textImage": "Imagem", "DE.Views.FormSettings.textKey": "Chave", + "DE.Views.FormSettings.textLang": "Idioma", "DE.Views.FormSettings.textLetters": "Cartas", "DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textMask": "Máscara arbitrária", @@ -2070,6 +2095,8 @@ "DE.Views.FormSettings.textNever": "Nunca", "DE.Views.FormSettings.textNoBorder": "Sem limite", "DE.Views.FormSettings.textNone": "Nenhum", + "DE.Views.FormSettings.textPhone1": "Número de telefone (por exemplo, (123) 456-7890)", + "DE.Views.FormSettings.textPhone2": "Número de telefone (por exemplo, +447911123456)", "DE.Views.FormSettings.textPlaceholder": "Marcador de posição", "DE.Views.FormSettings.textRadiobox": "Botao de radio", "DE.Views.FormSettings.textReg": "Expressão regular", @@ -2102,6 +2129,10 @@ "DE.Views.FormsTab.capBtnSubmit": "Enviar", "DE.Views.FormsTab.capBtnText": "Campo de texto", "DE.Views.FormsTab.capBtnView": "Ver formulário", + "DE.Views.FormsTab.capCreditCard": "Cartão de crédito", + "DE.Views.FormsTab.capDateTime": "Data e Hora", + "DE.Views.FormsTab.capZipCode": "CEP", + "DE.Views.FormsTab.textAnyone": "Alguém", "DE.Views.FormsTab.textClear": "Limpar campos.", "DE.Views.FormsTab.textClearFields": "Limpar todos os campos", "DE.Views.FormsTab.textCreateForm": "Adicione campos e crie um documento FORM preenchível", @@ -2113,10 +2144,14 @@ "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", "DE.Views.FormsTab.tipComplexField": "Inserir campo complexo", + "DE.Views.FormsTab.tipCreditCard": "Inserir número de cartão de crédito", + "DE.Views.FormsTab.tipDateTime": "Inserir data e hora", "DE.Views.FormsTab.tipDownloadForm": "Baixar um arquivo como um documento FORM preenchível", "DE.Views.FormsTab.tipDropDown": "Inserir lista suspensa", "DE.Views.FormsTab.tipEmailField": "Inserir endereço de e-mail", + "DE.Views.FormsTab.tipFixedText": "Inserir campo de texto fixo", "DE.Views.FormsTab.tipImageField": "Inserir imagem", + "DE.Views.FormsTab.tipInlineText": "Inserir campo de texto embutido", "DE.Views.FormsTab.tipNextForm": "Ir para o próximo campo", "DE.Views.FormsTab.tipPhoneField": "Inserir número de telefone", "DE.Views.FormsTab.tipPrevForm": "Ir para o campo anterior", @@ -2125,6 +2160,11 @@ "DE.Views.FormsTab.tipSubmit": "Enviar para", "DE.Views.FormsTab.tipTextField": "Inserir campo de texto", "DE.Views.FormsTab.tipViewForm": "Ver formulário", + "DE.Views.FormsTab.tipZipCode": "Inserir código postal", + "DE.Views.FormsTab.txtFixedDesc": "Inserir campo de texto fixo", + "DE.Views.FormsTab.txtFixedText": "Fixo", + "DE.Views.FormsTab.txtInlineDesc": "Inserir campo de texto embutido", + "DE.Views.FormsTab.txtInlineText": "Em linha", "DE.Views.FormsTab.txtUntitled": "Sem título", "DE.Views.HeaderFooterSettings.textBottomCenter": "Centro inferior", "DE.Views.HeaderFooterSettings.textBottomLeft": "Esquerda inferior", @@ -2579,12 +2619,40 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Definir apenas borda superior", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automático", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Sem bordas", + "DE.Views.PrintWithPreview.textMarginsLast": "Últimos personalizados", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderado", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Estreito", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Amplo", + "DE.Views.PrintWithPreview.txtAllPages": "Todas as páginas", + "DE.Views.PrintWithPreview.txtBottom": "Inferior", + "DE.Views.PrintWithPreview.txtCurrentPage": "Pagina atual", + "DE.Views.PrintWithPreview.txtCustom": "Personalizado", + "DE.Views.PrintWithPreview.txtCustomPages": "Impressão personalizada", + "DE.Views.PrintWithPreview.txtLandscape": "Paisagem", + "DE.Views.PrintWithPreview.txtLeft": "Esquerda", + "DE.Views.PrintWithPreview.txtMargins": "Margens", + "DE.Views.PrintWithPreview.txtOf": "de {0}", + "DE.Views.PrintWithPreview.txtPage": "Página", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Número da página inválido", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientação da página", + "DE.Views.PrintWithPreview.txtPages": "Páginas", + "DE.Views.PrintWithPreview.txtPageSize": "Tamanho da página", + "DE.Views.PrintWithPreview.txtPortrait": "Retrato ", + "DE.Views.PrintWithPreview.txtPrint": "Imprimir", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimir em PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Imprimir intervalo", + "DE.Views.PrintWithPreview.txtRight": "Direita", + "DE.Views.PrintWithPreview.txtSelection": "Seleção", + "DE.Views.PrintWithPreview.txtTop": "Parte superior", "DE.Views.ProtectDialog.textComments": "Comentários", "DE.Views.ProtectDialog.textForms": "Preenchimento de formulários", "DE.Views.ProtectDialog.textReview": "Mudanças rastreadas", "DE.Views.ProtectDialog.textView": "Sem alterações (somente leitura)", "DE.Views.ProtectDialog.txtAllow": "Permitir apenas este tipo de edição no documento", "DE.Views.ProtectDialog.txtIncorrectPwd": "A confirmação da senha não é idêntica", + "DE.Views.ProtectDialog.txtLimit": "A senha é limitada a 15 caracteres", "DE.Views.ProtectDialog.txtOptional": "Opcional", "DE.Views.ProtectDialog.txtPassword": "Senha", "DE.Views.ProtectDialog.txtProtect": "Proteger", @@ -2601,6 +2669,27 @@ "DE.Views.RightMenu.txtSignatureSettings": "Configurações de Assinatura", "DE.Views.RightMenu.txtTableSettings": "Configurações da tabela", "DE.Views.RightMenu.txtTextArtSettings": "Configurações de Arte de Texto", + "DE.Views.RoleDeleteDlg.textTitle": "Excluir função", + "DE.Views.RoleEditDlg.capBtnManager": "Gerenciar funções", + "DE.Views.RoleEditDlg.textNoHighlight": "Sem destaque", + "DE.Views.RoleEditDlg.tipManager": "Gerenciar funções", + "DE.Views.RoleEditDlg.txtTitleEdit": "Editar papel", + "DE.Views.RoleEditDlg.txtTitleNew": "Criar nova função", + "DE.Views.RolesManagerDlg.closeButtonText ": "Fechar", + "DE.Views.RolesManagerDlg.textAnyone": "Alguém", + "DE.Views.RolesManagerDlg.textDelete": "Excluir", + "DE.Views.RolesManagerDlg.textDescription": "Adicione funções e defina a ordem em que os responsáveis recebem e assinam o documento", + "DE.Views.RolesManagerDlg.textDown": "Mover função para baixo", + "DE.Views.RolesManagerDlg.textEdit": "Editar", + "DE.Views.RolesManagerDlg.textEmpty": "Nenhuma função foi criada ainda.
Crie pelo menos uma função e ela aparecerá neste campo.", + "DE.Views.RolesManagerDlg.textNew": "Novo", + "DE.Views.RolesManagerDlg.textUp": "Mover função para cima", + "DE.Views.RolesManagerDlg.txtTitle": "Gerenciar funções", + "DE.Views.RolesManagerDlg.warnCantDelete": "Você não pode excluir esta função porque ela tem campos associados.", + "DE.Views.RolesManagerDlg.warnDelete": "Tem certeza de que deseja excluir a função {0}?", + "DE.Views.SaveFormDlg.saveButtonText": "Salvar", + "DE.Views.SaveFormDlg.textAnyone": "Alguém", + "DE.Views.SaveFormDlg.textFill": "Lista de preenchimento", "DE.Views.ShapeSettings.strBackground": "Cor do plano de fundo", "DE.Views.ShapeSettings.strChange": "Alterar forma automática", "DE.Views.ShapeSettings.strColor": "Cor", @@ -2692,6 +2781,11 @@ "DE.Views.Statusbar.tipZoomIn": "Ampliar", "DE.Views.Statusbar.tipZoomOut": "Reduzir", "DE.Views.Statusbar.txtPageNumInvalid": "Número da página inválido", + "DE.Views.Statusbar.txtPages": "Páginas", + "DE.Views.Statusbar.txtParagraphs": "Parágrafos", + "DE.Views.Statusbar.txtSpaces": "Símbolos com espaços", + "DE.Views.Statusbar.txtSymbols": "Símbolos", + "DE.Views.Statusbar.txtWords": "Palavras", "DE.Views.StyleTitleDialog.textHeader": "Criar Novo Estilo", "DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style", "DE.Views.StyleTitleDialog.textTitle": "Title", @@ -3115,6 +3209,7 @@ "DE.Views.Toolbar.tipPaste": "Colar", "DE.Views.Toolbar.tipPrColor": "Cor do plano de fundo do parágrafo", "DE.Views.Toolbar.tipPrint": "Imprimir", + "DE.Views.Toolbar.tipPrintQuick": "Impressão rápida", "DE.Views.Toolbar.tipRedo": "Refazer", "DE.Views.Toolbar.tipSave": "Salvar", "DE.Views.Toolbar.tipSaveCoauth": "Salvar suas alterações para que os outros usuários as vejam.", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index f33203725..11929d2cb 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -285,11 +285,13 @@ "Common.define.smartArt.textVerticalPictureList": "Listă verticală imagine", "Common.define.smartArt.textVerticalProcess": "Proces vertical", "Common.Translation.textMoreButton": "Mai multe", + "Common.Translation.tipFileLocked": "Acest document este blocat pentru editare. Îl puteți modifica și salva mai târziu ca o copie pe unitatea locală.", + "Common.Translation.tipFileReadOnly": "Documentul este disponibil doar în citire și este blocat pentru editare. Puteți îl modifica și salva mai târziu ca o copie pe unitatea locală.", "Common.Translation.warnFileLocked": "Nu puteți edita fișierul deoarece el este editat într-o altă aplicație. ", "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", "Common.UI.ButtonColored.textAutoColor": "Automat", - "Common.UI.ButtonColored.textNewColor": "Сuloare particularizată", + "Common.UI.ButtonColored.textNewColor": "Adăugați o culoare nouă particularizată", "Common.UI.Calendar.textApril": "Aprilie", "Common.UI.Calendar.textAugust": "August", "Common.UI.Calendar.textDecember": "Decembrie", @@ -458,6 +460,7 @@ "Common.Views.Header.textCompactView": "Ascunde bară de instrumente", "Common.Views.Header.textHideLines": "Ascundere rigle", "Common.Views.Header.textHideStatusBar": "Ascundere bară de stare", + "Common.Views.Header.textReadOnly": "Doar în citire", "Common.Views.Header.textRemoveFavorite": "Eliminare din Preferințe", "Common.Views.Header.textShare": "Partajează", "Common.Views.Header.textZoom": "Zoom", @@ -465,6 +468,7 @@ "Common.Views.Header.tipDownload": "Descărcare fișier", "Common.Views.Header.tipGoEdit": "Editare acest fișier", "Common.Views.Header.tipPrint": "Se imprimă tot fișierul", + "Common.Views.Header.tipPrintQuick": "Imprimare rapidă", "Common.Views.Header.tipRedo": "Refacere", "Common.Views.Header.tipSave": "Salvează", "Common.Views.Header.tipSearch": "Căutare", @@ -543,9 +547,9 @@ "Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptați această modificare", "Common.Views.ReviewChanges.tipCoAuthMode": "Activare modul de colaborare", "Common.Views.ReviewChanges.tipCommentRem": "Ștergere comentarii", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Se șterg aceste comentarii", - "Common.Views.ReviewChanges.tipCommentResolve": "Soluționare comentarii", - "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Soluționarea comentariilor curente", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Ștergere comentarii existente", + "Common.Views.ReviewChanges.tipCommentResolve": "Rezolvare comentarii", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Rezolvare comentarii curente", "Common.Views.ReviewChanges.tipCompare": "Comparați acest document cu altul", "Common.Views.ReviewChanges.tipHistory": "Afișare istoricul versiunei", "Common.Views.ReviewChanges.tipRejectCurrent": "Respinge modificare", @@ -561,16 +565,16 @@ "Common.Views.ReviewChanges.txtChat": "Chat", "Common.Views.ReviewChanges.txtClose": "Închidere", "Common.Views.ReviewChanges.txtCoAuthMode": "Modul de editare colaborativă", - "Common.Views.ReviewChanges.txtCommentRemAll": "Ștergere comentariu", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Se șterg aceste comentarii", - "Common.Views.ReviewChanges.txtCommentRemMy": "Se șterg comentariile mele", + "Common.Views.ReviewChanges.txtCommentRemAll": "Șterge toate comentariile ", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Ștergere comentarii existente", + "Common.Views.ReviewChanges.txtCommentRemMy": "Șterge comentariile mele", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Se șterg comentariile mele curente", "Common.Views.ReviewChanges.txtCommentRemove": "Ștergere", "Common.Views.ReviewChanges.txtCommentResolve": "Rezolvare", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentarii ca soluționate", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Soluționarea comentariilor curente", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Soluționarea comentariilor mele", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Soluționarea comentariilor mele curente", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentariile ca rezolvate", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Rezolvare comentarii curente", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Rezolvarea comentariilor mele", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Rezolvarea comentariilor mele curente", "Common.Views.ReviewChanges.txtCompare": "Comparare", "Common.Views.ReviewChanges.txtDocLang": "Limbă", "Common.Views.ReviewChanges.txtEditing": "Editare", @@ -700,6 +704,15 @@ "Common.Views.UserNameDialog.textDontShow": "Nu mai întreabă", "Common.Views.UserNameDialog.textLabel": "Etichetă:", "Common.Views.UserNameDialog.textLabelError": "Etichetă trebuie completată", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Documentul a fost protejat. Aveți posibilitatea numai să-l comentați.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Documentul a fost protejat. Aveți posibilitatea doar să completați formulare din acest document.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Documentul a fost protejat. Aveți posibilitatea să editați acest document, dar toate modificările vor fi urmărite.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Documentul a fost protejat. Puteți doar să vizualizați acest document.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea numai să-l comentați.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea doar să completați formulare din acest document.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Documentul a fost protejat de un alt utilizator. \nAveți posibilitatea să editați acest document, dar toate modificările vor fi urmărite.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Documentul a fost protejat de un alt utilizator.\nPuteți doar să vizualizați acest document.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Protecția documentului a fost anulată.", "DE.Controllers.LeftMenu.leavePageText": "Toate modificările nesalvate din documentul vor fi pierdute.
Pentru a le salva, faceți clic pe Revocare și apoi pe Salvare. Apăsați OK dacă doriți să renunțați la modificările nesalvate.", "DE.Controllers.LeftMenu.newDocumentTitle": "Documentul fără nume", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avertisment", @@ -831,6 +844,7 @@ "DE.Controllers.Main.textRequestMacros": "O macrocomandă trimite o solicitare URL. Doriți să permiteți ca solicitarea să fie trimisă către %1?", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Modul strict", + "DE.Controllers.Main.textTryQuickPrint": "Dvs v-ați ales opțiunea de Imprimare rapidă: imprimanta este setată se inprime un document întreg este ultima imprimantă utilizată sau imprimantă implicită.
Doriți să continuați?", "DE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.
Faceți clic pe Modul strict ca să comutați la modul Strict de editare colaborativă și să nu intrați în conflict cu alte persoane. Toate modificările vor fi trimise numai după ce le salvați. Ulilizati Setări avansate ale editorului ca să comutați între moduri de editare colaborativă. ", "DE.Controllers.Main.textTryUndoRedoWarn": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "DE.Controllers.Main.textUndo": "Anulare", @@ -979,7 +993,7 @@ "DE.Controllers.Main.txtShape_leftArrow": "Săgeată la stângă", "DE.Controllers.Main.txtShape_leftArrowCallout": "Explicație cu săgeta spre stânga", "DE.Controllers.Main.txtShape_leftBrace": "Acoladă stânga", - "DE.Controllers.Main.txtShape_leftBracket": "Paranteză stânga", + "DE.Controllers.Main.txtShape_leftBracket": "Paranteză stângă", "DE.Controllers.Main.txtShape_leftRightArrow": "Săgeată stânga-dreapta", "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Explicație cu săgeata spre stânga-dreapta", "DE.Controllers.Main.txtShape_leftRightUpArrow": "Săgeată stânga-dreapta-sus", @@ -1052,8 +1066,8 @@ "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Explicație în dreptunghi rotunjit", "DE.Controllers.Main.txtStarsRibbons": "Stele și forme ondulate", "DE.Controllers.Main.txtStyle_Caption": "Legenda", - "DE.Controllers.Main.txtStyle_endnote_text": "Textul notelei de final ", - "DE.Controllers.Main.txtStyle_footnote_text": "Textul notei de subsol", + "DE.Controllers.Main.txtStyle_endnote_text": "Text notă de final ", + "DE.Controllers.Main.txtStyle_footnote_text": "Text notă de subsol", "DE.Controllers.Main.txtStyle_Heading_1": "Titlu 1", "DE.Controllers.Main.txtStyle_Heading_2": "Titlu 2", "DE.Controllers.Main.txtStyle_Heading_3": "Titlu 3", @@ -1104,6 +1118,10 @@ "DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", "DE.Controllers.Navigation.txtBeginning": "Începutul documentului", "DE.Controllers.Navigation.txtGotoBeginning": "Salt la începutul documentului", + "DE.Controllers.Print.textMarginsLast": "Ultima setare particularizată", + "DE.Controllers.Print.txtCustom": "Particularizat", + "DE.Controllers.Print.txtPrintRangeInvalid": "Interval de imprimare incorect", + "DE.Controllers.Print.txtPrintRangeSingleRange": "Introduceți un număr de pagină sau un interval de pagini (ex. 5 - 12). Încă mai puteți utiliza opțiunea Imprimare în PDF.", "DE.Controllers.Search.notcriticalErrorTitle": "Avertisment", "DE.Controllers.Search.textNoTextFound": "Datele căutate nu au fost găsite. Alegeți alte opțiuni de căutare.", "DE.Controllers.Search.textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", @@ -1165,52 +1183,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Pălărie", "DE.Controllers.Toolbar.txtAccent_Smile": "Breve", "DE.Controllers.Toolbar.txtAccent_Tilde": "Tildă", - "DE.Controllers.Toolbar.txtBracket_Angle": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Curve": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Paranteză unică", + "DE.Controllers.Toolbar.txtBracket_Angle": "Paranteze unghiulare", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Paranteze unghiulare cu separator", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Paranteze unghiulare cu doi separatori", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Paranteză unghiulară dreaptă", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Paranteză unghiulară stângă", + "DE.Controllers.Toolbar.txtBracket_Curve": "Acolade", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Acolade cu separator", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Acoladă dreaptă", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Acoladă stângă", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Sistem (două condiții)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Sistem (trei condiții)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Stiva de obiecte", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Stiva de obiecte", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Obiect stivă în paranteze", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Exemplu de sistem", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binominal", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binominal", - "DE.Controllers.Toolbar.txtBracket_Line": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză unică", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficientul binomial în paranteze unghiulare", + "DE.Controllers.Toolbar.txtBracket_Line": "Bare verticale", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Bara verticală din dreapta", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Bară verticală din stânga", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Bare verticale duble", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Bara verticală dublă din dreapta", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Bară verticală dublă din stânga", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Paranteză dreaptă inferioară", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Paranteză dreaptă inferioară din dreapta", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Paranteză dreaptă inferioară din stânga", "DE.Controllers.Toolbar.txtBracket_Round": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separatori", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Square": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Paranteze", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză unică", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză unică", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Paranteze cu separator", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Paranteză dreaptă", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Paranteză stângă", + "DE.Controllers.Toolbar.txtBracket_Square": "Paranteze pătrate", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Substituent între două paranteze pătrate din dreapta", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Paranteze pătrate inverse", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Paranteză pătrată dreaptă", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Paranteză pătrată stângă", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Substituent între două paranteze pătrate din stânga", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Paranteze pătrate duble", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Paranteză pătrată dreaptă dublă", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Paranteză pătrată dublă din stânga", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Paranteză dreaptă superioară", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Paranteză dreaptă superioară din dreapta", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Paranteză dreaptă superioară din stânga", "DE.Controllers.Toolbar.txtFractionDiagonal": "Fracție oblică", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Diferențială", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Diferențială", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Diferențială", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferențială", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dx supra dy", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y supra cap delta x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "y parțial supra x parțial", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y supra delta x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Fracție liniară", "DE.Controllers.Toolbar.txtFractionPi_2": "Pi supra 2", "DE.Controllers.Toolbar.txtFractionSmall": "Fracție mică", @@ -1246,63 +1264,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Diferențială de theta", "DE.Controllers.Toolbar.txtIntegral_dx": "Diferențială de x", "DE.Controllers.Toolbar.txtIntegral_dy": "Diferențială de y", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integrală cu limite stivuite", "DE.Controllers.Toolbar.txtIntegralDouble": "Integrală dublă", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integrală dublă cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integrală dublă cu limite", "DE.Controllers.Toolbar.txtIntegralOriented": "Inegrală de contur", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Inegrală de contur", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integrală de contur cu limite stivuite", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integrală de suprafața", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafața", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafața", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Inegrală de contur", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integrală de suprafață cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integrală de suprafață cu limite", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integrală de contur cu limite", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integrală de volum", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Integrală", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integrală de volum cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integrală de volum cu limite", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Integrală cu limite", "DE.Controllers.Toolbar.txtIntegralTriple": "Integrală triplă", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integrală triplă cu limite stivuite", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integrală triplă cu limite", "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Și logic cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Și logic cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Și logic cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Și logic cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Reuniune", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coprodus cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coprodus cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coprodus cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coprodus cu limite pentru indice/exponent", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumă de k combinări din n luate câte k", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumă de la i egal cu zero la n", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Exemplu de sumă folosind doi indici", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Exemplu de produs", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Exemplu de reuniune", "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Sau logic cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Sau logic cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Sau logic cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Sau logic cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersecție cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersecție cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersecție cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersecție cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produs cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produs cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produs cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produs cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumă cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumă cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumă cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumă cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Reuniune cu limită inferioară", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Reuniune cu limite", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Reuniune cu limită inferioară pentru indice", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Reuniune cu limite pentru indice/exponent", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemplu de limită", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemplu de maxim", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limită", @@ -1317,10 +1335,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "Matrice goală 1x3", "DE.Controllers.Toolbar.txtMatrix_2_1": "Matrice goală 2x1 ", "DE.Controllers.Toolbar.txtMatrix_2_2": "Matrice goală 2x2", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală cu paranteze drepte", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Matrice goală cu paranteze drepte", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală cu paranteze drepte", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală cu paranteze drepte", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Matrice goală de 2x2 între bare verticale duble", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Determinant gol de 2x2", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Matrice goală de 2x2 între paranteze", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Matrice goală de 2x2 între paranteze drepte", "DE.Controllers.Toolbar.txtMatrix_2_3": "Matrice goală 2x3", "DE.Controllers.Toolbar.txtMatrix_3_1": "Matrice goală 3x1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Matrice goală 3x2", @@ -1329,11 +1347,11 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Puncte pe linia de mijloc", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Puncte pe diagonală", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Puncte pe verticală", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rare", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rare", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate 2x2", - "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate 3x3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate 3x3", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matrice rară în paranteze", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matrice rară în paranteze drepte", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Matrice identitate de 2x2 cu zerouri", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matrice identitate de 2x2 cu celule goale în afara diagonalei", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Matrice identitate de 3x3 cu zerouri", "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matrice identitate 3x3", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Săgeată deasupra de la dreapta la stînga", @@ -1346,8 +1364,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta rezultă", "DE.Controllers.Toolbar.txtOperator_Definition": "Egal prin definiție", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta egal", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dedesubt de la dreapta la stînga", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată deasupra de la dreapta la stînga", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Săgeată dublă dedesubt de la dreapta la stînga", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Săgeată dublă deasupra de la dreapta la stînga", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Săgeată dedesupt spre stânga", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Săgeată deasupra spre stânga ", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Săgeată dedesubt spre dreapta", @@ -1356,16 +1374,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus egal", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus egal", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Măsurat prin", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Partea din dreapta a formulei pătratice", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Rădăcina pătrată din a pătrat plus b pătrat", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Rădăcina pătrată de ordin", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Rădăcina cubică", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Radicalul de ordin", "DE.Controllers.Toolbar.txtRadicalSqrt": "Rădăcină pătrată", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Scriptul", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Scriptul", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Scriptul", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Scriptul", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x indice y la pătrat", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e la minus i omega t", + "DE.Controllers.Toolbar.txtScriptCustom_3": "x la pătrat", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y exponent stânga n indice stânga unu", "DE.Controllers.Toolbar.txtScriptSub": "Indice", "DE.Controllers.Toolbar.txtScriptSubSup": "Indice-exponenet", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Indice-exponent din stânga", @@ -1621,9 +1639,10 @@ "DE.Views.DocProtection.txtDocProtectedComment": "Documentul a fost protejat.
Puteți numai să-l comentați.", "DE.Views.DocProtection.txtDocProtectedForms": "Documentul a fost protejat.
Documentul este diponibil numai pentru completarea formularelor.", "DE.Views.DocProtection.txtDocProtectedTrack": "Documentul a fost protejat.
Puteți modifica acest document, dar toate modificările vor fi urmărite.", - "DE.Views.DocProtection.txtDocProtectedView": "Documentul a fost protejat.
Documentul este disponibil numai pentru vizualizare..", + "DE.Views.DocProtection.txtDocProtectedView": "Documentul a fost protejat.
Documentul este disponibil numai pentru vizualizare.", "DE.Views.DocProtection.txtDocUnlockDescription": "Introduceți parola pentru anularea protecției documentului", "DE.Views.DocProtection.txtProtectDoc": "Protejare document", + "DE.Views.DocProtection.txtUnlockTitle": "Deprotejare document", "DE.Views.DocumentHolder.aboveText": "Deasupra", "DE.Views.DocumentHolder.addCommentText": "Adaugă comentariu", "DE.Views.DocumentHolder.advancedDropCapText": "Setări majusculă încorporată", @@ -1720,7 +1739,7 @@ "DE.Views.DocumentHolder.textDistributeRows": "Distribuire rânduri", "DE.Views.DocumentHolder.textEditControls": "Setări control de conținut", "DE.Views.DocumentHolder.textEditPoints": "Editare puncte", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Editare bordură la text", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Editare limită de încadrare ", "DE.Views.DocumentHolder.textFlipH": "Răsturnare orizontală", "DE.Views.DocumentHolder.textFlipV": "Răsturnare verticală", "DE.Views.DocumentHolder.textFollow": "Urmărirea mutării", @@ -1953,10 +1972,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versiune a PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Locația", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persoane care au dreptul de acces", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simboluri cu spații", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Caractere cu spații", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistică", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subiect", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simboluri", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Caractere", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etichete", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titlu", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S-a încărcat", @@ -2022,6 +2041,8 @@ "DE.Views.FileMenuPanels.Settings.txtNone": "Nu vizualiza nimic", "DE.Views.FileMenuPanels.Settings.txtProofing": "Verificare", "DE.Views.FileMenuPanels.Settings.txtPt": "Punct", + "DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Afișează butonul Imprimare rapidă în antetul aplicației de editare", + "DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "Imprimanta este setată se imprime documentul este ultima imprimantă utilizată sau imprimantă implicită", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Se activează toate", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Se activează toate macrocomenzile, fără notificare", "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Afișare urmărire modificări", @@ -2306,10 +2327,10 @@ "DE.Views.Links.capBtnTOF": "Tabel de figuri", "DE.Views.Links.confirmDeleteFootnotes": "Doriți să ștergeți toate notele de subsol?", "DE.Views.Links.confirmReplaceTOF": "Doriți să înlocuiți tabelă de figuri selectată?", - "DE.Views.Links.mniConvertNote": "Conversia tuturor notelor", - "DE.Views.Links.mniDelFootnote": "Eliminarea tuturor notelor", + "DE.Views.Links.mniConvertNote": "Efectuați conversia tuturor notelor", + "DE.Views.Links.mniDelFootnote": "Ștergeți toate notele", "DE.Views.Links.mniInsEndnote": "Inserare notă de final", - "DE.Views.Links.mniInsFootnote": "Inserarea notei de subsol", + "DE.Views.Links.mniInsFootnote": "Inserare notă de subsol", "DE.Views.Links.mniNoteSettings": "Setări note", "DE.Views.Links.textContentsRemove": "Eliminare cuprins", "DE.Views.Links.textContentsSettings": "Setări", @@ -2579,6 +2600,33 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Adăugare numai bordură de sus", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Fără borduri", + "DE.Views.PrintWithPreview.textMarginsLast": "Ultima setare particularizată", + "DE.Views.PrintWithPreview.textMarginsModerate": "Moderat", + "DE.Views.PrintWithPreview.textMarginsNarrow": "Îngust", + "DE.Views.PrintWithPreview.textMarginsNormal": "Normal", + "DE.Views.PrintWithPreview.textMarginsUsNormal": "US Normal", + "DE.Views.PrintWithPreview.textMarginsWide": "Lat", + "DE.Views.PrintWithPreview.txtAllPages": "Toate paginile", + "DE.Views.PrintWithPreview.txtBottom": "Jos", + "DE.Views.PrintWithPreview.txtCurrentPage": "Pagina curentă", + "DE.Views.PrintWithPreview.txtCustom": "Particularizat", + "DE.Views.PrintWithPreview.txtCustomPages": "Imprimare particularizată", + "DE.Views.PrintWithPreview.txtLandscape": "Vedere", + "DE.Views.PrintWithPreview.txtLeft": "Stânga", + "DE.Views.PrintWithPreview.txtMargins": "Margini", + "DE.Views.PrintWithPreview.txtOf": "din {0}", + "DE.Views.PrintWithPreview.txtPage": "Pagina", + "DE.Views.PrintWithPreview.txtPageNumInvalid": "Număr de pagină nevalid", + "DE.Views.PrintWithPreview.txtPageOrientation": "Orientare pagină", + "DE.Views.PrintWithPreview.txtPages": "Pagini", + "DE.Views.PrintWithPreview.txtPageSize": "Dimensiune pagină", + "DE.Views.PrintWithPreview.txtPortrait": "Portret", + "DE.Views.PrintWithPreview.txtPrint": "Imprimare", + "DE.Views.PrintWithPreview.txtPrintPdf": "Imprimare în PDF", + "DE.Views.PrintWithPreview.txtPrintRange": "Interval de imprimare", + "DE.Views.PrintWithPreview.txtRight": "Dreapta", + "DE.Views.PrintWithPreview.txtSelection": "Selecție", + "DE.Views.PrintWithPreview.txtTop": "Sus", "DE.Views.ProtectDialog.textComments": "Comentarii", "DE.Views.ProtectDialog.textForms": "Completarea formularelor", "DE.Views.ProtectDialog.textReview": "Modificări urmărite", @@ -2692,6 +2740,12 @@ "DE.Views.Statusbar.tipZoomIn": "Mărire", "DE.Views.Statusbar.tipZoomOut": "Micșorare", "DE.Views.Statusbar.txtPageNumInvalid": "Număr de pagină nevalid", + "DE.Views.Statusbar.txtPages": "Pagini", + "DE.Views.Statusbar.txtParagraphs": "Paragrafe", + "DE.Views.Statusbar.txtSpaces": "Simboluri cu spații", + "DE.Views.Statusbar.txtSymbols": "Simboluri", + "DE.Views.Statusbar.txtWordCount": "Contor de cuvinte", + "DE.Views.Statusbar.txtWords": "Cuvinte", "DE.Views.StyleTitleDialog.textHeader": "Creare stil nou", "DE.Views.StyleTitleDialog.textNextStyle": "Stil de paragraf următor", "DE.Views.StyleTitleDialog.textTitle": "Titlu", @@ -2983,7 +3037,7 @@ "DE.Views.Toolbar.textColumnsTwo": "Două", "DE.Views.Toolbar.textComboboxControl": "Casetă combo", "DE.Views.Toolbar.textContinuous": "Continuă", - "DE.Views.Toolbar.textContPage": "Continuu", + "DE.Views.Toolbar.textContPage": "Pagina continuă", "DE.Views.Toolbar.textCustomLineNumbers": "Opțiuni de numerotare linii", "DE.Views.Toolbar.textDateControl": "Data", "DE.Views.Toolbar.textDropdownControl": "Lista verticală", @@ -3012,14 +3066,14 @@ "DE.Views.Toolbar.textNone": "Niciunul", "DE.Views.Toolbar.textOddPage": "Pagină impară", "DE.Views.Toolbar.textPageMarginsCustom": "Margini particularizate", - "DE.Views.Toolbar.textPageSizeCustom": "Dimensiunea particularizată a paginii ", + "DE.Views.Toolbar.textPageSizeCustom": "Dimensiune pagină particularizată", "DE.Views.Toolbar.textPictureControl": "Imagine", "DE.Views.Toolbar.textPlainControl": "Text simplu", "DE.Views.Toolbar.textPortrait": "Portret", "DE.Views.Toolbar.textRemoveControl": "Eliminare control de conținut", "DE.Views.Toolbar.textRemWatermark": "Eliminare inscripționare", - "DE.Views.Toolbar.textRestartEachPage": "Repornire fiecare pagină", - "DE.Views.Toolbar.textRestartEachSection": "Repornire fiecare secțiune", + "DE.Views.Toolbar.textRestartEachPage": "Reluare la fiecare pagină", + "DE.Views.Toolbar.textRestartEachSection": "Reluare la fiecare secțiune", "DE.Views.Toolbar.textRichControl": "Text îmbogățit", "DE.Views.Toolbar.textRight": "Dreapta:", "DE.Views.Toolbar.textStrikeout": "Tăiere cu o linie", @@ -3115,6 +3169,7 @@ "DE.Views.Toolbar.tipPaste": "Lipire", "DE.Views.Toolbar.tipPrColor": "Umbrire", "DE.Views.Toolbar.tipPrint": "Imprimare", + "DE.Views.Toolbar.tipPrintQuick": "Imprimare rapidă", "DE.Views.Toolbar.tipRedo": "Refacere", "DE.Views.Toolbar.tipSave": "Salvează", "DE.Views.Toolbar.tipSaveCoauth": "Salvați modificările dvs. ca alți utilizatorii să le vadă.", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index da0b114ed..ac16be61d 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -710,6 +710,15 @@ "Common.Views.UserNameDialog.textDontShow": "Больше не спрашивать", "Common.Views.UserNameDialog.textLabel": "Подпись:", "Common.Views.UserNameDialog.textLabelError": "Подпись не должна быть пустой.", + "DE.Controllers.DocProtection.txtIsProtectedComment": "Документ защищен. Вы можете только добавлять комментарии к этому документу.", + "DE.Controllers.DocProtection.txtIsProtectedForms": "Документ защищен. Вы можете только заполнять формы в этом документе.", + "DE.Controllers.DocProtection.txtIsProtectedTrack": "Документ защищен. Вы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Controllers.DocProtection.txtIsProtectedView": "Документ защищен. Вы можете только просматривать этот документ.", + "DE.Controllers.DocProtection.txtWasProtectedComment": "Документ был защищен другим пользователем.\nВы можете только добавлять комментарии к этому документу.", + "DE.Controllers.DocProtection.txtWasProtectedForms": "Документ был защищен другим пользователем.\nВы можете только заполнять формы в этом документе.", + "DE.Controllers.DocProtection.txtWasProtectedTrack": "Документ был защищен другим пользователем.\nВы можете редактировать этот документ, но все изменения будут отслеживаться.", + "DE.Controllers.DocProtection.txtWasProtectedView": "Документ был защищен другим пользователем.\nВы можете только просматривать этот документ.", + "DE.Controllers.DocProtection.txtWasUnprotected": "Защита документа снята.", "DE.Controllers.LeftMenu.leavePageText": "Все несохраненные изменения в этом документе будут потеряны.
Нажмите кнопку \"Отмена\", а затем нажмите кнопку \"Сохранить\", чтобы сохранить их. Нажмите кнопку \"OK\", чтобы сбросить все несохраненные изменения.", "DE.Controllers.LeftMenu.newDocumentTitle": "Документ без имени", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Внимание", @@ -1180,52 +1189,52 @@ "DE.Controllers.Toolbar.txtAccent_Hat": "Крышка", "DE.Controllers.Toolbar.txtAccent_Smile": "Значок краткости", "DE.Controllers.Toolbar.txtAccent_Tilde": "Тильда", - "DE.Controllers.Toolbar.txtBracket_Angle": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Curve": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Отдельная скобка", + "DE.Controllers.Toolbar.txtBracket_Angle": "Угловые скобки", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Угловые скобки с разделителем", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Угловые скобки с двумя разделителями", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Правая угловая скобка", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Левая угловая скобка", + "DE.Controllers.Toolbar.txtBracket_Curve": "Фигурные скобки", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Фигурные скобки с разделителем", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Правая фигурная скобка", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Левая фигурная скобка", "DE.Controllers.Toolbar.txtBracket_Custom_1": "Наборы условий (два условия)", "DE.Controllers.Toolbar.txtBracket_Custom_2": "Наборы условий (три условия)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Стопка объектов", - "DE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Стопка объектов в круглых скобках", "DE.Controllers.Toolbar.txtBracket_Custom_5": "Наборы условий (пример)", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Биномиальный коэффициент", - "DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент", - "DE.Controllers.Toolbar.txtBracket_Line": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LineDouble": "Скобки", - "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LowLim": "Скобки", - "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Round": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Скобки и разделители", - "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Square": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Скобки", - "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Скобки", - "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Скобки", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_UppLim": "Скобки", - "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Отдельная скобка", - "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Отдельная скобка", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Биномиальный коэффициент в угловых скобках", + "DE.Controllers.Toolbar.txtBracket_Line": "Вертикальные черты", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Правая вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Левая вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Двойные вертикальные черты", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Правая двойная вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Левая двойная вертикальная черта", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Закрытые снизу скобки", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Правый предельный уровень снизу", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Левый предельный уровень снизу", + "DE.Controllers.Toolbar.txtBracket_Round": "Круглые скобки", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Круглые скобки с разделителем", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Правая круглая скобка", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Левая круглая скобка", + "DE.Controllers.Toolbar.txtBracket_Square": "Квадратные скобки", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Заполнитель между двумя правыми квадратными скобками", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Перевернутые квадратные скобки", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Правая квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Левая квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Заполнитель между двумя левыми квадратными скобками", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Двойные квадратные скобки", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Правая двойная квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Левая двойная квадратная скобка", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Закрытые сверху скобки", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Правый предельный уровень сверху", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Левый предельный уровень сверху", "DE.Controllers.Toolbar.txtFractionDiagonal": "Диагональная простая дробь", - "DE.Controllers.Toolbar.txtFractionDifferential_1": "Дифференциал", - "DE.Controllers.Toolbar.txtFractionDifferential_2": "Дифференциал", - "DE.Controllers.Toolbar.txtFractionDifferential_3": "Дифференциал", - "DE.Controllers.Toolbar.txtFractionDifferential_4": "Дифференциал", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "dy над dx", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "пересечение дельты y над пересечением дельты x", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "частичная y по частичной x", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "дельта y через дельта x", "DE.Controllers.Toolbar.txtFractionHorizontal": "Горизонтальная простая дробь", "DE.Controllers.Toolbar.txtFractionPi_2": "Пи разделить на два", "DE.Controllers.Toolbar.txtFractionSmall": "Маленькая простая дробь", @@ -1261,63 +1270,63 @@ "DE.Controllers.Toolbar.txtIntegral_dtheta": "Дифференциал dθ", "DE.Controllers.Toolbar.txtIntegral_dx": "Дифференциал dx", "DE.Controllers.Toolbar.txtIntegral_dy": "Дифференциал dy", - "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Интеграл с пределами с накоплением", "DE.Controllers.Toolbar.txtIntegralDouble": "Двойной интеграл", - "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл", - "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Двойной интеграл с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Двойной интеграл с пределами", "DE.Controllers.Toolbar.txtIntegralOriented": "Контурный интеграл", - "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Контурный интеграл с пределами с накоплением", "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Интеграл по поверхности", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности", - "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности", - "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Интеграл по поверхности с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Интеграл по поверхности с пределами", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Контурный интеграл с пределами", "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Интеграл по объему", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему", - "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему", - "DE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Интеграл по объему с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Интеграл по объему с пределами", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Интеграл с пределами", "DE.Controllers.Toolbar.txtIntegralTriple": "Тройной интеграл", - "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл", - "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Конъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Конъюнкция", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Тройной интеграл с пределами с накоплением", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Тройной интеграл с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Логическое И", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Логическое И с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Логическое И с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Логическое И с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Логическое И с пределом подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Дизъюнкция", - "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Дизъюнкция", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Сопроизведение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Сопроизведение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Сопроизведение с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Сопроизведение с пределами подстрочного/надстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Суммирование от k от n с выбором k", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Суммирование от i равно ноль до n", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Пример суммирования с использованием двух индексов", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Пример произведения", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Пример объединения", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Логическое Или", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Логическое ИЛИ с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Логическое ИЛИ с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Логическое ИЛИ с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Логическое ИЛИ с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение", - "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Пересечение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Пересечение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Пересечение с нижним пределом в виде подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Пересечение с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение", - "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Произведение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Произведение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Произведение с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Произведение с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Сумма", - "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Сумма", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Суммирование с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Суммирование с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Суммирование с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Суммирование с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLargeOperator_Union": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение", - "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Объединение с нижним пределом", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Объединение с пределами", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Объединение с нижним пределом подстрочного знака", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Объединение с пределами подстрочного/надстрочного знака", "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Пример предела", "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Пример максимума", "DE.Controllers.Toolbar.txtLimitLog_Lim": "Предел", @@ -1332,10 +1341,10 @@ "DE.Controllers.Toolbar.txtMatrix_1_3": "Пустая матрица 1 x 3", "DE.Controllers.Toolbar.txtMatrix_2_1": "Пустая матрица 2 x 1", "DE.Controllers.Toolbar.txtMatrix_2_2": "Пустая матрица 2 x 2", - "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица со скобками", - "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустая матрица со скобками", - "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица со скобками", - "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица со скобками", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Пустая матрица 2 х 2 в двойных вертикальных чертах", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Пустой определитель 2 x 2", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Пустая матрица 2 х 2 в круглых скобках", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Пустая матрица 2 х 2 в скобках", "DE.Controllers.Toolbar.txtMatrix_2_3": "Пустая матрица 2 x 3", "DE.Controllers.Toolbar.txtMatrix_3_1": "Пустая матрица 3 x 1", "DE.Controllers.Toolbar.txtMatrix_3_2": "Пустая матрица 3 x 2", @@ -1344,12 +1353,12 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Точки посередине", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Точки по диагонали", "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Точки по вертикали", - "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица", - "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица", - "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2", - "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 3 x 3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3", - "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Разреженная матрица в круглых скобках", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Разреженная матрица в квадратных скобках", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "Единичная матрица 2 x 2 с нулями", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Единичная матрица 2 x 2 с пустыми ячейками не на диагонали", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "Единичная матрица 3 x 3 с нулями", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Единичная матрица 3 x 3 с пустыми ячейками не на диагонали", "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Стрелка вправо-влево снизу", "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Стрелка вправо-влево сверху", "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Стрелка влево снизу", @@ -1361,8 +1370,8 @@ "DE.Controllers.Toolbar.txtOperator_Custom_2": "Дельта выхода", "DE.Controllers.Toolbar.txtOperator_Definition": "Равно по определению", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Дельта равна", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Стрелка вправо-влево снизу", - "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Стрелка вправо-влево сверху", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Двойная стрелка вправо-влево снизу", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Двойная стрелка вправо-влево сверху", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Стрелка влево снизу", "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Стрелка влево сверху", "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Стрелка вправо снизу", @@ -1371,16 +1380,16 @@ "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Минус равно", "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Плюс равно", "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Единица измерения", - "DE.Controllers.Toolbar.txtRadicalCustom_1": "Радикал", - "DE.Controllers.Toolbar.txtRadicalCustom_2": "Радикал", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Правая часть квадратного уравнения", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Квадратный корень из квадрата плюс b квадрат", "DE.Controllers.Toolbar.txtRadicalRoot_2": "Квадратный корень со степенью", "DE.Controllers.Toolbar.txtRadicalRoot_3": "Кубический корень", "DE.Controllers.Toolbar.txtRadicalRoot_n": "Радикал со степенью", "DE.Controllers.Toolbar.txtRadicalSqrt": "Квадратный корень", - "DE.Controllers.Toolbar.txtScriptCustom_1": "Индекс", - "DE.Controllers.Toolbar.txtScriptCustom_2": "Индекс", - "DE.Controllers.Toolbar.txtScriptCustom_3": "Индекс", - "DE.Controllers.Toolbar.txtScriptCustom_4": "Индекс", + "DE.Controllers.Toolbar.txtScriptCustom_1": "x в степени квадрата y", + "DE.Controllers.Toolbar.txtScriptCustom_2": "e в степени -iωt", + "DE.Controllers.Toolbar.txtScriptCustom_3": "квадрат x", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Y, надстрочный индекс n слева, подстрочный индекс 1 справа", "DE.Controllers.Toolbar.txtScriptSub": "Нижний индекс", "DE.Controllers.Toolbar.txtScriptSubSup": "Нижний и верхний индексы", "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Нижний и верхний индексы слева", @@ -1541,8 +1550,8 @@ "DE.Views.ChartSettings.textWiden": "Расширить поле зрения", "DE.Views.ChartSettings.textWidth": "Ширина", "DE.Views.ChartSettings.textWrap": "Стиль обтекания", - "DE.Views.ChartSettings.textX": "Поворот по оси X", - "DE.Views.ChartSettings.textY": "Поворот по оси Y", + "DE.Views.ChartSettings.textX": "По оси X", + "DE.Views.ChartSettings.textY": "По оси Y", "DE.Views.ChartSettings.txtBehind": "За текстом", "DE.Views.ChartSettings.txtInFront": "Перед текстом", "DE.Views.ChartSettings.txtInline": "В тексте", @@ -1639,6 +1648,7 @@ "DE.Views.DocProtection.txtDocProtectedView": "Документ защищен.
Вы можете только просматривать этот документ.", "DE.Views.DocProtection.txtDocUnlockDescription": "Введите пароль, чтобы снять защиту документа", "DE.Views.DocProtection.txtProtectDoc": "Защитить документ", + "DE.Views.DocProtection.txtUnlockTitle": "Снять защиту документа", "DE.Views.DocumentHolder.aboveText": "Выше", "DE.Views.DocumentHolder.addCommentText": "Добавить комментарий", "DE.Views.DocumentHolder.advancedDropCapText": "Параметры буквицы", @@ -1659,7 +1669,7 @@ "DE.Views.DocumentHolder.chartText": "Дополнительные параметры диаграммы", "DE.Views.DocumentHolder.columnText": "Столбец", "DE.Views.DocumentHolder.currLinearText": "Текущее - линейный", - "DE.Views.DocumentHolder.currProfText": "Текущее - Профессиональный", + "DE.Views.DocumentHolder.currProfText": "Текущее - профессиональный", "DE.Views.DocumentHolder.deleteColumnText": "Удалить столбец", "DE.Views.DocumentHolder.deleteRowText": "Удалить строку", "DE.Views.DocumentHolder.deleteTableText": "Удалить таблицу", @@ -1969,10 +1979,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Версия PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Размещение", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Люди, имеющие права", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Символы с пробелами", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Знаков с пробелами", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Статистика", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Тема", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Символы", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Знаков", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Теги", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Название", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Загружен", @@ -2054,6 +2064,7 @@ "DE.Views.FileMenuPanels.Settings.txtWin": "как Windows", "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Рабочая область", "DE.Views.FormSettings.textAlways": "Всегда", + "DE.Views.FormSettings.textAnyone": "Любой", "DE.Views.FormSettings.textAspect": "Сохранять пропорции", "DE.Views.FormSettings.textAtLeast": "Минимум", "DE.Views.FormSettings.textAuto": "Авто", @@ -2065,12 +2076,16 @@ "DE.Views.FormSettings.textCombobox": "Поле со списком", "DE.Views.FormSettings.textComplex": "Составное поле", "DE.Views.FormSettings.textConnected": "Подключенные поля", + "DE.Views.FormSettings.textCreditCard": "Номер кредитной карты (например, 4111-1111-1111-1111)", + "DE.Views.FormSettings.textDateField": "Поле Дата и время", + "DE.Views.FormSettings.textDateFormat": "Отображать дату следующим образом", "DE.Views.FormSettings.textDelete": "Удалить", "DE.Views.FormSettings.textDigits": "Цифры", "DE.Views.FormSettings.textDisconnect": "Отключить", "DE.Views.FormSettings.textDropDown": "Выпадающий список", "DE.Views.FormSettings.textExact": "Точно", "DE.Views.FormSettings.textField": "Текстовое поле", + "DE.Views.FormSettings.textFillRoles": "Кто должен это заполнять?", "DE.Views.FormSettings.textFixed": "Поле фиксированного размера", "DE.Views.FormSettings.textFormat": "Формат", "DE.Views.FormSettings.textFormatSymbols": "Допустимые символы", @@ -2080,6 +2095,7 @@ "DE.Views.FormSettings.textGroupKey": "Ключ группы", "DE.Views.FormSettings.textImage": "Изображение", "DE.Views.FormSettings.textKey": "Ключ", + "DE.Views.FormSettings.textLang": "Язык", "DE.Views.FormSettings.textLetters": "Буквы", "DE.Views.FormSettings.textLock": "Заблокировать", "DE.Views.FormSettings.textMask": "Произвольная маска", @@ -2088,6 +2104,8 @@ "DE.Views.FormSettings.textNever": "Никогда", "DE.Views.FormSettings.textNoBorder": "Без границ", "DE.Views.FormSettings.textNone": "Нет", + "DE.Views.FormSettings.textPhone1": "Номер телефона (например, (123) 456-7890)", + "DE.Views.FormSettings.textPhone2": "Номер телефона (например, +447911123456)", "DE.Views.FormSettings.textPlaceholder": "Заполнитель", "DE.Views.FormSettings.textRadiobox": "Переключатель", "DE.Views.FormSettings.textReg": "Регулярное выражение", @@ -2102,9 +2120,12 @@ "DE.Views.FormSettings.textTipUp": "Переместить вверх", "DE.Views.FormSettings.textTooBig": "Изображение слишком большое", "DE.Views.FormSettings.textTooSmall": "Изображение слишком маленькое", + "DE.Views.FormSettings.textUKPassport": "Номер паспорта Великобритании (например, 925665416)", "DE.Views.FormSettings.textUnlock": "Разблокировать", + "DE.Views.FormSettings.textUSSSN": "SSN США (например, 123-45-6789)", "DE.Views.FormSettings.textValue": "Параметры значений", "DE.Views.FormSettings.textWidth": "Ширина ячейки", + "DE.Views.FormSettings.textZipCodeUS": "Почтовый индекс США (например, 92663 или 92663-1234)", "DE.Views.FormsTab.capBtnCheckBox": "Флажок", "DE.Views.FormsTab.capBtnComboBox": "Поле со списком", "DE.Views.FormsTab.capBtnComplex": "Составное поле", @@ -2120,6 +2141,10 @@ "DE.Views.FormsTab.capBtnSubmit": "Отправить", "DE.Views.FormsTab.capBtnText": "Текстовое поле", "DE.Views.FormsTab.capBtnView": "Просмотреть форму", + "DE.Views.FormsTab.capCreditCard": "Кредитная карта", + "DE.Views.FormsTab.capDateTime": "Дата и время", + "DE.Views.FormsTab.capZipCode": "Индекс", + "DE.Views.FormsTab.textAnyone": "Любой", "DE.Views.FormsTab.textClear": "Очистить поля", "DE.Views.FormsTab.textClearFields": "Очистить все поля", "DE.Views.FormsTab.textCreateForm": "Добавьте поля и создайте заполняемый документ OFORM", @@ -2131,10 +2156,14 @@ "DE.Views.FormsTab.tipCheckBox": "Вставить флажок", "DE.Views.FormsTab.tipComboBox": "Вставить поле со списком", "DE.Views.FormsTab.tipComplexField": "Вставить составное поле", + "DE.Views.FormsTab.tipCreditCard": "Вставить номер кредитной карты", + "DE.Views.FormsTab.tipDateTime": "Вставить дату и время", "DE.Views.FormsTab.tipDownloadForm": "Скачать файл как заполняемый документ OFORM", "DE.Views.FormsTab.tipDropDown": "Вставить выпадающий список", "DE.Views.FormsTab.tipEmailField": "Вставить адрес email", + "DE.Views.FormsTab.tipFixedText": "Вставить фиксированное текстовое поле", "DE.Views.FormsTab.tipImageField": "Вставить изображение", + "DE.Views.FormsTab.tipInlineText": "Вставить встроенное текстовое поле", "DE.Views.FormsTab.tipNextForm": "Перейти к следующему полю", "DE.Views.FormsTab.tipPhoneField": "Вставить номер телефона", "DE.Views.FormsTab.tipPrevForm": "Перейти к предыдущему полю", @@ -2143,6 +2172,11 @@ "DE.Views.FormsTab.tipSubmit": "Отправить форму", "DE.Views.FormsTab.tipTextField": "Вставить текстовое поле", "DE.Views.FormsTab.tipViewForm": "Просмотреть форму", + "DE.Views.FormsTab.tipZipCode": "Вставить индекс", + "DE.Views.FormsTab.txtFixedDesc": "Вставить фиксированное текстовое поле", + "DE.Views.FormsTab.txtFixedText": "Фиксированное", + "DE.Views.FormsTab.txtInlineDesc": "Вставить встроенное текстовое поле", + "DE.Views.FormsTab.txtInlineText": "Встроенное", "DE.Views.FormsTab.txtUntitled": "Без имени", "DE.Views.HeaderFooterSettings.textBottomCenter": "Снизу по центру", "DE.Views.HeaderFooterSettings.textBottomLeft": "Снизу слева", @@ -2526,7 +2560,7 @@ "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Запрет висячих строк", "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Шрифт", "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Отступы и интервалы", - "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Положение на странице", + "DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Разрывы строк и страницы", "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Положение", "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Малые прописные", "DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Не добавлять интервал между абзацами одного стиля", @@ -2597,18 +2631,6 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Задать только верхнюю границу", "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Авто", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Без границ", - "DE.Views.ProtectDialog.textComments": "Комментарии", - "DE.Views.ProtectDialog.textForms": "Заполнение форм", - "DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения", - "DE.Views.ProtectDialog.textView": "Только чтение", - "DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа", - "DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают", - "DE.Views.ProtectDialog.txtOptional": "необязательно", - "DE.Views.ProtectDialog.txtPassword": "Пароль", - "DE.Views.ProtectDialog.txtProtect": "Защитить", - "DE.Views.ProtectDialog.txtRepeat": "Повторить пароль", - "DE.Views.ProtectDialog.txtTitle": "Защитить", - "DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.", "DE.Views.PrintWithPreview.textMarginsLast": "Последние настраиваемые", "DE.Views.PrintWithPreview.textMarginsModerate": "Средние", "DE.Views.PrintWithPreview.textMarginsNarrow": "Узкие", @@ -2636,6 +2658,19 @@ "DE.Views.PrintWithPreview.txtRight": "Правое", "DE.Views.PrintWithPreview.txtSelection": "Выделенный фрагмент", "DE.Views.PrintWithPreview.txtTop": "Верхнее", + "DE.Views.ProtectDialog.textComments": "Комментарии", + "DE.Views.ProtectDialog.textForms": "Заполнение форм", + "DE.Views.ProtectDialog.textReview": "Отслеживаемые изменения", + "DE.Views.ProtectDialog.textView": "Только чтение", + "DE.Views.ProtectDialog.txtAllow": "Разрешить только указанный способ редактирования документа", + "DE.Views.ProtectDialog.txtIncorrectPwd": "Пароль и его подтверждение не совпадают", + "DE.Views.ProtectDialog.txtLimit": "Пароль ограничен 15 символами", + "DE.Views.ProtectDialog.txtOptional": "необязательно", + "DE.Views.ProtectDialog.txtPassword": "Пароль", + "DE.Views.ProtectDialog.txtProtect": "Защитить", + "DE.Views.ProtectDialog.txtRepeat": "Повторить пароль", + "DE.Views.ProtectDialog.txtTitle": "Защитить", + "DE.Views.ProtectDialog.txtWarning": "Внимание: Если пароль забыт или утерян, его нельзя восстановить. Храните его в надежном месте.", "DE.Views.RightMenu.txtChartSettings": "Параметры диаграммы", "DE.Views.RightMenu.txtFormSettings": "Параметры формы", "DE.Views.RightMenu.txtHeaderFooterSettings": "Параметры верхнего и нижнего колонтитулов", @@ -2646,6 +2681,35 @@ "DE.Views.RightMenu.txtSignatureSettings": "Настройка подписи", "DE.Views.RightMenu.txtTableSettings": "Параметры таблицы", "DE.Views.RightMenu.txtTextArtSettings": "Параметры объекта Text Art", + "DE.Views.RoleDeleteDlg.textLabel": "Чтобы удалить эту роль, надо перенести связанные с ней поля в другую роль.", + "DE.Views.RoleDeleteDlg.textSelect": "Выберите для роли слияния полей", + "DE.Views.RoleDeleteDlg.textTitle": "Удалить роль", + "DE.Views.RoleEditDlg.capBtnManager": "Управление ролями", + "DE.Views.RoleEditDlg.errNameExists": "Роль с таким названием уже существует.", + "DE.Views.RoleEditDlg.textEmptyError": "Название роли не может быть пустым.", + "DE.Views.RoleEditDlg.textName": "Название роли", + "DE.Views.RoleEditDlg.textNoHighlight": "Без подсветки", + "DE.Views.RoleEditDlg.tipManager": "Управление ролями", + "DE.Views.RoleEditDlg.txtTitleEdit": "Редактировать роль", + "DE.Views.RoleEditDlg.txtTitleNew": "Создать новую роль", + "DE.Views.RolesManagerDlg.closeButtonText ": "Закрыть", + "DE.Views.RolesManagerDlg.textAnyone": "Любой", + "DE.Views.RolesManagerDlg.textDelete": "Удалить", + "DE.Views.RolesManagerDlg.textDescription": "Добавьте роли и задайте порядок, в котором заполняющие получают и подписывают документ", + "DE.Views.RolesManagerDlg.textDown": "Переместить роль вниз", + "DE.Views.RolesManagerDlg.textEdit": "Редактировать", + "DE.Views.RolesManagerDlg.textEmpty": "Еще не было создано ни одной роли.
Создайте хотя бы одну роль, и она появится в этом поле.", + "DE.Views.RolesManagerDlg.textNew": "Создать", + "DE.Views.RolesManagerDlg.textUp": "Переместить роль вверх", + "DE.Views.RolesManagerDlg.txtTitle": "Управление ролями", + "DE.Views.RolesManagerDlg.warnCantDelete": "Нельзя удалить эту роль, так как есть связанные с ней поля.", + "DE.Views.RolesManagerDlg.warnDelete": "Вы действительно хотите удалить роль {0}?", + "DE.Views.SaveFormDlg.saveButtonText": "Сохранить", + "DE.Views.SaveFormDlg.textAnyone": "Любой", + "DE.Views.SaveFormDlg.textDescription": "При сохранении в oform в список заполнения добавляются только роли с полями", + "DE.Views.SaveFormDlg.textEmpty": "Нет ролей, связанных с этим полем.", + "DE.Views.SaveFormDlg.textFill": "Список заполнения", + "DE.Views.SaveFormDlg.txtTitle": "Сохранить как форму", "DE.Views.ShapeSettings.strBackground": "Цвет фона", "DE.Views.ShapeSettings.strChange": "Изменить автофигуру", "DE.Views.ShapeSettings.strColor": "Цвет", @@ -2737,6 +2801,12 @@ "DE.Views.Statusbar.tipZoomIn": "Увеличить", "DE.Views.Statusbar.tipZoomOut": "Уменьшить", "DE.Views.Statusbar.txtPageNumInvalid": "Неправильный номер страницы", + "DE.Views.Statusbar.txtPages": "Страницы", + "DE.Views.Statusbar.txtParagraphs": "Абзацы", + "DE.Views.Statusbar.txtSpaces": "Символы и пробелы", + "DE.Views.Statusbar.txtSymbols": "Символы", + "DE.Views.Statusbar.txtWordCount": "Количество слов", + "DE.Views.Statusbar.txtWords": "Слова", "DE.Views.StyleTitleDialog.textHeader": "Создание нового стиля", "DE.Views.StyleTitleDialog.textNextStyle": "Стиль следующего абзаца", "DE.Views.StyleTitleDialog.textTitle": "Название", @@ -3160,6 +3230,7 @@ "DE.Views.Toolbar.tipPaste": "Вставить", "DE.Views.Toolbar.tipPrColor": "Заливка", "DE.Views.Toolbar.tipPrint": "Печать", + "DE.Views.Toolbar.tipPrintQuick": "Быстрая печать", "DE.Views.Toolbar.tipRedo": "Повторить", "DE.Views.Toolbar.tipSave": "Сохранить", "DE.Views.Toolbar.tipSaveCoauth": "Сохраните свои изменения, чтобы другие пользователи их увидели.", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index acdc7974a..c31558763 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -1694,10 +1694,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odseky", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboly s medzerami", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Znaky s medzerami", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Štatistiky", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Predmet", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboly", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Znaky", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Nahrané", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Slová", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 73889d8a0..789fa36ac 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -1755,10 +1755,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF-version", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Placering", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personer som har behörigheter", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symboler med mellanrum", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Tecken med mellanrum", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Ämne", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symboler", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Tecken", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Etiketter", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uppladdad", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index cf663d5c7..8e50494e8 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1946,10 +1946,10 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF版", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "位置", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "有权利的人", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "带空格的符号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "字符数(计空格)", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "统计", "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "主题", - "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "符号", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "字符数(不计空格)", "DE.Views.FileMenuPanels.DocumentInfo.txtTags": "标签", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "标题", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "上载", diff --git a/apps/documenteditor/main/resources/img/form-points.svg b/apps/documenteditor/main/resources/img/form-points.svg new file mode 100644 index 000000000..2a1c6ac75 --- /dev/null +++ b/apps/documenteditor/main/resources/img/form-points.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-credit-card.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-credit-card.png new file mode 100644 index 000000000..4f89d77e9 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-credit-card.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-fixed-field.png new file mode 100644 index 000000000..591cb2136 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-zip-code.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-zip-code.png new file mode 100644 index 000000000..89290fc2c Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/big/btn-zip-code.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-fixed-field.png new file mode 100644 index 000000000..7e2344aa2 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-multilevels.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-multilevels.png index fe1224e85..dcbb20dbf 100644 Binary files a/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-multilevels.png and b/apps/documenteditor/main/resources/img/toolbar/1.25x/btn-multilevels.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.25x/word-count.png b/apps/documenteditor/main/resources/img/toolbar/1.25x/word-count.png new file mode 100644 index 000000000..2f1cbdd08 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.25x/word-count.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-credit-card.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-credit-card.png new file mode 100644 index 000000000..1a6c8bd0c Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-credit-card.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-fixed-field.png new file mode 100644 index 000000000..4d59eab69 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-zip-code.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-zip-code.png new file mode 100644 index 000000000..8da23b8c3 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/big/btn-zip-code.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-fixed-field.png new file mode 100644 index 000000000..263f4add0 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-multilevels.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-multilevels.png index 97fff3068..b8adf6aed 100644 Binary files a/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-multilevels.png and b/apps/documenteditor/main/resources/img/toolbar/1.5x/btn-multilevels.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.5x/word-count.png b/apps/documenteditor/main/resources/img/toolbar/1.5x/word-count.png new file mode 100644 index 000000000..90aedd275 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.5x/word-count.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-credit-card.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-credit-card.png new file mode 100644 index 000000000..a37811b6d Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-credit-card.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-fixed-field.png new file mode 100644 index 000000000..35216590f Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-zip-code.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-zip-code.png new file mode 100644 index 000000000..916a045c7 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/big/btn-zip-code.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-fixed-field.png new file mode 100644 index 000000000..591cb2136 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png index b9d1b6fd3..a22df8c10 100644 Binary files a/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png and b/apps/documenteditor/main/resources/img/toolbar/1.75x/btn-multilevels.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1.75x/word-count.png b/apps/documenteditor/main/resources/img/toolbar/1.75x/word-count.png new file mode 100644 index 000000000..aa323e870 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1.75x/word-count.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-credit-card.png b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-credit-card.png new file mode 100644 index 000000000..8dcf78c4e Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-credit-card.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-fixed-field.png new file mode 100644 index 000000000..0aae68134 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-zip-code.png b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-zip-code.png new file mode 100644 index 000000000..ffc4c4612 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/big/btn-zip-code.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/1x/btn-fixed-field.png new file mode 100644 index 000000000..dcfb78a33 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/btn-multilevels.png b/apps/documenteditor/main/resources/img/toolbar/1x/btn-multilevels.png index b93af4a9b..e2d7528c6 100644 Binary files a/apps/documenteditor/main/resources/img/toolbar/1x/btn-multilevels.png and b/apps/documenteditor/main/resources/img/toolbar/1x/btn-multilevels.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/1x/word-count.png b/apps/documenteditor/main/resources/img/toolbar/1x/word-count.png new file mode 100644 index 000000000..5744e0284 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/1x/word-count.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-credit-card.png b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-credit-card.png new file mode 100644 index 000000000..7273a7326 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-credit-card.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-fixed-field.png new file mode 100644 index 000000000..a3f8e93d7 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-zip-code.png b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-zip-code.png new file mode 100644 index 000000000..e766f59e7 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/big/btn-zip-code.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/btn-fixed-field.png b/apps/documenteditor/main/resources/img/toolbar/2x/btn-fixed-field.png new file mode 100644 index 000000000..4d3696597 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/btn-fixed-field.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/btn-multilevels.png b/apps/documenteditor/main/resources/img/toolbar/2x/btn-multilevels.png index e4402c35c..c247e2920 100644 Binary files a/apps/documenteditor/main/resources/img/toolbar/2x/btn-multilevels.png and b/apps/documenteditor/main/resources/img/toolbar/2x/btn-multilevels.png differ diff --git a/apps/documenteditor/main/resources/img/toolbar/2x/word-count.png b/apps/documenteditor/main/resources/img/toolbar/2x/word-count.png new file mode 100644 index 000000000..bc6d60ac6 Binary files /dev/null and b/apps/documenteditor/main/resources/img/toolbar/2x/word-count.png differ diff --git a/apps/documenteditor/main/resources/less/advanced-settings.less b/apps/documenteditor/main/resources/less/advanced-settings.less index 84d9d48f1..6fb57d2d0 100644 --- a/apps/documenteditor/main/resources/less/advanced-settings.less +++ b/apps/documenteditor/main/resources/less/advanced-settings.less @@ -63,13 +63,304 @@ } } -#bookmarks-radio-name { - display: inline-block; - margin-right: 10px; - vertical-align: middle; -} - #id-text-table-spn-fixed, #bookmarks-radio-location { display: inline-block; vertical-align: middle; +} + +#id-adv-paragraph-indents { + .outline-level { + float: right; + + .rtl & { + float: left; + } + } + + .margin-right { + margin-right: 3px; + + .rtl & { + margin-right: 0; + margin-left: 3px; + } + } +} + +#id-adv-paragraph-borders { + .border-color { + padding-left: 20px; + + .rtl & { + padding-left: 0; + padding-right: 20px; + } + } + + .back-color { + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + .border-types { + text-align: right; + margin-left: 9px; + + .rtl & { + text-align: left; + margin-left: 0; + margin-right: 9px; + } + + .btn { + margin-left: 4px; + margin-bottom: 4px; + + .rtl & { + margin-left: 0; + margin-right: 4px; + } + } + } +} + +#id-adv-paragraph-font { + .padding-left { + padding-left: 40px; + + .rtl & { + padding-left: 0; + padding-right: 40px; + } + } + + .position { + margin-left: 15px; + + .rtl & { + margin-left: 0; + margin-right: 15px; + } + } + + .ligatures { + margin-left: 5px; + + .rtl & { + margin-left: 0; + margin-right: 5px; + } + } +} + +#id-adv-paragraph-tabs { + .tab-position { + margin-right: 8px; + + .rtl & { + margin-right: 0; + margin-left: 8px; + } + } + + .margin-right { + margin-right: 9px; + + .rtl & { + margin-right: 0; + margin-left: 9px; + } + } +} + +#id-adv-paragraph-margins { + .padding-left { + padding-left: 15px; + + .rtl & { + padding-left: 0; + padding-right: 15px; + } + } +} + +#id-adv-table-width, #id-adv-table-cell-props { + .margin-right { + margin-right: 10px; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } +} + +#id-adv-table-borders { + .border-color { + float: right; + + .rtl & { + float: left; + } + } + + .border-types { + padding-left: 10px; + + .rtl & { + padding-left: 0; + padding-right: 10px; + } + + .btn { + margin-left: 4px; + margin-bottom: 4px; + + .rtl & { + margin-left: 0; + margin-right: 4px; + } + } + } + + .back-color { + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } +} + +#id-adv-table-wrap { + .margin-right { + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + .number-indent { + margin-left: 20px; + + .rtl & { + margin-left: 0; + margin-right: 20px; + } + } +} + +#id-adv-image-rotate { + #image-advanced-spin-angle { + margin-left: 5px; + + .rtl & { + margin-left: 0; + margin-right: 5px; + } + } + + .flipped { + margin-right: 15px; + + .rtl & { + margin-right: 0; + margin-left: 15px; + } + } +} + +#id-adv-image-wrap { + .margin-right { + margin-right: 7px; + + .rtl & { + margin-right: 0; + margin-left: 7px; + } + } +} + +#id-adv-shape-size { + .padding-right { + padding-right: 15px; + + .rtl & { + padding-right: 0; + padding-left: 15px; + } + } +} + +#window-date-time { + #datetime-dlg-default { + float: right; + + .rtl & { + float: left; + } + } +} + +.advanced-settings-dlg { + .roles-tableview { + &.no-borders > .listview .item { + border-width: 0 !important; + } + .item { + padding: 0 6px; + } + + @item-width: 20px; + @item-height: 28px; + .list-item { + display: flex; + align-items: center; + height: @item-height; + + span.color { + display: block; + width: 12px; + height: 12px; + border: @scaled-one-px-value-ie solid @border-color-shading-ie; + border: @scaled-one-px-value solid @border-color-shading; + } + } + .list-item > div{ + vertical-align: middle; + display: inline-block; + text-overflow: ellipsis; + overflow: hidden; + white-space: pre; + } + + .listitem-icon { + width: @item-width; + height: @item-height; + margin-right: 5px; + + svg { + width: @item-width; + height: @item-height; + fill: @text-normal-ie; + fill: @text-normal; + } + } + + .selected { + .listitem-icon { + svg { + fill: @text-normal-pressed-ie; + fill: @text-normal-pressed; + } + } + } + } } \ No newline at end of file diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less index 78a26633f..966fb2071 100644 --- a/apps/documenteditor/main/resources/less/filemenu.less +++ b/apps/documenteditor/main/resources/less/filemenu.less @@ -66,6 +66,11 @@ background-color: @background-normal-ie; background-color: @background-normal; + .rtl & { + padding-left: 0; + padding-right: 260px; + } + .content-box { height: 100%; padding: 0 20px; @@ -82,15 +87,36 @@ } } +#id-help-frame { + position: absolute; + left: 220px; + top: 0; + right: 0; + bottom: 0; + + .rtl & { + left: 0; + right: 220px; + } +} + #file-menu-panel .panel-context { #panel-saveas, #panel-savecopy { &.content-box { padding: 0 0 0 20px; + + .rtl & { + padding: 0 20px 0 0; + } } .content-container { margin: 30px 0 0 10px; + .rtl & { + margin: 30px 10px 0 0; + } + .header { .font-size-very-huge(); margin-bottom: 20px; @@ -101,6 +127,11 @@ float: left; margin: 0 24px 34px 0; + .rtl & { + float: right; + margin: 0 0 34px 24px; + } + .btn-doc-format { width: 70px; height: 90px; @@ -278,6 +309,34 @@ } } } + + #fms-cmb-theme { + display: inline-block; + margin-right: 15px; + vertical-align: middle; + + .rtl & { + margin-right: 0; + margin-left: 15px; + } + } + + #fms-chb-dark-mode { + display: inline-block; + vertical-align: middle; + margin-top: 2px; + } + + #fms-cmb-macros { + display: inline-block; + margin-right: 15px; + vertical-align: middle; + + .rtl & { + margin-right: 0; + margin-left: 15px; + } + } } #panel-createnew { @@ -287,6 +346,10 @@ white-space: nowrap; margin-top: 30px; margin-bottom: 20px; + + .rtl & { + padding: 0 10px 10px 0; + } } hr { @@ -415,6 +478,12 @@ border-right: @scaled-one-px-value-ie solid @border-toolbar-ie; border-right: @scaled-one-px-value solid @border-toolbar; + .rtl & { + border-right: none; + border-left: @scaled-one-px-value-ie solid @border-toolbar-ie; + border-left: @scaled-one-px-value solid @border-toolbar; + } + & > .item { display: block; border: none; @@ -442,11 +511,19 @@ .help-item-wrap { padding: 4px 2px 4px 20px; + + .rtl & { + padding: 4px 20px 4px 2px; + } } .header-name { padding: 16px 2px 4px 10px; .font-size-medium(); + + .rtl & { + padding: 16px 10px 4px 2px; + } } } } @@ -456,6 +533,15 @@ padding: 0 30px; } + #id-info-btn-edit { + margin-right: 10px; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } + .header { margin: 30px 0 20px 0; .font-size-very-huge(); @@ -476,11 +562,19 @@ td { padding: 0 20px 5px 0; + .rtl & { + padding: 0 0 5px 20px; + } + &.left { padding: 5px 10px; text-align: right; width: 200px; + .rtl & { + text-align: left; + } + label { .font-weight-bold(); } @@ -582,10 +676,18 @@ #fms-btn-delete-pwd { margin-left: 16px; + .rtl & { + margin-left: 0; + margin-right: 16px; + } } .signature-view-link { margin-right: 20px; + .rtl & { + margin-right: 0; + margin-left: 20px; + } } .signature-tip { @@ -714,4 +816,4 @@ height: calc(100% - 50px); } } -} +} \ No newline at end of file diff --git a/apps/documenteditor/main/resources/less/leftmenu.less b/apps/documenteditor/main/resources/less/leftmenu.less index 6f2b7e151..8aeb99b29 100644 --- a/apps/documenteditor/main/resources/less/leftmenu.less +++ b/apps/documenteditor/main/resources/less/leftmenu.less @@ -16,6 +16,11 @@ background-color: @background-toolbar-ie; background-color: @background-toolbar; overflow: hidden; + + .rtl & { + left: 0; + right: 40px; + } } #developer-hint, #beta-hint, #limit-hint { diff --git a/apps/documenteditor/main/resources/less/navigation.less b/apps/documenteditor/main/resources/less/navigation.less index 06f246f4d..0f5ff0beb 100644 --- a/apps/documenteditor/main/resources/less/navigation.less +++ b/apps/documenteditor/main/resources/less/navigation.less @@ -18,6 +18,25 @@ .font-weight-bold(); margin-top: 2px; } + + #navigation-btn-close { + float: right; + margin-left: 4px; + + .rtl & { + float: left; + margin-left: 0; + margin-right: 4px; + } + } + + #navigation-btn-settings { + float: right; + + .rtl & { + float: left; + } + } } #navigation-list { diff --git a/apps/documenteditor/main/resources/less/rightmenu.less b/apps/documenteditor/main/resources/less/rightmenu.less index 0bdf0da76..30e52d9f9 100644 --- a/apps/documenteditor/main/resources/less/rightmenu.less +++ b/apps/documenteditor/main/resources/less/rightmenu.less @@ -9,9 +9,395 @@ } } .right-panel .settings-panel { - label.input-label{ + label.input-label { vertical-align: baseline; } + + &#id-paragraph-settings { + .input-label.margin { + margin-left: 5px; + + .rtl & { + margin-left: 0; + margin-right: 5px; + } + } + } + + &#id-table-settings { + #id-table-menu-template { + margin: 5px 5px 5px 10px; + + .rtl & { + margin: 5px 10px 5px 5px; + } + + .group-description { + padding: 3px 0 3px 10px; + + .rtl & { + padding: 3px 10px 3px 0; + text-align: right; + } + } + } + + #table-combo-border-size { + display: inline-block; + vertical-align: middle; + width: 93px; + } + + .table-color { + display: inline-block; + float: right; + vertical-align: middle; + + .rtl & { + float: left; + } + + .input-label { + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + #table-border-color-btn { + display: inline-block; + } + } + + .input-label.margin { + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + #table-btn-distrub-rows, #table-btn-distrub-cols, + #table-spin-cell-height, #table-spin-cell-width { + display: inline-block; + float: right; + + .rtl & { + float: left; + } + } + + #table-btn-distrub-rows, #table-btn-distrub-cols { + margin-left: 4px; + + .rtl & { + margin-left: 0; + margin-right: 4px; + } + } + + #table-btn-convert-to-text { + .btn { + width: 100%; + text-align: left; + + .rtl & { + text-align: right; + } + } + } + } + + &#id-shape-settings { + #shape-panel-transparent-fill { + width: 100%; + + .header { + display: block; + } + + .shape-slider { + display: inline-block; + margin-top: 3px; + } + + #shape-spin-transparency { + display: inline-block; + float: right; + + .rtl & { + float: left; + } + } + + #shape-slider-transparency { + display: inline-block; + margin: 0 4px; + vertical-align: middle; + } + } + + #shape-button-270, #shape-button-fliph { + display: inline-block; + margin-right: 4px; + + .rtl & { + margin-right: 0; + margin-left: 4px; + } + } + + #shape-button-90, #shape-button-flipv { + display: inline-block; + } + + .change-type { + .header { + margin-top: 3px; + } + + #shape-btn-change { + display: inline-block; + float: right; + + .rtl & { + float: left; + } + } + } + + .shape-direction { + float: right; + + .rtl & { + float: left; + } + } + + .angle-label { + margin-right: 5px; + margin-bottom: 3px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + .gradient-position { + margin-left: 10px; + + .rtl & { + margin-left: 0; + margin-right: 10px; + } + } + + #id-shape-menu-direction { + .dataview .item { + .rtl & { + float: left; + } + } + } + + .texture-img { + width: 90px; + height: 80px; + padding: 14px 20px; + border: 1px solid #AFAFAF; + border-radius: 2px; + background: #ffffff; + float:right; + + .rtl & { + float: left; + } + } + + #shape-foreground-color-btn, #shape-background-color-btn { + display: inline-block; + float:right; + + .rtl & { + float: left; + } + } + } + + &#id-image-settings { + #image-button-270, #image-button-fliph { + display: inline-block; + margin-right: 4px; + + .rtl & { + margin-right: 0; + margin-left: 4px; + } + } + + #image-button-90, #image-button-flipv { + display: inline-block; + } + } + + &#id-header-settings { + #headerfooter-radio-from { + display: inline-block; + vertical-align: middle; + margin-right: 2px; + + .rtl & { + margin-right: 0; + margin-left: 2px; + } + } + + #headerfooter-radio-prev { + margin-bottom: 5px; + } + + #headerfooter-spin-from { + display: inline-block; + vertical-align: middle; + } + + #headerfooter-button-top-left, + #headerfooter-button-top-center, + #headerfooter-button-top-right, + #headerfooter-button-bottom-left, + #headerfooter-button-bottom-center, + #headerfooter-button-bottom-right { + display: inline-block; + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + } + + &#id-textart-settings { + #textart-spin-transparency { + display: inline-block; + float: right; + + .rtl & { + float: left; + } + } + + #textart-panel-gradient-fill { + .textart-direction { + float: right; + + .rtl & { + float: left; + } + } + } + + .angle-label { + margin-bottom: 3px; + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + #id-textart-menu-direction { + .dataview .item { + .rtl & { + float: left; + } + } + } + + .gradient-position { + margin-left: 10px; + + .rtl & { + margin-left: 0; + margin-right: 10px; + } + } + } + + &#id-mail-merge-settings { + #mmerge-button-first, + #mmerge-button-prev { + display: inline-block; + margin-right: 4px; + + .rtl & { + margin-right: 0; + margin-left: 4px; + } + } + + #mmerge-field-num { + display:inline-block; + vertical-align: middle; + } + + #mmerge-button-next, + #mmerge-button-last { + display: inline-block; + margin-left: 4px; + + .rtl & { + margin-left: 0; + margin-right: 4px; + } + } + + #mmerge-radio-all, #mmerge-radio-current { + margin-bottom: 5px; + } + + #mmerge-radio-from-to { + display: inline-block; + vertical-align: middle; + margin-right: 2px; + + .rtl & { + margin-right: 0; + margin-left: 2px; + } + } + + #mmerge-field-from, #mmerge-field-to { + display: inline-block; + vertical-align: middle; + } + + .text-to-label { + width: 30px; + text-align: right; + vertical-align: middle; + margin-right: 2px; + + .rtl & { + text-align: left; + margin-right: 0; + margin-left: 2px; + } + } + + .portal-button { + text-align: right; + + .rtl & { + text-align: left; + } + } + } } .ie { @@ -94,13 +480,14 @@ right: 14px; width: 8px; height: 8px; - border: solid 1px @icon-normal-pressed-ie; - border: solid 1px @icon-normal-pressed; + border: solid 1px @icon-normal-ie; + border: solid 1px @icon-normal; opacity: 0.6; border-bottom: none; border-right: none; background-image: none; transform: rotate(-135deg); + filter: none; &.nomargin { margin: 2px; diff --git a/apps/documenteditor/main/resources/less/statusbar.less b/apps/documenteditor/main/resources/less/statusbar.less index 08ee47e55..e9f168a4f 100644 --- a/apps/documenteditor/main/resources/less/statusbar.less +++ b/apps/documenteditor/main/resources/less/statusbar.less @@ -6,6 +6,22 @@ position: relative; } + #label-pages { + margin-left: 40px; + .rtl & { + margin-left: 0; + margin-right: 40px; + } + } + + #btn-zoom-up { + margin-right: 40px; + .rtl & { + margin-right: 0; + margin-left: 40px; + } + } + #label-pages, #label-zoom { cursor: pointer; } @@ -26,12 +42,12 @@ text-align: center; } - #btn-zoom-topage { - margin-right: 8px; - } - - #btn-zoom-towidth { + #btn-zoom-topage, #btn-zoom-towidth { margin-right: 8px; + .rtl & { + margin-right: 0; + margin-left: 8px; + } } .status-group { @@ -66,7 +82,8 @@ } } - #btn-cnt-lang { + #btn-cnt-lang, + #slot-status-btn-info { button { font-weight: 700; } @@ -80,6 +97,11 @@ min-width: 80px; margin-left: -4px; + .rtl & { + margin-left: 0; + margin-right: -4px; + } + li { text-align: center; @@ -96,6 +118,9 @@ li { text-align: left; + .rtl & { + text-align: right; + } } } @@ -105,9 +130,21 @@ margin-bottom: 2px; min-width: 130px; + .rtl & { + margin-left: 0; + margin-right: 40px; + } + > label { display: inline-block; margin-right: 10px; + float:left; + line-height:22px; + .rtl & { + margin-right: 0; + margin-left: 10px; + float: right; + } } > input[type=text] { @@ -124,6 +161,12 @@ width: 285px; .font-size-medium(); + .rtl & { + padding: 14px 14px 14px 0; + margin-left: 0; + margin-right: 137px; + } + > label { white-space: normal; } @@ -144,6 +187,11 @@ margin-right: 15px; overflow: hidden; + .rtl & { + margin-right: 0; + margin-left: 15px; + } + &.offline, &.viewmode { display: none; } @@ -166,6 +214,10 @@ white-space: nowrap; text-overflow: ellipsis; vertical-align: middle; + .rtl & { + padding-left: 0; + padding-right: 16px; + } } } } @@ -176,5 +228,19 @@ #btn-select-tool { margin-right: 8px; + .rtl & { + margin-right: 0; + margin-left: 8px; + } + } + + .lang-menu { + li a { + padding-left: 28px !important; + .rtl & { + padding-left: 20px !important; + padding-right: 28px !important; + } + } } } diff --git a/apps/documenteditor/main/resources/less/toolbar.less b/apps/documenteditor/main/resources/less/toolbar.less index bc9c166da..538db9bb7 100644 --- a/apps/documenteditor/main/resources/less/toolbar.less +++ b/apps/documenteditor/main/resources/less/toolbar.less @@ -113,6 +113,11 @@ //max-width: 95px; overflow: hidden; text-overflow: ellipsis; + + .rtl & { + float: right; + padding: 5px 20px 5px 5px; + } } .zoom { @@ -121,6 +126,24 @@ min-width: 40px; text-align: center; } + + .next { + float: right; + margin: 2px 5px 0 0; + .rtl & { + float: left; + margin: 2px 0 0 0 !important; + } + } + + .prev { + float: right; + margin-top: 2px; + .rtl & { + float: left; + margin: 2px 0 0 5px; + } + } } @@ -204,4 +227,301 @@ display: none !important; } } -} \ No newline at end of file +} + +#id-toolbar-btn-markers, +#id-toolbar-btn-numbering, +#id-toolbar-btn-multilevels { + .menu-markers { + margin: 0 0 0 9px; + + .rtl & { + margin: 0 9px 0 0; + } + } + + .list-level > a { + padding-right: 20px; + + .rtl & { + padding-right: 12px; + padding-left: 20px; + } + } +} + +.list-settings { + .padding-right { + padding-right: 5px; + + .rtl & { + padding-right: 0; + padding-left: 5px; + } + } + + .padding-left { + padding-left: 5px; + + .rtl & { + padding-left: 0; + padding-right: 5px; + } + } + + .padding-right-big { + padding-right: 10px; + + .rtl & { + padding-right: 0; + padding-left: 10px; + } + } +} + +#window-page-margins { + .margins-settings { + float: left; + + .rtl & { + float: right; + } + } + + .margins-preview { + float: right; + + .rtl & { + float: left; + } + } + + .margin-left { + margin-left: 8px; + + .rtl & { + margin-left: 0; + margin-right: 8px; + } + } +} + +#window-page-size { + .padding-right { + padding-right: 10px; + + .rtl & { + padding-right: 0; + padding-left: 10px; + } + } +} + +#window-line-numbers { + .margin-right { + margin-right: 9px; + + .rtl & { + margin-right: 0; + margin-left: 9px; + } + } +} + +#window-custom-columns { + #custom-columns-spin-num, #custom-columns-spin-spacing { + float: right; + + .rtl & { + float: left; + } + } +} + +#window-note-settings { + #note-settings-combo-footnote, + #note-settings-combo-endnote { + float: right; + + .rtl & { + float: left; + } + } + + .margin-right { + margin-right: 10px; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } +} + +#window-table-contents { + .canvas-box { + float: right; + + .rtl & { + float: left; + } + } + + .margin-left { + margin-left: 10px; + + .rtl & { + margin-left: 0; + margin-right: 10px; + } + } + + .label-style { + margin-left: 23px; + + .rtl & { + margin-left: 0; + margin-right: 23px; + } + } +} + +#window-hyperlink { + #id-dlg-hyperlink-external { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + + .rtl & { + .border-radius(@border-radius-small); + border-top-left-radius: 0; + border-bottom-left-radius: 0; + + } + } + + #id-dlg-hyperlink-internal { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-width: 0; + margin-left: -1px; + + .rtl & { + border: @scaled-one-px-value solid @border-regular-control; + .border-radius(@border-radius-small); + margin-left: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-right-width: 0; + margin-right: -1px; + } + } +} + +#window-bookmarks { + .margin-right { + margin-right: 10px; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } + + #bookmarks-btn-goto { + margin-right: 5px; + + .rtl & { + margin-right: 0; + margin-left: 5px; + } + } + + #id-dlg-copy-btn { + margin-left: 5px; + + .rtl & { + margin-left: 0; + margin-right: 5px; + } + } + + #bookmarks-btn-delete { + float: right; + + .rtl & { + float: left; + } + } + + #bookmarks-radio-name { + display: inline-block; + margin-right: 10px; + vertical-align: middle; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } +} + +#window-caption { + .margin-right { + margin-right: 10px; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } +} + +#window-cross-ref { + .padding-right { + padding-right: 5px; + + .rtl & { + padding-right: 0; + padding-left: 5px; + } + } + + .padding-left { + padding-left: 5px; + + .rtl & { + padding-left: 0; + padding-right: 5px; + } + } + + #id-dlg-cross-separate { + margin-right: 10px; + + .rtl & { + margin-right: 0; + margin-left: 10px; + } + } +} + +.dropdown-menu.menu-roles, +.input-group-nr.menu-roles { + span.color { + display: inline-block; + vertical-align: text-top; + width: 12px; + height: 12px; + margin: 0 8px 0 2px; + border: @scaled-one-px-value-ie solid @border-color-shading-ie; + border: @scaled-one-px-value solid @border-color-shading; + } +} + +#id-toolbar-menu-insart { + margin-left: 5px; + .rtl & { + margin-left: 0; + margin-right: 5px; + } +} diff --git a/apps/documenteditor/mobile/locale/az.json b/apps/documenteditor/mobile/locale/az.json index 729f77c79..7e3f52253 100644 --- a/apps/documenteditor/mobile/locale/az.json +++ b/apps/documenteditor/mobile/locale/az.json @@ -561,7 +561,9 @@ "warnNoLicense": "Siz 1% redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnNoLicenseUsers": "1% redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün 1% satış komandası ilə əlaqə saxlayın.", "warnProcessRightsChange": "Bu faylı redaktə etmək icazəniz yoxdur.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textNoTextFound": "Text not found", + "textOk": "Ok", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index 5e916e711..00d654644 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -555,6 +555,8 @@ "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRemember": "Remember my choice", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 13d523cfa..ce27c4ad8 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -69,7 +69,7 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAccept": "Accepta ", + "textAccept": "Acceptar", "textAcceptAllChanges": "Accepta tots els canvis", "textAddComment": "Afegeix un comentari", "textAddReply": "Afegeix una resposta", @@ -222,6 +222,7 @@ "textAllowOverlap": "Permet que se superposin", "textAmountOfLevels": "Quantitat de nivells", "textApril": "abril", + "textArrange": "Organitza", "textAugust": "agost", "textAuto": "Automàtic", "textAutomatic": "Automàtic", @@ -375,8 +376,7 @@ "textType": "Tipus", "textWe": "dc.", "textWrap": "Ajustament", - "textWrappingStyle": "Estil d'ajustament", - "textArrange": "Arrange" + "textWrappingStyle": "Estil d'ajustament" }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", @@ -543,16 +543,18 @@ "textClose": "Tanca", "textContactUs": "Contacteu amb vendes", "textCustomLoader": "No teniu permisos per canviar el carregador. Contacteu amb el nostre departament de vendes per obtenir un pressupost.", + "textDocumentProtected": "El document està protegit. La configuració d'edició no està disponible", "textGuest": "Convidat", "textHasMacros": "El fitxer conté macros automàtiques.
Les voleu executar?", "textNo": "No", "textNoLicenseTitle": "S'ha assolit el límit de llicència", "textNoTextFound": "No s'ha trobat cap text", + "textOk": "D'acord", "textPaidFeature": "Funció de pagament", "textRemember": "Recorda la meva elecció", "textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", "textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", - "textRequestMacros": "Una macro fa una sol·licitud a l'URL. Voleu permetre la sol·licitud al %1?", + "textRequestMacros": "Una macro fa una sol·licitud a l'URL. Voleu permetre la sol·licitud a %1?", "textYes": "Sí", "titleLicenseExp": "La llicència ha caducat", "titleServerVersion": "S'ha actualitzat l'editor", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index c1adf6ad2..a66a59cea 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Došlo dosažení limitu %1 editorů v režimu spolupráce na úpravách. Ohledně podrobností se obraťte na svého správce.", "warnNoLicense": "Došlo k dosažení limitu souběžného připojení %1 editorů. Tento dokument bude otevřen pouze pro náhled. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", - "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu." + "warnProcessRightsChange": "Nemáte oprávnění pro úpravu tohoto dokumentu.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Zabezpečený soubor", diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 65c56eafe..2e7f0099a 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", - "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten." + "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Geschützte Datei", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index a2c624ade..b8d7b4f3b 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", "warnNoLicense": "Φτάσατε το όριο ταυτόχρονων συνδέσεων σε %1 συντάκτες. Το έγγραφο θα ανοίξει μόνο για ανάγνωση. Επικοινωνήστε με την ομάδα πωλήσεων %1 για τους όρους αναβάθμισης.", "warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για συντάκτες %1.
Επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου." + "warnProcessRightsChange": "Δεν έχετε δικαίωμα επεξεργασίας αυτού του αρχείου.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Προστατευμένο Αρχείο", diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 256d9cef3..9891e1247 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -123,7 +123,7 @@ "textMultiple": "multiple", "textNoBreakBefore": "No page break before", "textNoChanges": "There are no changes.", - "textNoComments": "This document doesn't contain comments", + "textNoComments": "No Comments", "textNoContextual": "Add interval between paragraphs of the same style", "textNoKeepLines": "Don't keep lines together", "textNoKeepNext": "Don't keep with next", @@ -543,11 +543,13 @@ "textClose": "Close", "textContactUs": "Contact sales", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", "textNoTextFound": "Text not found", + "textOk": "Ok", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index 9d6e4ca32..f2130fcd8 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con su administrador para saber más.", "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", - "warnProcessRightsChange": "No tiene permiso para editar este archivo." + "warnProcessRightsChange": "No tiene permiso para editar este archivo.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Archivo protegido", diff --git a/apps/documenteditor/mobile/locale/eu.json b/apps/documenteditor/mobile/locale/eu.json index 5341e891a..5569b5f7c 100644 --- a/apps/documenteditor/mobile/locale/eu.json +++ b/apps/documenteditor/mobile/locale/eu.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan zure administratzailearekin informazio gehiagorako.", "warnNoLicense": "Aldibereko %1 editoreren konexio-mugara iritsi zara. Dokumentu hau ikusteko bakarrik irekiko da. Jarri harremanetan %1 salmenta taldearekin eguneraketa pertsonalaren baldintzak jakiteko.", "warnNoLicenseUsers": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan %1 salmenta taldearekin mailaz igotzeko baldintzak ezagutzeko.", - "warnProcessRightsChange": "Ez duzu fitxategi hau editatzeko baimenik." + "warnProcessRightsChange": "Ez duzu fitxategi hau editatzeko baimenik.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Babestutako fitxategia", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index 7eff0555f..2b1e9e84a 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -222,6 +222,7 @@ "textAllowOverlap": "Autoriser le chevauchement", "textAmountOfLevels": "Nombre de niveaux", "textApril": "avril", + "textArrange": "Organiser", "textAugust": "août", "textAuto": "Auto", "textAutomatic": "Automatique", @@ -375,8 +376,7 @@ "textType": "Type", "textWe": "mer.", "textWrap": "Renvoi à la ligne", - "textWrappingStyle": "Style d'habillage", - "textArrange": "Arrange" + "textWrappingStyle": "Style d'habillage" }, "Error": { "convertationTimeoutText": "Délai de conversion expiré.", @@ -543,11 +543,13 @@ "textClose": "Fermer", "textContactUs": "Contacter l'équipe de ventes", "textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.", + "textDocumentProtected": "Le document est protégé. Les paramètres d'édition ne sont pas disponibles", "textGuest": "Invité", "textHasMacros": "Le fichier contient des macros automatiques.
Voulez-vous exécuter les macros?", "textNo": "Non", "textNoLicenseTitle": "La limite de la licence est atteinte", "textNoTextFound": "Texte non trouvé", + "textOk": "Ok", "textPaidFeature": "Fonction payante", "textRemember": "Se souvenir de mon choix", "textReplaceSkipped": "Le remplacement a été effectué. {0} occurrences ont été sautées.", diff --git a/apps/documenteditor/mobile/locale/gl.json b/apps/documenteditor/mobile/locale/gl.json index b18ea256b..4eb41822f 100644 --- a/apps/documenteditor/mobile/locale/gl.json +++ b/apps/documenteditor/mobile/locale/gl.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Alcanzou o límite de usuarios para os editores de %1. Por favor, contacte co se uadministrador para recibir máis información.", "warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase para as úa visualización. Póñase en contacto co equipo de vendas de %1 para coñecer as condicións de actualización persoal.", "warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", - "warnProcessRightsChange": "Non ten permiso para editar este ficheiro." + "warnProcessRightsChange": "Non ten permiso para editar este ficheiro.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Ficheiro protexido", diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index d17de7da3..97726b213 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználó számának korlátját. További információért forduljon rendszergazdájához.", "warnNoLicense": "Ön elérte az egyidejű kapcsolódás határát a %1 szerkesztőhöz. Ez a dokumentum csak megtekintésre lesz megnyitva. Lépjen kapcsolatba a(z) %1 értékesítési csapattal a perszonális frissítés feltételéhez.", "warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "warnProcessRightsChange": "Nincs jogosultsága a fájl szerkesztéséhez." + "warnProcessRightsChange": "Nincs jogosultsága a fájl szerkesztéséhez.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Védett fájl", diff --git a/apps/documenteditor/mobile/locale/hy.json b/apps/documenteditor/mobile/locale/hy.json index 0d84a0520..62dcd428a 100644 --- a/apps/documenteditor/mobile/locale/hy.json +++ b/apps/documenteditor/mobile/locale/hy.json @@ -222,6 +222,7 @@ "textAllowOverlap": "Թույլ տալ վերածածկում", "textAmountOfLevels": "Մակարդակների չափը", "textApril": "Ապրիլ", + "textArrange": "Դասավորել", "textAugust": "Օգոստոս", "textAuto": "Ինքնաշխատ", "textAutomatic": "Ինքնաշխատ", @@ -375,8 +376,7 @@ "textType": "Տեսակ", "textWe": "Չրք", "textWrap": "Ծալում", - "textWrappingStyle": "Ծալման ոճ", - "textArrange": "Arrange" + "textWrappingStyle": "Ծալման ոճ" }, "Error": { "convertationTimeoutText": "Փոխարկման սպասման ժամանակը սպառվել է։", @@ -543,11 +543,13 @@ "textClose": "Փակել", "textContactUs": "Կապ վաճառքի բաժնի հետ", "textCustomLoader": "Ներեցեք, Դուք իրավունք չունեք փոխել բեռնիչը:Մեջբերում ստանալու համար դիմեք մեր վաճառքի բաժին:", + "textDocumentProtected": "Փաստաթուղթը պաշտպանված է: Խմբագրման կարգավորումները հասանելի չեն", "textGuest": "Հյուր", "textHasMacros": "Ֆայլում կան ինքնաշխատ մակրոներ։
Գործարկե՞լ դրանք։", "textNo": "Ոչ", "textNoLicenseTitle": "Լիցենզիայի սահմանաչափը հասել է", "textNoTextFound": "Տեքստը չի գտնվել", + "textOk": "Լավ", "textPaidFeature": "Վճարովի գործառույթ", "textRemember": "Հիշել իմ ընտրությունը", "textReplaceSkipped": "Փոխարինումը կատարված է։{0} դեպք բաց է թողնվել:", diff --git a/apps/documenteditor/mobile/locale/id.json b/apps/documenteditor/mobile/locale/id.json index 94299fbbc..b4062b6ad 100644 --- a/apps/documenteditor/mobile/locale/id.json +++ b/apps/documenteditor/mobile/locale/id.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Anda sudah mencapai batas user untuk %1 editor. Hubungi admin Anda untuk mempelajari lebih lanjut.", "warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja. Hubungi %1 tim sales untuk syarat personal upgrade.", "warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", - "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini." + "warnProcessRightsChange": "Anda tidak memiliki izin edit file ini.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "File yang Diproteksi", diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 53bf12e8f..4c7a3d004 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il tuo amministratore per maggior informazioni.", "warnNoLicense": "Hai raggiunto il limite delle connessioni simultanee agli editor %1. Questo documento sarà aperto solo in modalità di visualizzazione. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", "warnNoLicenseUsers": "Hai raggiunto il limite degli utenti per gli editor %1. Ti preghiamo di contattare il team di vendite di %1 per i termini di aggiornamento personali.", - "warnProcessRightsChange": "Non hai il permesso di modificare questo file." + "warnProcessRightsChange": "Non hai il permesso di modificare questo file.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "File protetto", diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index b136d45ac..578cc1d64 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細についてはアドミニストレータを連絡してください。", "warnNoLicense": "%1エディター 時接続数の制限に達しました。この文書が見るだけのために開かれる。個人的なアップグレード条件については、%1営業チームを連絡してください。", "warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームを連絡してください。", - "warnProcessRightsChange": "ファイルを編集する権限がありません!" + "warnProcessRightsChange": "ファイルを編集する権限がありません!", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "保護されたファイル", diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index 79c2247ae..4640910a4 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -564,6 +564,8 @@ "warnNoLicense": "% 1 편집 연결 수 제한에 도달했습니다. 이 문서는 보기 모드로 열립니다. 개인적인 업그레이드 사항은 % 1 영업팀에 연락하십시오.", "warnNoLicenseUsers": "ONLYOFFICE 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", "warnProcessRightsChange": "파일을 편집 할 권한이 없습니다.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index 29fe14dcc..411019b6a 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -564,6 +564,8 @@ "warnNoLicense": "ທ່ານໄດ້ຖືກຈຳກັດສິດພຽງເທົ່ານີ້ສຳຫລັບການເຊື່່ອມພ້ອມກັນກັບເຄື່ອງມືແກ້ໄຂ %1 ແລ້ວເອກະສານນີ້ຈະເປີດໃຫ້ເບີ່ງເທົ່ານັ້ນ ຕິດຕໍ່ທີມຂາຍ %1 ສຳຫລັບເງື່ອນໄຂການອັບເກດສ່ວນບຸກຄົນ", "warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", "warnProcessRightsChange": "ທ່ານບໍ່ມີສິດໃນການແກ້ໄຂໄຟລ໌ນີ້.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index e523da3ae..b3d389574 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.", "warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", "warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", - "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini." + "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Fail Dilindungi", diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 5b7078f60..5b0113ef0 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -561,7 +561,9 @@ "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", "warnProcessRightsChange": "Je hebt geen toestemming om dit bestand te bewerken.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textNoTextFound": "Text not found", + "textOk": "Ok", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/pt-pt.json b/apps/documenteditor/mobile/locale/pt-pt.json index 7a99cdfa2..238d5a539 100644 --- a/apps/documenteditor/mobile/locale/pt-pt.json +++ b/apps/documenteditor/mobile/locale/pt-pt.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "Atingiu o limite de %1 editores. Contacte o seu administrador para obter detalhes.", "warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto apenas para visualização. Contacte a %1 equipa de vendas para consultar os termos de atualização para si.", "warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", - "warnProcessRightsChange": "Não tem autorização para editar este ficheiro." + "warnProcessRightsChange": "Não tem autorização para editar este ficheiro.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Ficheiro protegido", diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 47c113253..9f4ad09a2 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -543,11 +543,13 @@ "textClose": "Fechar", "textContactUs": "Contate as vendas", "textCustomLoader": "Desculpe, você não tem o direito de trocar o carregador. Entre em contato com nosso departamento de vendas para obter uma cotação.", + "textDocumentProtected": "O documento está protegido. As configurações de edição não estão disponíveis", "textGuest": "Convidado(a)", "textHasMacros": "O arquivo contém macros automáticas.
Você quer executar macros?", "textNo": "Não", "textNoLicenseTitle": "Limite de licença atingido", "textNoTextFound": "Texto não encontrado", + "textOk": "OK", "textPaidFeature": "Recurso pago", "textRemember": "Lembrar minha escolha", "textReplaceSkipped": "A substituição foi realizada. {0} ocorrências foram ignoradas.", diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index 850488bce..2e7fe629d 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -543,11 +543,13 @@ "textClose": "Închide", "textContactUs": "Contactați Departamentul de Vânzări", "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textDocumentProtected": "Documentul este protejat. Setările de editare nu sunt disponibile.", "textGuest": "Invitat", "textHasMacros": "Fișierul conține macrocomenzi.
Doriți să le rulați?", "textNo": "Nu", "textNoLicenseTitle": "Ați atins limita stabilită de licență", "textNoTextFound": "Textul nu a fost găsit", + "textOk": "OK", "textPaidFeature": "Funcția contra plată", "textRemember": "Reține opțiunea mea", "textReplaceSkipped": "A avut loc o înlocuire. {0} apariții ignorate.", diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index d2a328f30..367cb8bdc 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -543,11 +543,13 @@ "textClose": "Закрыть", "textContactUs": "Отдел продаж", "textCustomLoader": "К сожалению, у вас нет прав изменять экран, отображаемый при загрузке. Обратитесь в наш отдел продаж, чтобы сделать запрос.", + "textDocumentProtected": "Документ защищен. Настройки редактирования недоступны", "textGuest": "Гость", "textHasMacros": "Файл содержит автозапускаемые макросы.
Хотите запустить макросы?", "textNo": "Нет", "textNoLicenseTitle": "Лицензионное ограничение", "textNoTextFound": "Текст не найден", + "textOk": "Ok", "textPaidFeature": "Платная функция", "textRemember": "Запомнить мой выбор", "textReplaceSkipped": "Замена выполнена. Пропущено вхождений - {0}.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index d90ae9b88..9084b77ed 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -564,6 +564,8 @@ "warnNoLicense": "Dosiahli ste limit pre simultánne pripojenia k %1 editorom. Tento dokument sa otvorí iba na prezeranie. Kontaktujte predajný tím %1 pre osobné podmienky inovácie.", "warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "warnProcessRightsChange": "Nemáte povolenie na úpravu tohto súboru.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index a94973c92..c7e9779ad 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -454,11 +454,13 @@ "textClose": "Close", "textContactUs": "Contact sales", "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textDocumentProtected": "The document is protected. Edit settings are not available", "textGuest": "Guest", "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", "textNo": "No", "textNoLicenseTitle": "License limit reached", "textNoTextFound": "Text not found", + "textOk": "Ok", "textPaidFeature": "Paid feature", "textRemember": "Remember my choice", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index c8e6df9b4..370880002 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Daha fazla bilgi edinmek için yöneticinizle iletişime geçin.", "warnNoLicense": "%1 düzenleyiciye eşzamanlı bağlantı sınırına ulaştınız. Bu belge yalnızca görüntüleme için açılacaktır. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", - "warnProcessRightsChange": "Bu dosyayı düzenleme izniniz yok." + "warnProcessRightsChange": "Bu dosyayı düzenleme izniniz yok.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Korumalı dosya", diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 3b07ef0e2..5f3e2d972 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -564,6 +564,8 @@ "warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду. Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови оновлення.", "warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "warnProcessRightsChange": "У вас немає прав на редагування цього файлу.", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok", "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" }, "Settings": { diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index c8d85260c..152bced17 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -568,7 +568,9 @@ "textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", "textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", "textNoTextFound": "Text not found", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "Protected File", diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json index 27c812475..382bbba43 100644 --- a/apps/documenteditor/mobile/locale/zh-tw.json +++ b/apps/documenteditor/mobile/locale/zh-tw.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "您已達到%1個編輯器的用戶限制。請與您的管理員聯繫以了解更多信息。", "warnNoLicense": "您已達到同時連接到 %1 編輯器的限制。此文件將只提供檢視。有關個人升級條款,請聯繫 %1 業務團隊。", "warnNoLicenseUsers": "您已達到%1個編輯器的用戶限制。與%1銷售團隊聯繫以了解個人升級條款。", - "warnProcessRightsChange": "您沒有編輯這個文件的權限。" + "warnProcessRightsChange": "您沒有編輯這個文件的權限。", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "受保護的檔案", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index a932c5fc5..3dfb07685 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -564,7 +564,9 @@ "warnLicenseUsersExceeded": "你触发了 %1 编辑器的同时在线数限制。可联系管理员来了解更多信息。", "warnNoLicense": "你已经触发了 %1 编辑器的同时在线数限制. 该文档打开后,你将只能查看。请联系 %1 的销售团队,获取个人升级条款。", "warnNoLicenseUsers": "你触发了 %1 编辑器的同时在线数限制。请与 %1 的销售团队联系,以获取个人升级条款。", - "warnProcessRightsChange": "你没有编辑这个文件的权限。" + "warnProcessRightsChange": "你没有编辑这个文件的权限。", + "textDocumentProtected": "The document is protected. Edit settings are not available", + "textOk": "Ok" }, "Settings": { "advDRMOptions": "受保护的文件", diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 984c289ed..6deb76d39 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -19,6 +19,7 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. import EncodingController from "./Encoding"; import DropdownListController from "./DropdownList"; import { Device } from '../../../../common/mobile/utils/device'; + @inject( "users", "storeAppOptions", @@ -46,7 +47,8 @@ class MainController extends Component { this._state = { licenseType: false, isFromGatewayDownloadAs: false, - isDocModified: false + isDocModified: false, + docProtection: false }; this.defaultTitleText = __APP_TITLE_TEXT__; @@ -762,6 +764,10 @@ class MainController extends Component { } }); + // Protection document + this.api.asc_registerCallback('asc_onChangeDocumentProtection', this.onChangeProtectDocument.bind(this)); + // this.api.asc_registerCallback('asc_onLockDocumentProtection', this.onLockDocumentProtection.bind(this)); + // Toolbar settings const storeToolbarSettings = this.props.storeToolbarSettings; @@ -783,6 +789,69 @@ class MainController extends Component { }); } + onChangeProtectDocument() { + const { t } = this.props; + const storeAppOptions = this.props.storeAppOptions; + const props = this.getDocProps(true); + const isProtected = props && (props.isReadOnly || props.isCommentsOnly || props.isFormsOnly || props.isReviewOnly); + + storeAppOptions.setProtection(isProtected); + props && this.applyRestrictions(props.type); + Common.Notifications.trigger('protect:doclock', props); + + if(isProtected) { + f7.dialog.create({ + title: t('Main.notcriticalErrorTitle'), + text: t('Main.textDocumentProtected'), + buttons: [ + { + text: t('Main.textOk') + } + ] + }).open(); + } + } + + applyRestrictions(type) { + const storeAppOptions = this.props.storeAppOptions; + + if (type === Asc.c_oAscEDocProtect.ReadOnly) { + this.api.asc_setRestriction(Asc.c_oAscRestrictionType.View); + } else if (type === Asc.c_oAscEDocProtect.Comments) { + this.api.asc_setRestriction(storeAppOptions.canComments ? Asc.c_oAscRestrictionType.OnlyComments : Asc.c_oAscRestrictionType.View); + } else if (type === Asc.c_oAscEDocProtect.Forms) { + this.api.asc_setRestriction(storeAppOptions.canFillForms ? Asc.c_oAscRestrictionType.OnlyForms : Asc.c_oAscRestrictionType.View); + } else { + if (storeAppOptions?.isRestrictedEdit) { + storeAppOptions.canComments && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyComments); + storeAppOptions.canFillForms && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyForms); + } else { + this.api.asc_setRestriction(Asc.c_oAscRestrictionType.None); + } + } + }; + + getDocProps(isUpdate) { + const storeAppOptions = this.props.storeAppOptions; + + if (!storeAppOptions || !storeAppOptions.isEdit && !storeAppOptions.isRestrictedEdit) return; + + if (isUpdate || !this.state.docProtection) { + const props = this.api.asc_getDocumentProtection(); + const type = props ? props.asc_getEditType() : Asc.c_oAscEDocProtect.None; + + this._state.docProtection = { + type: type, + isReadOnly: type === Asc.c_oAscEDocProtect.ReadOnly, + isCommentsOnly: type === Asc.c_oAscEDocProtect.Comments, + isReviewOnly: type === Asc.c_oAscEDocProtect.TrackedChanges, + isFormsOnly: type === Asc.c_oAscEDocProtect.Forms + }; + } + + return this._state.docProtection; + } + onApiTextReplaced(found, replaced) { const { t } = this.props; diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index e896757d8..534d362f8 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -16,39 +16,24 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto const stateDisplayMode = displayMode == "final" || displayMode == "original" ? true : false; const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments || appOptions.canReview || appOptions.canViewReview; const readerMode = appOptions.readerMode; - const objectLocked = props.storeFocusObjects.objectLocked; - const storeToolbarSettings = props.storeToolbarSettings; const isCanUndo = storeToolbarSettings.isCanUndo; const isCanRedo = storeToolbarSettings.isCanRedo; const disabledControls = storeToolbarSettings.disabledControls; const disabledEditControls = storeToolbarSettings.disabledEditControls; const disabledSettings = storeToolbarSettings.disabledSettings; - const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; - const docInfo = props.storeDocumentInfo; const docExt = docInfo.dataDoc ? docInfo.dataDoc.fileType : ''; const docTitle = docInfo.dataDoc ? docInfo.dataDoc.title : ''; - const sensitivity = 20; - let touchStartY = 0; - let touchEndY = 0; - useEffect(() => { - const sdk = document.querySelector('#editor_sdk'); - Common.Gateway.on('init', loadConfig); Common.Notifications.on('toolbar:activatecontrols', activateControls); Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.on('goback', goBack); - if(isViewer) { - sdk.addEventListener('touchstart', handleTouchStart); - sdk.addEventListener('touchend', handleTouchEnd); - } - if (isDisconnected) { f7.popover.close(); f7.sheet.close(); @@ -59,36 +44,58 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); + } + }, []); + useEffect(() => { + const api = Common.EditorApi.get(); + const navbarBgHeight = document.querySelector('.navbar-bg').clientHeight; + const subnavbarHeight = document.querySelector('.subnavbar').clientHeight; + const navbarHeight = navbarBgHeight + subnavbarHeight; + + const onEngineCreated = api => { if(isViewer) { - sdk.removeEventListener('touchstart', handleTouchStart); - sdk.removeEventListener('touchend', handleTouchEnd); + api.SetMobileTopOffset(navbarHeight, navbarHeight); + api.asc_registerCallback('onMobileScrollDelta', scrollHandler); } + }; + + if (!api) { + Common.Notifications.on('engineCreated', onEngineCreated); + } else { + onEngineCreated(api); } - }); - // Touch handlers + return () => { + const api = Common.EditorApi.get(); - const checkDirection = () => { - const diff = touchStartY - touchEndY; - - if(Math.abs(diff) > sensitivity) { - if(diff > 0) { - // f7.navbar.show('.main-navbar'); - } else { - // f7.navbar.hide('.main-navbar'); + if (api) { + api.SetMobileTopOffset(navbarHeight, navbarHeight); + api.asc_unregisterCallback('onMobileScrollDelta', scrollHandler); } + + Common.Notifications.off('engineCreated', onEngineCreated); } - }; + }, [isViewer]); - const handleTouchStart = e => { - touchStartY = e.changedTouches[0].screenY; - }; + // Scroll handler - const handleTouchEnd = e => { - touchEndY = e.changedTouches[0].screenY; - checkDirection(); - }; + const scrollHandler = offset => { + const api = Common.EditorApi.get(); + const navbarBgHeight = document.querySelector('.navbar-bg').clientHeight; + const subnavbarHeight = document.querySelector('.subnavbar').clientHeight; + const navbarHeight = navbarBgHeight + subnavbarHeight; + + if(offset > navbarHeight) { + f7.navbar.hide('.main-navbar'); + props.closeOptions('fab'); + api.SetMobileTopOffset(undefined, 0); + } else if(offset < -navbarHeight) { + f7.navbar.show('.main-navbar'); + props.openOptions('fab'); + api.SetMobileTopOffset(undefined, navbarHeight); + } + } // Back button const [isShowBack, setShowBack] = useState(appOptions.canBackToFolder); diff --git a/apps/documenteditor/mobile/src/controller/add/AddLink.jsx b/apps/documenteditor/mobile/src/controller/add/AddLink.jsx index 3c337e851..7258ecf3f 100644 --- a/apps/documenteditor/mobile/src/controller/add/AddLink.jsx +++ b/apps/documenteditor/mobile/src/controller/add/AddLink.jsx @@ -14,8 +14,8 @@ class AddLinkController extends Component { } closeModal () { - if ( Device.phone ) { - f7.popup.close('.add-popup'); + if (Device.phone) { + f7.popup.close('#add-link-popup'); } else { f7.popover.close('#add-link-popover'); } diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 7487acd10..b5f1bc2ff 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -69,6 +69,17 @@ } } +.page.page-with-subnavbar { + .page-content, &.page-with-logo .page-content { + --f7-page-subnavbar-offset: 0; + padding-top: 0; + } +} + +.page.editor > .page-content { + --f7-page-navbar-offset: 0; +} + // Review .page-review { --f7-toolbar-link-color: @brandColor; @@ -338,28 +349,32 @@ } } -// Snackbar animation -.snackbar-enter { - opacity: 0; -} -.snackbar-enter-active { - opacity: 1; - transition: opacity 300ms; -} -.snackbar-exit { - opacity: 1; -} -.snackbar-exit-active { - opacity: 0; - transition: opacity 300ms; -} - // FAB -.fab a { - background-color: @background-primary; - &:focus, &:focus-within, &:active, &.active-state { +.fab { + z-index: 10000; + a { background-color: @background-primary; + + &:focus, &:focus-within, &:active, &.active-state { + background-color: @background-primary; + } } } +// Snackbar and FAB animation +.snackbar-enter, .fab-enter { + opacity: 0; +} +.snackbar-enter-active, .fab-enter-active { + opacity: 1; + transition: opacity 300ms; +} +.snackbar-exit, .fab-exit { + opacity: 1; +} +.snackbar-exit-active, .fab-exit-active { + opacity: 0; + transition: opacity 300ms; +} + diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index 0930ea82d..e88becd0e 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -7,7 +7,7 @@ import { withTranslation } from 'react-i18next'; import EditOptions from '../view/edit/Edit'; import AddOptions from '../view/add/Add'; import Settings from '../controller/settings/Settings'; -import Collaboration from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' +import { CollaborationDocument } from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' import { Device } from '../../../../common/mobile/utils/device' import { Search, SearchSettings } from '../controller/Search'; import ContextMenu from '../controller/ContextMenu'; @@ -29,7 +29,8 @@ class MainPage extends Component { navigationVisible: false, addLinkSettingsVisible: false, editLinkSettingsVisible: false, - snackbarVisible: false + snackbarVisible: false, + fabVisible: true }; } @@ -41,86 +42,80 @@ class MainPage extends Component { handleClickToOpenOptions = (opts, showOpts) => { f7.popover.close('.document-menu.modal-in', false); + + let opened = false; + const newState = {}; - setTimeout(() => { - let opened = false; - const newState = {}; - if ( opts === 'edit' ) { - this.state.editOptionsVisible && (opened = true); - newState.editOptionsVisible = true; - } else if ( opts === 'add' ) { - this.state.addOptionsVisible && (opened = true); - newState.addOptionsVisible = true; - newState.addShowOptions = showOpts; - } else if ( opts === 'settings' ) { - this.state.settingsVisible && (opened = true); - newState.settingsVisible = true; - } else if ( opts === 'coauth' ) { - this.state.collaborationVisible && (opened = true); - newState.collaborationVisible = true; - } else if( opts === 'navigation') { - this.state.navigationVisible && (opened = true); - newState.navigationVisible = true; - } else if ( opts === 'add-link') { - this.state.addLinkSettingsVisible && (opened = true); - newState.addLinkSettingsVisible = true; - } else if( opts === 'edit-link') { - this.state.editLinkSettingsVisible && (opened = true); - newState.editLinkSettingsVisible = true; - } else if( opts === 'snackbar') { - this.state.snackbarVisible && (opened = true); - newState.snackbarVisible = true; - } + if (opts === 'edit') { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if (opts === 'add') { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if (opts === 'settings') { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if (opts === 'coauth') { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } else if (opts === 'navigation') { + this.state.navigationVisible && (opened = true); + newState.navigationVisible = true; + } else if (opts === 'add-link') { + this.state.addLinkSettingsVisible && (opened = true); + newState.addLinkSettingsVisible = true; + } else if (opts === 'edit-link') { + this.state.editLinkSettingsVisible && (opened = true); + newState.editLinkSettingsVisible = true; + } else if (opts === 'snackbar') { + newState.snackbarVisible = true; + } else if (opts === 'fab') { + newState.fabVisible = true; + } - for (let key in this.state) { - if (this.state[key] && !opened) { - setTimeout(() => { - this.handleClickToOpenOptions(opts, showOpts); - }, 10); - return; - } + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); } - - if (!opened) { - this.setState(newState); - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } - } - }, 10); + } }; handleOptionsViewClosed = opts => { - setTimeout(() => { - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: false}; - else if ( opts == 'add' ) - return {addOptionsVisible: false, addShowOptions: null}; - else if ( opts == 'settings' ) - return {settingsVisible: false}; - else if ( opts == 'coauth' ) - return {collaborationVisible: false}; - else if( opts == 'navigation') - return {navigationVisible: false}; - else if ( opts === 'add-link') - return {addLinkSettingsVisible: false}; - else if( opts === 'edit-link') - return {editLinkSettingsVisible: false}; - else if( opts == 'snackbar') - return {snackbarVisible: false} - }); - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.show('.main-navbar'); - } - }, 1); + this.setState(state => { + if (opts == 'edit') + return {editOptionsVisible: false}; + else if (opts == 'add') + return {addOptionsVisible: false, addShowOptions: null}; + else if (opts == 'settings') + return {settingsVisible: false}; + else if (opts == 'coauth') + return {collaborationVisible: false}; + else if (opts == 'navigation') + return {navigationVisible: false}; + else if (opts === 'add-link') + return {addLinkSettingsVisible: false}; + else if (opts === 'edit-link') + return {editLinkSettingsVisible: false}; + else if (opts == 'snackbar') + return {snackbarVisible: false} + else if (opts == 'fab') + return {fabVisible: false} + }); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.show('.main-navbar'); + } }; turnOffViewerMode() { const api = Common.EditorApi.get(); const appOptions = this.props.storeAppOptions; + f7.popover.close('.document-menu.modal-in', false); + f7.navbar.show('.main-navbar', false); + appOptions.changeViewerMode(); api.asc_removeRestriction(Asc.c_oAscRestrictionType.View) api.asc_addRestriction(Asc.c_oAscRestrictionType.None); @@ -139,6 +134,8 @@ class MainPage extends Component { const isMobileView = appOptions.isMobileView; const disabledControls = storeToolbarSettings.disabledControls; const disabledSettings = storeToolbarSettings.disabledSettings; + const isProtected = appOptions.isProtected; + const isFabShow = isViewer && !disabledSettings && !disabledControls && !isDisconnected && isAvailableExt && isEdit && !isProtected; const config = appOptions.config; let showLogo = !(config.customization && (config.customization.loaderName || config.customization.loaderLogo)); @@ -149,28 +146,22 @@ class MainPage extends Component { const showPlaceholder = !appOptions.isDocReady && (!config.customization || !(config.customization.loaderName || config.customization.loaderLogo)); const isBranding = appOptions.canBranding || appOptions.canBrandingExt; - if ($$('.skl-container').length) { - $$('.skl-container').remove(); - } return ( {/* Top Navbar */} - {config?.customization && - - {(!isBranding && showLogo) && -
{ - window.open(`${__PUBLISHER_URL__}`, "_blank"); - }}>
} - - - - -
- } - + + {(!isBranding && showLogo) && +
{ + window.open(`${__PUBLISHER_URL__}`, "_blank"); + }}>
} + + + + +
{/* Page content */} @@ -205,8 +196,25 @@ class MainPage extends Component { } {/* { - Device.phone ? null : - } */} + Device.phone ? null : + } */} + { + if(!isAppearing) { + this.setState({ + snackbarVisible: false + }); + } + }} + > + + { !this.state.editOptionsVisible ? null : @@ -231,31 +239,25 @@ class MainPage extends Component { } { !this.state.collaborationVisible ? null : - + } { !this.state.navigationVisible ? null : } - { + {isFabShow && - + this.turnOffViewerMode()}> + + } - {isViewer && !disabledSettings && !disabledControls && !isDisconnected && isAvailableExt && isEdit && - this.turnOffViewerMode()}> - - - - } {appOptions.isDocReady && }
) diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index 307a41afd..8d4fae065 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -29,12 +29,20 @@ export class storeAppOptions { changeViewerMode: action, isMobileView: observable, - changeMobileView: action + changeMobileView: action, + + isProtected: observable, + setProtection: action }); } isEdit = false; + isProtected = false; + setProtection(value) { + this.isProtected = value; + } + isMobileView = true; changeMobileView() { this.isMobileView = !this.isMobileView; diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx index 4f6978bd6..619ee7f69 100644 --- a/apps/documenteditor/mobile/src/view/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx @@ -62,12 +62,9 @@ const ToolbarView = props => { onRedoClick: props.onRedo })} {/*isAvailableExt && !props.disabledControls &&*/} - {(isViewer || !Device.phone) && { - await props.changeMobileView(); - await props.openOptions('snackbar'); - setTimeout(() => { - props.closeOptions('snackbar'); - }, 1500); + {(isViewer || !Device.phone) && { + props.changeMobileView(); + props.openOptions('snackbar'); }}>} {(props.showEditDocument && !isViewer) && @@ -79,8 +76,8 @@ const ToolbarView = props => { })} {/*props.displayCollaboration &&*/} {Device.phone ? null : } - {window.matchMedia("(min-width: 360px)").matches ? props.openOptions('coauth')}> : null} - props.openOptions('settings')}> + {window.matchMedia("(min-width: 360px)").matches ? props.openOptions('coauth')}> : null} + props.openOptions('settings')}> ) diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 2533eace1..9ffb8d90a 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -171,13 +171,10 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => {!isViewer && Device.phone && - { - await props.onChangeMobileView(); - await closeModal(); - await props.openOptions('snackbar'); - setTimeout(() => { - props.closeOptions('snackbar'); - }, 1500); + { + closeModal(); + props.onChangeMobileView(); + props.openOptions('snackbar'); }} /> } diff --git a/apps/presentationeditor/main/app.js b/apps/presentationeditor/main/app.js index 8cba9cd5b..b8ef1faae 100644 --- a/apps/presentationeditor/main/app.js +++ b/apps/presentationeditor/main/app.js @@ -103,7 +103,6 @@ require.config({ sdk: { deps: [ 'jquery', - 'underscore', 'allfonts', 'xregexp', 'socketio' @@ -123,14 +122,14 @@ require.config({ }); require([ + 'sdk', 'backbone', 'bootstrap', 'core', - 'sdk', 'analytics', 'gateway', 'locale' -], function (Backbone, Bootstrap, Core) { +], function (Sdk, Backbone, Bootstrap, Core) { if (Backbone.History && Backbone.History.started) return; Backbone.history.start(); diff --git a/apps/presentationeditor/main/app.reporter.js b/apps/presentationeditor/main/app.reporter.js index e06d14850..64c1edfd3 100644 --- a/apps/presentationeditor/main/app.reporter.js +++ b/apps/presentationeditor/main/app.reporter.js @@ -59,7 +59,6 @@ require.config({ sdk: { deps: [ 'jquery', - 'underscore', 'allfonts', 'xregexp', 'socketio' diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js index d53668081..05d5192e4 100644 --- a/apps/presentationeditor/main/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js @@ -130,7 +130,7 @@ define([ // Hotkeys // --------------------- var keymap = {}; - me.hkComments = 'alt+h'; + me.hkComments = Common.Utils.isMac ? 'command+alt+a' : 'alt+h'; keymap[me.hkComments] = function() { if (me.api.can_AddQuotedComment()!==false && me.documentHolder.slidesCount>0) { me.addComment(); diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index a0a351eb2..8088fc0a5 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -118,21 +118,21 @@ define([ this.leftMenu.btnThumbs.on('toggle', _.bind(this.onShowTumbnails, this)); this.leftMenu.btnSearchBar.on('toggle', _.bind(this.onMenuSearchBar, this)); - Common.util.Shortcuts.delegateShortcuts({ - shortcuts: { - 'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'), - 'command+f,ctrl+f': _.bind(this.onShortcut, this, 'search'), - 'ctrl+h': _.bind(this.onShortcut, this, 'replace'), - 'alt+f': _.bind(this.onShortcut, this, 'file'), - 'esc': _.bind(this.onShortcut, this, 'escape'), - /** coauthoring begin **/ - 'alt+q': _.bind(this.onShortcut, this, 'chat'), - 'command+shift+h,ctrl+shift+h': _.bind(this.onShortcut, this, 'comments'), - /** coauthoring end **/ - 'f1': _.bind(this.onShortcut, this, 'help') - } - }); - + var keymap = { + 'command+shift+s,ctrl+shift+s': _.bind(this.onShortcut, this, 'save'), + 'command+f,ctrl+f': _.bind(this.onShortcut, this, 'search'), + 'ctrl+h': _.bind(this.onShortcut, this, 'replace'), + 'esc': _.bind(this.onShortcut, this, 'escape'), + /** coauthoring begin **/ + 'command+shift+h,ctrl+shift+h': _.bind(this.onShortcut, this, 'comments'), + /** coauthoring end **/ + 'f1': _.bind(this.onShortcut, this, 'help') + }; + if (!Common.Utils.isMac) { + keymap['alt+f'] = _.bind(this.onShortcut, this, 'file'); + keymap['alt+q'] = _.bind(this.onShortcut, this, 'chat'); + } + Common.util.Shortcuts.delegateShortcuts({shortcuts:keymap}); Common.util.Shortcuts.suspendEvents(); }, diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 339b9692f..58abd61bc 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -182,6 +182,14 @@ define([ Common.Utils.InternalSettings.set("pe-settings-fontrender", value); this.api.SetFontRenderingMode(parseInt(value)); + if ( !Common.Utils.isIE ) { + if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_PE}}') ) { + const _url_obj = new URL('{{HELP_CENTER_WEB_PE}}'); + _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); + Common.Utils.InternalSettings.set("url-help-center", _url_obj.toString()); + } + } + this.api.asc_registerCallback('asc_onError', _.bind(this.onError, this)); this.api.asc_registerCallback('asc_onDocumentContentReady', _.bind(this.onDocumentContentReady, this)); this.api.asc_registerCallback('asc_onOpenDocumentProgress', _.bind(this.onOpenDocument, this)); @@ -386,6 +394,7 @@ define([ this.appOptions.compatibleFeatures = (typeof (this.appOptions.customization) == 'object') && !!this.appOptions.customization.compatibleFeatures; this.appOptions.canRequestSharingSettings = this.editorConfig.canRequestSharingSettings; this.appOptions.mentionShare = !((typeof (this.appOptions.customization) == 'object') && (this.appOptions.customization.mentionShare==false)); + this.appOptions.uiRtl = Common.localStorage.getBool("ui-rtl"); this.appOptions.user.guest && this.appOptions.canRenameAnonymous && Common.NotificationCenter.on('user:rename', _.bind(this.showRenameUserDialog, this)); @@ -1195,8 +1204,7 @@ define([ } this.appOptions.canPrint = (this.permissions.print !== false); this.appOptions.canPreviewPrint = this.appOptions.canPrint && !Common.Utils.isMac && this.appOptions.isDesktopApp; - this.appOptions.canQuickPrint = this.appOptions.canPrint && !Common.Utils.isMac && this.appOptions.isDesktopApp && - !(this.editorConfig.customization && this.editorConfig.customization.compactHeader); + this.appOptions.canQuickPrint = this.appOptions.canPrint && !Common.Utils.isMac && this.appOptions.isDesktopApp; this.appOptions.canRename = this.editorConfig.canRename; this.appOptions.canForcesave = this.appOptions.isEdit && !this.appOptions.isOffline && (typeof (this.editorConfig.customization) == 'object' && !!this.editorConfig.customization.forcesave); this.appOptions.forcesave = this.appOptions.canForcesave; diff --git a/apps/presentationeditor/main/app/controller/RightMenu.js b/apps/presentationeditor/main/app/controller/RightMenu.js index 4e5c5a0ba..b99aea26c 100644 --- a/apps/presentationeditor/main/app/controller/RightMenu.js +++ b/apps/presentationeditor/main/app/controller/RightMenu.js @@ -117,11 +117,11 @@ define([ this.rightmenu.fireEvent('editcomplete', this.rightmenu); }, - onFocusObject: function(SelectedObjects, forceSignature) { + onFocusObject: function(SelectedObjects, forceSignature, forceOpen) { if (!this.editMode && !forceSignature) return; - var open = this._initSettings ? !Common.localStorage.getBool("pe-hide-right-settings", this.rightmenu.defaultHideRightMenu) : false; + var open = this._initSettings ? !Common.localStorage.getBool("pe-hide-right-settings", this.rightmenu.defaultHideRightMenu) : !!forceOpen; this._initSettings = false; var needhide = true; @@ -206,13 +206,19 @@ define([ if (!this.rightmenu.minimizedMode || open) { var active; - if (priorityactive<0 && this._priorityArr.length>0) { - for (i=0; i0) { + for (i=0; i 0) - this.onFocusObject(selectedElements); + this.onFocusObject(selectedElements, false, !Common.Utils.InternalSettings.get("pe-hide-right-settings") && + !Common.Utils.InternalSettings.get("pe-hidden-rightmenu")); } } }, @@ -391,9 +398,29 @@ define([ onRightMenuHide: function (view, status) { if (this.rightmenu) { - !status && this.rightmenu.clearSelection(); - status ? this.rightmenu.show() : this.rightmenu.hide(); + if (!status) { // remember last active pane + var active = this.rightmenu.GetActivePane(), + type; + if (active) { + for (var i=0; i 0) + this.onFocusObject(selectedElements, false, !Common.Utils.InternalSettings.get("pe-hide-right-settings")); + this._lastVisibleSettings = undefined; + } Common.localStorage.setBool('pe-hidden-rightmenu', !status); + Common.Utils.InternalSettings.set("pe-hidden-rightmenu", !status); } Common.NotificationCenter.trigger('layout:changed', 'main'); diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js index bc4ca16a4..5453d5e3c 100644 --- a/apps/presentationeditor/main/app/controller/Search.js +++ b/apps/presentationeditor/main/app/controller/Search.js @@ -138,7 +138,7 @@ define([ for (var l = 0; l < text.length; l++) { var charCode = text.charCodeAt(l), char = text.charAt(l); - if (AscCommon.IsPunctuation(charCode) !== undefined || char.trim() === '') { + if (AscCommon.IsPunctuation(charCode) || char.trim() === '') { isPunctuation = true; break; } @@ -299,7 +299,7 @@ define([ onEndTextAroundSearch: function () { if (this.view) { this._state.isStartedAddingResults = false; - this.view.$resultsContainer.scroller.update({alwaysVisibleY: true}); + this.view.updateScrollers(); } }, diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index 37c7f482b..4522f0fb1 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -293,6 +293,7 @@ define([ toolbar.btnPreview.menu.on('item:click', _.bind(this.onPreviewItemClick, this)); toolbar.btnPrint.on('click', _.bind(this.onPrint, this)); toolbar.btnPrint.on('disabled', _.bind(this.onBtnChangeState, this, 'print:disabled')); + toolbar.btnPrint.menu && toolbar.btnPrint.menu.on('item:click', _.bind(this.onPrintMenu, this)); toolbar.btnSave.on('click', _.bind(this.onSave, this)); toolbar.btnUndo.on('click', _.bind(this.onUndo, this)); toolbar.btnUndo.on('disabled', _.bind(this.onBtnChangeState, this, 'undo:disabled')); @@ -745,7 +746,7 @@ define([ this.toolbar.lockToolbar(Common.enumLock.noSlides, this._state.no_slides, {array: [ this.toolbar.btnChangeSlide, this.toolbar.btnPreview, this.toolbar.btnPrint, this.toolbar.btnCopy, this.toolbar.btnCut, this.toolbar.btnSelectAll, this.toolbar.btnPaste, this.toolbar.btnCopyStyle, this.toolbar.btnInsertTable, this.toolbar.btnInsertChart, this.toolbar.btnInsertSmartArt, - this.toolbar.btnColorSchemas, this.toolbar.btnShapeAlign, + this.toolbar.btnColorSchemas, this.toolbar.btnShapeAlign, this.toolbar.cmbInsertShape, this.toolbar.btnShapeArrange, this.toolbar.btnSlideSize, this.toolbar.listTheme, this.toolbar.btnEditHeader, this.toolbar.btnInsDateTime, this.toolbar.btnInsSlideNum ]}); this.toolbar.lockToolbar(Common.enumLock.noSlides, this._state.no_slides, @@ -1083,13 +1084,33 @@ define([ }, onPrint: function(e) { - Common.NotificationCenter.trigger('file:print', this.toolbar); - Common.NotificationCenter.trigger('edit:complete', this.toolbar); + if (this.toolbar.btnPrint.options.printType == 'print') { + Common.NotificationCenter.trigger('file:print', this.toolbar); + Common.NotificationCenter.trigger('edit:complete', this.toolbar); + } else { + var _main = this.getApplication().getController('Main'); + _main.onPrintQuick(); + } Common.component.Analytics.trackEvent('Print'); Common.component.Analytics.trackEvent('ToolBar', 'Print'); }, + onPrintMenu: function (btn, e){ + var oldType = this.toolbar.btnPrint.options.printType; + var newType = e.value; + + if(newType != oldType) { + this.toolbar.btnPrint.changeIcon({ + next: e.options.iconClsForMainBtn, + curr: this.toolbar.btnPrint.menu.items.filter(function(item){return item.value == oldType;})[0].options.iconClsForMainBtn + }); + this.toolbar.btnPrint.updateHint([e.caption + e.options.platformKey]); + this.toolbar.btnPrint.options.printType = newType; + } + this.onPrint(e); + }, + onSave: function(e) { var toolbar = this.toolbar; if (this.api && this.api.asc_isDocumentCanSave) { @@ -2602,12 +2623,14 @@ define([ if (toolbar.btnsAddSlide) // toolbar buttons are rendered this.toolbar.lockToolbar(Common.enumLock.menuFileOpen, disable, {array: toolbar.btnsAddSlide.concat(toolbar.btnChangeSlide, toolbar.btnPreview)}); + + var hkComments = Common.Utils.isMac ? 'command+alt+a' : 'alt+h'; if(disable) { mask = $("
").appendTo(toolbar.$el.find('.toolbar')); - Common.util.Shortcuts.suspendEvents('command+k, ctrl+k, alt+h, command+f5, ctrl+f5'); + Common.util.Shortcuts.suspendEvents('command+k, ctrl+k, command+f5, ctrl+f5, ' + hkComments); } else { mask.remove(); - Common.util.Shortcuts.resumeEvents('command+k, ctrl+k, alt+h, command+f5, ctrl+f5'); + Common.util.Shortcuts.resumeEvents('command+k, ctrl+k, command+f5, ctrl+f5, ' + hkComments); } }, diff --git a/apps/presentationeditor/main/app/controller/Viewport.js b/apps/presentationeditor/main/app/controller/Viewport.js index 11dab34ef..38ddd1020 100644 --- a/apps/presentationeditor/main/app/controller/Viewport.js +++ b/apps/presentationeditor/main/app/controller/Viewport.js @@ -222,7 +222,7 @@ define([ this.viewport.hlayout.doLayout(); break; case 'history': - var panel = this.viewport.hlayout.items[1]; + var panel = this.viewport.hlayout.getItem('history'); if (panel.resize.el) { this.boxSdk.css('border-left', ''); panel.resize.el.show(); @@ -230,7 +230,7 @@ define([ this.viewport.hlayout.doLayout(); break; case 'leftmenu': - var panel = this.viewport.hlayout.items[0]; + var panel = this.viewport.hlayout.getItem('left'); if (panel.resize.el) { if (panel.el.width() > 40) { this.boxSdk.css('border-left', ''); diff --git a/apps/presentationeditor/main/app/template/HeaderFooterDialog.template b/apps/presentationeditor/main/app/template/HeaderFooterDialog.template index 386e70bae..0b5c3a1a1 100644 --- a/apps/presentationeditor/main/app/template/HeaderFooterDialog.template +++ b/apps/presentationeditor/main/app/template/HeaderFooterDialog.template @@ -3,18 +3,18 @@
- +
- - @@ -26,7 +26,7 @@
+
+
-
+
@@ -38,7 +38,7 @@
-
+
diff --git a/apps/presentationeditor/main/app/template/ImageSettings.template b/apps/presentationeditor/main/app/template/ImageSettings.template index 1341a2ed0..be505152e 100644 --- a/apps/presentationeditor/main/app/template/ImageSettings.template +++ b/apps/presentationeditor/main/app/template/ImageSettings.template @@ -41,15 +41,15 @@
-
-
+
+
-
-
+
+
diff --git a/apps/presentationeditor/main/app/template/ImageSettingsAdvanced.template b/apps/presentationeditor/main/app/template/ImageSettingsAdvanced.template index bd32ccc50..74c05616f 100644 --- a/apps/presentationeditor/main/app/template/ImageSettingsAdvanced.template +++ b/apps/presentationeditor/main/app/template/ImageSettingsAdvanced.template @@ -58,7 +58,7 @@
-
+
@@ -66,7 +66,7 @@ - @@ -71,7 +71,7 @@ - @@ -79,7 +79,7 @@ - @@ -105,11 +105,11 @@
-
+
-
+
@@ -120,8 +120,8 @@
- - + +
diff --git a/apps/presentationeditor/main/app/template/ShapeSettings.template b/apps/presentationeditor/main/app/template/ShapeSettings.template index 4d8534512..87464cb90 100644 --- a/apps/presentationeditor/main/app/template/ShapeSettings.template +++ b/apps/presentationeditor/main/app/template/ShapeSettings.template @@ -26,7 +26,7 @@
@@ -44,11 +44,11 @@
-
+
-
+
@@ -61,7 +61,7 @@
@@ -159,15 +159,15 @@ @@ -182,7 +182,7 @@ diff --git a/apps/presentationeditor/main/app/template/ShapeSettingsAdvanced.template b/apps/presentationeditor/main/app/template/ShapeSettingsAdvanced.template index d8da572f2..49b3bc75a 100644 --- a/apps/presentationeditor/main/app/template/ShapeSettingsAdvanced.template +++ b/apps/presentationeditor/main/app/template/ShapeSettingsAdvanced.template @@ -56,7 +56,7 @@
-
+
@@ -64,7 +64,7 @@
- +
diff --git a/apps/presentationeditor/main/app/template/ParagraphSettingsAdvanced.template b/apps/presentationeditor/main/app/template/ParagraphSettingsAdvanced.template index 397e41ebd..fb2079162 100644 --- a/apps/presentationeditor/main/app/template/ParagraphSettingsAdvanced.template +++ b/apps/presentationeditor/main/app/template/ParagraphSettingsAdvanced.template @@ -8,11 +8,11 @@
-
+
+ -->
-
+
+ -->
@@ -63,7 +63,7 @@
+
+
+
-
+
-
+
@@ -69,7 +69,7 @@
- +
@@ -86,7 +86,7 @@
-
+
@@ -108,7 +108,7 @@
-
+
-
-
+
+
-
-
+
+
-
+
diff --git a/apps/presentationeditor/main/app/template/StatusBar.template b/apps/presentationeditor/main/app/template/StatusBar.template index 8df4781e6..fd7cd0465 100644 --- a/apps/presentationeditor/main/app/template/StatusBar.template +++ b/apps/presentationeditor/main/app/template/StatusBar.template @@ -1,27 +1,27 @@
-
+
- +
@@ -40,6 +40,6 @@
- + diff --git a/apps/presentationeditor/main/app/template/TableSettings.template b/apps/presentationeditor/main/app/template/TableSettings.template index 673ed83a9..33f3ae690 100644 --- a/apps/presentationeditor/main/app/template/TableSettings.template +++ b/apps/presentationeditor/main/app/template/TableSettings.template @@ -54,8 +54,8 @@ @@ -85,7 +85,7 @@ @@ -112,13 +112,13 @@ diff --git a/apps/presentationeditor/main/app/template/TextArtSettings.template b/apps/presentationeditor/main/app/template/TextArtSettings.template index 38d4e8846..8956defd1 100644 --- a/apps/presentationeditor/main/app/template/TextArtSettings.template +++ b/apps/presentationeditor/main/app/template/TextArtSettings.template @@ -36,7 +36,7 @@ @@ -44,7 +44,7 @@
@@ -62,11 +62,11 @@
-
+
-
+
@@ -79,7 +79,7 @@
diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 837d0642f..5571fe19d 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -46,7 +46,7 @@
- +
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index 4358439fb..2b285698f 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -187,6 +187,7 @@ define([ this.toolbar = options.toolbar; this.appConfig = options.mode; this.$el = this.toolbar.toolbar.$el.find('#animation-panel'); + var me = this; var _set = Common.enumLock; this.lockedControls = []; this._arrEffectName = [{group:'none', value: AscFormat.ANIM_PRESET_NONE, iconCls: 'animation-none', displayValue: this.textNone}].concat(Common.define.effectData.getEffectData()); @@ -225,7 +226,7 @@ define([ if (menu.cmpEl) { menu.menuAlignEl = cmp.cmpEl; - menu.menuAlign = 'tl-tl'; + menu.menuAlign = Common.UI.isRTL() ? 'tr-tr' : 'tl-tl'; menu.cmpEl.css({ 'width': cmp.cmpEl.width() - cmp.openButton.$el.width(), 'min-height': cmp.cmpEl.height() @@ -293,7 +294,7 @@ define([ this.lockedControls.push(this.btnAddAnimation); - this.cmbDuration = new Common.UI.ComboBox({ + this.cmbDuration = new Common.UI.ComboBoxCustom({ el: this.$el.find('#animation-spin-duration'), cls: 'input-group-nr', menuStyle: 'min-width: 100%;', @@ -309,7 +310,10 @@ define([ lock: [_set.slideDeleted, _set.noSlides, _set.noGraphic, _set.noAnimation, _set.noAnimationDuration, _set.timingLock], dataHint: '1', dataHintDirection: 'top', - dataHintOffset: 'small' + dataHintOffset: 'small', + updateFormControl: function(record) { + record && this.setRawValue(record.get('value') + ' ' + me.txtSec); + } }); this.lockedControls.push(this.cmbDuration); diff --git a/apps/presentationeditor/main/app/view/ChartSettings.js b/apps/presentationeditor/main/app/view/ChartSettings.js index a1beac866..1d5196727 100644 --- a/apps/presentationeditor/main/app/view/ChartSettings.js +++ b/apps/presentationeditor/main/app/view/ChartSettings.js @@ -366,7 +366,7 @@ define([ }); this.lockedControls.push(this.btnLeft); this.btnLeft.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() - 10); + this.spnX.setValue(Math.ceil((this.spnX.getNumberValue() - 10)/10)*10); }, this)); this.btnRight= new Common.UI.Button({ @@ -379,7 +379,7 @@ define([ }); this.lockedControls.push(this.btnRight); this.btnRight.on('click', _.bind(function() { - this.spnX.setValue(this.spnX.getNumberValue() + 10); + this.spnX.setValue(Math.floor((this.spnX.getNumberValue() + 10)/10)*10); }, this)); this.spnY = new Common.UI.MetricSpinner({ @@ -408,7 +408,7 @@ define([ }); this.lockedControls.push(this.btnUp); this.btnUp.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() - 10); + this.spnY.setValue(Math.ceil((this.spnY.getNumberValue() - 10)/10)*10); }, this)); this.btnDown= new Common.UI.Button({ @@ -421,7 +421,7 @@ define([ }); this.lockedControls.push(this.btnDown); this.btnDown.on('click', _.bind(function() { - this.spnY.setValue(this.spnY.getNumberValue() + 10); + this.spnY.setValue(Math.floor((this.spnY.getNumberValue() + 10)/10)*10); }, this)); this.spnPerspective = new Common.UI.MetricSpinner({ @@ -450,7 +450,7 @@ define([ }); this.lockedControls.push(this.btnNarrow); this.btnNarrow.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() - 5); + this.spnPerspective.setValue(Math.ceil((this.spnPerspective.getNumberValue() - 5)/5)*5); }, this)); this.btnWiden= new Common.UI.Button({ @@ -463,7 +463,7 @@ define([ }); this.lockedControls.push(this.btnWiden); this.btnWiden.on('click', _.bind(function() { - this.spnPerspective.setValue(this.spnPerspective.getNumberValue() + 5); + this.spnPerspective.setValue(Math.floor((this.spnPerspective.getNumberValue() + 5)/5)*5); }, this)); this.chRightAngle = new Common.UI.CheckBox({ diff --git a/apps/presentationeditor/main/app/view/DateTimeDialog.js b/apps/presentationeditor/main/app/view/DateTimeDialog.js index 3e5f3072e..f993cd09e 100644 --- a/apps/presentationeditor/main/app/view/DateTimeDialog.js +++ b/apps/presentationeditor/main/app/view/DateTimeDialog.js @@ -50,6 +50,7 @@ define([ width: 350, style: 'min-width: 230px;', cls: 'modal-dlg', + id: 'window-date-time', buttons: ['ok', 'cancel'] }, @@ -73,7 +74,7 @@ define([ '
', '
', '
', - '', + '', '
', '' ].join(''); diff --git a/apps/presentationeditor/main/app/view/FileMenu.js b/apps/presentationeditor/main/app/view/FileMenu.js index 134a7625c..1b2d588d7 100644 --- a/apps/presentationeditor/main/app/view/FileMenu.js +++ b/apps/presentationeditor/main/app/view/FileMenu.js @@ -72,7 +72,8 @@ define([ if (item.options.action === 'help') { if ( panel.noHelpContents === true && navigator.onLine ) { this.fireEvent('item:click', [this, 'external-help', true]); - !!panel.urlHelpCenter && window.open(panel.urlHelpCenter, '_blank'); + const helpCenter = Common.Utils.InternalSettings.get('url-help-center'); + !!helpCenter && window.open(helpCenter, '_blank'); return; } } diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 98a257219..50b6fdb83 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -323,6 +323,9 @@ define([ '', '', '', + '', + '', + '', '', '', '', '', - '', + '', '', '
- +
diff --git a/apps/presentationeditor/main/app/template/SlideSettings.template b/apps/presentationeditor/main/app/template/SlideSettings.template index df87a6486..91ec7097c 100644 --- a/apps/presentationeditor/main/app/template/SlideSettings.template +++ b/apps/presentationeditor/main/app/template/SlideSettings.template @@ -44,11 +44,11 @@
-
+
-
+
@@ -61,7 +61,7 @@
-
+
@@ -69,7 +69,7 @@
- +
@@ -86,7 +86,7 @@
-
+
@@ -108,7 +108,7 @@
-
+
-
- +
+
- +
-
+
-
+
- +
-
+
-
+
@@ -87,7 +87,7 @@
- +
@@ -104,7 +104,7 @@
-
+
@@ -126,7 +126,7 @@
-
+
', '', @@ -592,6 +595,14 @@ define([ dataHintOffset: 'big' }); + this.chRTL = new Common.UI.CheckBox({ + el: $markup.findById('#fms-chb-rtl-ui'), + labelText: this.strRTLSupport, + dataHint: '2', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + $markup.find('.btn.primary').each(function(index, el){ (new Common.UI.Button({ el: $(el) @@ -670,7 +681,7 @@ define([ $('tr.live-viewer', this.el)[mode.canLiveView && !mode.isOffline && mode.canChangeCoAuthoring ? 'show' : 'hide'](); $('tr.macros', this.el)[(mode.customization && mode.customization.macros===false) ? 'hide' : 'show'](); $('tr.spellcheck', this.el)[mode.isEdit && Common.UI.FeaturesManager.canChange('spellcheck') ? 'show' : 'hide'](); - $('tr.quick-print', this.el)[mode.canQuickPrint ? 'show' : 'hide'](); + $('tr.quick-print', this.el)[mode.canQuickPrint && !(mode.customization && mode.customization.compactHeader && mode.isEdit) ? 'show' : 'hide'](); if ( !Common.UI.Themes.available() ) { $('tr.themes, tr.themes + tr.divider', this.el).hide(); @@ -732,6 +743,7 @@ define([ this.lblMacrosDesc.text(item ? item.get('descValue') : this.txtWarnMacrosDesc); this.chPaste.setValue(Common.Utils.InternalSettings.get("pe-settings-paste-button")); + this.chRTL.setValue(Common.localStorage.getBool("ui-rtl")); this.chQuickPrint.setValue(Common.Utils.InternalSettings.get("pe-settings-quick-print-button")); var data = []; @@ -779,6 +791,7 @@ define([ Common.Utils.InternalSettings.set("pe-macros-mode", this.cmbMacros.getValue()); Common.localStorage.setItem("pe-settings-paste-button", this.chPaste.isChecked() ? 1 : 0); + Common.localStorage.setBool("ui-rtl", this.chRTL.isChecked()); Common.localStorage.setBool("pe-settings-quick-print-button", this.chQuickPrint.isChecked()); Common.localStorage.save(); @@ -832,6 +845,7 @@ define([ textForceSave: 'Save to Server', txtSpellCheck: 'Spell Checking', txtCacheMode: 'Default cache mode', + strRTLSupport: 'RTL interface', strMacrosSettings: 'Macros Settings', txtWarnMacros: 'Show Notification', txtRunMacros: 'Enable All', @@ -1471,7 +1485,7 @@ define([ '
' ].join('')); @@ -1588,7 +1602,7 @@ define([ template: _.template([ '
', '
', - '
', + '
', '
' ].join('')), @@ -1599,14 +1613,6 @@ define([ this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; this.openUrl = null; - if ( !Common.Utils.isIE ) { - if ( /^https?:\/\//.test('{{HELP_CENTER_WEB_PE}}') ) { - const _url_obj = new URL('{{HELP_CENTER_WEB_PE}}'); - _url_obj.searchParams.set('lang', Common.Locale.getCurrentLanguage()); - this.urlHelpCenter = _url_obj.toString(); - } - } - this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"}, {"src": "ProgramInterface/FileTab.htm", "name": "File tab"}, @@ -1711,20 +1717,8 @@ define([ store.url = 'resources/help/{{DEFAULT_LANG}}/Contents.json'; store.fetch(config); } else { - if ( Common.Controllers.Desktop.isActive() ) { - if ( store.contentLang === '{{DEFAULT_LANG}}' || !Common.Controllers.Desktop.helpUrl() ) { - me.noHelpContents = true; - me.iFrame.src = '../../common/main/resources/help/download.html'; - } else { - store.contentLang = store.contentLang === lang ? '{{DEFAULT_LANG}}' : lang; - me.urlPref = Common.Controllers.Desktop.helpUrl() + '/' + store.contentLang + '/'; - store.url = me.urlPref + 'Contents.json'; - store.fetch(config); - } - } else { - me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; - store.reset(me.en_data); - } + me.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; + store.reset(me.en_data); } }, success: function () { @@ -1738,9 +1732,21 @@ define([ me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src')); } }; - store.url = 'resources/help/' + lang + '/Contents.json'; - store.fetch(config); - this.urlPref = 'resources/help/' + lang + '/'; + + if ( Common.Controllers.Desktop.isActive() ) { + if ( !Common.Controllers.Desktop.isHelpAvailable() ) { + me.noHelpContents = true; + me.iFrame.src = '../../common/main/resources/help/download.html'; + } else { + me.urlPref = Common.Controllers.Desktop.helpUrl() + '/'; + store.url = me.urlPref + 'Contents.json'; + store.fetch(config); + } + } else { + store.url = 'resources/help/' + lang + '/Contents.json'; + store.fetch(config); + this.urlPref = 'resources/help/' + lang + '/'; + } } }, @@ -2057,23 +2063,23 @@ define([ takeFocusOnClose: true, cls: 'input-group-nr', data: [ - { value: 0, displayValue:'US Letter (21,59cm x 27,94cm)', caption: 'US Letter', size: [215.9, 279.4]}, - { value: 1, displayValue:'US Legal (21,59cm x 35,56cm)', caption: 'US Legal', size: [215.9, 355.6]}, - { value: 2, displayValue:'A4 (21cm x 29,7cm)', caption: 'A4', size: [210, 297]}, - { value: 3, displayValue:'A5 (14,8cm x 21cm)', caption: 'A5', size: [148, 210]}, - { value: 4, displayValue:'B5 (17,6cm x 25cm)', caption: 'B5', size: [176, 250]}, - { value: 5, displayValue:'Envelope #10 (10,48cm x 24,13cm)', caption: 'Envelope #10', size: [104.8, 241.3]}, - { value: 6, displayValue:'Envelope DL (11cm x 22cm)', caption: 'Envelope DL', size: [110, 220]}, - { value: 7, displayValue:'Tabloid (27,94cm x 43,18cm)', caption: 'Tabloid', size: [279.4, 431.8]}, - { value: 8, displayValue:'A3 (29,7cm x 42cm)', caption: 'A3', size: [297, 420]}, - { value: 9, displayValue:'Tabloid Oversize (30,48cm x 45,71cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]}, - { value: 10, displayValue:'ROC 16K (19,68cm x 27,3cm)', caption: 'ROC 16K', size: [196.8, 273]}, - { value: 11, displayValue:'Envelope Choukei 3 (11,99cm x 23,49cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]}, - { value: 12, displayValue:'Super B/A3 (33,02cm x 48,25cm)', caption: 'Super B/A3', size: [330.2, 482.5]}, - { value: 13, displayValue:'A4 (84,1cm x 118,9cm)', caption: 'A0', size: [841, 1189]}, - { value: 14, displayValue:'A4 (59,4cm x 84,1cm)', caption: 'A1', size: [594, 841]}, - { value: 16, displayValue:'A4 (42cm x 59,4cm)', caption: 'A2', size: [420, 594]}, - { value: 17, displayValue:'A4 (10,5cm x 14,8cm)', caption: 'A6', size: [105, 148]} + { value: 0, displayValue:'US Letter (21,59 cm x 27,94 cm)', caption: 'US Letter', size: [215.9, 279.4]}, + { value: 1, displayValue:'US Legal (21,59 cm x 35,56 cm)', caption: 'US Legal', size: [215.9, 355.6]}, + { value: 2, displayValue:'A4 (21 cm x 29,7 cm)', caption: 'A4', size: [210, 297]}, + { value: 3, displayValue:'A5 (14,8 cm x 21 cm)', caption: 'A5', size: [148, 210]}, + { value: 4, displayValue:'B5 (17,6 cm x 25 cm)', caption: 'B5', size: [176, 250]}, + { value: 5, displayValue:'Envelope #10 (10,48 cm x 24,13 cm)', caption: 'Envelope #10', size: [104.8, 241.3]}, + { value: 6, displayValue:'Envelope DL (11 cm x 22 cm)', caption: 'Envelope DL', size: [110, 220]}, + { value: 7, displayValue:'Tabloid (27,94 cm x 43,18 cm)', caption: 'Tabloid', size: [279.4, 431.8]}, + { value: 8, displayValue:'A3 (29,7 cm x 42 cm)', caption: 'A3', size: [297, 420]}, + { value: 9, displayValue:'Tabloid Oversize (30,48 cm x 45,71 cm)', caption: 'Tabloid Oversize', size: [304.8, 457.1]}, + { value: 10, displayValue:'ROC 16K (19,68 cm x 27,3 cm)', caption: 'ROC 16K', size: [196.8, 273]}, + { value: 11, displayValue:'Envelope Choukei 3 (11,99 cm x 23,49 cm)', caption: 'Envelope Choukei 3', size: [119.9, 234.9]}, + { value: 12, displayValue:'Super B/A3 (33,02 cm x 48,25 cm)', caption: 'Super B/A3', size: [330.2, 482.5]}, + { value: 13, displayValue:'A4 (84,1 cm x 118,9 cm)', caption: 'A0', size: [841, 1189]}, + { value: 14, displayValue:'A4 (59,4 cm x 84,1 cm)', caption: 'A1', size: [594, 841]}, + { value: 16, displayValue:'A4 (42 cm x 59,4 cm)', caption: 'A2', size: [420, 594]}, + { value: 17, displayValue:'A4 (10,5 cm x 14,8 cm)', caption: 'A6', size: [105, 148]} ], dataHint: '2', dataHintDirection: 'bottom', @@ -2214,8 +2220,8 @@ define([ pagewidth = size[0], pageheight = size[1]; - item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ' x ' + - parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + Common.Utils.Metric.getCurrentMetricName() + ')'); + item.set('displayValue', item.get('caption') + ' (' + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pagewidth).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ' x ' + + parseFloat(Common.Utils.Metric.fnRecalcFromMM(pageheight).toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ')'); } var value = this.cmbPaperSize.getValue(); this.cmbPaperSize.onResetItems(); diff --git a/apps/presentationeditor/main/app/view/GridSettings.js b/apps/presentationeditor/main/app/view/GridSettings.js index c39cab567..66f7923de 100644 --- a/apps/presentationeditor/main/app/view/GridSettings.js +++ b/apps/presentationeditor/main/app/view/GridSettings.js @@ -64,8 +64,8 @@ define([ '
', '', '
', - '
', - '
', + '
', + '
', '
', '
' ].join(''); diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js index 54c98e3ad..6adb99a76 100644 --- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js +++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js @@ -49,7 +49,8 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', options: { contentWidth: 360, height: 380, - buttons: null + buttons: null, + id: 'window-header-footer' }, initialize : function(options) { @@ -67,8 +68,8 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', '', '
', '