@stll/folio-core 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai-edits/headless.d.ts +5 -1
- package/dist/ai-edits/headless.js +53 -3
- package/dist/ai-edits/index.d.ts +2 -2
- package/dist/compat/eigenpal.d.ts +2 -2
- package/dist/document-operations.d.ts +20 -3
- package/dist/document-operations.js +7 -4
- package/dist/i18n/messages/catalogs.gen.d.ts +1054 -34
- package/dist/i18n/messages/catalogs.gen.js +1122 -68
- package/dist/i18n/messages/messages.gen.d.ts +62 -2
- package/dist/index.d.ts +2 -2
- package/dist/layout-engine/index.js +54 -4
- package/dist/layout-engine/measure/measureBlocks.js +22 -0
- package/dist/managers/TableSelectionManager.js +1 -1
- package/dist/prosemirror/commands/index.js +1 -1
- package/dist/prosemirror/index.js +1 -1
- package/dist/prosemirror/insertOperations.js +1 -1
- package/dist/server.d.ts +2 -2
- package/package.json +1 -1
|
@@ -36,6 +36,7 @@ declare const CATALOGS: {
|
|
|
36
36
|
readonly red: "Red";
|
|
37
37
|
readonly yellow: "Yellow";
|
|
38
38
|
};
|
|
39
|
+
readonly custom: "Custom";
|
|
39
40
|
readonly customColor: "Custom Color";
|
|
40
41
|
readonly noColor: "No color";
|
|
41
42
|
readonly standardColors: "Standard Colors";
|
|
@@ -60,6 +61,7 @@ declare const CATALOGS: {
|
|
|
60
61
|
readonly closeDialog: "Close";
|
|
61
62
|
readonly insert: "Insert";
|
|
62
63
|
readonly px: "px";
|
|
64
|
+
readonly remove: "Remove";
|
|
63
65
|
readonly update: "Update";
|
|
64
66
|
};
|
|
65
67
|
readonly contentControlDateAriaLabel: "Pick a date";
|
|
@@ -123,13 +125,16 @@ declare const CATALOGS: {
|
|
|
123
125
|
readonly title: "Footnote & Endnote Properties";
|
|
124
126
|
};
|
|
125
127
|
readonly hyperlink: {
|
|
128
|
+
readonly addressLabel: "Address";
|
|
126
129
|
readonly bookmarkLabel: "Bookmark";
|
|
127
130
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
128
131
|
readonly displayTextHint: "Defaults to the selected text";
|
|
129
132
|
readonly displayTextLabel: "Display text";
|
|
130
133
|
readonly displayTextPlaceholder: "Text to display";
|
|
131
134
|
readonly invalidUrl: "Enter a valid URL";
|
|
135
|
+
readonly linkTo: "Link to";
|
|
132
136
|
readonly removeLink: "Remove link";
|
|
137
|
+
readonly screenTipLabel: "Screen tip";
|
|
133
138
|
readonly tabBookmark: "Bookmark";
|
|
134
139
|
readonly tabWebAddress: "Web address";
|
|
135
140
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -151,9 +156,11 @@ declare const CATALOGS: {
|
|
|
151
156
|
readonly top: "Top";
|
|
152
157
|
};
|
|
153
158
|
readonly alignment: "Alignment";
|
|
159
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
154
160
|
readonly horizontal: "Horizontal";
|
|
155
161
|
readonly offset: "Offset";
|
|
156
162
|
readonly offsetPx: "Offset (px)";
|
|
163
|
+
readonly position: "Position";
|
|
157
164
|
readonly relativeOptions: {
|
|
158
165
|
readonly character: "Character";
|
|
159
166
|
readonly column: "Column";
|
|
@@ -174,12 +181,17 @@ declare const CATALOGS: {
|
|
|
174
181
|
readonly dashed: "Dashed";
|
|
175
182
|
readonly dotted: "Dotted";
|
|
176
183
|
readonly double: "Double";
|
|
184
|
+
readonly groove: "Groove";
|
|
185
|
+
readonly inset: "Inset";
|
|
186
|
+
readonly outset: "Outset";
|
|
187
|
+
readonly ridge: "Ridge";
|
|
177
188
|
readonly solid: "Solid";
|
|
178
189
|
};
|
|
179
190
|
readonly color: "Color";
|
|
180
191
|
readonly dimensions: "Dimensions";
|
|
181
192
|
readonly heightLabel: "Height";
|
|
182
193
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
194
|
+
readonly preview: "Preview";
|
|
183
195
|
readonly style: "Style";
|
|
184
196
|
readonly textWrapping: "Text wrapping";
|
|
185
197
|
readonly title: "Image Properties";
|
|
@@ -194,6 +206,11 @@ declare const CATALOGS: {
|
|
|
194
206
|
readonly wrapRight: "Wrap right";
|
|
195
207
|
};
|
|
196
208
|
};
|
|
209
|
+
readonly insertImage: {
|
|
210
|
+
readonly altText: "Alt text";
|
|
211
|
+
readonly imageFile: "Image file";
|
|
212
|
+
readonly title: "Insert Image";
|
|
213
|
+
};
|
|
197
214
|
readonly insertSymbol: {
|
|
198
215
|
readonly categories: {
|
|
199
216
|
readonly arrows: "Arrows";
|
|
@@ -210,18 +227,19 @@ declare const CATALOGS: {
|
|
|
210
227
|
readonly title: "Insert symbol";
|
|
211
228
|
};
|
|
212
229
|
readonly insertTable: {
|
|
213
|
-
readonly autofit: "Autofit";
|
|
230
|
+
readonly autofit: "Autofit to contents";
|
|
214
231
|
readonly columnWidthLabel: "Column width";
|
|
215
232
|
readonly columnsLabel: "Columns";
|
|
216
233
|
readonly fixedWidth: "Fixed width";
|
|
217
234
|
readonly hoverToSelect: "Hover to select table size";
|
|
218
235
|
readonly insertButton: "Insert";
|
|
219
236
|
readonly orSpecifySize: "Or specify size";
|
|
237
|
+
readonly plainTable: "Plain table";
|
|
220
238
|
readonly rowsLabel: "Rows";
|
|
221
239
|
readonly sizeSelector: "Table size selector";
|
|
222
240
|
readonly style: "Style";
|
|
223
241
|
readonly tableSize: "{cols} × {rows} table";
|
|
224
|
-
readonly title: "Insert
|
|
242
|
+
readonly title: "Insert Table";
|
|
225
243
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
226
244
|
};
|
|
227
245
|
readonly pageSetup: {
|
|
@@ -246,6 +264,16 @@ declare const CATALOGS: {
|
|
|
246
264
|
readonly sizeLabel: "Size";
|
|
247
265
|
readonly title: "Page Setup";
|
|
248
266
|
readonly top: "Top";
|
|
267
|
+
readonly unitInches: "in";
|
|
268
|
+
};
|
|
269
|
+
readonly pasteSpecial: {
|
|
270
|
+
readonly pasteMode: "Paste mode";
|
|
271
|
+
readonly title: "Paste Special";
|
|
272
|
+
};
|
|
273
|
+
readonly splitCell: {
|
|
274
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
275
|
+
readonly splitButton: "Split";
|
|
276
|
+
readonly title: "Split Cell";
|
|
249
277
|
};
|
|
250
278
|
readonly tableProperties: {
|
|
251
279
|
readonly alignOptions: {
|
|
@@ -267,6 +295,23 @@ declare const CATALOGS: {
|
|
|
267
295
|
readonly percentage: "Percentage";
|
|
268
296
|
};
|
|
269
297
|
};
|
|
298
|
+
readonly watermark: {
|
|
299
|
+
readonly color: "Color";
|
|
300
|
+
readonly diagonal: "Diagonal";
|
|
301
|
+
readonly font: "Font";
|
|
302
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
303
|
+
readonly imageTarget: "Image target";
|
|
304
|
+
readonly noWatermark: "No watermark";
|
|
305
|
+
readonly opacity: "Opacity";
|
|
306
|
+
readonly pictureWatermark: "Picture watermark";
|
|
307
|
+
readonly scale: "Scale";
|
|
308
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
309
|
+
readonly text: "Text";
|
|
310
|
+
readonly textWatermark: "Text watermark";
|
|
311
|
+
readonly title: "Watermark";
|
|
312
|
+
readonly type: "Type";
|
|
313
|
+
readonly washout: "Washout";
|
|
314
|
+
};
|
|
270
315
|
};
|
|
271
316
|
readonly discardChanges: "Discard";
|
|
272
317
|
readonly dismiss: "Dismiss";
|
|
@@ -339,6 +384,17 @@ declare const CATALOGS: {
|
|
|
339
384
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
340
385
|
};
|
|
341
386
|
readonly formattingToolbar: "Formatting toolbar";
|
|
387
|
+
readonly headerFooter: {
|
|
388
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
389
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
390
|
+
readonly footer: "Footer";
|
|
391
|
+
readonly header: "Header";
|
|
392
|
+
readonly insertPageCount: "Insert total page count";
|
|
393
|
+
readonly insertPageNumber: "Insert current page number";
|
|
394
|
+
readonly options: "Options";
|
|
395
|
+
readonly removeFooter: "Remove footer";
|
|
396
|
+
readonly removeHeader: "Remove header";
|
|
397
|
+
};
|
|
342
398
|
readonly hideDetails: "Hide details";
|
|
343
399
|
readonly historyGroup: "History";
|
|
344
400
|
readonly imageOverlay: {
|
|
@@ -400,6 +456,7 @@ declare const CATALOGS: {
|
|
|
400
456
|
};
|
|
401
457
|
readonly listFormatting: "List formatting";
|
|
402
458
|
readonly listsGroup: "Lists";
|
|
459
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
403
460
|
readonly loadingDocument: "Loading document...";
|
|
404
461
|
readonly loadingEditor: "Loading editor...";
|
|
405
462
|
readonly lockFile: "Lock file";
|
|
@@ -412,8 +469,10 @@ declare const CATALOGS: {
|
|
|
412
469
|
readonly moreFormatting: "More formatting";
|
|
413
470
|
readonly networkError: "Network error. Please check your internet connection and try again.";
|
|
414
471
|
readonly nextChange: "Next Change";
|
|
472
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
415
473
|
readonly numberedList: "Numbered List";
|
|
416
474
|
readonly parseError: "The document could not be parsed. It may be corrupted or in an unsupported format.";
|
|
475
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
417
476
|
readonly paste: "Paste";
|
|
418
477
|
readonly pasteUnformatted: "Paste without formatting";
|
|
419
478
|
readonly previousChange: "Previous Change";
|
|
@@ -573,6 +632,7 @@ declare const CATALOGS: {
|
|
|
573
632
|
readonly viewGroup: "View";
|
|
574
633
|
readonly viewer: {
|
|
575
634
|
readonly pageIndicator: "Page {current} of {total}";
|
|
635
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
576
636
|
};
|
|
577
637
|
readonly zoom: {
|
|
578
638
|
readonly zoomIn: "Zoom in";
|
|
@@ -618,6 +678,7 @@ declare const CATALOGS: {
|
|
|
618
678
|
readonly red: "Red";
|
|
619
679
|
readonly yellow: "Yellow";
|
|
620
680
|
};
|
|
681
|
+
readonly custom: "Custom";
|
|
621
682
|
readonly customColor: "Custom Color";
|
|
622
683
|
readonly noColor: "No color";
|
|
623
684
|
readonly standardColors: "Standard Colors";
|
|
@@ -642,6 +703,7 @@ declare const CATALOGS: {
|
|
|
642
703
|
readonly closeDialog: "Close";
|
|
643
704
|
readonly insert: "Insert";
|
|
644
705
|
readonly px: "px";
|
|
706
|
+
readonly remove: "Remove";
|
|
645
707
|
readonly update: "Update";
|
|
646
708
|
};
|
|
647
709
|
readonly contentControlDateAriaLabel: "Datum auswählen";
|
|
@@ -705,13 +767,16 @@ declare const CATALOGS: {
|
|
|
705
767
|
readonly title: "Footnote & Endnote Properties";
|
|
706
768
|
};
|
|
707
769
|
readonly hyperlink: {
|
|
770
|
+
readonly addressLabel: "Address";
|
|
708
771
|
readonly bookmarkLabel: "Bookmark";
|
|
709
772
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
710
773
|
readonly displayTextHint: "Defaults to the selected text";
|
|
711
774
|
readonly displayTextLabel: "Display text";
|
|
712
775
|
readonly displayTextPlaceholder: "Text to display";
|
|
713
776
|
readonly invalidUrl: "Enter a valid URL";
|
|
777
|
+
readonly linkTo: "Link to";
|
|
714
778
|
readonly removeLink: "Remove link";
|
|
779
|
+
readonly screenTipLabel: "Screen tip";
|
|
715
780
|
readonly tabBookmark: "Bookmark";
|
|
716
781
|
readonly tabWebAddress: "Web address";
|
|
717
782
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -733,9 +798,11 @@ declare const CATALOGS: {
|
|
|
733
798
|
readonly top: "Top";
|
|
734
799
|
};
|
|
735
800
|
readonly alignment: "Alignment";
|
|
801
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
736
802
|
readonly horizontal: "Horizontal";
|
|
737
803
|
readonly offset: "Offset";
|
|
738
804
|
readonly offsetPx: "Offset (px)";
|
|
805
|
+
readonly position: "Position";
|
|
739
806
|
readonly relativeOptions: {
|
|
740
807
|
readonly character: "Character";
|
|
741
808
|
readonly column: "Column";
|
|
@@ -756,12 +823,17 @@ declare const CATALOGS: {
|
|
|
756
823
|
readonly dashed: "Dashed";
|
|
757
824
|
readonly dotted: "Dotted";
|
|
758
825
|
readonly double: "Double";
|
|
826
|
+
readonly groove: "Groove";
|
|
827
|
+
readonly inset: "Inset";
|
|
828
|
+
readonly outset: "Outset";
|
|
829
|
+
readonly ridge: "Ridge";
|
|
759
830
|
readonly solid: "Solid";
|
|
760
831
|
};
|
|
761
832
|
readonly color: "Color";
|
|
762
833
|
readonly dimensions: "Dimensions";
|
|
763
834
|
readonly heightLabel: "Height";
|
|
764
835
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
836
|
+
readonly preview: "Preview";
|
|
765
837
|
readonly style: "Style";
|
|
766
838
|
readonly textWrapping: "Text wrapping";
|
|
767
839
|
readonly title: "Image Properties";
|
|
@@ -776,6 +848,11 @@ declare const CATALOGS: {
|
|
|
776
848
|
readonly wrapRight: "Wrap right";
|
|
777
849
|
};
|
|
778
850
|
};
|
|
851
|
+
readonly insertImage: {
|
|
852
|
+
readonly altText: "Alt text";
|
|
853
|
+
readonly imageFile: "Image file";
|
|
854
|
+
readonly title: "Insert Image";
|
|
855
|
+
};
|
|
779
856
|
readonly insertSymbol: {
|
|
780
857
|
readonly categories: {
|
|
781
858
|
readonly arrows: "Arrows";
|
|
@@ -792,18 +869,19 @@ declare const CATALOGS: {
|
|
|
792
869
|
readonly title: "Insert symbol";
|
|
793
870
|
};
|
|
794
871
|
readonly insertTable: {
|
|
795
|
-
readonly autofit: "Autofit";
|
|
872
|
+
readonly autofit: "Autofit to contents";
|
|
796
873
|
readonly columnWidthLabel: "Column width";
|
|
797
874
|
readonly columnsLabel: "Columns";
|
|
798
875
|
readonly fixedWidth: "Fixed width";
|
|
799
876
|
readonly hoverToSelect: "Hover to select table size";
|
|
800
877
|
readonly insertButton: "Insert";
|
|
801
878
|
readonly orSpecifySize: "Or specify size";
|
|
879
|
+
readonly plainTable: "Plain table";
|
|
802
880
|
readonly rowsLabel: "Rows";
|
|
803
881
|
readonly sizeSelector: "Table size selector";
|
|
804
882
|
readonly style: "Style";
|
|
805
883
|
readonly tableSize: "{cols} × {rows} table";
|
|
806
|
-
readonly title: "Insert
|
|
884
|
+
readonly title: "Insert Table";
|
|
807
885
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
808
886
|
};
|
|
809
887
|
readonly pageSetup: {
|
|
@@ -828,6 +906,16 @@ declare const CATALOGS: {
|
|
|
828
906
|
readonly sizeLabel: "Size";
|
|
829
907
|
readonly title: "Page Setup";
|
|
830
908
|
readonly top: "Top";
|
|
909
|
+
readonly unitInches: "in";
|
|
910
|
+
};
|
|
911
|
+
readonly pasteSpecial: {
|
|
912
|
+
readonly pasteMode: "Paste mode";
|
|
913
|
+
readonly title: "Paste Special";
|
|
914
|
+
};
|
|
915
|
+
readonly splitCell: {
|
|
916
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
917
|
+
readonly splitButton: "Split";
|
|
918
|
+
readonly title: "Split Cell";
|
|
831
919
|
};
|
|
832
920
|
readonly tableProperties: {
|
|
833
921
|
readonly alignOptions: {
|
|
@@ -849,6 +937,23 @@ declare const CATALOGS: {
|
|
|
849
937
|
readonly percentage: "Percentage";
|
|
850
938
|
};
|
|
851
939
|
};
|
|
940
|
+
readonly watermark: {
|
|
941
|
+
readonly color: "Color";
|
|
942
|
+
readonly diagonal: "Diagonal";
|
|
943
|
+
readonly font: "Font";
|
|
944
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
945
|
+
readonly imageTarget: "Image target";
|
|
946
|
+
readonly noWatermark: "No watermark";
|
|
947
|
+
readonly opacity: "Opacity";
|
|
948
|
+
readonly pictureWatermark: "Picture watermark";
|
|
949
|
+
readonly scale: "Scale";
|
|
950
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
951
|
+
readonly text: "Text";
|
|
952
|
+
readonly textWatermark: "Text watermark";
|
|
953
|
+
readonly title: "Watermark";
|
|
954
|
+
readonly type: "Type";
|
|
955
|
+
readonly washout: "Washout";
|
|
956
|
+
};
|
|
852
957
|
};
|
|
853
958
|
readonly discardChanges: "Verwerfen";
|
|
854
959
|
readonly dismiss: "Schließen";
|
|
@@ -921,6 +1026,17 @@ declare const CATALOGS: {
|
|
|
921
1026
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
922
1027
|
};
|
|
923
1028
|
readonly formattingToolbar: "Formatierungsleiste";
|
|
1029
|
+
readonly headerFooter: {
|
|
1030
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
1031
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
1032
|
+
readonly footer: "Footer";
|
|
1033
|
+
readonly header: "Header";
|
|
1034
|
+
readonly insertPageCount: "Insert total page count";
|
|
1035
|
+
readonly insertPageNumber: "Insert current page number";
|
|
1036
|
+
readonly options: "Options";
|
|
1037
|
+
readonly removeFooter: "Remove footer";
|
|
1038
|
+
readonly removeHeader: "Remove header";
|
|
1039
|
+
};
|
|
924
1040
|
readonly hideDetails: "Details ausblenden";
|
|
925
1041
|
readonly historyGroup: "Verlauf";
|
|
926
1042
|
readonly imageOverlay: {
|
|
@@ -982,6 +1098,7 @@ declare const CATALOGS: {
|
|
|
982
1098
|
};
|
|
983
1099
|
readonly listFormatting: "Listenformatierung";
|
|
984
1100
|
readonly listsGroup: "Listen";
|
|
1101
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
985
1102
|
readonly loadingDocument: "Dokument wird geladen…";
|
|
986
1103
|
readonly loadingEditor: "Editor wird geladen...";
|
|
987
1104
|
readonly lockFile: "Datei sperren";
|
|
@@ -994,8 +1111,10 @@ declare const CATALOGS: {
|
|
|
994
1111
|
readonly moreFormatting: "Weitere Formatierung";
|
|
995
1112
|
readonly networkError: "Netzwerkfehler. Bitte überprüfen Sie Ihre Internetverbindung und versuchen Sie es erneut.";
|
|
996
1113
|
readonly nextChange: "Nächste Änderung";
|
|
1114
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
997
1115
|
readonly numberedList: "Nummerierte Liste";
|
|
998
1116
|
readonly parseError: "Das Dokument konnte nicht verarbeitet werden. Möglicherweise ist es beschädigt oder liegt in einem nicht unterstützten Format vor.";
|
|
1117
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
999
1118
|
readonly paste: "Einfügen";
|
|
1000
1119
|
readonly pasteUnformatted: "Ohne Formatierung einfügen";
|
|
1001
1120
|
readonly previousChange: "Vorherige Änderung";
|
|
@@ -1155,6 +1274,7 @@ declare const CATALOGS: {
|
|
|
1155
1274
|
readonly viewGroup: "Ansicht";
|
|
1156
1275
|
readonly viewer: {
|
|
1157
1276
|
readonly pageIndicator: "Page {current} of {total}";
|
|
1277
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
1158
1278
|
};
|
|
1159
1279
|
readonly zoom: {
|
|
1160
1280
|
readonly zoomIn: "Zoom in";
|
|
@@ -1200,6 +1320,7 @@ declare const CATALOGS: {
|
|
|
1200
1320
|
readonly red: "Red";
|
|
1201
1321
|
readonly yellow: "Yellow";
|
|
1202
1322
|
};
|
|
1323
|
+
readonly custom: "Custom";
|
|
1203
1324
|
readonly customColor: "Custom Color";
|
|
1204
1325
|
readonly noColor: "No color";
|
|
1205
1326
|
readonly standardColors: "Standard Colors";
|
|
@@ -1224,6 +1345,7 @@ declare const CATALOGS: {
|
|
|
1224
1345
|
readonly closeDialog: "Close";
|
|
1225
1346
|
readonly insert: "Insert";
|
|
1226
1347
|
readonly px: "px";
|
|
1348
|
+
readonly remove: "Remove";
|
|
1227
1349
|
readonly update: "Update";
|
|
1228
1350
|
};
|
|
1229
1351
|
readonly contentControlDateAriaLabel: "Choisir une date";
|
|
@@ -1287,13 +1409,16 @@ declare const CATALOGS: {
|
|
|
1287
1409
|
readonly title: "Footnote & Endnote Properties";
|
|
1288
1410
|
};
|
|
1289
1411
|
readonly hyperlink: {
|
|
1412
|
+
readonly addressLabel: "Address";
|
|
1290
1413
|
readonly bookmarkLabel: "Bookmark";
|
|
1291
1414
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
1292
1415
|
readonly displayTextHint: "Defaults to the selected text";
|
|
1293
1416
|
readonly displayTextLabel: "Display text";
|
|
1294
1417
|
readonly displayTextPlaceholder: "Text to display";
|
|
1295
1418
|
readonly invalidUrl: "Enter a valid URL";
|
|
1419
|
+
readonly linkTo: "Link to";
|
|
1296
1420
|
readonly removeLink: "Remove link";
|
|
1421
|
+
readonly screenTipLabel: "Screen tip";
|
|
1297
1422
|
readonly tabBookmark: "Bookmark";
|
|
1298
1423
|
readonly tabWebAddress: "Web address";
|
|
1299
1424
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -1315,9 +1440,11 @@ declare const CATALOGS: {
|
|
|
1315
1440
|
readonly top: "Top";
|
|
1316
1441
|
};
|
|
1317
1442
|
readonly alignment: "Alignment";
|
|
1443
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
1318
1444
|
readonly horizontal: "Horizontal";
|
|
1319
1445
|
readonly offset: "Offset";
|
|
1320
1446
|
readonly offsetPx: "Offset (px)";
|
|
1447
|
+
readonly position: "Position";
|
|
1321
1448
|
readonly relativeOptions: {
|
|
1322
1449
|
readonly character: "Character";
|
|
1323
1450
|
readonly column: "Column";
|
|
@@ -1338,12 +1465,17 @@ declare const CATALOGS: {
|
|
|
1338
1465
|
readonly dashed: "Dashed";
|
|
1339
1466
|
readonly dotted: "Dotted";
|
|
1340
1467
|
readonly double: "Double";
|
|
1468
|
+
readonly groove: "Groove";
|
|
1469
|
+
readonly inset: "Inset";
|
|
1470
|
+
readonly outset: "Outset";
|
|
1471
|
+
readonly ridge: "Ridge";
|
|
1341
1472
|
readonly solid: "Solid";
|
|
1342
1473
|
};
|
|
1343
1474
|
readonly color: "Color";
|
|
1344
1475
|
readonly dimensions: "Dimensions";
|
|
1345
1476
|
readonly heightLabel: "Height";
|
|
1346
1477
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
1478
|
+
readonly preview: "Preview";
|
|
1347
1479
|
readonly style: "Style";
|
|
1348
1480
|
readonly textWrapping: "Text wrapping";
|
|
1349
1481
|
readonly title: "Image Properties";
|
|
@@ -1358,6 +1490,11 @@ declare const CATALOGS: {
|
|
|
1358
1490
|
readonly wrapRight: "Wrap right";
|
|
1359
1491
|
};
|
|
1360
1492
|
};
|
|
1493
|
+
readonly insertImage: {
|
|
1494
|
+
readonly altText: "Alt text";
|
|
1495
|
+
readonly imageFile: "Image file";
|
|
1496
|
+
readonly title: "Insert Image";
|
|
1497
|
+
};
|
|
1361
1498
|
readonly insertSymbol: {
|
|
1362
1499
|
readonly categories: {
|
|
1363
1500
|
readonly arrows: "Arrows";
|
|
@@ -1374,18 +1511,19 @@ declare const CATALOGS: {
|
|
|
1374
1511
|
readonly title: "Insert symbol";
|
|
1375
1512
|
};
|
|
1376
1513
|
readonly insertTable: {
|
|
1377
|
-
readonly autofit: "Autofit";
|
|
1514
|
+
readonly autofit: "Autofit to contents";
|
|
1378
1515
|
readonly columnWidthLabel: "Column width";
|
|
1379
1516
|
readonly columnsLabel: "Columns";
|
|
1380
1517
|
readonly fixedWidth: "Fixed width";
|
|
1381
1518
|
readonly hoverToSelect: "Hover to select table size";
|
|
1382
1519
|
readonly insertButton: "Insert";
|
|
1383
1520
|
readonly orSpecifySize: "Or specify size";
|
|
1521
|
+
readonly plainTable: "Plain table";
|
|
1384
1522
|
readonly rowsLabel: "Rows";
|
|
1385
1523
|
readonly sizeSelector: "Table size selector";
|
|
1386
1524
|
readonly style: "Style";
|
|
1387
1525
|
readonly tableSize: "{cols} × {rows} table";
|
|
1388
|
-
readonly title: "Insert
|
|
1526
|
+
readonly title: "Insert Table";
|
|
1389
1527
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
1390
1528
|
};
|
|
1391
1529
|
readonly pageSetup: {
|
|
@@ -1410,6 +1548,16 @@ declare const CATALOGS: {
|
|
|
1410
1548
|
readonly sizeLabel: "Size";
|
|
1411
1549
|
readonly title: "Page Setup";
|
|
1412
1550
|
readonly top: "Top";
|
|
1551
|
+
readonly unitInches: "in";
|
|
1552
|
+
};
|
|
1553
|
+
readonly pasteSpecial: {
|
|
1554
|
+
readonly pasteMode: "Paste mode";
|
|
1555
|
+
readonly title: "Paste Special";
|
|
1556
|
+
};
|
|
1557
|
+
readonly splitCell: {
|
|
1558
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
1559
|
+
readonly splitButton: "Split";
|
|
1560
|
+
readonly title: "Split Cell";
|
|
1413
1561
|
};
|
|
1414
1562
|
readonly tableProperties: {
|
|
1415
1563
|
readonly alignOptions: {
|
|
@@ -1431,6 +1579,23 @@ declare const CATALOGS: {
|
|
|
1431
1579
|
readonly percentage: "Percentage";
|
|
1432
1580
|
};
|
|
1433
1581
|
};
|
|
1582
|
+
readonly watermark: {
|
|
1583
|
+
readonly color: "Color";
|
|
1584
|
+
readonly diagonal: "Diagonal";
|
|
1585
|
+
readonly font: "Font";
|
|
1586
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
1587
|
+
readonly imageTarget: "Image target";
|
|
1588
|
+
readonly noWatermark: "No watermark";
|
|
1589
|
+
readonly opacity: "Opacity";
|
|
1590
|
+
readonly pictureWatermark: "Picture watermark";
|
|
1591
|
+
readonly scale: "Scale";
|
|
1592
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
1593
|
+
readonly text: "Text";
|
|
1594
|
+
readonly textWatermark: "Text watermark";
|
|
1595
|
+
readonly title: "Watermark";
|
|
1596
|
+
readonly type: "Type";
|
|
1597
|
+
readonly washout: "Washout";
|
|
1598
|
+
};
|
|
1434
1599
|
};
|
|
1435
1600
|
readonly discardChanges: "Abandonner";
|
|
1436
1601
|
readonly dismiss: "Ignorer";
|
|
@@ -1503,6 +1668,17 @@ declare const CATALOGS: {
|
|
|
1503
1668
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
1504
1669
|
};
|
|
1505
1670
|
readonly formattingToolbar: "Barre d’outils de mise en forme";
|
|
1671
|
+
readonly headerFooter: {
|
|
1672
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
1673
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
1674
|
+
readonly footer: "Footer";
|
|
1675
|
+
readonly header: "Header";
|
|
1676
|
+
readonly insertPageCount: "Insert total page count";
|
|
1677
|
+
readonly insertPageNumber: "Insert current page number";
|
|
1678
|
+
readonly options: "Options";
|
|
1679
|
+
readonly removeFooter: "Remove footer";
|
|
1680
|
+
readonly removeHeader: "Remove header";
|
|
1681
|
+
};
|
|
1506
1682
|
readonly hideDetails: "Masquer les détails";
|
|
1507
1683
|
readonly historyGroup: "Historique";
|
|
1508
1684
|
readonly imageOverlay: {
|
|
@@ -1564,6 +1740,7 @@ declare const CATALOGS: {
|
|
|
1564
1740
|
};
|
|
1565
1741
|
readonly listFormatting: "Mise en forme des listes";
|
|
1566
1742
|
readonly listsGroup: "Listes";
|
|
1743
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
1567
1744
|
readonly loadingDocument: "Chargement du document...";
|
|
1568
1745
|
readonly loadingEditor: "Chargement de l’éditeur...";
|
|
1569
1746
|
readonly lockFile: "Verrouiller le fichier";
|
|
@@ -1576,8 +1753,10 @@ declare const CATALOGS: {
|
|
|
1576
1753
|
readonly moreFormatting: "Plus de mise en forme";
|
|
1577
1754
|
readonly networkError: "Erreur réseau. Vérifiez votre connexion Internet et réessayez.";
|
|
1578
1755
|
readonly nextChange: "Modification suivante";
|
|
1756
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
1579
1757
|
readonly numberedList: "Liste numérotée";
|
|
1580
1758
|
readonly parseError: "Le document n’a pas pu être analysé. Il est peut-être corrompu ou dans un format non pris en charge.";
|
|
1759
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
1581
1760
|
readonly paste: "Coller";
|
|
1582
1761
|
readonly pasteUnformatted: "Coller sans mise en forme";
|
|
1583
1762
|
readonly previousChange: "Modification précédente";
|
|
@@ -1737,6 +1916,7 @@ declare const CATALOGS: {
|
|
|
1737
1916
|
readonly viewGroup: "Affichage";
|
|
1738
1917
|
readonly viewer: {
|
|
1739
1918
|
readonly pageIndicator: "Page {current} of {total}";
|
|
1919
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
1740
1920
|
};
|
|
1741
1921
|
readonly zoom: {
|
|
1742
1922
|
readonly zoomIn: "Zoom in";
|
|
@@ -1782,6 +1962,7 @@ declare const CATALOGS: {
|
|
|
1782
1962
|
readonly red: "Red";
|
|
1783
1963
|
readonly yellow: "Yellow";
|
|
1784
1964
|
};
|
|
1965
|
+
readonly custom: "Custom";
|
|
1785
1966
|
readonly customColor: "Custom Color";
|
|
1786
1967
|
readonly noColor: "No color";
|
|
1787
1968
|
readonly standardColors: "Standard Colors";
|
|
@@ -1806,6 +1987,7 @@ declare const CATALOGS: {
|
|
|
1806
1987
|
readonly closeDialog: "Close";
|
|
1807
1988
|
readonly insert: "Insert";
|
|
1808
1989
|
readonly px: "px";
|
|
1990
|
+
readonly remove: "Remove";
|
|
1809
1991
|
readonly update: "Update";
|
|
1810
1992
|
};
|
|
1811
1993
|
readonly contentControlDateAriaLabel: "Elegir una fecha";
|
|
@@ -1869,13 +2051,16 @@ declare const CATALOGS: {
|
|
|
1869
2051
|
readonly title: "Footnote & Endnote Properties";
|
|
1870
2052
|
};
|
|
1871
2053
|
readonly hyperlink: {
|
|
2054
|
+
readonly addressLabel: "Address";
|
|
1872
2055
|
readonly bookmarkLabel: "Bookmark";
|
|
1873
2056
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
1874
2057
|
readonly displayTextHint: "Defaults to the selected text";
|
|
1875
2058
|
readonly displayTextLabel: "Display text";
|
|
1876
2059
|
readonly displayTextPlaceholder: "Text to display";
|
|
1877
2060
|
readonly invalidUrl: "Enter a valid URL";
|
|
2061
|
+
readonly linkTo: "Link to";
|
|
1878
2062
|
readonly removeLink: "Remove link";
|
|
2063
|
+
readonly screenTipLabel: "Screen tip";
|
|
1879
2064
|
readonly tabBookmark: "Bookmark";
|
|
1880
2065
|
readonly tabWebAddress: "Web address";
|
|
1881
2066
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -1897,9 +2082,11 @@ declare const CATALOGS: {
|
|
|
1897
2082
|
readonly top: "Top";
|
|
1898
2083
|
};
|
|
1899
2084
|
readonly alignment: "Alignment";
|
|
2085
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
1900
2086
|
readonly horizontal: "Horizontal";
|
|
1901
2087
|
readonly offset: "Offset";
|
|
1902
2088
|
readonly offsetPx: "Offset (px)";
|
|
2089
|
+
readonly position: "Position";
|
|
1903
2090
|
readonly relativeOptions: {
|
|
1904
2091
|
readonly character: "Character";
|
|
1905
2092
|
readonly column: "Column";
|
|
@@ -1920,12 +2107,17 @@ declare const CATALOGS: {
|
|
|
1920
2107
|
readonly dashed: "Dashed";
|
|
1921
2108
|
readonly dotted: "Dotted";
|
|
1922
2109
|
readonly double: "Double";
|
|
2110
|
+
readonly groove: "Groove";
|
|
2111
|
+
readonly inset: "Inset";
|
|
2112
|
+
readonly outset: "Outset";
|
|
2113
|
+
readonly ridge: "Ridge";
|
|
1923
2114
|
readonly solid: "Solid";
|
|
1924
2115
|
};
|
|
1925
2116
|
readonly color: "Color";
|
|
1926
2117
|
readonly dimensions: "Dimensions";
|
|
1927
2118
|
readonly heightLabel: "Height";
|
|
1928
2119
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
2120
|
+
readonly preview: "Preview";
|
|
1929
2121
|
readonly style: "Style";
|
|
1930
2122
|
readonly textWrapping: "Text wrapping";
|
|
1931
2123
|
readonly title: "Image Properties";
|
|
@@ -1940,6 +2132,11 @@ declare const CATALOGS: {
|
|
|
1940
2132
|
readonly wrapRight: "Wrap right";
|
|
1941
2133
|
};
|
|
1942
2134
|
};
|
|
2135
|
+
readonly insertImage: {
|
|
2136
|
+
readonly altText: "Alt text";
|
|
2137
|
+
readonly imageFile: "Image file";
|
|
2138
|
+
readonly title: "Insert Image";
|
|
2139
|
+
};
|
|
1943
2140
|
readonly insertSymbol: {
|
|
1944
2141
|
readonly categories: {
|
|
1945
2142
|
readonly arrows: "Arrows";
|
|
@@ -1956,18 +2153,19 @@ declare const CATALOGS: {
|
|
|
1956
2153
|
readonly title: "Insert symbol";
|
|
1957
2154
|
};
|
|
1958
2155
|
readonly insertTable: {
|
|
1959
|
-
readonly autofit: "Autofit";
|
|
2156
|
+
readonly autofit: "Autofit to contents";
|
|
1960
2157
|
readonly columnWidthLabel: "Column width";
|
|
1961
2158
|
readonly columnsLabel: "Columns";
|
|
1962
2159
|
readonly fixedWidth: "Fixed width";
|
|
1963
2160
|
readonly hoverToSelect: "Hover to select table size";
|
|
1964
2161
|
readonly insertButton: "Insert";
|
|
1965
2162
|
readonly orSpecifySize: "Or specify size";
|
|
2163
|
+
readonly plainTable: "Plain table";
|
|
1966
2164
|
readonly rowsLabel: "Rows";
|
|
1967
2165
|
readonly sizeSelector: "Table size selector";
|
|
1968
2166
|
readonly style: "Style";
|
|
1969
2167
|
readonly tableSize: "{cols} × {rows} table";
|
|
1970
|
-
readonly title: "Insert
|
|
2168
|
+
readonly title: "Insert Table";
|
|
1971
2169
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
1972
2170
|
};
|
|
1973
2171
|
readonly pageSetup: {
|
|
@@ -1992,6 +2190,16 @@ declare const CATALOGS: {
|
|
|
1992
2190
|
readonly sizeLabel: "Size";
|
|
1993
2191
|
readonly title: "Page Setup";
|
|
1994
2192
|
readonly top: "Top";
|
|
2193
|
+
readonly unitInches: "in";
|
|
2194
|
+
};
|
|
2195
|
+
readonly pasteSpecial: {
|
|
2196
|
+
readonly pasteMode: "Paste mode";
|
|
2197
|
+
readonly title: "Paste Special";
|
|
2198
|
+
};
|
|
2199
|
+
readonly splitCell: {
|
|
2200
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
2201
|
+
readonly splitButton: "Split";
|
|
2202
|
+
readonly title: "Split Cell";
|
|
1995
2203
|
};
|
|
1996
2204
|
readonly tableProperties: {
|
|
1997
2205
|
readonly alignOptions: {
|
|
@@ -2013,6 +2221,23 @@ declare const CATALOGS: {
|
|
|
2013
2221
|
readonly percentage: "Percentage";
|
|
2014
2222
|
};
|
|
2015
2223
|
};
|
|
2224
|
+
readonly watermark: {
|
|
2225
|
+
readonly color: "Color";
|
|
2226
|
+
readonly diagonal: "Diagonal";
|
|
2227
|
+
readonly font: "Font";
|
|
2228
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
2229
|
+
readonly imageTarget: "Image target";
|
|
2230
|
+
readonly noWatermark: "No watermark";
|
|
2231
|
+
readonly opacity: "Opacity";
|
|
2232
|
+
readonly pictureWatermark: "Picture watermark";
|
|
2233
|
+
readonly scale: "Scale";
|
|
2234
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
2235
|
+
readonly text: "Text";
|
|
2236
|
+
readonly textWatermark: "Text watermark";
|
|
2237
|
+
readonly title: "Watermark";
|
|
2238
|
+
readonly type: "Type";
|
|
2239
|
+
readonly washout: "Washout";
|
|
2240
|
+
};
|
|
2016
2241
|
};
|
|
2017
2242
|
readonly discardChanges: "Descartar";
|
|
2018
2243
|
readonly dismiss: "Descartar";
|
|
@@ -2085,6 +2310,17 @@ declare const CATALOGS: {
|
|
|
2085
2310
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
2086
2311
|
};
|
|
2087
2312
|
readonly formattingToolbar: "Barra de formato";
|
|
2313
|
+
readonly headerFooter: {
|
|
2314
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
2315
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
2316
|
+
readonly footer: "Footer";
|
|
2317
|
+
readonly header: "Header";
|
|
2318
|
+
readonly insertPageCount: "Insert total page count";
|
|
2319
|
+
readonly insertPageNumber: "Insert current page number";
|
|
2320
|
+
readonly options: "Options";
|
|
2321
|
+
readonly removeFooter: "Remove footer";
|
|
2322
|
+
readonly removeHeader: "Remove header";
|
|
2323
|
+
};
|
|
2088
2324
|
readonly hideDetails: "Ocultar detalles";
|
|
2089
2325
|
readonly historyGroup: "Historial";
|
|
2090
2326
|
readonly imageOverlay: {
|
|
@@ -2146,6 +2382,7 @@ declare const CATALOGS: {
|
|
|
2146
2382
|
};
|
|
2147
2383
|
readonly listFormatting: "Formato de lista";
|
|
2148
2384
|
readonly listsGroup: "Listas";
|
|
2385
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
2149
2386
|
readonly loadingDocument: "Cargando el documento…";
|
|
2150
2387
|
readonly loadingEditor: "Cargando editor...";
|
|
2151
2388
|
readonly lockFile: "Bloquear archivo";
|
|
@@ -2158,8 +2395,10 @@ declare const CATALOGS: {
|
|
|
2158
2395
|
readonly moreFormatting: "Más formato";
|
|
2159
2396
|
readonly networkError: "Error de red. Comprueba tu conexión a internet y vuelve a intentarlo.";
|
|
2160
2397
|
readonly nextChange: "Cambio siguiente";
|
|
2398
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
2161
2399
|
readonly numberedList: "Lista numerada";
|
|
2162
2400
|
readonly parseError: "No se pudo analizar el documento. Puede que esté dañado o en un formato no compatible.";
|
|
2401
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
2163
2402
|
readonly paste: "Pegar";
|
|
2164
2403
|
readonly pasteUnformatted: "Pegar sin formato";
|
|
2165
2404
|
readonly previousChange: "Cambio anterior";
|
|
@@ -2319,6 +2558,7 @@ declare const CATALOGS: {
|
|
|
2319
2558
|
readonly viewGroup: "Vista";
|
|
2320
2559
|
readonly viewer: {
|
|
2321
2560
|
readonly pageIndicator: "Page {current} of {total}";
|
|
2561
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
2322
2562
|
};
|
|
2323
2563
|
readonly zoom: {
|
|
2324
2564
|
readonly zoomIn: "Zoom in";
|
|
@@ -2364,6 +2604,7 @@ declare const CATALOGS: {
|
|
|
2364
2604
|
readonly red: "Red";
|
|
2365
2605
|
readonly yellow: "Yellow";
|
|
2366
2606
|
};
|
|
2607
|
+
readonly custom: "Custom";
|
|
2367
2608
|
readonly customColor: "Custom Color";
|
|
2368
2609
|
readonly noColor: "No color";
|
|
2369
2610
|
readonly standardColors: "Standard Colors";
|
|
@@ -2388,6 +2629,7 @@ declare const CATALOGS: {
|
|
|
2388
2629
|
readonly closeDialog: "Close";
|
|
2389
2630
|
readonly insert: "Insert";
|
|
2390
2631
|
readonly px: "px";
|
|
2632
|
+
readonly remove: "Remove";
|
|
2391
2633
|
readonly update: "Update";
|
|
2392
2634
|
};
|
|
2393
2635
|
readonly contentControlDateAriaLabel: "Vyberte datum";
|
|
@@ -2451,13 +2693,16 @@ declare const CATALOGS: {
|
|
|
2451
2693
|
readonly title: "Footnote & Endnote Properties";
|
|
2452
2694
|
};
|
|
2453
2695
|
readonly hyperlink: {
|
|
2696
|
+
readonly addressLabel: "Address";
|
|
2454
2697
|
readonly bookmarkLabel: "Bookmark";
|
|
2455
2698
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
2456
2699
|
readonly displayTextHint: "Defaults to the selected text";
|
|
2457
2700
|
readonly displayTextLabel: "Display text";
|
|
2458
2701
|
readonly displayTextPlaceholder: "Text to display";
|
|
2459
2702
|
readonly invalidUrl: "Enter a valid URL";
|
|
2703
|
+
readonly linkTo: "Link to";
|
|
2460
2704
|
readonly removeLink: "Remove link";
|
|
2705
|
+
readonly screenTipLabel: "Screen tip";
|
|
2461
2706
|
readonly tabBookmark: "Bookmark";
|
|
2462
2707
|
readonly tabWebAddress: "Web address";
|
|
2463
2708
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -2479,9 +2724,11 @@ declare const CATALOGS: {
|
|
|
2479
2724
|
readonly top: "Top";
|
|
2480
2725
|
};
|
|
2481
2726
|
readonly alignment: "Alignment";
|
|
2727
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
2482
2728
|
readonly horizontal: "Horizontal";
|
|
2483
2729
|
readonly offset: "Offset";
|
|
2484
2730
|
readonly offsetPx: "Offset (px)";
|
|
2731
|
+
readonly position: "Position";
|
|
2485
2732
|
readonly relativeOptions: {
|
|
2486
2733
|
readonly character: "Character";
|
|
2487
2734
|
readonly column: "Column";
|
|
@@ -2502,12 +2749,17 @@ declare const CATALOGS: {
|
|
|
2502
2749
|
readonly dashed: "Dashed";
|
|
2503
2750
|
readonly dotted: "Dotted";
|
|
2504
2751
|
readonly double: "Double";
|
|
2752
|
+
readonly groove: "Groove";
|
|
2753
|
+
readonly inset: "Inset";
|
|
2754
|
+
readonly outset: "Outset";
|
|
2755
|
+
readonly ridge: "Ridge";
|
|
2505
2756
|
readonly solid: "Solid";
|
|
2506
2757
|
};
|
|
2507
2758
|
readonly color: "Color";
|
|
2508
2759
|
readonly dimensions: "Dimensions";
|
|
2509
2760
|
readonly heightLabel: "Height";
|
|
2510
2761
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
2762
|
+
readonly preview: "Preview";
|
|
2511
2763
|
readonly style: "Style";
|
|
2512
2764
|
readonly textWrapping: "Text wrapping";
|
|
2513
2765
|
readonly title: "Image Properties";
|
|
@@ -2522,6 +2774,11 @@ declare const CATALOGS: {
|
|
|
2522
2774
|
readonly wrapRight: "Wrap right";
|
|
2523
2775
|
};
|
|
2524
2776
|
};
|
|
2777
|
+
readonly insertImage: {
|
|
2778
|
+
readonly altText: "Alt text";
|
|
2779
|
+
readonly imageFile: "Image file";
|
|
2780
|
+
readonly title: "Insert Image";
|
|
2781
|
+
};
|
|
2525
2782
|
readonly insertSymbol: {
|
|
2526
2783
|
readonly categories: {
|
|
2527
2784
|
readonly arrows: "Arrows";
|
|
@@ -2538,18 +2795,19 @@ declare const CATALOGS: {
|
|
|
2538
2795
|
readonly title: "Insert symbol";
|
|
2539
2796
|
};
|
|
2540
2797
|
readonly insertTable: {
|
|
2541
|
-
readonly autofit: "Autofit";
|
|
2798
|
+
readonly autofit: "Autofit to contents";
|
|
2542
2799
|
readonly columnWidthLabel: "Column width";
|
|
2543
2800
|
readonly columnsLabel: "Columns";
|
|
2544
2801
|
readonly fixedWidth: "Fixed width";
|
|
2545
2802
|
readonly hoverToSelect: "Hover to select table size";
|
|
2546
2803
|
readonly insertButton: "Insert";
|
|
2547
2804
|
readonly orSpecifySize: "Or specify size";
|
|
2805
|
+
readonly plainTable: "Plain table";
|
|
2548
2806
|
readonly rowsLabel: "Rows";
|
|
2549
2807
|
readonly sizeSelector: "Table size selector";
|
|
2550
2808
|
readonly style: "Style";
|
|
2551
2809
|
readonly tableSize: "{cols} × {rows} table";
|
|
2552
|
-
readonly title: "Insert
|
|
2810
|
+
readonly title: "Insert Table";
|
|
2553
2811
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
2554
2812
|
};
|
|
2555
2813
|
readonly pageSetup: {
|
|
@@ -2574,6 +2832,16 @@ declare const CATALOGS: {
|
|
|
2574
2832
|
readonly sizeLabel: "Size";
|
|
2575
2833
|
readonly title: "Page Setup";
|
|
2576
2834
|
readonly top: "Top";
|
|
2835
|
+
readonly unitInches: "in";
|
|
2836
|
+
};
|
|
2837
|
+
readonly pasteSpecial: {
|
|
2838
|
+
readonly pasteMode: "Paste mode";
|
|
2839
|
+
readonly title: "Paste Special";
|
|
2840
|
+
};
|
|
2841
|
+
readonly splitCell: {
|
|
2842
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
2843
|
+
readonly splitButton: "Split";
|
|
2844
|
+
readonly title: "Split Cell";
|
|
2577
2845
|
};
|
|
2578
2846
|
readonly tableProperties: {
|
|
2579
2847
|
readonly alignOptions: {
|
|
@@ -2595,6 +2863,23 @@ declare const CATALOGS: {
|
|
|
2595
2863
|
readonly percentage: "Percentage";
|
|
2596
2864
|
};
|
|
2597
2865
|
};
|
|
2866
|
+
readonly watermark: {
|
|
2867
|
+
readonly color: "Color";
|
|
2868
|
+
readonly diagonal: "Diagonal";
|
|
2869
|
+
readonly font: "Font";
|
|
2870
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
2871
|
+
readonly imageTarget: "Image target";
|
|
2872
|
+
readonly noWatermark: "No watermark";
|
|
2873
|
+
readonly opacity: "Opacity";
|
|
2874
|
+
readonly pictureWatermark: "Picture watermark";
|
|
2875
|
+
readonly scale: "Scale";
|
|
2876
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
2877
|
+
readonly text: "Text";
|
|
2878
|
+
readonly textWatermark: "Text watermark";
|
|
2879
|
+
readonly title: "Watermark";
|
|
2880
|
+
readonly type: "Type";
|
|
2881
|
+
readonly washout: "Washout";
|
|
2882
|
+
};
|
|
2598
2883
|
};
|
|
2599
2884
|
readonly discardChanges: "Zahodit";
|
|
2600
2885
|
readonly dismiss: "Zavřít";
|
|
@@ -2667,6 +2952,17 @@ declare const CATALOGS: {
|
|
|
2667
2952
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
2668
2953
|
};
|
|
2669
2954
|
readonly formattingToolbar: "Panel formátování";
|
|
2955
|
+
readonly headerFooter: {
|
|
2956
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
2957
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
2958
|
+
readonly footer: "Footer";
|
|
2959
|
+
readonly header: "Header";
|
|
2960
|
+
readonly insertPageCount: "Insert total page count";
|
|
2961
|
+
readonly insertPageNumber: "Insert current page number";
|
|
2962
|
+
readonly options: "Options";
|
|
2963
|
+
readonly removeFooter: "Remove footer";
|
|
2964
|
+
readonly removeHeader: "Remove header";
|
|
2965
|
+
};
|
|
2670
2966
|
readonly hideDetails: "Skrýt podrobnosti";
|
|
2671
2967
|
readonly historyGroup: "Historie";
|
|
2672
2968
|
readonly imageOverlay: {
|
|
@@ -2728,6 +3024,7 @@ declare const CATALOGS: {
|
|
|
2728
3024
|
};
|
|
2729
3025
|
readonly listFormatting: "Formátování seznamu";
|
|
2730
3026
|
readonly listsGroup: "Seznamy";
|
|
3027
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
2731
3028
|
readonly loadingDocument: "Načítání dokumentu…";
|
|
2732
3029
|
readonly loadingEditor: "Načítání editoru...";
|
|
2733
3030
|
readonly lockFile: "Zamknout soubor";
|
|
@@ -2740,8 +3037,10 @@ declare const CATALOGS: {
|
|
|
2740
3037
|
readonly moreFormatting: "Další formátování";
|
|
2741
3038
|
readonly networkError: "Chyba sítě. Zkontrolujte připojení k internetu a zkuste to znovu.";
|
|
2742
3039
|
readonly nextChange: "Následující změna";
|
|
3040
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
2743
3041
|
readonly numberedList: "Číslovaný seznam";
|
|
2744
3042
|
readonly parseError: "Dokument se nepodařilo zpracovat. Může být poškozen nebo v nepodporovaném formátu.";
|
|
3043
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
2745
3044
|
readonly paste: "Vložit";
|
|
2746
3045
|
readonly pasteUnformatted: "Vložit bez formátování";
|
|
2747
3046
|
readonly previousChange: "Předchozí změna";
|
|
@@ -2901,6 +3200,7 @@ declare const CATALOGS: {
|
|
|
2901
3200
|
readonly viewGroup: "Zobrazení";
|
|
2902
3201
|
readonly viewer: {
|
|
2903
3202
|
readonly pageIndicator: "Page {current} of {total}";
|
|
3203
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
2904
3204
|
};
|
|
2905
3205
|
readonly zoom: {
|
|
2906
3206
|
readonly zoomIn: "Zoom in";
|
|
@@ -2946,6 +3246,7 @@ declare const CATALOGS: {
|
|
|
2946
3246
|
readonly red: "Red";
|
|
2947
3247
|
readonly yellow: "Yellow";
|
|
2948
3248
|
};
|
|
3249
|
+
readonly custom: "Custom";
|
|
2949
3250
|
readonly customColor: "Custom Color";
|
|
2950
3251
|
readonly noColor: "No color";
|
|
2951
3252
|
readonly standardColors: "Standard Colors";
|
|
@@ -2970,6 +3271,7 @@ declare const CATALOGS: {
|
|
|
2970
3271
|
readonly closeDialog: "Close";
|
|
2971
3272
|
readonly insert: "Insert";
|
|
2972
3273
|
readonly px: "px";
|
|
3274
|
+
readonly remove: "Remove";
|
|
2973
3275
|
readonly update: "Update";
|
|
2974
3276
|
};
|
|
2975
3277
|
readonly contentControlDateAriaLabel: "اختر تاريخًا";
|
|
@@ -3033,13 +3335,16 @@ declare const CATALOGS: {
|
|
|
3033
3335
|
readonly title: "Footnote & Endnote Properties";
|
|
3034
3336
|
};
|
|
3035
3337
|
readonly hyperlink: {
|
|
3338
|
+
readonly addressLabel: "Address";
|
|
3036
3339
|
readonly bookmarkLabel: "Bookmark";
|
|
3037
3340
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
3038
3341
|
readonly displayTextHint: "Defaults to the selected text";
|
|
3039
3342
|
readonly displayTextLabel: "Display text";
|
|
3040
3343
|
readonly displayTextPlaceholder: "Text to display";
|
|
3041
3344
|
readonly invalidUrl: "Enter a valid URL";
|
|
3345
|
+
readonly linkTo: "Link to";
|
|
3042
3346
|
readonly removeLink: "Remove link";
|
|
3347
|
+
readonly screenTipLabel: "Screen tip";
|
|
3043
3348
|
readonly tabBookmark: "Bookmark";
|
|
3044
3349
|
readonly tabWebAddress: "Web address";
|
|
3045
3350
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -3061,9 +3366,11 @@ declare const CATALOGS: {
|
|
|
3061
3366
|
readonly top: "Top";
|
|
3062
3367
|
};
|
|
3063
3368
|
readonly alignment: "Alignment";
|
|
3369
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
3064
3370
|
readonly horizontal: "Horizontal";
|
|
3065
3371
|
readonly offset: "Offset";
|
|
3066
3372
|
readonly offsetPx: "Offset (px)";
|
|
3373
|
+
readonly position: "Position";
|
|
3067
3374
|
readonly relativeOptions: {
|
|
3068
3375
|
readonly character: "Character";
|
|
3069
3376
|
readonly column: "Column";
|
|
@@ -3084,12 +3391,17 @@ declare const CATALOGS: {
|
|
|
3084
3391
|
readonly dashed: "Dashed";
|
|
3085
3392
|
readonly dotted: "Dotted";
|
|
3086
3393
|
readonly double: "Double";
|
|
3394
|
+
readonly groove: "Groove";
|
|
3395
|
+
readonly inset: "Inset";
|
|
3396
|
+
readonly outset: "Outset";
|
|
3397
|
+
readonly ridge: "Ridge";
|
|
3087
3398
|
readonly solid: "Solid";
|
|
3088
3399
|
};
|
|
3089
3400
|
readonly color: "Color";
|
|
3090
3401
|
readonly dimensions: "Dimensions";
|
|
3091
3402
|
readonly heightLabel: "Height";
|
|
3092
3403
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
3404
|
+
readonly preview: "Preview";
|
|
3093
3405
|
readonly style: "Style";
|
|
3094
3406
|
readonly textWrapping: "Text wrapping";
|
|
3095
3407
|
readonly title: "Image Properties";
|
|
@@ -3104,6 +3416,11 @@ declare const CATALOGS: {
|
|
|
3104
3416
|
readonly wrapRight: "Wrap right";
|
|
3105
3417
|
};
|
|
3106
3418
|
};
|
|
3419
|
+
readonly insertImage: {
|
|
3420
|
+
readonly altText: "Alt text";
|
|
3421
|
+
readonly imageFile: "Image file";
|
|
3422
|
+
readonly title: "Insert Image";
|
|
3423
|
+
};
|
|
3107
3424
|
readonly insertSymbol: {
|
|
3108
3425
|
readonly categories: {
|
|
3109
3426
|
readonly arrows: "Arrows";
|
|
@@ -3120,18 +3437,19 @@ declare const CATALOGS: {
|
|
|
3120
3437
|
readonly title: "Insert symbol";
|
|
3121
3438
|
};
|
|
3122
3439
|
readonly insertTable: {
|
|
3123
|
-
readonly autofit: "Autofit";
|
|
3440
|
+
readonly autofit: "Autofit to contents";
|
|
3124
3441
|
readonly columnWidthLabel: "Column width";
|
|
3125
3442
|
readonly columnsLabel: "Columns";
|
|
3126
3443
|
readonly fixedWidth: "Fixed width";
|
|
3127
3444
|
readonly hoverToSelect: "Hover to select table size";
|
|
3128
3445
|
readonly insertButton: "Insert";
|
|
3129
3446
|
readonly orSpecifySize: "Or specify size";
|
|
3447
|
+
readonly plainTable: "Plain table";
|
|
3130
3448
|
readonly rowsLabel: "Rows";
|
|
3131
3449
|
readonly sizeSelector: "Table size selector";
|
|
3132
3450
|
readonly style: "Style";
|
|
3133
3451
|
readonly tableSize: "{cols} × {rows} table";
|
|
3134
|
-
readonly title: "Insert
|
|
3452
|
+
readonly title: "Insert Table";
|
|
3135
3453
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
3136
3454
|
};
|
|
3137
3455
|
readonly pageSetup: {
|
|
@@ -3156,6 +3474,16 @@ declare const CATALOGS: {
|
|
|
3156
3474
|
readonly sizeLabel: "Size";
|
|
3157
3475
|
readonly title: "Page Setup";
|
|
3158
3476
|
readonly top: "Top";
|
|
3477
|
+
readonly unitInches: "in";
|
|
3478
|
+
};
|
|
3479
|
+
readonly pasteSpecial: {
|
|
3480
|
+
readonly pasteMode: "Paste mode";
|
|
3481
|
+
readonly title: "Paste Special";
|
|
3482
|
+
};
|
|
3483
|
+
readonly splitCell: {
|
|
3484
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
3485
|
+
readonly splitButton: "Split";
|
|
3486
|
+
readonly title: "Split Cell";
|
|
3159
3487
|
};
|
|
3160
3488
|
readonly tableProperties: {
|
|
3161
3489
|
readonly alignOptions: {
|
|
@@ -3177,6 +3505,23 @@ declare const CATALOGS: {
|
|
|
3177
3505
|
readonly percentage: "Percentage";
|
|
3178
3506
|
};
|
|
3179
3507
|
};
|
|
3508
|
+
readonly watermark: {
|
|
3509
|
+
readonly color: "Color";
|
|
3510
|
+
readonly diagonal: "Diagonal";
|
|
3511
|
+
readonly font: "Font";
|
|
3512
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
3513
|
+
readonly imageTarget: "Image target";
|
|
3514
|
+
readonly noWatermark: "No watermark";
|
|
3515
|
+
readonly opacity: "Opacity";
|
|
3516
|
+
readonly pictureWatermark: "Picture watermark";
|
|
3517
|
+
readonly scale: "Scale";
|
|
3518
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
3519
|
+
readonly text: "Text";
|
|
3520
|
+
readonly textWatermark: "Text watermark";
|
|
3521
|
+
readonly title: "Watermark";
|
|
3522
|
+
readonly type: "Type";
|
|
3523
|
+
readonly washout: "Washout";
|
|
3524
|
+
};
|
|
3180
3525
|
};
|
|
3181
3526
|
readonly discardChanges: "تجاهل";
|
|
3182
3527
|
readonly dismiss: "تجاهل";
|
|
@@ -3249,6 +3594,17 @@ declare const CATALOGS: {
|
|
|
3249
3594
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
3250
3595
|
};
|
|
3251
3596
|
readonly formattingToolbar: "شريط أدوات التنسيق";
|
|
3597
|
+
readonly headerFooter: {
|
|
3598
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
3599
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
3600
|
+
readonly footer: "Footer";
|
|
3601
|
+
readonly header: "Header";
|
|
3602
|
+
readonly insertPageCount: "Insert total page count";
|
|
3603
|
+
readonly insertPageNumber: "Insert current page number";
|
|
3604
|
+
readonly options: "Options";
|
|
3605
|
+
readonly removeFooter: "Remove footer";
|
|
3606
|
+
readonly removeHeader: "Remove header";
|
|
3607
|
+
};
|
|
3252
3608
|
readonly hideDetails: "إخفاء التفاصيل";
|
|
3253
3609
|
readonly historyGroup: "السجل";
|
|
3254
3610
|
readonly imageOverlay: {
|
|
@@ -3310,6 +3666,7 @@ declare const CATALOGS: {
|
|
|
3310
3666
|
};
|
|
3311
3667
|
readonly listFormatting: "تنسيق القائمة";
|
|
3312
3668
|
readonly listsGroup: "القوائم";
|
|
3669
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
3313
3670
|
readonly loadingDocument: "جارٍ تحميل المستند...";
|
|
3314
3671
|
readonly loadingEditor: "جارٍ تحميل المحرر...";
|
|
3315
3672
|
readonly lockFile: "قفل الملف";
|
|
@@ -3322,8 +3679,10 @@ declare const CATALOGS: {
|
|
|
3322
3679
|
readonly moreFormatting: "المزيد من التنسيق";
|
|
3323
3680
|
readonly networkError: "خطأ في الشبكة. يرجى التحقق من اتصالك بالإنترنت والمحاولة مرة أخرى.";
|
|
3324
3681
|
readonly nextChange: "التغيير التالي";
|
|
3682
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
3325
3683
|
readonly numberedList: "قائمة مرقّمة";
|
|
3326
3684
|
readonly parseError: "تعذّر تحليل المستند. قد يكون تالفًا أو بتنسيق غير مدعوم.";
|
|
3685
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
3327
3686
|
readonly paste: "لصق";
|
|
3328
3687
|
readonly pasteUnformatted: "لصق بدون تنسيق";
|
|
3329
3688
|
readonly previousChange: "التغيير السابق";
|
|
@@ -3483,6 +3842,7 @@ declare const CATALOGS: {
|
|
|
3483
3842
|
readonly viewGroup: "عرض";
|
|
3484
3843
|
readonly viewer: {
|
|
3485
3844
|
readonly pageIndicator: "Page {current} of {total}";
|
|
3845
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
3486
3846
|
};
|
|
3487
3847
|
readonly zoom: {
|
|
3488
3848
|
readonly zoomIn: "Zoom in";
|
|
@@ -3528,6 +3888,7 @@ declare const CATALOGS: {
|
|
|
3528
3888
|
readonly red: "Red";
|
|
3529
3889
|
readonly yellow: "Yellow";
|
|
3530
3890
|
};
|
|
3891
|
+
readonly custom: "Custom";
|
|
3531
3892
|
readonly customColor: "Custom Color";
|
|
3532
3893
|
readonly noColor: "No color";
|
|
3533
3894
|
readonly standardColors: "Standard Colors";
|
|
@@ -3552,6 +3913,7 @@ declare const CATALOGS: {
|
|
|
3552
3913
|
readonly closeDialog: "Close";
|
|
3553
3914
|
readonly insert: "Insert";
|
|
3554
3915
|
readonly px: "px";
|
|
3916
|
+
readonly remove: "Remove";
|
|
3555
3917
|
readonly update: "Update";
|
|
3556
3918
|
};
|
|
3557
3919
|
readonly contentControlDateAriaLabel: "Vali kuupäev";
|
|
@@ -3615,13 +3977,16 @@ declare const CATALOGS: {
|
|
|
3615
3977
|
readonly title: "Footnote & Endnote Properties";
|
|
3616
3978
|
};
|
|
3617
3979
|
readonly hyperlink: {
|
|
3980
|
+
readonly addressLabel: "Address";
|
|
3618
3981
|
readonly bookmarkLabel: "Bookmark";
|
|
3619
3982
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
3620
3983
|
readonly displayTextHint: "Defaults to the selected text";
|
|
3621
3984
|
readonly displayTextLabel: "Display text";
|
|
3622
3985
|
readonly displayTextPlaceholder: "Text to display";
|
|
3623
3986
|
readonly invalidUrl: "Enter a valid URL";
|
|
3987
|
+
readonly linkTo: "Link to";
|
|
3624
3988
|
readonly removeLink: "Remove link";
|
|
3989
|
+
readonly screenTipLabel: "Screen tip";
|
|
3625
3990
|
readonly tabBookmark: "Bookmark";
|
|
3626
3991
|
readonly tabWebAddress: "Web address";
|
|
3627
3992
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -3643,9 +4008,11 @@ declare const CATALOGS: {
|
|
|
3643
4008
|
readonly top: "Top";
|
|
3644
4009
|
};
|
|
3645
4010
|
readonly alignment: "Alignment";
|
|
4011
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
3646
4012
|
readonly horizontal: "Horizontal";
|
|
3647
4013
|
readonly offset: "Offset";
|
|
3648
4014
|
readonly offsetPx: "Offset (px)";
|
|
4015
|
+
readonly position: "Position";
|
|
3649
4016
|
readonly relativeOptions: {
|
|
3650
4017
|
readonly character: "Character";
|
|
3651
4018
|
readonly column: "Column";
|
|
@@ -3666,12 +4033,17 @@ declare const CATALOGS: {
|
|
|
3666
4033
|
readonly dashed: "Dashed";
|
|
3667
4034
|
readonly dotted: "Dotted";
|
|
3668
4035
|
readonly double: "Double";
|
|
4036
|
+
readonly groove: "Groove";
|
|
4037
|
+
readonly inset: "Inset";
|
|
4038
|
+
readonly outset: "Outset";
|
|
4039
|
+
readonly ridge: "Ridge";
|
|
3669
4040
|
readonly solid: "Solid";
|
|
3670
4041
|
};
|
|
3671
4042
|
readonly color: "Color";
|
|
3672
4043
|
readonly dimensions: "Dimensions";
|
|
3673
4044
|
readonly heightLabel: "Height";
|
|
3674
4045
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
4046
|
+
readonly preview: "Preview";
|
|
3675
4047
|
readonly style: "Style";
|
|
3676
4048
|
readonly textWrapping: "Text wrapping";
|
|
3677
4049
|
readonly title: "Image Properties";
|
|
@@ -3686,6 +4058,11 @@ declare const CATALOGS: {
|
|
|
3686
4058
|
readonly wrapRight: "Wrap right";
|
|
3687
4059
|
};
|
|
3688
4060
|
};
|
|
4061
|
+
readonly insertImage: {
|
|
4062
|
+
readonly altText: "Alt text";
|
|
4063
|
+
readonly imageFile: "Image file";
|
|
4064
|
+
readonly title: "Insert Image";
|
|
4065
|
+
};
|
|
3689
4066
|
readonly insertSymbol: {
|
|
3690
4067
|
readonly categories: {
|
|
3691
4068
|
readonly arrows: "Arrows";
|
|
@@ -3702,18 +4079,19 @@ declare const CATALOGS: {
|
|
|
3702
4079
|
readonly title: "Insert symbol";
|
|
3703
4080
|
};
|
|
3704
4081
|
readonly insertTable: {
|
|
3705
|
-
readonly autofit: "Autofit";
|
|
4082
|
+
readonly autofit: "Autofit to contents";
|
|
3706
4083
|
readonly columnWidthLabel: "Column width";
|
|
3707
4084
|
readonly columnsLabel: "Columns";
|
|
3708
4085
|
readonly fixedWidth: "Fixed width";
|
|
3709
4086
|
readonly hoverToSelect: "Hover to select table size";
|
|
3710
4087
|
readonly insertButton: "Insert";
|
|
3711
4088
|
readonly orSpecifySize: "Or specify size";
|
|
4089
|
+
readonly plainTable: "Plain table";
|
|
3712
4090
|
readonly rowsLabel: "Rows";
|
|
3713
4091
|
readonly sizeSelector: "Table size selector";
|
|
3714
4092
|
readonly style: "Style";
|
|
3715
4093
|
readonly tableSize: "{cols} × {rows} table";
|
|
3716
|
-
readonly title: "Insert
|
|
4094
|
+
readonly title: "Insert Table";
|
|
3717
4095
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
3718
4096
|
};
|
|
3719
4097
|
readonly pageSetup: {
|
|
@@ -3738,6 +4116,16 @@ declare const CATALOGS: {
|
|
|
3738
4116
|
readonly sizeLabel: "Size";
|
|
3739
4117
|
readonly title: "Page Setup";
|
|
3740
4118
|
readonly top: "Top";
|
|
4119
|
+
readonly unitInches: "in";
|
|
4120
|
+
};
|
|
4121
|
+
readonly pasteSpecial: {
|
|
4122
|
+
readonly pasteMode: "Paste mode";
|
|
4123
|
+
readonly title: "Paste Special";
|
|
4124
|
+
};
|
|
4125
|
+
readonly splitCell: {
|
|
4126
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
4127
|
+
readonly splitButton: "Split";
|
|
4128
|
+
readonly title: "Split Cell";
|
|
3741
4129
|
};
|
|
3742
4130
|
readonly tableProperties: {
|
|
3743
4131
|
readonly alignOptions: {
|
|
@@ -3759,6 +4147,23 @@ declare const CATALOGS: {
|
|
|
3759
4147
|
readonly percentage: "Percentage";
|
|
3760
4148
|
};
|
|
3761
4149
|
};
|
|
4150
|
+
readonly watermark: {
|
|
4151
|
+
readonly color: "Color";
|
|
4152
|
+
readonly diagonal: "Diagonal";
|
|
4153
|
+
readonly font: "Font";
|
|
4154
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
4155
|
+
readonly imageTarget: "Image target";
|
|
4156
|
+
readonly noWatermark: "No watermark";
|
|
4157
|
+
readonly opacity: "Opacity";
|
|
4158
|
+
readonly pictureWatermark: "Picture watermark";
|
|
4159
|
+
readonly scale: "Scale";
|
|
4160
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
4161
|
+
readonly text: "Text";
|
|
4162
|
+
readonly textWatermark: "Text watermark";
|
|
4163
|
+
readonly title: "Watermark";
|
|
4164
|
+
readonly type: "Type";
|
|
4165
|
+
readonly washout: "Washout";
|
|
4166
|
+
};
|
|
3762
4167
|
};
|
|
3763
4168
|
readonly discardChanges: "Loobu";
|
|
3764
4169
|
readonly dismiss: "Sulge";
|
|
@@ -3831,6 +4236,17 @@ declare const CATALOGS: {
|
|
|
3831
4236
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
3832
4237
|
};
|
|
3833
4238
|
readonly formattingToolbar: "Vormindusriba";
|
|
4239
|
+
readonly headerFooter: {
|
|
4240
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
4241
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
4242
|
+
readonly footer: "Footer";
|
|
4243
|
+
readonly header: "Header";
|
|
4244
|
+
readonly insertPageCount: "Insert total page count";
|
|
4245
|
+
readonly insertPageNumber: "Insert current page number";
|
|
4246
|
+
readonly options: "Options";
|
|
4247
|
+
readonly removeFooter: "Remove footer";
|
|
4248
|
+
readonly removeHeader: "Remove header";
|
|
4249
|
+
};
|
|
3834
4250
|
readonly hideDetails: "Peida üksikasjad";
|
|
3835
4251
|
readonly historyGroup: "Ajalugu";
|
|
3836
4252
|
readonly imageOverlay: {
|
|
@@ -3892,6 +4308,7 @@ declare const CATALOGS: {
|
|
|
3892
4308
|
};
|
|
3893
4309
|
readonly listFormatting: "Loendi vormindus";
|
|
3894
4310
|
readonly listsGroup: "Loendid";
|
|
4311
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
3895
4312
|
readonly loadingDocument: "Dokumendi laadimine...";
|
|
3896
4313
|
readonly loadingEditor: "Redaktori laadimine...";
|
|
3897
4314
|
readonly lockFile: "Lukusta fail";
|
|
@@ -3904,8 +4321,10 @@ declare const CATALOGS: {
|
|
|
3904
4321
|
readonly moreFormatting: "Veel vormindust";
|
|
3905
4322
|
readonly networkError: "Võrguviga. Kontrolli internetiühendust ja proovi uuesti.";
|
|
3906
4323
|
readonly nextChange: "Järgmine muudatus";
|
|
4324
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
3907
4325
|
readonly numberedList: "Nummerdatud loend";
|
|
3908
4326
|
readonly parseError: "Dokumenti ei õnnestunud sõeluda. See võib olla rikutud või toetamata vormingus.";
|
|
4327
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
3909
4328
|
readonly paste: "Kleebi";
|
|
3910
4329
|
readonly pasteUnformatted: "Kleebi vorminduseta";
|
|
3911
4330
|
readonly previousChange: "Eelmine muudatus";
|
|
@@ -4065,6 +4484,7 @@ declare const CATALOGS: {
|
|
|
4065
4484
|
readonly viewGroup: "Vaade";
|
|
4066
4485
|
readonly viewer: {
|
|
4067
4486
|
readonly pageIndicator: "Page {current} of {total}";
|
|
4487
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
4068
4488
|
};
|
|
4069
4489
|
readonly zoom: {
|
|
4070
4490
|
readonly zoomIn: "Zoom in";
|
|
@@ -4110,6 +4530,7 @@ declare const CATALOGS: {
|
|
|
4110
4530
|
readonly red: "Red";
|
|
4111
4531
|
readonly yellow: "Yellow";
|
|
4112
4532
|
};
|
|
4533
|
+
readonly custom: "Custom";
|
|
4113
4534
|
readonly customColor: "Custom Color";
|
|
4114
4535
|
readonly noColor: "No color";
|
|
4115
4536
|
readonly standardColors: "Standard Colors";
|
|
@@ -4134,6 +4555,7 @@ declare const CATALOGS: {
|
|
|
4134
4555
|
readonly closeDialog: "Close";
|
|
4135
4556
|
readonly insert: "Insert";
|
|
4136
4557
|
readonly px: "px";
|
|
4558
|
+
readonly remove: "Remove";
|
|
4137
4559
|
readonly update: "Update";
|
|
4138
4560
|
};
|
|
4139
4561
|
readonly contentControlDateAriaLabel: "Pick a date";
|
|
@@ -4197,13 +4619,16 @@ declare const CATALOGS: {
|
|
|
4197
4619
|
readonly title: "Footnote & Endnote Properties";
|
|
4198
4620
|
};
|
|
4199
4621
|
readonly hyperlink: {
|
|
4622
|
+
readonly addressLabel: "Address";
|
|
4200
4623
|
readonly bookmarkLabel: "Bookmark";
|
|
4201
4624
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
4202
4625
|
readonly displayTextHint: "Defaults to the selected text";
|
|
4203
4626
|
readonly displayTextLabel: "Display text";
|
|
4204
4627
|
readonly displayTextPlaceholder: "Text to display";
|
|
4205
4628
|
readonly invalidUrl: "Enter a valid URL";
|
|
4629
|
+
readonly linkTo: "Link to";
|
|
4206
4630
|
readonly removeLink: "Remove link";
|
|
4631
|
+
readonly screenTipLabel: "Screen tip";
|
|
4207
4632
|
readonly tabBookmark: "Bookmark";
|
|
4208
4633
|
readonly tabWebAddress: "Web address";
|
|
4209
4634
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -4225,9 +4650,11 @@ declare const CATALOGS: {
|
|
|
4225
4650
|
readonly top: "Top";
|
|
4226
4651
|
};
|
|
4227
4652
|
readonly alignment: "Alignment";
|
|
4653
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
4228
4654
|
readonly horizontal: "Horizontal";
|
|
4229
4655
|
readonly offset: "Offset";
|
|
4230
4656
|
readonly offsetPx: "Offset (px)";
|
|
4657
|
+
readonly position: "Position";
|
|
4231
4658
|
readonly relativeOptions: {
|
|
4232
4659
|
readonly character: "Character";
|
|
4233
4660
|
readonly column: "Column";
|
|
@@ -4248,12 +4675,17 @@ declare const CATALOGS: {
|
|
|
4248
4675
|
readonly dashed: "Dashed";
|
|
4249
4676
|
readonly dotted: "Dotted";
|
|
4250
4677
|
readonly double: "Double";
|
|
4678
|
+
readonly groove: "Groove";
|
|
4679
|
+
readonly inset: "Inset";
|
|
4680
|
+
readonly outset: "Outset";
|
|
4681
|
+
readonly ridge: "Ridge";
|
|
4251
4682
|
readonly solid: "Solid";
|
|
4252
4683
|
};
|
|
4253
4684
|
readonly color: "Color";
|
|
4254
4685
|
readonly dimensions: "Dimensions";
|
|
4255
4686
|
readonly heightLabel: "Height";
|
|
4256
4687
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
4688
|
+
readonly preview: "Preview";
|
|
4257
4689
|
readonly style: "Style";
|
|
4258
4690
|
readonly textWrapping: "Text wrapping";
|
|
4259
4691
|
readonly title: "Image Properties";
|
|
@@ -4268,6 +4700,11 @@ declare const CATALOGS: {
|
|
|
4268
4700
|
readonly wrapRight: "Wrap right";
|
|
4269
4701
|
};
|
|
4270
4702
|
};
|
|
4703
|
+
readonly insertImage: {
|
|
4704
|
+
readonly altText: "Alt text";
|
|
4705
|
+
readonly imageFile: "Image file";
|
|
4706
|
+
readonly title: "Insert Image";
|
|
4707
|
+
};
|
|
4271
4708
|
readonly insertSymbol: {
|
|
4272
4709
|
readonly categories: {
|
|
4273
4710
|
readonly arrows: "Arrows";
|
|
@@ -4284,18 +4721,19 @@ declare const CATALOGS: {
|
|
|
4284
4721
|
readonly title: "Insert symbol";
|
|
4285
4722
|
};
|
|
4286
4723
|
readonly insertTable: {
|
|
4287
|
-
readonly autofit: "Autofit";
|
|
4724
|
+
readonly autofit: "Autofit to contents";
|
|
4288
4725
|
readonly columnWidthLabel: "Column width";
|
|
4289
4726
|
readonly columnsLabel: "Columns";
|
|
4290
4727
|
readonly fixedWidth: "Fixed width";
|
|
4291
4728
|
readonly hoverToSelect: "Hover to select table size";
|
|
4292
4729
|
readonly insertButton: "Insert";
|
|
4293
4730
|
readonly orSpecifySize: "Or specify size";
|
|
4731
|
+
readonly plainTable: "Plain table";
|
|
4294
4732
|
readonly rowsLabel: "Rows";
|
|
4295
4733
|
readonly sizeSelector: "Table size selector";
|
|
4296
4734
|
readonly style: "Style";
|
|
4297
4735
|
readonly tableSize: "{cols} × {rows} table";
|
|
4298
|
-
readonly title: "Insert
|
|
4736
|
+
readonly title: "Insert Table";
|
|
4299
4737
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
4300
4738
|
};
|
|
4301
4739
|
readonly pageSetup: {
|
|
@@ -4320,6 +4758,16 @@ declare const CATALOGS: {
|
|
|
4320
4758
|
readonly sizeLabel: "Size";
|
|
4321
4759
|
readonly title: "Page Setup";
|
|
4322
4760
|
readonly top: "Top";
|
|
4761
|
+
readonly unitInches: "in";
|
|
4762
|
+
};
|
|
4763
|
+
readonly pasteSpecial: {
|
|
4764
|
+
readonly pasteMode: "Paste mode";
|
|
4765
|
+
readonly title: "Paste Special";
|
|
4766
|
+
};
|
|
4767
|
+
readonly splitCell: {
|
|
4768
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
4769
|
+
readonly splitButton: "Split";
|
|
4770
|
+
readonly title: "Split Cell";
|
|
4323
4771
|
};
|
|
4324
4772
|
readonly tableProperties: {
|
|
4325
4773
|
readonly alignOptions: {
|
|
@@ -4341,6 +4789,23 @@ declare const CATALOGS: {
|
|
|
4341
4789
|
readonly percentage: "Percentage";
|
|
4342
4790
|
};
|
|
4343
4791
|
};
|
|
4792
|
+
readonly watermark: {
|
|
4793
|
+
readonly color: "Color";
|
|
4794
|
+
readonly diagonal: "Diagonal";
|
|
4795
|
+
readonly font: "Font";
|
|
4796
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
4797
|
+
readonly imageTarget: "Image target";
|
|
4798
|
+
readonly noWatermark: "No watermark";
|
|
4799
|
+
readonly opacity: "Opacity";
|
|
4800
|
+
readonly pictureWatermark: "Picture watermark";
|
|
4801
|
+
readonly scale: "Scale";
|
|
4802
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
4803
|
+
readonly text: "Text";
|
|
4804
|
+
readonly textWatermark: "Text watermark";
|
|
4805
|
+
readonly title: "Watermark";
|
|
4806
|
+
readonly type: "Type";
|
|
4807
|
+
readonly washout: "Washout";
|
|
4808
|
+
};
|
|
4344
4809
|
};
|
|
4345
4810
|
readonly discardChanges: "Discard";
|
|
4346
4811
|
readonly dismiss: "סגירה";
|
|
@@ -4413,6 +4878,17 @@ declare const CATALOGS: {
|
|
|
4413
4878
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
4414
4879
|
};
|
|
4415
4880
|
readonly formattingToolbar: "סרגל כלים לעיצוב";
|
|
4881
|
+
readonly headerFooter: {
|
|
4882
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
4883
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
4884
|
+
readonly footer: "Footer";
|
|
4885
|
+
readonly header: "Header";
|
|
4886
|
+
readonly insertPageCount: "Insert total page count";
|
|
4887
|
+
readonly insertPageNumber: "Insert current page number";
|
|
4888
|
+
readonly options: "Options";
|
|
4889
|
+
readonly removeFooter: "Remove footer";
|
|
4890
|
+
readonly removeHeader: "Remove header";
|
|
4891
|
+
};
|
|
4416
4892
|
readonly hideDetails: "הסתר פרטים";
|
|
4417
4893
|
readonly historyGroup: "היסטוריה";
|
|
4418
4894
|
readonly imageOverlay: {
|
|
@@ -4474,6 +4950,7 @@ declare const CATALOGS: {
|
|
|
4474
4950
|
};
|
|
4475
4951
|
readonly listFormatting: "עיצוב רשימה";
|
|
4476
4952
|
readonly listsGroup: "Lists";
|
|
4953
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
4477
4954
|
readonly loadingDocument: "טוען מסמך...";
|
|
4478
4955
|
readonly loadingEditor: "Loading editor...";
|
|
4479
4956
|
readonly lockFile: "Lock file";
|
|
@@ -4486,8 +4963,10 @@ declare const CATALOGS: {
|
|
|
4486
4963
|
readonly moreFormatting: "More formatting";
|
|
4487
4964
|
readonly networkError: "Network error. Please check your internet connection and try again.";
|
|
4488
4965
|
readonly nextChange: "Next Change";
|
|
4966
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
4489
4967
|
readonly numberedList: "רשימה ממוספרת";
|
|
4490
4968
|
readonly parseError: "The document could not be parsed. It may be corrupted or in an unsupported format.";
|
|
4969
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
4491
4970
|
readonly paste: "הדבק";
|
|
4492
4971
|
readonly pasteUnformatted: "הדבק ללא עיצוב";
|
|
4493
4972
|
readonly previousChange: "Previous Change";
|
|
@@ -4647,6 +5126,7 @@ declare const CATALOGS: {
|
|
|
4647
5126
|
readonly viewGroup: "תצוגה";
|
|
4648
5127
|
readonly viewer: {
|
|
4649
5128
|
readonly pageIndicator: "Page {current} of {total}";
|
|
5129
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
4650
5130
|
};
|
|
4651
5131
|
readonly zoom: {
|
|
4652
5132
|
readonly zoomIn: "Zoom in";
|
|
@@ -4692,6 +5172,7 @@ declare const CATALOGS: {
|
|
|
4692
5172
|
readonly red: "Red";
|
|
4693
5173
|
readonly yellow: "Yellow";
|
|
4694
5174
|
};
|
|
5175
|
+
readonly custom: "Custom";
|
|
4695
5176
|
readonly customColor: "Custom Color";
|
|
4696
5177
|
readonly noColor: "No color";
|
|
4697
5178
|
readonly standardColors: "Standard Colors";
|
|
@@ -4716,6 +5197,7 @@ declare const CATALOGS: {
|
|
|
4716
5197
|
readonly closeDialog: "Close";
|
|
4717
5198
|
readonly insert: "Insert";
|
|
4718
5199
|
readonly px: "px";
|
|
5200
|
+
readonly remove: "Remove";
|
|
4719
5201
|
readonly update: "Update";
|
|
4720
5202
|
};
|
|
4721
5203
|
readonly contentControlDateAriaLabel: "Pick a date";
|
|
@@ -4779,13 +5261,16 @@ declare const CATALOGS: {
|
|
|
4779
5261
|
readonly title: "Footnote & Endnote Properties";
|
|
4780
5262
|
};
|
|
4781
5263
|
readonly hyperlink: {
|
|
5264
|
+
readonly addressLabel: "Address";
|
|
4782
5265
|
readonly bookmarkLabel: "Bookmark";
|
|
4783
5266
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
4784
5267
|
readonly displayTextHint: "Defaults to the selected text";
|
|
4785
5268
|
readonly displayTextLabel: "Display text";
|
|
4786
5269
|
readonly displayTextPlaceholder: "Text to display";
|
|
4787
5270
|
readonly invalidUrl: "Enter a valid URL";
|
|
5271
|
+
readonly linkTo: "Link to";
|
|
4788
5272
|
readonly removeLink: "Remove link";
|
|
5273
|
+
readonly screenTipLabel: "Screen tip";
|
|
4789
5274
|
readonly tabBookmark: "Bookmark";
|
|
4790
5275
|
readonly tabWebAddress: "Web address";
|
|
4791
5276
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -4807,9 +5292,11 @@ declare const CATALOGS: {
|
|
|
4807
5292
|
readonly top: "Top";
|
|
4808
5293
|
};
|
|
4809
5294
|
readonly alignment: "Alignment";
|
|
5295
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
4810
5296
|
readonly horizontal: "Horizontal";
|
|
4811
5297
|
readonly offset: "Offset";
|
|
4812
5298
|
readonly offsetPx: "Offset (px)";
|
|
5299
|
+
readonly position: "Position";
|
|
4813
5300
|
readonly relativeOptions: {
|
|
4814
5301
|
readonly character: "Character";
|
|
4815
5302
|
readonly column: "Column";
|
|
@@ -4830,12 +5317,17 @@ declare const CATALOGS: {
|
|
|
4830
5317
|
readonly dashed: "Dashed";
|
|
4831
5318
|
readonly dotted: "Dotted";
|
|
4832
5319
|
readonly double: "Double";
|
|
5320
|
+
readonly groove: "Groove";
|
|
5321
|
+
readonly inset: "Inset";
|
|
5322
|
+
readonly outset: "Outset";
|
|
5323
|
+
readonly ridge: "Ridge";
|
|
4833
5324
|
readonly solid: "Solid";
|
|
4834
5325
|
};
|
|
4835
5326
|
readonly color: "Color";
|
|
4836
5327
|
readonly dimensions: "Dimensions";
|
|
4837
5328
|
readonly heightLabel: "Height";
|
|
4838
5329
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
5330
|
+
readonly preview: "Preview";
|
|
4839
5331
|
readonly style: "Style";
|
|
4840
5332
|
readonly textWrapping: "Text wrapping";
|
|
4841
5333
|
readonly title: "Image Properties";
|
|
@@ -4850,6 +5342,11 @@ declare const CATALOGS: {
|
|
|
4850
5342
|
readonly wrapRight: "Wrap right";
|
|
4851
5343
|
};
|
|
4852
5344
|
};
|
|
5345
|
+
readonly insertImage: {
|
|
5346
|
+
readonly altText: "Alt text";
|
|
5347
|
+
readonly imageFile: "Image file";
|
|
5348
|
+
readonly title: "Insert Image";
|
|
5349
|
+
};
|
|
4853
5350
|
readonly insertSymbol: {
|
|
4854
5351
|
readonly categories: {
|
|
4855
5352
|
readonly arrows: "Arrows";
|
|
@@ -4866,18 +5363,19 @@ declare const CATALOGS: {
|
|
|
4866
5363
|
readonly title: "Insert symbol";
|
|
4867
5364
|
};
|
|
4868
5365
|
readonly insertTable: {
|
|
4869
|
-
readonly autofit: "Autofit";
|
|
5366
|
+
readonly autofit: "Autofit to contents";
|
|
4870
5367
|
readonly columnWidthLabel: "Column width";
|
|
4871
5368
|
readonly columnsLabel: "Columns";
|
|
4872
5369
|
readonly fixedWidth: "Fixed width";
|
|
4873
5370
|
readonly hoverToSelect: "Hover to select table size";
|
|
4874
5371
|
readonly insertButton: "Insert";
|
|
4875
5372
|
readonly orSpecifySize: "Or specify size";
|
|
5373
|
+
readonly plainTable: "Plain table";
|
|
4876
5374
|
readonly rowsLabel: "Rows";
|
|
4877
5375
|
readonly sizeSelector: "Table size selector";
|
|
4878
5376
|
readonly style: "Style";
|
|
4879
5377
|
readonly tableSize: "{cols} × {rows} table";
|
|
4880
|
-
readonly title: "Insert
|
|
5378
|
+
readonly title: "Insert Table";
|
|
4881
5379
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
4882
5380
|
};
|
|
4883
5381
|
readonly pageSetup: {
|
|
@@ -4902,6 +5400,16 @@ declare const CATALOGS: {
|
|
|
4902
5400
|
readonly sizeLabel: "Size";
|
|
4903
5401
|
readonly title: "Page Setup";
|
|
4904
5402
|
readonly top: "Top";
|
|
5403
|
+
readonly unitInches: "in";
|
|
5404
|
+
};
|
|
5405
|
+
readonly pasteSpecial: {
|
|
5406
|
+
readonly pasteMode: "Paste mode";
|
|
5407
|
+
readonly title: "Paste Special";
|
|
5408
|
+
};
|
|
5409
|
+
readonly splitCell: {
|
|
5410
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
5411
|
+
readonly splitButton: "Split";
|
|
5412
|
+
readonly title: "Split Cell";
|
|
4905
5413
|
};
|
|
4906
5414
|
readonly tableProperties: {
|
|
4907
5415
|
readonly alignOptions: {
|
|
@@ -4923,6 +5431,23 @@ declare const CATALOGS: {
|
|
|
4923
5431
|
readonly percentage: "Percentage";
|
|
4924
5432
|
};
|
|
4925
5433
|
};
|
|
5434
|
+
readonly watermark: {
|
|
5435
|
+
readonly color: "Color";
|
|
5436
|
+
readonly diagonal: "Diagonal";
|
|
5437
|
+
readonly font: "Font";
|
|
5438
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
5439
|
+
readonly imageTarget: "Image target";
|
|
5440
|
+
readonly noWatermark: "No watermark";
|
|
5441
|
+
readonly opacity: "Opacity";
|
|
5442
|
+
readonly pictureWatermark: "Picture watermark";
|
|
5443
|
+
readonly scale: "Scale";
|
|
5444
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
5445
|
+
readonly text: "Text";
|
|
5446
|
+
readonly textWatermark: "Text watermark";
|
|
5447
|
+
readonly title: "Watermark";
|
|
5448
|
+
readonly type: "Type";
|
|
5449
|
+
readonly washout: "Washout";
|
|
5450
|
+
};
|
|
4926
5451
|
};
|
|
4927
5452
|
readonly discardChanges: "Discard";
|
|
4928
5453
|
readonly dismiss: "खारिज करें";
|
|
@@ -4995,6 +5520,17 @@ declare const CATALOGS: {
|
|
|
4995
5520
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
4996
5521
|
};
|
|
4997
5522
|
readonly formattingToolbar: "प्रारूपण टूलबार";
|
|
5523
|
+
readonly headerFooter: {
|
|
5524
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
5525
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
5526
|
+
readonly footer: "Footer";
|
|
5527
|
+
readonly header: "Header";
|
|
5528
|
+
readonly insertPageCount: "Insert total page count";
|
|
5529
|
+
readonly insertPageNumber: "Insert current page number";
|
|
5530
|
+
readonly options: "Options";
|
|
5531
|
+
readonly removeFooter: "Remove footer";
|
|
5532
|
+
readonly removeHeader: "Remove header";
|
|
5533
|
+
};
|
|
4998
5534
|
readonly hideDetails: "विवरण छिपाएं";
|
|
4999
5535
|
readonly historyGroup: "इतिहास";
|
|
5000
5536
|
readonly imageOverlay: {
|
|
@@ -5056,6 +5592,7 @@ declare const CATALOGS: {
|
|
|
5056
5592
|
};
|
|
5057
5593
|
readonly listFormatting: "सूची प्रारूपण";
|
|
5058
5594
|
readonly listsGroup: "Lists";
|
|
5595
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
5059
5596
|
readonly loadingDocument: "दस्तावेज़ लोड हो रहा है...";
|
|
5060
5597
|
readonly loadingEditor: "Loading editor...";
|
|
5061
5598
|
readonly lockFile: "Lock file";
|
|
@@ -5068,8 +5605,10 @@ declare const CATALOGS: {
|
|
|
5068
5605
|
readonly moreFormatting: "More formatting";
|
|
5069
5606
|
readonly networkError: "Network error. Please check your internet connection and try again.";
|
|
5070
5607
|
readonly nextChange: "Next Change";
|
|
5608
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
5071
5609
|
readonly numberedList: "नंबर वाली सूची";
|
|
5072
5610
|
readonly parseError: "The document could not be parsed. It may be corrupted or in an unsupported format.";
|
|
5611
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
5073
5612
|
readonly paste: "पेस्ट करें";
|
|
5074
5613
|
readonly pasteUnformatted: "बिना प्रारूपण के पेस्ट करें";
|
|
5075
5614
|
readonly previousChange: "Previous Change";
|
|
@@ -5229,6 +5768,7 @@ declare const CATALOGS: {
|
|
|
5229
5768
|
readonly viewGroup: "देखें";
|
|
5230
5769
|
readonly viewer: {
|
|
5231
5770
|
readonly pageIndicator: "Page {current} of {total}";
|
|
5771
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
5232
5772
|
};
|
|
5233
5773
|
readonly zoom: {
|
|
5234
5774
|
readonly zoomIn: "Zoom in";
|
|
@@ -5274,6 +5814,7 @@ declare const CATALOGS: {
|
|
|
5274
5814
|
readonly red: "Red";
|
|
5275
5815
|
readonly yellow: "Yellow";
|
|
5276
5816
|
};
|
|
5817
|
+
readonly custom: "Custom";
|
|
5277
5818
|
readonly customColor: "Custom Color";
|
|
5278
5819
|
readonly noColor: "No color";
|
|
5279
5820
|
readonly standardColors: "Standard Colors";
|
|
@@ -5298,6 +5839,7 @@ declare const CATALOGS: {
|
|
|
5298
5839
|
readonly closeDialog: "Close";
|
|
5299
5840
|
readonly insert: "Insert";
|
|
5300
5841
|
readonly px: "px";
|
|
5842
|
+
readonly remove: "Remove";
|
|
5301
5843
|
readonly update: "Update";
|
|
5302
5844
|
};
|
|
5303
5845
|
readonly contentControlDateAriaLabel: "Dátum kiválasztása";
|
|
@@ -5361,13 +5903,16 @@ declare const CATALOGS: {
|
|
|
5361
5903
|
readonly title: "Footnote & Endnote Properties";
|
|
5362
5904
|
};
|
|
5363
5905
|
readonly hyperlink: {
|
|
5906
|
+
readonly addressLabel: "Address";
|
|
5364
5907
|
readonly bookmarkLabel: "Bookmark";
|
|
5365
5908
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
5366
5909
|
readonly displayTextHint: "Defaults to the selected text";
|
|
5367
5910
|
readonly displayTextLabel: "Display text";
|
|
5368
5911
|
readonly displayTextPlaceholder: "Text to display";
|
|
5369
5912
|
readonly invalidUrl: "Enter a valid URL";
|
|
5913
|
+
readonly linkTo: "Link to";
|
|
5370
5914
|
readonly removeLink: "Remove link";
|
|
5915
|
+
readonly screenTipLabel: "Screen tip";
|
|
5371
5916
|
readonly tabBookmark: "Bookmark";
|
|
5372
5917
|
readonly tabWebAddress: "Web address";
|
|
5373
5918
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -5389,9 +5934,11 @@ declare const CATALOGS: {
|
|
|
5389
5934
|
readonly top: "Top";
|
|
5390
5935
|
};
|
|
5391
5936
|
readonly alignment: "Alignment";
|
|
5937
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
5392
5938
|
readonly horizontal: "Horizontal";
|
|
5393
5939
|
readonly offset: "Offset";
|
|
5394
5940
|
readonly offsetPx: "Offset (px)";
|
|
5941
|
+
readonly position: "Position";
|
|
5395
5942
|
readonly relativeOptions: {
|
|
5396
5943
|
readonly character: "Character";
|
|
5397
5944
|
readonly column: "Column";
|
|
@@ -5412,12 +5959,17 @@ declare const CATALOGS: {
|
|
|
5412
5959
|
readonly dashed: "Dashed";
|
|
5413
5960
|
readonly dotted: "Dotted";
|
|
5414
5961
|
readonly double: "Double";
|
|
5962
|
+
readonly groove: "Groove";
|
|
5963
|
+
readonly inset: "Inset";
|
|
5964
|
+
readonly outset: "Outset";
|
|
5965
|
+
readonly ridge: "Ridge";
|
|
5415
5966
|
readonly solid: "Solid";
|
|
5416
5967
|
};
|
|
5417
5968
|
readonly color: "Color";
|
|
5418
5969
|
readonly dimensions: "Dimensions";
|
|
5419
5970
|
readonly heightLabel: "Height";
|
|
5420
5971
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
5972
|
+
readonly preview: "Preview";
|
|
5421
5973
|
readonly style: "Style";
|
|
5422
5974
|
readonly textWrapping: "Text wrapping";
|
|
5423
5975
|
readonly title: "Image Properties";
|
|
@@ -5432,6 +5984,11 @@ declare const CATALOGS: {
|
|
|
5432
5984
|
readonly wrapRight: "Wrap right";
|
|
5433
5985
|
};
|
|
5434
5986
|
};
|
|
5987
|
+
readonly insertImage: {
|
|
5988
|
+
readonly altText: "Alt text";
|
|
5989
|
+
readonly imageFile: "Image file";
|
|
5990
|
+
readonly title: "Insert Image";
|
|
5991
|
+
};
|
|
5435
5992
|
readonly insertSymbol: {
|
|
5436
5993
|
readonly categories: {
|
|
5437
5994
|
readonly arrows: "Arrows";
|
|
@@ -5448,18 +6005,19 @@ declare const CATALOGS: {
|
|
|
5448
6005
|
readonly title: "Insert symbol";
|
|
5449
6006
|
};
|
|
5450
6007
|
readonly insertTable: {
|
|
5451
|
-
readonly autofit: "Autofit";
|
|
6008
|
+
readonly autofit: "Autofit to contents";
|
|
5452
6009
|
readonly columnWidthLabel: "Column width";
|
|
5453
6010
|
readonly columnsLabel: "Columns";
|
|
5454
6011
|
readonly fixedWidth: "Fixed width";
|
|
5455
6012
|
readonly hoverToSelect: "Hover to select table size";
|
|
5456
6013
|
readonly insertButton: "Insert";
|
|
5457
6014
|
readonly orSpecifySize: "Or specify size";
|
|
6015
|
+
readonly plainTable: "Plain table";
|
|
5458
6016
|
readonly rowsLabel: "Rows";
|
|
5459
6017
|
readonly sizeSelector: "Table size selector";
|
|
5460
6018
|
readonly style: "Style";
|
|
5461
6019
|
readonly tableSize: "{cols} × {rows} table";
|
|
5462
|
-
readonly title: "Insert
|
|
6020
|
+
readonly title: "Insert Table";
|
|
5463
6021
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
5464
6022
|
};
|
|
5465
6023
|
readonly pageSetup: {
|
|
@@ -5484,6 +6042,16 @@ declare const CATALOGS: {
|
|
|
5484
6042
|
readonly sizeLabel: "Size";
|
|
5485
6043
|
readonly title: "Page Setup";
|
|
5486
6044
|
readonly top: "Top";
|
|
6045
|
+
readonly unitInches: "in";
|
|
6046
|
+
};
|
|
6047
|
+
readonly pasteSpecial: {
|
|
6048
|
+
readonly pasteMode: "Paste mode";
|
|
6049
|
+
readonly title: "Paste Special";
|
|
6050
|
+
};
|
|
6051
|
+
readonly splitCell: {
|
|
6052
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
6053
|
+
readonly splitButton: "Split";
|
|
6054
|
+
readonly title: "Split Cell";
|
|
5487
6055
|
};
|
|
5488
6056
|
readonly tableProperties: {
|
|
5489
6057
|
readonly alignOptions: {
|
|
@@ -5505,6 +6073,23 @@ declare const CATALOGS: {
|
|
|
5505
6073
|
readonly percentage: "Percentage";
|
|
5506
6074
|
};
|
|
5507
6075
|
};
|
|
6076
|
+
readonly watermark: {
|
|
6077
|
+
readonly color: "Color";
|
|
6078
|
+
readonly diagonal: "Diagonal";
|
|
6079
|
+
readonly font: "Font";
|
|
6080
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
6081
|
+
readonly imageTarget: "Image target";
|
|
6082
|
+
readonly noWatermark: "No watermark";
|
|
6083
|
+
readonly opacity: "Opacity";
|
|
6084
|
+
readonly pictureWatermark: "Picture watermark";
|
|
6085
|
+
readonly scale: "Scale";
|
|
6086
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
6087
|
+
readonly text: "Text";
|
|
6088
|
+
readonly textWatermark: "Text watermark";
|
|
6089
|
+
readonly title: "Watermark";
|
|
6090
|
+
readonly type: "Type";
|
|
6091
|
+
readonly washout: "Washout";
|
|
6092
|
+
};
|
|
5508
6093
|
};
|
|
5509
6094
|
readonly discardChanges: "Elvetés";
|
|
5510
6095
|
readonly dismiss: "Elvetés";
|
|
@@ -5577,6 +6162,17 @@ declare const CATALOGS: {
|
|
|
5577
6162
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
5578
6163
|
};
|
|
5579
6164
|
readonly formattingToolbar: "Formázási eszköztár";
|
|
6165
|
+
readonly headerFooter: {
|
|
6166
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
6167
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
6168
|
+
readonly footer: "Footer";
|
|
6169
|
+
readonly header: "Header";
|
|
6170
|
+
readonly insertPageCount: "Insert total page count";
|
|
6171
|
+
readonly insertPageNumber: "Insert current page number";
|
|
6172
|
+
readonly options: "Options";
|
|
6173
|
+
readonly removeFooter: "Remove footer";
|
|
6174
|
+
readonly removeHeader: "Remove header";
|
|
6175
|
+
};
|
|
5580
6176
|
readonly hideDetails: "Részletek elrejtése";
|
|
5581
6177
|
readonly historyGroup: "Előzmények";
|
|
5582
6178
|
readonly imageOverlay: {
|
|
@@ -5638,6 +6234,7 @@ declare const CATALOGS: {
|
|
|
5638
6234
|
};
|
|
5639
6235
|
readonly listFormatting: "Listaformázás";
|
|
5640
6236
|
readonly listsGroup: "Listák";
|
|
6237
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
5641
6238
|
readonly loadingDocument: "Dokumentum betöltése…";
|
|
5642
6239
|
readonly loadingEditor: "Szerkesztő betöltése...";
|
|
5643
6240
|
readonly lockFile: "Fájl zárolása";
|
|
@@ -5650,8 +6247,10 @@ declare const CATALOGS: {
|
|
|
5650
6247
|
readonly moreFormatting: "További formázás";
|
|
5651
6248
|
readonly networkError: "Hálózati hiba. Ellenőrizze az internetkapcsolatát, és próbálja újra.";
|
|
5652
6249
|
readonly nextChange: "Következő módosítás";
|
|
6250
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
5653
6251
|
readonly numberedList: "Számozott lista";
|
|
5654
6252
|
readonly parseError: "A dokumentumot nem sikerült feldolgozni. Lehet, hogy sérült, vagy nem támogatott formátumú.";
|
|
6253
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
5655
6254
|
readonly paste: "Beillesztés";
|
|
5656
6255
|
readonly pasteUnformatted: "Beillesztés formázás nélkül";
|
|
5657
6256
|
readonly previousChange: "Előző módosítás";
|
|
@@ -5811,6 +6410,7 @@ declare const CATALOGS: {
|
|
|
5811
6410
|
readonly viewGroup: "Nézet";
|
|
5812
6411
|
readonly viewer: {
|
|
5813
6412
|
readonly pageIndicator: "Page {current} of {total}";
|
|
6413
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
5814
6414
|
};
|
|
5815
6415
|
readonly zoom: {
|
|
5816
6416
|
readonly zoomIn: "Zoom in";
|
|
@@ -5856,6 +6456,7 @@ declare const CATALOGS: {
|
|
|
5856
6456
|
readonly red: "Red";
|
|
5857
6457
|
readonly yellow: "Yellow";
|
|
5858
6458
|
};
|
|
6459
|
+
readonly custom: "Custom";
|
|
5859
6460
|
readonly customColor: "Custom Color";
|
|
5860
6461
|
readonly noColor: "No color";
|
|
5861
6462
|
readonly standardColors: "Standard Colors";
|
|
@@ -5880,6 +6481,7 @@ declare const CATALOGS: {
|
|
|
5880
6481
|
readonly closeDialog: "Close";
|
|
5881
6482
|
readonly insert: "Insert";
|
|
5882
6483
|
readonly px: "px";
|
|
6484
|
+
readonly remove: "Remove";
|
|
5883
6485
|
readonly update: "Update";
|
|
5884
6486
|
};
|
|
5885
6487
|
readonly contentControlDateAriaLabel: "Pasirinkite datą";
|
|
@@ -5943,13 +6545,16 @@ declare const CATALOGS: {
|
|
|
5943
6545
|
readonly title: "Footnote & Endnote Properties";
|
|
5944
6546
|
};
|
|
5945
6547
|
readonly hyperlink: {
|
|
6548
|
+
readonly addressLabel: "Address";
|
|
5946
6549
|
readonly bookmarkLabel: "Bookmark";
|
|
5947
6550
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
5948
6551
|
readonly displayTextHint: "Defaults to the selected text";
|
|
5949
6552
|
readonly displayTextLabel: "Display text";
|
|
5950
6553
|
readonly displayTextPlaceholder: "Text to display";
|
|
5951
6554
|
readonly invalidUrl: "Enter a valid URL";
|
|
6555
|
+
readonly linkTo: "Link to";
|
|
5952
6556
|
readonly removeLink: "Remove link";
|
|
6557
|
+
readonly screenTipLabel: "Screen tip";
|
|
5953
6558
|
readonly tabBookmark: "Bookmark";
|
|
5954
6559
|
readonly tabWebAddress: "Web address";
|
|
5955
6560
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -5971,9 +6576,11 @@ declare const CATALOGS: {
|
|
|
5971
6576
|
readonly top: "Top";
|
|
5972
6577
|
};
|
|
5973
6578
|
readonly alignment: "Alignment";
|
|
6579
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
5974
6580
|
readonly horizontal: "Horizontal";
|
|
5975
6581
|
readonly offset: "Offset";
|
|
5976
6582
|
readonly offsetPx: "Offset (px)";
|
|
6583
|
+
readonly position: "Position";
|
|
5977
6584
|
readonly relativeOptions: {
|
|
5978
6585
|
readonly character: "Character";
|
|
5979
6586
|
readonly column: "Column";
|
|
@@ -5994,12 +6601,17 @@ declare const CATALOGS: {
|
|
|
5994
6601
|
readonly dashed: "Dashed";
|
|
5995
6602
|
readonly dotted: "Dotted";
|
|
5996
6603
|
readonly double: "Double";
|
|
6604
|
+
readonly groove: "Groove";
|
|
6605
|
+
readonly inset: "Inset";
|
|
6606
|
+
readonly outset: "Outset";
|
|
6607
|
+
readonly ridge: "Ridge";
|
|
5997
6608
|
readonly solid: "Solid";
|
|
5998
6609
|
};
|
|
5999
6610
|
readonly color: "Color";
|
|
6000
6611
|
readonly dimensions: "Dimensions";
|
|
6001
6612
|
readonly heightLabel: "Height";
|
|
6002
6613
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
6614
|
+
readonly preview: "Preview";
|
|
6003
6615
|
readonly style: "Style";
|
|
6004
6616
|
readonly textWrapping: "Text wrapping";
|
|
6005
6617
|
readonly title: "Image Properties";
|
|
@@ -6014,6 +6626,11 @@ declare const CATALOGS: {
|
|
|
6014
6626
|
readonly wrapRight: "Wrap right";
|
|
6015
6627
|
};
|
|
6016
6628
|
};
|
|
6629
|
+
readonly insertImage: {
|
|
6630
|
+
readonly altText: "Alt text";
|
|
6631
|
+
readonly imageFile: "Image file";
|
|
6632
|
+
readonly title: "Insert Image";
|
|
6633
|
+
};
|
|
6017
6634
|
readonly insertSymbol: {
|
|
6018
6635
|
readonly categories: {
|
|
6019
6636
|
readonly arrows: "Arrows";
|
|
@@ -6030,18 +6647,19 @@ declare const CATALOGS: {
|
|
|
6030
6647
|
readonly title: "Insert symbol";
|
|
6031
6648
|
};
|
|
6032
6649
|
readonly insertTable: {
|
|
6033
|
-
readonly autofit: "Autofit";
|
|
6650
|
+
readonly autofit: "Autofit to contents";
|
|
6034
6651
|
readonly columnWidthLabel: "Column width";
|
|
6035
6652
|
readonly columnsLabel: "Columns";
|
|
6036
6653
|
readonly fixedWidth: "Fixed width";
|
|
6037
6654
|
readonly hoverToSelect: "Hover to select table size";
|
|
6038
6655
|
readonly insertButton: "Insert";
|
|
6039
6656
|
readonly orSpecifySize: "Or specify size";
|
|
6657
|
+
readonly plainTable: "Plain table";
|
|
6040
6658
|
readonly rowsLabel: "Rows";
|
|
6041
6659
|
readonly sizeSelector: "Table size selector";
|
|
6042
6660
|
readonly style: "Style";
|
|
6043
6661
|
readonly tableSize: "{cols} × {rows} table";
|
|
6044
|
-
readonly title: "Insert
|
|
6662
|
+
readonly title: "Insert Table";
|
|
6045
6663
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
6046
6664
|
};
|
|
6047
6665
|
readonly pageSetup: {
|
|
@@ -6066,6 +6684,16 @@ declare const CATALOGS: {
|
|
|
6066
6684
|
readonly sizeLabel: "Size";
|
|
6067
6685
|
readonly title: "Page Setup";
|
|
6068
6686
|
readonly top: "Top";
|
|
6687
|
+
readonly unitInches: "in";
|
|
6688
|
+
};
|
|
6689
|
+
readonly pasteSpecial: {
|
|
6690
|
+
readonly pasteMode: "Paste mode";
|
|
6691
|
+
readonly title: "Paste Special";
|
|
6692
|
+
};
|
|
6693
|
+
readonly splitCell: {
|
|
6694
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
6695
|
+
readonly splitButton: "Split";
|
|
6696
|
+
readonly title: "Split Cell";
|
|
6069
6697
|
};
|
|
6070
6698
|
readonly tableProperties: {
|
|
6071
6699
|
readonly alignOptions: {
|
|
@@ -6087,6 +6715,23 @@ declare const CATALOGS: {
|
|
|
6087
6715
|
readonly percentage: "Percentage";
|
|
6088
6716
|
};
|
|
6089
6717
|
};
|
|
6718
|
+
readonly watermark: {
|
|
6719
|
+
readonly color: "Color";
|
|
6720
|
+
readonly diagonal: "Diagonal";
|
|
6721
|
+
readonly font: "Font";
|
|
6722
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
6723
|
+
readonly imageTarget: "Image target";
|
|
6724
|
+
readonly noWatermark: "No watermark";
|
|
6725
|
+
readonly opacity: "Opacity";
|
|
6726
|
+
readonly pictureWatermark: "Picture watermark";
|
|
6727
|
+
readonly scale: "Scale";
|
|
6728
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
6729
|
+
readonly text: "Text";
|
|
6730
|
+
readonly textWatermark: "Text watermark";
|
|
6731
|
+
readonly title: "Watermark";
|
|
6732
|
+
readonly type: "Type";
|
|
6733
|
+
readonly washout: "Washout";
|
|
6734
|
+
};
|
|
6090
6735
|
};
|
|
6091
6736
|
readonly discardChanges: "Atmesti";
|
|
6092
6737
|
readonly dismiss: "Atmesti";
|
|
@@ -6159,6 +6804,17 @@ declare const CATALOGS: {
|
|
|
6159
6804
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
6160
6805
|
};
|
|
6161
6806
|
readonly formattingToolbar: "Formatavimo įrankių juosta";
|
|
6807
|
+
readonly headerFooter: {
|
|
6808
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
6809
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
6810
|
+
readonly footer: "Footer";
|
|
6811
|
+
readonly header: "Header";
|
|
6812
|
+
readonly insertPageCount: "Insert total page count";
|
|
6813
|
+
readonly insertPageNumber: "Insert current page number";
|
|
6814
|
+
readonly options: "Options";
|
|
6815
|
+
readonly removeFooter: "Remove footer";
|
|
6816
|
+
readonly removeHeader: "Remove header";
|
|
6817
|
+
};
|
|
6162
6818
|
readonly hideDetails: "Slėpti detales";
|
|
6163
6819
|
readonly historyGroup: "Istorija";
|
|
6164
6820
|
readonly imageOverlay: {
|
|
@@ -6220,6 +6876,7 @@ declare const CATALOGS: {
|
|
|
6220
6876
|
};
|
|
6221
6877
|
readonly listFormatting: "Sąrašo formatavimas";
|
|
6222
6878
|
readonly listsGroup: "Sąrašai";
|
|
6879
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
6223
6880
|
readonly loadingDocument: "Įkeliamas dokumentas…";
|
|
6224
6881
|
readonly loadingEditor: "Įkeliamas redaktorius...";
|
|
6225
6882
|
readonly lockFile: "Užrakinti failą";
|
|
@@ -6232,8 +6889,10 @@ declare const CATALOGS: {
|
|
|
6232
6889
|
readonly moreFormatting: "Daugiau formatavimo";
|
|
6233
6890
|
readonly networkError: "Tinklo klaida. Patikrinkite interneto ryšį ir bandykite dar kartą.";
|
|
6234
6891
|
readonly nextChange: "Kitas keitimas";
|
|
6892
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
6235
6893
|
readonly numberedList: "Numeruotas sąrašas";
|
|
6236
6894
|
readonly parseError: "Nepavyko apdoroti dokumento. Jis gali būti sugadintas arba nepalaikomo formato.";
|
|
6895
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
6237
6896
|
readonly paste: "Įklijuoti";
|
|
6238
6897
|
readonly pasteUnformatted: "Įklijuoti be formatavimo";
|
|
6239
6898
|
readonly previousChange: "Ankstesnis keitimas";
|
|
@@ -6393,6 +7052,7 @@ declare const CATALOGS: {
|
|
|
6393
7052
|
readonly viewGroup: "Rodinys";
|
|
6394
7053
|
readonly viewer: {
|
|
6395
7054
|
readonly pageIndicator: "Page {current} of {total}";
|
|
7055
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
6396
7056
|
};
|
|
6397
7057
|
readonly zoom: {
|
|
6398
7058
|
readonly zoomIn: "Zoom in";
|
|
@@ -6438,6 +7098,7 @@ declare const CATALOGS: {
|
|
|
6438
7098
|
readonly red: "Red";
|
|
6439
7099
|
readonly yellow: "Yellow";
|
|
6440
7100
|
};
|
|
7101
|
+
readonly custom: "Custom";
|
|
6441
7102
|
readonly customColor: "Custom Color";
|
|
6442
7103
|
readonly noColor: "No color";
|
|
6443
7104
|
readonly standardColors: "Standard Colors";
|
|
@@ -6462,6 +7123,7 @@ declare const CATALOGS: {
|
|
|
6462
7123
|
readonly closeDialog: "Close";
|
|
6463
7124
|
readonly insert: "Insert";
|
|
6464
7125
|
readonly px: "px";
|
|
7126
|
+
readonly remove: "Remove";
|
|
6465
7127
|
readonly update: "Update";
|
|
6466
7128
|
};
|
|
6467
7129
|
readonly contentControlDateAriaLabel: "Izvēlieties datumu";
|
|
@@ -6525,13 +7187,16 @@ declare const CATALOGS: {
|
|
|
6525
7187
|
readonly title: "Footnote & Endnote Properties";
|
|
6526
7188
|
};
|
|
6527
7189
|
readonly hyperlink: {
|
|
7190
|
+
readonly addressLabel: "Address";
|
|
6528
7191
|
readonly bookmarkLabel: "Bookmark";
|
|
6529
7192
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
6530
7193
|
readonly displayTextHint: "Defaults to the selected text";
|
|
6531
7194
|
readonly displayTextLabel: "Display text";
|
|
6532
7195
|
readonly displayTextPlaceholder: "Text to display";
|
|
6533
7196
|
readonly invalidUrl: "Enter a valid URL";
|
|
7197
|
+
readonly linkTo: "Link to";
|
|
6534
7198
|
readonly removeLink: "Remove link";
|
|
7199
|
+
readonly screenTipLabel: "Screen tip";
|
|
6535
7200
|
readonly tabBookmark: "Bookmark";
|
|
6536
7201
|
readonly tabWebAddress: "Web address";
|
|
6537
7202
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -6553,9 +7218,11 @@ declare const CATALOGS: {
|
|
|
6553
7218
|
readonly top: "Top";
|
|
6554
7219
|
};
|
|
6555
7220
|
readonly alignment: "Alignment";
|
|
7221
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
6556
7222
|
readonly horizontal: "Horizontal";
|
|
6557
7223
|
readonly offset: "Offset";
|
|
6558
7224
|
readonly offsetPx: "Offset (px)";
|
|
7225
|
+
readonly position: "Position";
|
|
6559
7226
|
readonly relativeOptions: {
|
|
6560
7227
|
readonly character: "Character";
|
|
6561
7228
|
readonly column: "Column";
|
|
@@ -6576,12 +7243,17 @@ declare const CATALOGS: {
|
|
|
6576
7243
|
readonly dashed: "Dashed";
|
|
6577
7244
|
readonly dotted: "Dotted";
|
|
6578
7245
|
readonly double: "Double";
|
|
7246
|
+
readonly groove: "Groove";
|
|
7247
|
+
readonly inset: "Inset";
|
|
7248
|
+
readonly outset: "Outset";
|
|
7249
|
+
readonly ridge: "Ridge";
|
|
6579
7250
|
readonly solid: "Solid";
|
|
6580
7251
|
};
|
|
6581
7252
|
readonly color: "Color";
|
|
6582
7253
|
readonly dimensions: "Dimensions";
|
|
6583
7254
|
readonly heightLabel: "Height";
|
|
6584
7255
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
7256
|
+
readonly preview: "Preview";
|
|
6585
7257
|
readonly style: "Style";
|
|
6586
7258
|
readonly textWrapping: "Text wrapping";
|
|
6587
7259
|
readonly title: "Image Properties";
|
|
@@ -6596,6 +7268,11 @@ declare const CATALOGS: {
|
|
|
6596
7268
|
readonly wrapRight: "Wrap right";
|
|
6597
7269
|
};
|
|
6598
7270
|
};
|
|
7271
|
+
readonly insertImage: {
|
|
7272
|
+
readonly altText: "Alt text";
|
|
7273
|
+
readonly imageFile: "Image file";
|
|
7274
|
+
readonly title: "Insert Image";
|
|
7275
|
+
};
|
|
6599
7276
|
readonly insertSymbol: {
|
|
6600
7277
|
readonly categories: {
|
|
6601
7278
|
readonly arrows: "Arrows";
|
|
@@ -6612,18 +7289,19 @@ declare const CATALOGS: {
|
|
|
6612
7289
|
readonly title: "Insert symbol";
|
|
6613
7290
|
};
|
|
6614
7291
|
readonly insertTable: {
|
|
6615
|
-
readonly autofit: "Autofit";
|
|
7292
|
+
readonly autofit: "Autofit to contents";
|
|
6616
7293
|
readonly columnWidthLabel: "Column width";
|
|
6617
7294
|
readonly columnsLabel: "Columns";
|
|
6618
7295
|
readonly fixedWidth: "Fixed width";
|
|
6619
7296
|
readonly hoverToSelect: "Hover to select table size";
|
|
6620
7297
|
readonly insertButton: "Insert";
|
|
6621
7298
|
readonly orSpecifySize: "Or specify size";
|
|
7299
|
+
readonly plainTable: "Plain table";
|
|
6622
7300
|
readonly rowsLabel: "Rows";
|
|
6623
7301
|
readonly sizeSelector: "Table size selector";
|
|
6624
7302
|
readonly style: "Style";
|
|
6625
7303
|
readonly tableSize: "{cols} × {rows} table";
|
|
6626
|
-
readonly title: "Insert
|
|
7304
|
+
readonly title: "Insert Table";
|
|
6627
7305
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
6628
7306
|
};
|
|
6629
7307
|
readonly pageSetup: {
|
|
@@ -6648,6 +7326,16 @@ declare const CATALOGS: {
|
|
|
6648
7326
|
readonly sizeLabel: "Size";
|
|
6649
7327
|
readonly title: "Page Setup";
|
|
6650
7328
|
readonly top: "Top";
|
|
7329
|
+
readonly unitInches: "in";
|
|
7330
|
+
};
|
|
7331
|
+
readonly pasteSpecial: {
|
|
7332
|
+
readonly pasteMode: "Paste mode";
|
|
7333
|
+
readonly title: "Paste Special";
|
|
7334
|
+
};
|
|
7335
|
+
readonly splitCell: {
|
|
7336
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
7337
|
+
readonly splitButton: "Split";
|
|
7338
|
+
readonly title: "Split Cell";
|
|
6651
7339
|
};
|
|
6652
7340
|
readonly tableProperties: {
|
|
6653
7341
|
readonly alignOptions: {
|
|
@@ -6669,6 +7357,23 @@ declare const CATALOGS: {
|
|
|
6669
7357
|
readonly percentage: "Percentage";
|
|
6670
7358
|
};
|
|
6671
7359
|
};
|
|
7360
|
+
readonly watermark: {
|
|
7361
|
+
readonly color: "Color";
|
|
7362
|
+
readonly diagonal: "Diagonal";
|
|
7363
|
+
readonly font: "Font";
|
|
7364
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
7365
|
+
readonly imageTarget: "Image target";
|
|
7366
|
+
readonly noWatermark: "No watermark";
|
|
7367
|
+
readonly opacity: "Opacity";
|
|
7368
|
+
readonly pictureWatermark: "Picture watermark";
|
|
7369
|
+
readonly scale: "Scale";
|
|
7370
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
7371
|
+
readonly text: "Text";
|
|
7372
|
+
readonly textWatermark: "Text watermark";
|
|
7373
|
+
readonly title: "Watermark";
|
|
7374
|
+
readonly type: "Type";
|
|
7375
|
+
readonly washout: "Washout";
|
|
7376
|
+
};
|
|
6672
7377
|
};
|
|
6673
7378
|
readonly discardChanges: "Atmest";
|
|
6674
7379
|
readonly dismiss: "Aizvērt";
|
|
@@ -6741,6 +7446,17 @@ declare const CATALOGS: {
|
|
|
6741
7446
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
6742
7447
|
};
|
|
6743
7448
|
readonly formattingToolbar: "Formatēšanas rīkjosla";
|
|
7449
|
+
readonly headerFooter: {
|
|
7450
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
7451
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
7452
|
+
readonly footer: "Footer";
|
|
7453
|
+
readonly header: "Header";
|
|
7454
|
+
readonly insertPageCount: "Insert total page count";
|
|
7455
|
+
readonly insertPageNumber: "Insert current page number";
|
|
7456
|
+
readonly options: "Options";
|
|
7457
|
+
readonly removeFooter: "Remove footer";
|
|
7458
|
+
readonly removeHeader: "Remove header";
|
|
7459
|
+
};
|
|
6744
7460
|
readonly hideDetails: "Slēpt detaļas";
|
|
6745
7461
|
readonly historyGroup: "Vēsture";
|
|
6746
7462
|
readonly imageOverlay: {
|
|
@@ -6802,6 +7518,7 @@ declare const CATALOGS: {
|
|
|
6802
7518
|
};
|
|
6803
7519
|
readonly listFormatting: "Saraksta formatēšana";
|
|
6804
7520
|
readonly listsGroup: "Saraksti";
|
|
7521
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
6805
7522
|
readonly loadingDocument: "Ielādē dokumentu…";
|
|
6806
7523
|
readonly loadingEditor: "Ielādē redaktoru...";
|
|
6807
7524
|
readonly lockFile: "Bloķēt failu";
|
|
@@ -6814,8 +7531,10 @@ declare const CATALOGS: {
|
|
|
6814
7531
|
readonly moreFormatting: "Papildu formatēšana";
|
|
6815
7532
|
readonly networkError: "Tīkla kļūda. Lūdzu, pārbaudiet interneta savienojumu un mēģiniet vēlreiz.";
|
|
6816
7533
|
readonly nextChange: "Nākamā izmaiņa";
|
|
7534
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
6817
7535
|
readonly numberedList: "Numurēts saraksts";
|
|
6818
7536
|
readonly parseError: "Dokumentu neizdevās apstrādāt. Iespējams, tas ir bojāts vai neatbalstītā formātā.";
|
|
7537
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
6819
7538
|
readonly paste: "Ielīmēt";
|
|
6820
7539
|
readonly pasteUnformatted: "Ielīmēt bez formatējuma";
|
|
6821
7540
|
readonly previousChange: "Iepriekšējā izmaiņa";
|
|
@@ -6975,6 +7694,7 @@ declare const CATALOGS: {
|
|
|
6975
7694
|
readonly viewGroup: "Skats";
|
|
6976
7695
|
readonly viewer: {
|
|
6977
7696
|
readonly pageIndicator: "Page {current} of {total}";
|
|
7697
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
6978
7698
|
};
|
|
6979
7699
|
readonly zoom: {
|
|
6980
7700
|
readonly zoomIn: "Zoom in";
|
|
@@ -7020,6 +7740,7 @@ declare const CATALOGS: {
|
|
|
7020
7740
|
readonly red: "Red";
|
|
7021
7741
|
readonly yellow: "Yellow";
|
|
7022
7742
|
};
|
|
7743
|
+
readonly custom: "Custom";
|
|
7023
7744
|
readonly customColor: "Custom Color";
|
|
7024
7745
|
readonly noColor: "No color";
|
|
7025
7746
|
readonly standardColors: "Standard Colors";
|
|
@@ -7044,6 +7765,7 @@ declare const CATALOGS: {
|
|
|
7044
7765
|
readonly closeDialog: "Close";
|
|
7045
7766
|
readonly insert: "Insert";
|
|
7046
7767
|
readonly px: "px";
|
|
7768
|
+
readonly remove: "Remove";
|
|
7047
7769
|
readonly update: "Update";
|
|
7048
7770
|
};
|
|
7049
7771
|
readonly contentControlDateAriaLabel: "Wybierz datę";
|
|
@@ -7107,13 +7829,16 @@ declare const CATALOGS: {
|
|
|
7107
7829
|
readonly title: "Footnote & Endnote Properties";
|
|
7108
7830
|
};
|
|
7109
7831
|
readonly hyperlink: {
|
|
7832
|
+
readonly addressLabel: "Address";
|
|
7110
7833
|
readonly bookmarkLabel: "Bookmark";
|
|
7111
7834
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
7112
7835
|
readonly displayTextHint: "Defaults to the selected text";
|
|
7113
7836
|
readonly displayTextLabel: "Display text";
|
|
7114
7837
|
readonly displayTextPlaceholder: "Text to display";
|
|
7115
7838
|
readonly invalidUrl: "Enter a valid URL";
|
|
7839
|
+
readonly linkTo: "Link to";
|
|
7116
7840
|
readonly removeLink: "Remove link";
|
|
7841
|
+
readonly screenTipLabel: "Screen tip";
|
|
7117
7842
|
readonly tabBookmark: "Bookmark";
|
|
7118
7843
|
readonly tabWebAddress: "Web address";
|
|
7119
7844
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -7135,9 +7860,11 @@ declare const CATALOGS: {
|
|
|
7135
7860
|
readonly top: "Top";
|
|
7136
7861
|
};
|
|
7137
7862
|
readonly alignment: "Alignment";
|
|
7863
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
7138
7864
|
readonly horizontal: "Horizontal";
|
|
7139
7865
|
readonly offset: "Offset";
|
|
7140
7866
|
readonly offsetPx: "Offset (px)";
|
|
7867
|
+
readonly position: "Position";
|
|
7141
7868
|
readonly relativeOptions: {
|
|
7142
7869
|
readonly character: "Character";
|
|
7143
7870
|
readonly column: "Column";
|
|
@@ -7158,12 +7885,17 @@ declare const CATALOGS: {
|
|
|
7158
7885
|
readonly dashed: "Dashed";
|
|
7159
7886
|
readonly dotted: "Dotted";
|
|
7160
7887
|
readonly double: "Double";
|
|
7888
|
+
readonly groove: "Groove";
|
|
7889
|
+
readonly inset: "Inset";
|
|
7890
|
+
readonly outset: "Outset";
|
|
7891
|
+
readonly ridge: "Ridge";
|
|
7161
7892
|
readonly solid: "Solid";
|
|
7162
7893
|
};
|
|
7163
7894
|
readonly color: "Color";
|
|
7164
7895
|
readonly dimensions: "Dimensions";
|
|
7165
7896
|
readonly heightLabel: "Height";
|
|
7166
7897
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
7898
|
+
readonly preview: "Preview";
|
|
7167
7899
|
readonly style: "Style";
|
|
7168
7900
|
readonly textWrapping: "Text wrapping";
|
|
7169
7901
|
readonly title: "Image Properties";
|
|
@@ -7178,6 +7910,11 @@ declare const CATALOGS: {
|
|
|
7178
7910
|
readonly wrapRight: "Wrap right";
|
|
7179
7911
|
};
|
|
7180
7912
|
};
|
|
7913
|
+
readonly insertImage: {
|
|
7914
|
+
readonly altText: "Alt text";
|
|
7915
|
+
readonly imageFile: "Image file";
|
|
7916
|
+
readonly title: "Insert Image";
|
|
7917
|
+
};
|
|
7181
7918
|
readonly insertSymbol: {
|
|
7182
7919
|
readonly categories: {
|
|
7183
7920
|
readonly arrows: "Arrows";
|
|
@@ -7194,18 +7931,19 @@ declare const CATALOGS: {
|
|
|
7194
7931
|
readonly title: "Insert symbol";
|
|
7195
7932
|
};
|
|
7196
7933
|
readonly insertTable: {
|
|
7197
|
-
readonly autofit: "Autofit";
|
|
7934
|
+
readonly autofit: "Autofit to contents";
|
|
7198
7935
|
readonly columnWidthLabel: "Column width";
|
|
7199
7936
|
readonly columnsLabel: "Columns";
|
|
7200
7937
|
readonly fixedWidth: "Fixed width";
|
|
7201
7938
|
readonly hoverToSelect: "Hover to select table size";
|
|
7202
7939
|
readonly insertButton: "Insert";
|
|
7203
7940
|
readonly orSpecifySize: "Or specify size";
|
|
7941
|
+
readonly plainTable: "Plain table";
|
|
7204
7942
|
readonly rowsLabel: "Rows";
|
|
7205
7943
|
readonly sizeSelector: "Table size selector";
|
|
7206
7944
|
readonly style: "Style";
|
|
7207
7945
|
readonly tableSize: "{cols} × {rows} table";
|
|
7208
|
-
readonly title: "Insert
|
|
7946
|
+
readonly title: "Insert Table";
|
|
7209
7947
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
7210
7948
|
};
|
|
7211
7949
|
readonly pageSetup: {
|
|
@@ -7230,6 +7968,16 @@ declare const CATALOGS: {
|
|
|
7230
7968
|
readonly sizeLabel: "Size";
|
|
7231
7969
|
readonly title: "Page Setup";
|
|
7232
7970
|
readonly top: "Top";
|
|
7971
|
+
readonly unitInches: "in";
|
|
7972
|
+
};
|
|
7973
|
+
readonly pasteSpecial: {
|
|
7974
|
+
readonly pasteMode: "Paste mode";
|
|
7975
|
+
readonly title: "Paste Special";
|
|
7976
|
+
};
|
|
7977
|
+
readonly splitCell: {
|
|
7978
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
7979
|
+
readonly splitButton: "Split";
|
|
7980
|
+
readonly title: "Split Cell";
|
|
7233
7981
|
};
|
|
7234
7982
|
readonly tableProperties: {
|
|
7235
7983
|
readonly alignOptions: {
|
|
@@ -7251,6 +7999,23 @@ declare const CATALOGS: {
|
|
|
7251
7999
|
readonly percentage: "Percentage";
|
|
7252
8000
|
};
|
|
7253
8001
|
};
|
|
8002
|
+
readonly watermark: {
|
|
8003
|
+
readonly color: "Color";
|
|
8004
|
+
readonly diagonal: "Diagonal";
|
|
8005
|
+
readonly font: "Font";
|
|
8006
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
8007
|
+
readonly imageTarget: "Image target";
|
|
8008
|
+
readonly noWatermark: "No watermark";
|
|
8009
|
+
readonly opacity: "Opacity";
|
|
8010
|
+
readonly pictureWatermark: "Picture watermark";
|
|
8011
|
+
readonly scale: "Scale";
|
|
8012
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
8013
|
+
readonly text: "Text";
|
|
8014
|
+
readonly textWatermark: "Text watermark";
|
|
8015
|
+
readonly title: "Watermark";
|
|
8016
|
+
readonly type: "Type";
|
|
8017
|
+
readonly washout: "Washout";
|
|
8018
|
+
};
|
|
7254
8019
|
};
|
|
7255
8020
|
readonly discardChanges: "Odrzuć";
|
|
7256
8021
|
readonly dismiss: "Odrzuć";
|
|
@@ -7323,6 +8088,17 @@ declare const CATALOGS: {
|
|
|
7323
8088
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
7324
8089
|
};
|
|
7325
8090
|
readonly formattingToolbar: "Pasek formatowania";
|
|
8091
|
+
readonly headerFooter: {
|
|
8092
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
8093
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
8094
|
+
readonly footer: "Footer";
|
|
8095
|
+
readonly header: "Header";
|
|
8096
|
+
readonly insertPageCount: "Insert total page count";
|
|
8097
|
+
readonly insertPageNumber: "Insert current page number";
|
|
8098
|
+
readonly options: "Options";
|
|
8099
|
+
readonly removeFooter: "Remove footer";
|
|
8100
|
+
readonly removeHeader: "Remove header";
|
|
8101
|
+
};
|
|
7326
8102
|
readonly hideDetails: "Ukryj szczegóły";
|
|
7327
8103
|
readonly historyGroup: "Historia";
|
|
7328
8104
|
readonly imageOverlay: {
|
|
@@ -7384,6 +8160,7 @@ declare const CATALOGS: {
|
|
|
7384
8160
|
};
|
|
7385
8161
|
readonly listFormatting: "Formatowanie listy";
|
|
7386
8162
|
readonly listsGroup: "Listy";
|
|
8163
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
7387
8164
|
readonly loadingDocument: "Ładowanie dokumentu...";
|
|
7388
8165
|
readonly loadingEditor: "Ładowanie edytora...";
|
|
7389
8166
|
readonly lockFile: "Zablokuj plik";
|
|
@@ -7396,8 +8173,10 @@ declare const CATALOGS: {
|
|
|
7396
8173
|
readonly moreFormatting: "Więcej formatowania";
|
|
7397
8174
|
readonly networkError: "Błąd sieci. Sprawdź połączenie z internetem i spróbuj ponownie.";
|
|
7398
8175
|
readonly nextChange: "Następna zmiana";
|
|
8176
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
7399
8177
|
readonly numberedList: "Lista numerowana";
|
|
7400
8178
|
readonly parseError: "Nie udało się przetworzyć dokumentu. Może być uszkodzony lub w nieobsługiwanym formacie.";
|
|
8179
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
7401
8180
|
readonly paste: "Wklej";
|
|
7402
8181
|
readonly pasteUnformatted: "Wklej bez formatowania";
|
|
7403
8182
|
readonly previousChange: "Poprzednia zmiana";
|
|
@@ -7557,6 +8336,7 @@ declare const CATALOGS: {
|
|
|
7557
8336
|
readonly viewGroup: "Widok";
|
|
7558
8337
|
readonly viewer: {
|
|
7559
8338
|
readonly pageIndicator: "Page {current} of {total}";
|
|
8339
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
7560
8340
|
};
|
|
7561
8341
|
readonly zoom: {
|
|
7562
8342
|
readonly zoomIn: "Zoom in";
|
|
@@ -7602,6 +8382,7 @@ declare const CATALOGS: {
|
|
|
7602
8382
|
readonly red: "Red";
|
|
7603
8383
|
readonly yellow: "Yellow";
|
|
7604
8384
|
};
|
|
8385
|
+
readonly custom: "Custom";
|
|
7605
8386
|
readonly customColor: "Custom Color";
|
|
7606
8387
|
readonly noColor: "No color";
|
|
7607
8388
|
readonly standardColors: "Standard Colors";
|
|
@@ -7626,6 +8407,7 @@ declare const CATALOGS: {
|
|
|
7626
8407
|
readonly closeDialog: "Close";
|
|
7627
8408
|
readonly insert: "Insert";
|
|
7628
8409
|
readonly px: "px";
|
|
8410
|
+
readonly remove: "Remove";
|
|
7629
8411
|
readonly update: "Update";
|
|
7630
8412
|
};
|
|
7631
8413
|
readonly contentControlDateAriaLabel: "Escolher uma data";
|
|
@@ -7689,13 +8471,16 @@ declare const CATALOGS: {
|
|
|
7689
8471
|
readonly title: "Footnote & Endnote Properties";
|
|
7690
8472
|
};
|
|
7691
8473
|
readonly hyperlink: {
|
|
8474
|
+
readonly addressLabel: "Address";
|
|
7692
8475
|
readonly bookmarkLabel: "Bookmark";
|
|
7693
8476
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
7694
8477
|
readonly displayTextHint: "Defaults to the selected text";
|
|
7695
8478
|
readonly displayTextLabel: "Display text";
|
|
7696
8479
|
readonly displayTextPlaceholder: "Text to display";
|
|
7697
8480
|
readonly invalidUrl: "Enter a valid URL";
|
|
8481
|
+
readonly linkTo: "Link to";
|
|
7698
8482
|
readonly removeLink: "Remove link";
|
|
8483
|
+
readonly screenTipLabel: "Screen tip";
|
|
7699
8484
|
readonly tabBookmark: "Bookmark";
|
|
7700
8485
|
readonly tabWebAddress: "Web address";
|
|
7701
8486
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -7717,9 +8502,11 @@ declare const CATALOGS: {
|
|
|
7717
8502
|
readonly top: "Top";
|
|
7718
8503
|
};
|
|
7719
8504
|
readonly alignment: "Alignment";
|
|
8505
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
7720
8506
|
readonly horizontal: "Horizontal";
|
|
7721
8507
|
readonly offset: "Offset";
|
|
7722
8508
|
readonly offsetPx: "Offset (px)";
|
|
8509
|
+
readonly position: "Position";
|
|
7723
8510
|
readonly relativeOptions: {
|
|
7724
8511
|
readonly character: "Character";
|
|
7725
8512
|
readonly column: "Column";
|
|
@@ -7740,12 +8527,17 @@ declare const CATALOGS: {
|
|
|
7740
8527
|
readonly dashed: "Dashed";
|
|
7741
8528
|
readonly dotted: "Dotted";
|
|
7742
8529
|
readonly double: "Double";
|
|
8530
|
+
readonly groove: "Groove";
|
|
8531
|
+
readonly inset: "Inset";
|
|
8532
|
+
readonly outset: "Outset";
|
|
8533
|
+
readonly ridge: "Ridge";
|
|
7743
8534
|
readonly solid: "Solid";
|
|
7744
8535
|
};
|
|
7745
8536
|
readonly color: "Color";
|
|
7746
8537
|
readonly dimensions: "Dimensions";
|
|
7747
8538
|
readonly heightLabel: "Height";
|
|
7748
8539
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
8540
|
+
readonly preview: "Preview";
|
|
7749
8541
|
readonly style: "Style";
|
|
7750
8542
|
readonly textWrapping: "Text wrapping";
|
|
7751
8543
|
readonly title: "Image Properties";
|
|
@@ -7760,6 +8552,11 @@ declare const CATALOGS: {
|
|
|
7760
8552
|
readonly wrapRight: "Wrap right";
|
|
7761
8553
|
};
|
|
7762
8554
|
};
|
|
8555
|
+
readonly insertImage: {
|
|
8556
|
+
readonly altText: "Alt text";
|
|
8557
|
+
readonly imageFile: "Image file";
|
|
8558
|
+
readonly title: "Insert Image";
|
|
8559
|
+
};
|
|
7763
8560
|
readonly insertSymbol: {
|
|
7764
8561
|
readonly categories: {
|
|
7765
8562
|
readonly arrows: "Arrows";
|
|
@@ -7776,18 +8573,19 @@ declare const CATALOGS: {
|
|
|
7776
8573
|
readonly title: "Insert symbol";
|
|
7777
8574
|
};
|
|
7778
8575
|
readonly insertTable: {
|
|
7779
|
-
readonly autofit: "Autofit";
|
|
8576
|
+
readonly autofit: "Autofit to contents";
|
|
7780
8577
|
readonly columnWidthLabel: "Column width";
|
|
7781
8578
|
readonly columnsLabel: "Columns";
|
|
7782
8579
|
readonly fixedWidth: "Fixed width";
|
|
7783
8580
|
readonly hoverToSelect: "Hover to select table size";
|
|
7784
8581
|
readonly insertButton: "Insert";
|
|
7785
8582
|
readonly orSpecifySize: "Or specify size";
|
|
8583
|
+
readonly plainTable: "Plain table";
|
|
7786
8584
|
readonly rowsLabel: "Rows";
|
|
7787
8585
|
readonly sizeSelector: "Table size selector";
|
|
7788
8586
|
readonly style: "Style";
|
|
7789
8587
|
readonly tableSize: "{cols} × {rows} table";
|
|
7790
|
-
readonly title: "Insert
|
|
8588
|
+
readonly title: "Insert Table";
|
|
7791
8589
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
7792
8590
|
};
|
|
7793
8591
|
readonly pageSetup: {
|
|
@@ -7812,6 +8610,16 @@ declare const CATALOGS: {
|
|
|
7812
8610
|
readonly sizeLabel: "Size";
|
|
7813
8611
|
readonly title: "Page Setup";
|
|
7814
8612
|
readonly top: "Top";
|
|
8613
|
+
readonly unitInches: "in";
|
|
8614
|
+
};
|
|
8615
|
+
readonly pasteSpecial: {
|
|
8616
|
+
readonly pasteMode: "Paste mode";
|
|
8617
|
+
readonly title: "Paste Special";
|
|
8618
|
+
};
|
|
8619
|
+
readonly splitCell: {
|
|
8620
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
8621
|
+
readonly splitButton: "Split";
|
|
8622
|
+
readonly title: "Split Cell";
|
|
7815
8623
|
};
|
|
7816
8624
|
readonly tableProperties: {
|
|
7817
8625
|
readonly alignOptions: {
|
|
@@ -7833,6 +8641,23 @@ declare const CATALOGS: {
|
|
|
7833
8641
|
readonly percentage: "Percentage";
|
|
7834
8642
|
};
|
|
7835
8643
|
};
|
|
8644
|
+
readonly watermark: {
|
|
8645
|
+
readonly color: "Color";
|
|
8646
|
+
readonly diagonal: "Diagonal";
|
|
8647
|
+
readonly font: "Font";
|
|
8648
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
8649
|
+
readonly imageTarget: "Image target";
|
|
8650
|
+
readonly noWatermark: "No watermark";
|
|
8651
|
+
readonly opacity: "Opacity";
|
|
8652
|
+
readonly pictureWatermark: "Picture watermark";
|
|
8653
|
+
readonly scale: "Scale";
|
|
8654
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
8655
|
+
readonly text: "Text";
|
|
8656
|
+
readonly textWatermark: "Text watermark";
|
|
8657
|
+
readonly title: "Watermark";
|
|
8658
|
+
readonly type: "Type";
|
|
8659
|
+
readonly washout: "Washout";
|
|
8660
|
+
};
|
|
7836
8661
|
};
|
|
7837
8662
|
readonly discardChanges: "Descartar";
|
|
7838
8663
|
readonly dismiss: "Fechar";
|
|
@@ -7905,6 +8730,17 @@ declare const CATALOGS: {
|
|
|
7905
8730
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
7906
8731
|
};
|
|
7907
8732
|
readonly formattingToolbar: "Barra de ferramentas de formatação";
|
|
8733
|
+
readonly headerFooter: {
|
|
8734
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
8735
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
8736
|
+
readonly footer: "Footer";
|
|
8737
|
+
readonly header: "Header";
|
|
8738
|
+
readonly insertPageCount: "Insert total page count";
|
|
8739
|
+
readonly insertPageNumber: "Insert current page number";
|
|
8740
|
+
readonly options: "Options";
|
|
8741
|
+
readonly removeFooter: "Remove footer";
|
|
8742
|
+
readonly removeHeader: "Remove header";
|
|
8743
|
+
};
|
|
7908
8744
|
readonly hideDetails: "Ocultar detalhes";
|
|
7909
8745
|
readonly historyGroup: "Histórico";
|
|
7910
8746
|
readonly imageOverlay: {
|
|
@@ -7966,6 +8802,7 @@ declare const CATALOGS: {
|
|
|
7966
8802
|
};
|
|
7967
8803
|
readonly listFormatting: "Formatação de lista";
|
|
7968
8804
|
readonly listsGroup: "Listas";
|
|
8805
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
7969
8806
|
readonly loadingDocument: "Carregando documento...";
|
|
7970
8807
|
readonly loadingEditor: "Carregando editor...";
|
|
7971
8808
|
readonly lockFile: "Bloquear arquivo";
|
|
@@ -7978,8 +8815,10 @@ declare const CATALOGS: {
|
|
|
7978
8815
|
readonly moreFormatting: "Mais formatação";
|
|
7979
8816
|
readonly networkError: "Erro de rede. Verifique sua conexão com a Internet e tente novamente.";
|
|
7980
8817
|
readonly nextChange: "Próxima alteração";
|
|
8818
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
7981
8819
|
readonly numberedList: "Lista numerada";
|
|
7982
8820
|
readonly parseError: "O documento não pôde ser analisado. Ele pode estar corrompido ou em um formato não compatível.";
|
|
8821
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
7983
8822
|
readonly paste: "Colar";
|
|
7984
8823
|
readonly pasteUnformatted: "Colar sem formatar";
|
|
7985
8824
|
readonly previousChange: "Alteração anterior";
|
|
@@ -8139,6 +8978,7 @@ declare const CATALOGS: {
|
|
|
8139
8978
|
readonly viewGroup: "Exibir";
|
|
8140
8979
|
readonly viewer: {
|
|
8141
8980
|
readonly pageIndicator: "Page {current} of {total}";
|
|
8981
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
8142
8982
|
};
|
|
8143
8983
|
readonly zoom: {
|
|
8144
8984
|
readonly zoomIn: "Zoom in";
|
|
@@ -8184,6 +9024,7 @@ declare const CATALOGS: {
|
|
|
8184
9024
|
readonly red: "Red";
|
|
8185
9025
|
readonly yellow: "Yellow";
|
|
8186
9026
|
};
|
|
9027
|
+
readonly custom: "Custom";
|
|
8187
9028
|
readonly customColor: "Custom Color";
|
|
8188
9029
|
readonly noColor: "No color";
|
|
8189
9030
|
readonly standardColors: "Standard Colors";
|
|
@@ -8208,6 +9049,7 @@ declare const CATALOGS: {
|
|
|
8208
9049
|
readonly closeDialog: "Close";
|
|
8209
9050
|
readonly insert: "Insert";
|
|
8210
9051
|
readonly px: "px";
|
|
9052
|
+
readonly remove: "Remove";
|
|
8211
9053
|
readonly update: "Update";
|
|
8212
9054
|
};
|
|
8213
9055
|
readonly contentControlDateAriaLabel: "Vyberte dátum";
|
|
@@ -8271,13 +9113,16 @@ declare const CATALOGS: {
|
|
|
8271
9113
|
readonly title: "Footnote & Endnote Properties";
|
|
8272
9114
|
};
|
|
8273
9115
|
readonly hyperlink: {
|
|
9116
|
+
readonly addressLabel: "Address";
|
|
8274
9117
|
readonly bookmarkLabel: "Bookmark";
|
|
8275
9118
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
8276
9119
|
readonly displayTextHint: "Defaults to the selected text";
|
|
8277
9120
|
readonly displayTextLabel: "Display text";
|
|
8278
9121
|
readonly displayTextPlaceholder: "Text to display";
|
|
8279
9122
|
readonly invalidUrl: "Enter a valid URL";
|
|
9123
|
+
readonly linkTo: "Link to";
|
|
8280
9124
|
readonly removeLink: "Remove link";
|
|
9125
|
+
readonly screenTipLabel: "Screen tip";
|
|
8281
9126
|
readonly tabBookmark: "Bookmark";
|
|
8282
9127
|
readonly tabWebAddress: "Web address";
|
|
8283
9128
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -8299,9 +9144,11 @@ declare const CATALOGS: {
|
|
|
8299
9144
|
readonly top: "Top";
|
|
8300
9145
|
};
|
|
8301
9146
|
readonly alignment: "Alignment";
|
|
9147
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
8302
9148
|
readonly horizontal: "Horizontal";
|
|
8303
9149
|
readonly offset: "Offset";
|
|
8304
9150
|
readonly offsetPx: "Offset (px)";
|
|
9151
|
+
readonly position: "Position";
|
|
8305
9152
|
readonly relativeOptions: {
|
|
8306
9153
|
readonly character: "Character";
|
|
8307
9154
|
readonly column: "Column";
|
|
@@ -8322,12 +9169,17 @@ declare const CATALOGS: {
|
|
|
8322
9169
|
readonly dashed: "Dashed";
|
|
8323
9170
|
readonly dotted: "Dotted";
|
|
8324
9171
|
readonly double: "Double";
|
|
9172
|
+
readonly groove: "Groove";
|
|
9173
|
+
readonly inset: "Inset";
|
|
9174
|
+
readonly outset: "Outset";
|
|
9175
|
+
readonly ridge: "Ridge";
|
|
8325
9176
|
readonly solid: "Solid";
|
|
8326
9177
|
};
|
|
8327
9178
|
readonly color: "Color";
|
|
8328
9179
|
readonly dimensions: "Dimensions";
|
|
8329
9180
|
readonly heightLabel: "Height";
|
|
8330
9181
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
9182
|
+
readonly preview: "Preview";
|
|
8331
9183
|
readonly style: "Style";
|
|
8332
9184
|
readonly textWrapping: "Text wrapping";
|
|
8333
9185
|
readonly title: "Image Properties";
|
|
@@ -8342,6 +9194,11 @@ declare const CATALOGS: {
|
|
|
8342
9194
|
readonly wrapRight: "Wrap right";
|
|
8343
9195
|
};
|
|
8344
9196
|
};
|
|
9197
|
+
readonly insertImage: {
|
|
9198
|
+
readonly altText: "Alt text";
|
|
9199
|
+
readonly imageFile: "Image file";
|
|
9200
|
+
readonly title: "Insert Image";
|
|
9201
|
+
};
|
|
8345
9202
|
readonly insertSymbol: {
|
|
8346
9203
|
readonly categories: {
|
|
8347
9204
|
readonly arrows: "Arrows";
|
|
@@ -8358,18 +9215,19 @@ declare const CATALOGS: {
|
|
|
8358
9215
|
readonly title: "Insert symbol";
|
|
8359
9216
|
};
|
|
8360
9217
|
readonly insertTable: {
|
|
8361
|
-
readonly autofit: "Autofit";
|
|
9218
|
+
readonly autofit: "Autofit to contents";
|
|
8362
9219
|
readonly columnWidthLabel: "Column width";
|
|
8363
9220
|
readonly columnsLabel: "Columns";
|
|
8364
9221
|
readonly fixedWidth: "Fixed width";
|
|
8365
9222
|
readonly hoverToSelect: "Hover to select table size";
|
|
8366
9223
|
readonly insertButton: "Insert";
|
|
8367
9224
|
readonly orSpecifySize: "Or specify size";
|
|
9225
|
+
readonly plainTable: "Plain table";
|
|
8368
9226
|
readonly rowsLabel: "Rows";
|
|
8369
9227
|
readonly sizeSelector: "Table size selector";
|
|
8370
9228
|
readonly style: "Style";
|
|
8371
9229
|
readonly tableSize: "{cols} × {rows} table";
|
|
8372
|
-
readonly title: "Insert
|
|
9230
|
+
readonly title: "Insert Table";
|
|
8373
9231
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
8374
9232
|
};
|
|
8375
9233
|
readonly pageSetup: {
|
|
@@ -8394,6 +9252,16 @@ declare const CATALOGS: {
|
|
|
8394
9252
|
readonly sizeLabel: "Size";
|
|
8395
9253
|
readonly title: "Page Setup";
|
|
8396
9254
|
readonly top: "Top";
|
|
9255
|
+
readonly unitInches: "in";
|
|
9256
|
+
};
|
|
9257
|
+
readonly pasteSpecial: {
|
|
9258
|
+
readonly pasteMode: "Paste mode";
|
|
9259
|
+
readonly title: "Paste Special";
|
|
9260
|
+
};
|
|
9261
|
+
readonly splitCell: {
|
|
9262
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
9263
|
+
readonly splitButton: "Split";
|
|
9264
|
+
readonly title: "Split Cell";
|
|
8397
9265
|
};
|
|
8398
9266
|
readonly tableProperties: {
|
|
8399
9267
|
readonly alignOptions: {
|
|
@@ -8415,6 +9283,23 @@ declare const CATALOGS: {
|
|
|
8415
9283
|
readonly percentage: "Percentage";
|
|
8416
9284
|
};
|
|
8417
9285
|
};
|
|
9286
|
+
readonly watermark: {
|
|
9287
|
+
readonly color: "Color";
|
|
9288
|
+
readonly diagonal: "Diagonal";
|
|
9289
|
+
readonly font: "Font";
|
|
9290
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
9291
|
+
readonly imageTarget: "Image target";
|
|
9292
|
+
readonly noWatermark: "No watermark";
|
|
9293
|
+
readonly opacity: "Opacity";
|
|
9294
|
+
readonly pictureWatermark: "Picture watermark";
|
|
9295
|
+
readonly scale: "Scale";
|
|
9296
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
9297
|
+
readonly text: "Text";
|
|
9298
|
+
readonly textWatermark: "Text watermark";
|
|
9299
|
+
readonly title: "Watermark";
|
|
9300
|
+
readonly type: "Type";
|
|
9301
|
+
readonly washout: "Washout";
|
|
9302
|
+
};
|
|
8418
9303
|
};
|
|
8419
9304
|
readonly discardChanges: "Zahodiť";
|
|
8420
9305
|
readonly dismiss: "Zavrieť";
|
|
@@ -8487,6 +9372,17 @@ declare const CATALOGS: {
|
|
|
8487
9372
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
8488
9373
|
};
|
|
8489
9374
|
readonly formattingToolbar: "Panel formátovania";
|
|
9375
|
+
readonly headerFooter: {
|
|
9376
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
9377
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
9378
|
+
readonly footer: "Footer";
|
|
9379
|
+
readonly header: "Header";
|
|
9380
|
+
readonly insertPageCount: "Insert total page count";
|
|
9381
|
+
readonly insertPageNumber: "Insert current page number";
|
|
9382
|
+
readonly options: "Options";
|
|
9383
|
+
readonly removeFooter: "Remove footer";
|
|
9384
|
+
readonly removeHeader: "Remove header";
|
|
9385
|
+
};
|
|
8490
9386
|
readonly hideDetails: "Skryť detaily";
|
|
8491
9387
|
readonly historyGroup: "História";
|
|
8492
9388
|
readonly imageOverlay: {
|
|
@@ -8548,6 +9444,7 @@ declare const CATALOGS: {
|
|
|
8548
9444
|
};
|
|
8549
9445
|
readonly listFormatting: "Formátovanie zoznamu";
|
|
8550
9446
|
readonly listsGroup: "Zoznamy";
|
|
9447
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
8551
9448
|
readonly loadingDocument: "Načitávanie dokumentu...";
|
|
8552
9449
|
readonly loadingEditor: "Načítava sa editor...";
|
|
8553
9450
|
readonly lockFile: "Zamknúť súbor";
|
|
@@ -8560,8 +9457,10 @@ declare const CATALOGS: {
|
|
|
8560
9457
|
readonly moreFormatting: "Ďalšie formátovanie";
|
|
8561
9458
|
readonly networkError: "Chyba siete. Skontrolujte internetové pripojenie a skúste znova.";
|
|
8562
9459
|
readonly nextChange: "Ďalšia zmena";
|
|
9460
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
8563
9461
|
readonly numberedList: "Číslovaný zoznam";
|
|
8564
9462
|
readonly parseError: "Dokument sa nepodarilo spracovať. Môže byť poškodený alebo v nepodporovanom formáte.";
|
|
9463
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
8565
9464
|
readonly paste: "Vložiť";
|
|
8566
9465
|
readonly pasteUnformatted: "Vložiť bez formátovania";
|
|
8567
9466
|
readonly previousChange: "Predchádzajúca zmena";
|
|
@@ -8721,6 +9620,7 @@ declare const CATALOGS: {
|
|
|
8721
9620
|
readonly viewGroup: "Zobraziť";
|
|
8722
9621
|
readonly viewer: {
|
|
8723
9622
|
readonly pageIndicator: "Page {current} of {total}";
|
|
9623
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
8724
9624
|
};
|
|
8725
9625
|
readonly zoom: {
|
|
8726
9626
|
readonly zoomIn: "Zoom in";
|
|
@@ -8766,6 +9666,7 @@ declare const CATALOGS: {
|
|
|
8766
9666
|
readonly red: "Red";
|
|
8767
9667
|
readonly yellow: "Yellow";
|
|
8768
9668
|
};
|
|
9669
|
+
readonly custom: "Custom";
|
|
8769
9670
|
readonly customColor: "Custom Color";
|
|
8770
9671
|
readonly noColor: "No color";
|
|
8771
9672
|
readonly standardColors: "Standard Colors";
|
|
@@ -8790,6 +9691,7 @@ declare const CATALOGS: {
|
|
|
8790
9691
|
readonly closeDialog: "Close";
|
|
8791
9692
|
readonly insert: "Insert";
|
|
8792
9693
|
readonly px: "px";
|
|
9694
|
+
readonly remove: "Remove";
|
|
8793
9695
|
readonly update: "Update";
|
|
8794
9696
|
};
|
|
8795
9697
|
readonly contentControlDateAriaLabel: "Pick a date";
|
|
@@ -8853,13 +9755,16 @@ declare const CATALOGS: {
|
|
|
8853
9755
|
readonly title: "Footnote & Endnote Properties";
|
|
8854
9756
|
};
|
|
8855
9757
|
readonly hyperlink: {
|
|
9758
|
+
readonly addressLabel: "Address";
|
|
8856
9759
|
readonly bookmarkLabel: "Bookmark";
|
|
8857
9760
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
8858
9761
|
readonly displayTextHint: "Defaults to the selected text";
|
|
8859
9762
|
readonly displayTextLabel: "Display text";
|
|
8860
9763
|
readonly displayTextPlaceholder: "Text to display";
|
|
8861
9764
|
readonly invalidUrl: "Enter a valid URL";
|
|
9765
|
+
readonly linkTo: "Link to";
|
|
8862
9766
|
readonly removeLink: "Remove link";
|
|
9767
|
+
readonly screenTipLabel: "Screen tip";
|
|
8863
9768
|
readonly tabBookmark: "Bookmark";
|
|
8864
9769
|
readonly tabWebAddress: "Web address";
|
|
8865
9770
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -8881,9 +9786,11 @@ declare const CATALOGS: {
|
|
|
8881
9786
|
readonly top: "Top";
|
|
8882
9787
|
};
|
|
8883
9788
|
readonly alignment: "Alignment";
|
|
9789
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
8884
9790
|
readonly horizontal: "Horizontal";
|
|
8885
9791
|
readonly offset: "Offset";
|
|
8886
9792
|
readonly offsetPx: "Offset (px)";
|
|
9793
|
+
readonly position: "Position";
|
|
8887
9794
|
readonly relativeOptions: {
|
|
8888
9795
|
readonly character: "Character";
|
|
8889
9796
|
readonly column: "Column";
|
|
@@ -8904,12 +9811,17 @@ declare const CATALOGS: {
|
|
|
8904
9811
|
readonly dashed: "Dashed";
|
|
8905
9812
|
readonly dotted: "Dotted";
|
|
8906
9813
|
readonly double: "Double";
|
|
9814
|
+
readonly groove: "Groove";
|
|
9815
|
+
readonly inset: "Inset";
|
|
9816
|
+
readonly outset: "Outset";
|
|
9817
|
+
readonly ridge: "Ridge";
|
|
8907
9818
|
readonly solid: "Solid";
|
|
8908
9819
|
};
|
|
8909
9820
|
readonly color: "Color";
|
|
8910
9821
|
readonly dimensions: "Dimensions";
|
|
8911
9822
|
readonly heightLabel: "Height";
|
|
8912
9823
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
9824
|
+
readonly preview: "Preview";
|
|
8913
9825
|
readonly style: "Style";
|
|
8914
9826
|
readonly textWrapping: "Text wrapping";
|
|
8915
9827
|
readonly title: "Image Properties";
|
|
@@ -8924,6 +9836,11 @@ declare const CATALOGS: {
|
|
|
8924
9836
|
readonly wrapRight: "Wrap right";
|
|
8925
9837
|
};
|
|
8926
9838
|
};
|
|
9839
|
+
readonly insertImage: {
|
|
9840
|
+
readonly altText: "Alt text";
|
|
9841
|
+
readonly imageFile: "Image file";
|
|
9842
|
+
readonly title: "Insert Image";
|
|
9843
|
+
};
|
|
8927
9844
|
readonly insertSymbol: {
|
|
8928
9845
|
readonly categories: {
|
|
8929
9846
|
readonly arrows: "Arrows";
|
|
@@ -8940,18 +9857,19 @@ declare const CATALOGS: {
|
|
|
8940
9857
|
readonly title: "Insert symbol";
|
|
8941
9858
|
};
|
|
8942
9859
|
readonly insertTable: {
|
|
8943
|
-
readonly autofit: "Autofit";
|
|
9860
|
+
readonly autofit: "Autofit to contents";
|
|
8944
9861
|
readonly columnWidthLabel: "Column width";
|
|
8945
9862
|
readonly columnsLabel: "Columns";
|
|
8946
9863
|
readonly fixedWidth: "Fixed width";
|
|
8947
9864
|
readonly hoverToSelect: "Hover to select table size";
|
|
8948
9865
|
readonly insertButton: "Insert";
|
|
8949
9866
|
readonly orSpecifySize: "Or specify size";
|
|
9867
|
+
readonly plainTable: "Plain table";
|
|
8950
9868
|
readonly rowsLabel: "Rows";
|
|
8951
9869
|
readonly sizeSelector: "Table size selector";
|
|
8952
9870
|
readonly style: "Style";
|
|
8953
9871
|
readonly tableSize: "{cols} × {rows} table";
|
|
8954
|
-
readonly title: "Insert
|
|
9872
|
+
readonly title: "Insert Table";
|
|
8955
9873
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
8956
9874
|
};
|
|
8957
9875
|
readonly pageSetup: {
|
|
@@ -8976,6 +9894,16 @@ declare const CATALOGS: {
|
|
|
8976
9894
|
readonly sizeLabel: "Size";
|
|
8977
9895
|
readonly title: "Page Setup";
|
|
8978
9896
|
readonly top: "Top";
|
|
9897
|
+
readonly unitInches: "in";
|
|
9898
|
+
};
|
|
9899
|
+
readonly pasteSpecial: {
|
|
9900
|
+
readonly pasteMode: "Paste mode";
|
|
9901
|
+
readonly title: "Paste Special";
|
|
9902
|
+
};
|
|
9903
|
+
readonly splitCell: {
|
|
9904
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
9905
|
+
readonly splitButton: "Split";
|
|
9906
|
+
readonly title: "Split Cell";
|
|
8979
9907
|
};
|
|
8980
9908
|
readonly tableProperties: {
|
|
8981
9909
|
readonly alignOptions: {
|
|
@@ -8997,6 +9925,23 @@ declare const CATALOGS: {
|
|
|
8997
9925
|
readonly percentage: "Percentage";
|
|
8998
9926
|
};
|
|
8999
9927
|
};
|
|
9928
|
+
readonly watermark: {
|
|
9929
|
+
readonly color: "Color";
|
|
9930
|
+
readonly diagonal: "Diagonal";
|
|
9931
|
+
readonly font: "Font";
|
|
9932
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
9933
|
+
readonly imageTarget: "Image target";
|
|
9934
|
+
readonly noWatermark: "No watermark";
|
|
9935
|
+
readonly opacity: "Opacity";
|
|
9936
|
+
readonly pictureWatermark: "Picture watermark";
|
|
9937
|
+
readonly scale: "Scale";
|
|
9938
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
9939
|
+
readonly text: "Text";
|
|
9940
|
+
readonly textWatermark: "Text watermark";
|
|
9941
|
+
readonly title: "Watermark";
|
|
9942
|
+
readonly type: "Type";
|
|
9943
|
+
readonly washout: "Washout";
|
|
9944
|
+
};
|
|
9000
9945
|
};
|
|
9001
9946
|
readonly discardChanges: "Discard";
|
|
9002
9947
|
readonly dismiss: "Kapat";
|
|
@@ -9069,6 +10014,17 @@ declare const CATALOGS: {
|
|
|
9069
10014
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
9070
10015
|
};
|
|
9071
10016
|
readonly formattingToolbar: "Biçimlendirme araç çubuğu";
|
|
10017
|
+
readonly headerFooter: {
|
|
10018
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
10019
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
10020
|
+
readonly footer: "Footer";
|
|
10021
|
+
readonly header: "Header";
|
|
10022
|
+
readonly insertPageCount: "Insert total page count";
|
|
10023
|
+
readonly insertPageNumber: "Insert current page number";
|
|
10024
|
+
readonly options: "Options";
|
|
10025
|
+
readonly removeFooter: "Remove footer";
|
|
10026
|
+
readonly removeHeader: "Remove header";
|
|
10027
|
+
};
|
|
9072
10028
|
readonly hideDetails: "Ayrıntıları gizle";
|
|
9073
10029
|
readonly historyGroup: "Geçmiş";
|
|
9074
10030
|
readonly imageOverlay: {
|
|
@@ -9130,6 +10086,7 @@ declare const CATALOGS: {
|
|
|
9130
10086
|
};
|
|
9131
10087
|
readonly listFormatting: "Liste biçimlendirme";
|
|
9132
10088
|
readonly listsGroup: "Lists";
|
|
10089
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
9133
10090
|
readonly loadingDocument: "Belge yükleniyor...";
|
|
9134
10091
|
readonly loadingEditor: "Loading editor...";
|
|
9135
10092
|
readonly lockFile: "Lock file";
|
|
@@ -9142,8 +10099,10 @@ declare const CATALOGS: {
|
|
|
9142
10099
|
readonly moreFormatting: "More formatting";
|
|
9143
10100
|
readonly networkError: "Network error. Please check your internet connection and try again.";
|
|
9144
10101
|
readonly nextChange: "Next Change";
|
|
10102
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
9145
10103
|
readonly numberedList: "Numaralı liste";
|
|
9146
10104
|
readonly parseError: "The document could not be parsed. It may be corrupted or in an unsupported format.";
|
|
10105
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
9147
10106
|
readonly paste: "Yapıştır";
|
|
9148
10107
|
readonly pasteUnformatted: "Biçimlendirmeden yapıştır";
|
|
9149
10108
|
readonly previousChange: "Previous Change";
|
|
@@ -9303,6 +10262,7 @@ declare const CATALOGS: {
|
|
|
9303
10262
|
readonly viewGroup: "Görünüm";
|
|
9304
10263
|
readonly viewer: {
|
|
9305
10264
|
readonly pageIndicator: "Page {current} of {total}";
|
|
10265
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
9306
10266
|
};
|
|
9307
10267
|
readonly zoom: {
|
|
9308
10268
|
readonly zoomIn: "Zoom in";
|
|
@@ -9348,6 +10308,7 @@ declare const CATALOGS: {
|
|
|
9348
10308
|
readonly red: "Red";
|
|
9349
10309
|
readonly yellow: "Yellow";
|
|
9350
10310
|
};
|
|
10311
|
+
readonly custom: "Custom";
|
|
9351
10312
|
readonly customColor: "Custom Color";
|
|
9352
10313
|
readonly noColor: "No color";
|
|
9353
10314
|
readonly standardColors: "Standard Colors";
|
|
@@ -9372,6 +10333,7 @@ declare const CATALOGS: {
|
|
|
9372
10333
|
readonly closeDialog: "Close";
|
|
9373
10334
|
readonly insert: "Insert";
|
|
9374
10335
|
readonly px: "px";
|
|
10336
|
+
readonly remove: "Remove";
|
|
9375
10337
|
readonly update: "Update";
|
|
9376
10338
|
};
|
|
9377
10339
|
readonly contentControlDateAriaLabel: "Pick a date";
|
|
@@ -9435,13 +10397,16 @@ declare const CATALOGS: {
|
|
|
9435
10397
|
readonly title: "Footnote & Endnote Properties";
|
|
9436
10398
|
};
|
|
9437
10399
|
readonly hyperlink: {
|
|
10400
|
+
readonly addressLabel: "Address";
|
|
9438
10401
|
readonly bookmarkLabel: "Bookmark";
|
|
9439
10402
|
readonly bookmarkPlaceholder: "Select a bookmark";
|
|
9440
10403
|
readonly displayTextHint: "Defaults to the selected text";
|
|
9441
10404
|
readonly displayTextLabel: "Display text";
|
|
9442
10405
|
readonly displayTextPlaceholder: "Text to display";
|
|
9443
10406
|
readonly invalidUrl: "Enter a valid URL";
|
|
10407
|
+
readonly linkTo: "Link to";
|
|
9444
10408
|
readonly removeLink: "Remove link";
|
|
10409
|
+
readonly screenTipLabel: "Screen tip";
|
|
9445
10410
|
readonly tabBookmark: "Bookmark";
|
|
9446
10411
|
readonly tabWebAddress: "Web address";
|
|
9447
10412
|
readonly titleEdit: "Edit hyperlink";
|
|
@@ -9463,9 +10428,11 @@ declare const CATALOGS: {
|
|
|
9463
10428
|
readonly top: "Top";
|
|
9464
10429
|
};
|
|
9465
10430
|
readonly alignment: "Alignment";
|
|
10431
|
+
readonly distanceFromText: "Distance from text (px)";
|
|
9466
10432
|
readonly horizontal: "Horizontal";
|
|
9467
10433
|
readonly offset: "Offset";
|
|
9468
10434
|
readonly offsetPx: "Offset (px)";
|
|
10435
|
+
readonly position: "Position";
|
|
9469
10436
|
readonly relativeOptions: {
|
|
9470
10437
|
readonly character: "Character";
|
|
9471
10438
|
readonly column: "Column";
|
|
@@ -9486,12 +10453,17 @@ declare const CATALOGS: {
|
|
|
9486
10453
|
readonly dashed: "Dashed";
|
|
9487
10454
|
readonly dotted: "Dotted";
|
|
9488
10455
|
readonly double: "Double";
|
|
10456
|
+
readonly groove: "Groove";
|
|
10457
|
+
readonly inset: "Inset";
|
|
10458
|
+
readonly outset: "Outset";
|
|
10459
|
+
readonly ridge: "Ridge";
|
|
9489
10460
|
readonly solid: "Solid";
|
|
9490
10461
|
};
|
|
9491
10462
|
readonly color: "Color";
|
|
9492
10463
|
readonly dimensions: "Dimensions";
|
|
9493
10464
|
readonly heightLabel: "Height";
|
|
9494
10465
|
readonly lockAspectRatio: "Lock aspect ratio";
|
|
10466
|
+
readonly preview: "Preview";
|
|
9495
10467
|
readonly style: "Style";
|
|
9496
10468
|
readonly textWrapping: "Text wrapping";
|
|
9497
10469
|
readonly title: "Image Properties";
|
|
@@ -9506,6 +10478,11 @@ declare const CATALOGS: {
|
|
|
9506
10478
|
readonly wrapRight: "Wrap right";
|
|
9507
10479
|
};
|
|
9508
10480
|
};
|
|
10481
|
+
readonly insertImage: {
|
|
10482
|
+
readonly altText: "Alt text";
|
|
10483
|
+
readonly imageFile: "Image file";
|
|
10484
|
+
readonly title: "Insert Image";
|
|
10485
|
+
};
|
|
9509
10486
|
readonly insertSymbol: {
|
|
9510
10487
|
readonly categories: {
|
|
9511
10488
|
readonly arrows: "Arrows";
|
|
@@ -9522,18 +10499,19 @@ declare const CATALOGS: {
|
|
|
9522
10499
|
readonly title: "Insert symbol";
|
|
9523
10500
|
};
|
|
9524
10501
|
readonly insertTable: {
|
|
9525
|
-
readonly autofit: "Autofit";
|
|
10502
|
+
readonly autofit: "Autofit to contents";
|
|
9526
10503
|
readonly columnWidthLabel: "Column width";
|
|
9527
10504
|
readonly columnsLabel: "Columns";
|
|
9528
10505
|
readonly fixedWidth: "Fixed width";
|
|
9529
10506
|
readonly hoverToSelect: "Hover to select table size";
|
|
9530
10507
|
readonly insertButton: "Insert";
|
|
9531
10508
|
readonly orSpecifySize: "Or specify size";
|
|
10509
|
+
readonly plainTable: "Plain table";
|
|
9532
10510
|
readonly rowsLabel: "Rows";
|
|
9533
10511
|
readonly sizeSelector: "Table size selector";
|
|
9534
10512
|
readonly style: "Style";
|
|
9535
10513
|
readonly tableSize: "{cols} × {rows} table";
|
|
9536
|
-
readonly title: "Insert
|
|
10514
|
+
readonly title: "Insert Table";
|
|
9537
10515
|
readonly validationHint: "Rows: {minRows}–{maxRows}, columns: {minCols}–{maxCols}";
|
|
9538
10516
|
};
|
|
9539
10517
|
readonly pageSetup: {
|
|
@@ -9558,6 +10536,16 @@ declare const CATALOGS: {
|
|
|
9558
10536
|
readonly sizeLabel: "Size";
|
|
9559
10537
|
readonly title: "Page Setup";
|
|
9560
10538
|
readonly top: "Top";
|
|
10539
|
+
readonly unitInches: "in";
|
|
10540
|
+
};
|
|
10541
|
+
readonly pasteSpecial: {
|
|
10542
|
+
readonly pasteMode: "Paste mode";
|
|
10543
|
+
readonly title: "Paste Special";
|
|
10544
|
+
};
|
|
10545
|
+
readonly splitCell: {
|
|
10546
|
+
readonly mergeBeforeSplit: "Merge selected cells before splitting";
|
|
10547
|
+
readonly splitButton: "Split";
|
|
10548
|
+
readonly title: "Split Cell";
|
|
9561
10549
|
};
|
|
9562
10550
|
readonly tableProperties: {
|
|
9563
10551
|
readonly alignOptions: {
|
|
@@ -9579,6 +10567,23 @@ declare const CATALOGS: {
|
|
|
9579
10567
|
readonly percentage: "Percentage";
|
|
9580
10568
|
};
|
|
9581
10569
|
};
|
|
10570
|
+
readonly watermark: {
|
|
10571
|
+
readonly color: "Color";
|
|
10572
|
+
readonly diagonal: "Diagonal";
|
|
10573
|
+
readonly font: "Font";
|
|
10574
|
+
readonly imageRelationshipId: "Header image relationship id";
|
|
10575
|
+
readonly imageTarget: "Image target";
|
|
10576
|
+
readonly noWatermark: "No watermark";
|
|
10577
|
+
readonly opacity: "Opacity";
|
|
10578
|
+
readonly pictureWatermark: "Picture watermark";
|
|
10579
|
+
readonly scale: "Scale";
|
|
10580
|
+
readonly targetIsExternalUrl: "Target is an external URL";
|
|
10581
|
+
readonly text: "Text";
|
|
10582
|
+
readonly textWatermark: "Text watermark";
|
|
10583
|
+
readonly title: "Watermark";
|
|
10584
|
+
readonly type: "Type";
|
|
10585
|
+
readonly washout: "Washout";
|
|
10586
|
+
};
|
|
9582
10587
|
};
|
|
9583
10588
|
readonly discardChanges: "Discard";
|
|
9584
10589
|
readonly dismiss: "忽略";
|
|
@@ -9651,6 +10656,17 @@ declare const CATALOGS: {
|
|
|
9651
10656
|
readonly superscriptShortcut: "Superscript (Ctrl+Shift+=)";
|
|
9652
10657
|
};
|
|
9653
10658
|
readonly formattingToolbar: "格式工具栏";
|
|
10659
|
+
readonly headerFooter: {
|
|
10660
|
+
readonly closeFooterEditing: "Close footer editing";
|
|
10661
|
+
readonly closeHeaderEditing: "Close header editing";
|
|
10662
|
+
readonly footer: "Footer";
|
|
10663
|
+
readonly header: "Header";
|
|
10664
|
+
readonly insertPageCount: "Insert total page count";
|
|
10665
|
+
readonly insertPageNumber: "Insert current page number";
|
|
10666
|
+
readonly options: "Options";
|
|
10667
|
+
readonly removeFooter: "Remove footer";
|
|
10668
|
+
readonly removeHeader: "Remove header";
|
|
10669
|
+
};
|
|
9654
10670
|
readonly hideDetails: "隐藏详情";
|
|
9655
10671
|
readonly historyGroup: "历史记录";
|
|
9656
10672
|
readonly imageOverlay: {
|
|
@@ -9712,6 +10728,7 @@ declare const CATALOGS: {
|
|
|
9712
10728
|
};
|
|
9713
10729
|
readonly listFormatting: "列表格式";
|
|
9714
10730
|
readonly listsGroup: "Lists";
|
|
10731
|
+
readonly loadDocumentFailedTitle: "Failed to Load Document";
|
|
9715
10732
|
readonly loadingDocument: "正在加载文档...";
|
|
9716
10733
|
readonly loadingEditor: "Loading editor...";
|
|
9717
10734
|
readonly lockFile: "Lock file";
|
|
@@ -9724,8 +10741,10 @@ declare const CATALOGS: {
|
|
|
9724
10741
|
readonly moreFormatting: "More formatting";
|
|
9725
10742
|
readonly networkError: "Network error. Please check your internet connection and try again.";
|
|
9726
10743
|
readonly nextChange: "Next Change";
|
|
10744
|
+
readonly noDocumentLoaded: "No document loaded";
|
|
9727
10745
|
readonly numberedList: "编号";
|
|
9728
10746
|
readonly parseError: "The document could not be parsed. It may be corrupted or in an unsupported format.";
|
|
10747
|
+
readonly parseErrorTitle: "Unable to Parse Document";
|
|
9729
10748
|
readonly paste: "粘贴";
|
|
9730
10749
|
readonly pasteUnformatted: "粘贴为纯文本,不保留任何格式";
|
|
9731
10750
|
readonly previousChange: "Previous Change";
|
|
@@ -9885,6 +10904,7 @@ declare const CATALOGS: {
|
|
|
9885
10904
|
readonly viewGroup: "视图";
|
|
9886
10905
|
readonly viewer: {
|
|
9887
10906
|
readonly pageIndicator: "Page {current} of {total}";
|
|
10907
|
+
readonly pageOfTotal: "{current} of {total}";
|
|
9888
10908
|
};
|
|
9889
10909
|
readonly zoom: {
|
|
9890
10910
|
readonly zoomIn: "Zoom in";
|