@eigenpal/docx-editor-i18n 1.2.1 → 1.3.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/de.js +23 -1
- package/dist/de.mjs +23 -1
- package/dist/en.js +22 -0
- package/dist/en.mjs +22 -0
- package/dist/fr.js +23 -1
- package/dist/fr.mjs +23 -1
- package/dist/he.js +23 -1
- package/dist/he.mjs +23 -1
- package/dist/hi.js +23 -1
- package/dist/hi.mjs +23 -1
- package/dist/index.d.mts +22 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +206 -8
- package/dist/index.mjs +206 -8
- package/dist/pl.js +23 -1
- package/dist/pl.mjs +23 -1
- package/dist/pt-BR.js +23 -1
- package/dist/pt-BR.mjs +23 -1
- package/dist/tr.js +23 -1
- package/dist/tr.mjs +23 -1
- package/dist/zh-CN.js +23 -1
- package/dist/zh-CN.mjs +23 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -78,6 +78,7 @@ var en_default = {
|
|
|
78
78
|
pageBreak: "Page break",
|
|
79
79
|
tableOfContents: "Table of contents",
|
|
80
80
|
symbol: "Symbol",
|
|
81
|
+
watermark: "Watermark",
|
|
81
82
|
help: "Help",
|
|
82
83
|
reportIssue: "Report issue"
|
|
83
84
|
},
|
|
@@ -279,6 +280,27 @@ var en_default = {
|
|
|
279
280
|
tableStyleLabel: "Table style",
|
|
280
281
|
validationHint: "Rows: {minRows}-{maxRows}, Columns: {minCols}-{maxCols}"
|
|
281
282
|
},
|
|
283
|
+
watermark: {
|
|
284
|
+
title: "Watermark",
|
|
285
|
+
noWatermark: "No watermark",
|
|
286
|
+
picture: "Picture watermark",
|
|
287
|
+
text: "Text watermark",
|
|
288
|
+
selectPicture: "Select Picture...",
|
|
289
|
+
scale: "Scale",
|
|
290
|
+
washout: "Washout",
|
|
291
|
+
textLabel: "Text",
|
|
292
|
+
fontLabel: "Font",
|
|
293
|
+
sizeLabel: "Size",
|
|
294
|
+
sizeAuto: "Auto",
|
|
295
|
+
colorLabel: "Color",
|
|
296
|
+
layoutLabel: "Layout",
|
|
297
|
+
diagonal: "Diagonal",
|
|
298
|
+
horizontal: "Horizontal",
|
|
299
|
+
semitransparent: "Semitransparent",
|
|
300
|
+
presetLabel: "Preset",
|
|
301
|
+
applyButton: "Apply",
|
|
302
|
+
cancelButton: "Cancel"
|
|
303
|
+
},
|
|
282
304
|
splitCell: {
|
|
283
305
|
title: "Split Cell",
|
|
284
306
|
description: "Set how many rows and columns to split the selected cell into.",
|
|
@@ -918,7 +940,8 @@ var de_default = {
|
|
|
918
940
|
open: "Öffnen",
|
|
919
941
|
openShortcut: "Strg+O",
|
|
920
942
|
save: "Speichern",
|
|
921
|
-
saveShortcut: "Strg+S"
|
|
943
|
+
saveShortcut: "Strg+S",
|
|
944
|
+
watermark: "Wasserzeichen"
|
|
922
945
|
},
|
|
923
946
|
formattingBar: {
|
|
924
947
|
groups: {
|
|
@@ -1408,6 +1431,27 @@ var de_default = {
|
|
|
1408
1431
|
noResults: 'Keine Tastenkombinationen für "{query}" gefunden',
|
|
1409
1432
|
pressEscToClose: "{key} drücken, um zu schließen",
|
|
1410
1433
|
or: "oder"
|
|
1434
|
+
},
|
|
1435
|
+
watermark: {
|
|
1436
|
+
applyButton: "Übernehmen",
|
|
1437
|
+
cancelButton: "Abbrechen",
|
|
1438
|
+
colorLabel: "Farbe",
|
|
1439
|
+
diagonal: "Diagonal",
|
|
1440
|
+
fontLabel: "Schriftart",
|
|
1441
|
+
horizontal: "Horizontal",
|
|
1442
|
+
layoutLabel: "Layout",
|
|
1443
|
+
noWatermark: "Kein Wasserzeichen",
|
|
1444
|
+
picture: "Bildwasserzeichen",
|
|
1445
|
+
presetLabel: "Vorlage",
|
|
1446
|
+
scale: "Skalierung",
|
|
1447
|
+
selectPicture: "Bild auswählen …",
|
|
1448
|
+
semitransparent: "Halbtransparent",
|
|
1449
|
+
sizeAuto: "Automatisch",
|
|
1450
|
+
sizeLabel: "Größe",
|
|
1451
|
+
text: "Textwasserzeichen",
|
|
1452
|
+
textLabel: "Text",
|
|
1453
|
+
title: "Wasserzeichen",
|
|
1454
|
+
washout: "Auswaschen"
|
|
1411
1455
|
}
|
|
1412
1456
|
},
|
|
1413
1457
|
comments: {
|
|
@@ -1757,7 +1801,8 @@ var fr_default = {
|
|
|
1757
1801
|
tableOfContents: "Table des matières",
|
|
1758
1802
|
symbol: "Symbole",
|
|
1759
1803
|
help: "Aide",
|
|
1760
|
-
reportIssue: "Signaler un bug"
|
|
1804
|
+
reportIssue: "Signaler un bug",
|
|
1805
|
+
watermark: "Filigrane"
|
|
1761
1806
|
},
|
|
1762
1807
|
formattingBar: {
|
|
1763
1808
|
groups: {
|
|
@@ -2247,6 +2292,27 @@ var fr_default = {
|
|
|
2247
2292
|
noResults: "Aucun raccourci trouvé pour « {query} »",
|
|
2248
2293
|
pressEscToClose: "Appuyez sur {key} pour fermer",
|
|
2249
2294
|
or: "ou"
|
|
2295
|
+
},
|
|
2296
|
+
watermark: {
|
|
2297
|
+
applyButton: "Appliquer",
|
|
2298
|
+
cancelButton: "Annuler",
|
|
2299
|
+
colorLabel: "Couleur",
|
|
2300
|
+
diagonal: "Diagonale",
|
|
2301
|
+
fontLabel: "Police",
|
|
2302
|
+
horizontal: "Horizontale",
|
|
2303
|
+
layoutLabel: "Disposition",
|
|
2304
|
+
noWatermark: "Aucun filigrane",
|
|
2305
|
+
picture: "Filigrane image",
|
|
2306
|
+
presetLabel: "Prédéfini",
|
|
2307
|
+
scale: "Échelle",
|
|
2308
|
+
selectPicture: "Sélectionner une image…",
|
|
2309
|
+
semitransparent: "Semi-transparent",
|
|
2310
|
+
sizeAuto: "Auto",
|
|
2311
|
+
sizeLabel: "Taille",
|
|
2312
|
+
text: "Filigrane texte",
|
|
2313
|
+
textLabel: "Texte",
|
|
2314
|
+
title: "Filigrane",
|
|
2315
|
+
washout: "Estompé"
|
|
2250
2316
|
}
|
|
2251
2317
|
},
|
|
2252
2318
|
comments: {
|
|
@@ -2596,7 +2662,8 @@ var he_default = {
|
|
|
2596
2662
|
open: "פתיחה",
|
|
2597
2663
|
openShortcut: "Ctrl+O",
|
|
2598
2664
|
save: "שמירה",
|
|
2599
|
-
saveShortcut: "Ctrl+S"
|
|
2665
|
+
saveShortcut: "Ctrl+S",
|
|
2666
|
+
watermark: "סימן מים"
|
|
2600
2667
|
},
|
|
2601
2668
|
formattingBar: {
|
|
2602
2669
|
groups: {
|
|
@@ -3086,6 +3153,27 @@ var he_default = {
|
|
|
3086
3153
|
noResults: 'לא נמצאו קיצורים עבור "{query}"',
|
|
3087
3154
|
pressEscToClose: "לחץ {key} כדי לסגור",
|
|
3088
3155
|
or: "או"
|
|
3156
|
+
},
|
|
3157
|
+
watermark: {
|
|
3158
|
+
applyButton: "החלה",
|
|
3159
|
+
cancelButton: "ביטול",
|
|
3160
|
+
colorLabel: "צבע",
|
|
3161
|
+
diagonal: "אלכסוני",
|
|
3162
|
+
fontLabel: "גופן",
|
|
3163
|
+
horizontal: "אופקי",
|
|
3164
|
+
layoutLabel: "פריסה",
|
|
3165
|
+
noWatermark: "ללא סימן מים",
|
|
3166
|
+
picture: "סימן מים תמונה",
|
|
3167
|
+
presetLabel: "קבוע מראש",
|
|
3168
|
+
scale: "קנה מידה",
|
|
3169
|
+
selectPicture: "בחר תמונה…",
|
|
3170
|
+
semitransparent: "שקוף למחצה",
|
|
3171
|
+
sizeAuto: "אוטומטי",
|
|
3172
|
+
sizeLabel: "גודל",
|
|
3173
|
+
text: "סימן מים טקסט",
|
|
3174
|
+
textLabel: "טקסט",
|
|
3175
|
+
title: "סימן מים",
|
|
3176
|
+
washout: "דהוי"
|
|
3089
3177
|
}
|
|
3090
3178
|
},
|
|
3091
3179
|
comments: {
|
|
@@ -3435,7 +3523,8 @@ var hi_default = {
|
|
|
3435
3523
|
tableOfContents: "विषय-सूची",
|
|
3436
3524
|
symbol: "प्रतीक",
|
|
3437
3525
|
help: "सहायता",
|
|
3438
|
-
reportIssue: "समस्या की रिपोर्ट करें"
|
|
3526
|
+
reportIssue: "समस्या की रिपोर्ट करें",
|
|
3527
|
+
watermark: "वॉटरमार्क"
|
|
3439
3528
|
},
|
|
3440
3529
|
formattingBar: {
|
|
3441
3530
|
groups: {
|
|
@@ -3925,6 +4014,27 @@ var hi_default = {
|
|
|
3925
4014
|
noResults: '"{query}" से मेल खाने वाला कोई शॉर्टकट नहीं मिला',
|
|
3926
4015
|
pressEscToClose: "बंद करने के लिए {key} दबाएं",
|
|
3927
4016
|
or: "या"
|
|
4017
|
+
},
|
|
4018
|
+
watermark: {
|
|
4019
|
+
applyButton: "लागू करें",
|
|
4020
|
+
cancelButton: "रद्द करें",
|
|
4021
|
+
colorLabel: "रंग",
|
|
4022
|
+
diagonal: "विकर्ण",
|
|
4023
|
+
fontLabel: "फ़ॉन्ट",
|
|
4024
|
+
horizontal: "क्षैतिज",
|
|
4025
|
+
layoutLabel: "लेआउट",
|
|
4026
|
+
noWatermark: "कोई वॉटरमार्क नहीं",
|
|
4027
|
+
picture: "चित्र वॉटरमार्क",
|
|
4028
|
+
presetLabel: "प्रीसेट",
|
|
4029
|
+
scale: "स्केल",
|
|
4030
|
+
selectPicture: "चित्र चुनें…",
|
|
4031
|
+
semitransparent: "अर्धपारदर्शी",
|
|
4032
|
+
sizeAuto: "स्वतः",
|
|
4033
|
+
sizeLabel: "आकार",
|
|
4034
|
+
text: "टेक्स्ट वॉटरमार्क",
|
|
4035
|
+
textLabel: "टेक्स्ट",
|
|
4036
|
+
title: "वॉटरमार्क",
|
|
4037
|
+
washout: "धुंधला"
|
|
3928
4038
|
}
|
|
3929
4039
|
},
|
|
3930
4040
|
comments: {
|
|
@@ -4274,7 +4384,8 @@ var pl_default = {
|
|
|
4274
4384
|
open: "Otwórz",
|
|
4275
4385
|
openShortcut: "Ctrl+O",
|
|
4276
4386
|
save: "Zapisz",
|
|
4277
|
-
saveShortcut: "Ctrl+S"
|
|
4387
|
+
saveShortcut: "Ctrl+S",
|
|
4388
|
+
watermark: "Znak wodny"
|
|
4278
4389
|
},
|
|
4279
4390
|
formattingBar: {
|
|
4280
4391
|
groups: {
|
|
@@ -4764,6 +4875,27 @@ var pl_default = {
|
|
|
4764
4875
|
noResults: 'Nie znaleziono skrótów pasujących do "{query}"',
|
|
4765
4876
|
pressEscToClose: "Naciśnij {key}, aby zamknąć",
|
|
4766
4877
|
or: "lub"
|
|
4878
|
+
},
|
|
4879
|
+
watermark: {
|
|
4880
|
+
applyButton: "Zastosuj",
|
|
4881
|
+
cancelButton: "Anuluj",
|
|
4882
|
+
colorLabel: "Kolor",
|
|
4883
|
+
diagonal: "Po przekątnej",
|
|
4884
|
+
fontLabel: "Czcionka",
|
|
4885
|
+
horizontal: "Poziomo",
|
|
4886
|
+
layoutLabel: "Układ",
|
|
4887
|
+
noWatermark: "Bez znaku wodnego",
|
|
4888
|
+
picture: "Obrazkowy znak wodny",
|
|
4889
|
+
presetLabel: "Predefiniowany",
|
|
4890
|
+
scale: "Skala",
|
|
4891
|
+
selectPicture: "Wybierz obraz…",
|
|
4892
|
+
semitransparent: "Półprzezroczysty",
|
|
4893
|
+
sizeAuto: "Auto",
|
|
4894
|
+
sizeLabel: "Rozmiar",
|
|
4895
|
+
text: "Tekstowy znak wodny",
|
|
4896
|
+
textLabel: "Tekst",
|
|
4897
|
+
title: "Znak wodny",
|
|
4898
|
+
washout: "Wyblakły"
|
|
4767
4899
|
}
|
|
4768
4900
|
},
|
|
4769
4901
|
comments: {
|
|
@@ -5113,7 +5245,8 @@ var pt_BR_default = {
|
|
|
5113
5245
|
open: "Abrir",
|
|
5114
5246
|
openShortcut: "Ctrl+O",
|
|
5115
5247
|
save: "Salvar",
|
|
5116
|
-
saveShortcut: "Ctrl+S"
|
|
5248
|
+
saveShortcut: "Ctrl+S",
|
|
5249
|
+
watermark: "Marca d'água"
|
|
5117
5250
|
},
|
|
5118
5251
|
formattingBar: {
|
|
5119
5252
|
groups: {
|
|
@@ -5603,6 +5736,27 @@ var pt_BR_default = {
|
|
|
5603
5736
|
noResults: 'Nenhum atalho encontrado para "{query}"',
|
|
5604
5737
|
pressEscToClose: "Pressione {key} para fechar",
|
|
5605
5738
|
or: "ou"
|
|
5739
|
+
},
|
|
5740
|
+
watermark: {
|
|
5741
|
+
applyButton: "Aplicar",
|
|
5742
|
+
cancelButton: "Cancelar",
|
|
5743
|
+
colorLabel: "Cor",
|
|
5744
|
+
diagonal: "Diagonal",
|
|
5745
|
+
fontLabel: "Fonte",
|
|
5746
|
+
horizontal: "Horizontal",
|
|
5747
|
+
layoutLabel: "Layout",
|
|
5748
|
+
noWatermark: "Sem marca d'água",
|
|
5749
|
+
picture: "Marca d'água de imagem",
|
|
5750
|
+
presetLabel: "Predefinição",
|
|
5751
|
+
scale: "Escala",
|
|
5752
|
+
selectPicture: "Selecionar imagem…",
|
|
5753
|
+
semitransparent: "Semitransparente",
|
|
5754
|
+
sizeAuto: "Automático",
|
|
5755
|
+
sizeLabel: "Tamanho",
|
|
5756
|
+
text: "Marca d'água de texto",
|
|
5757
|
+
textLabel: "Texto",
|
|
5758
|
+
title: "Marca d'água",
|
|
5759
|
+
washout: "Desbotado"
|
|
5606
5760
|
}
|
|
5607
5761
|
},
|
|
5608
5762
|
comments: {
|
|
@@ -5952,7 +6106,8 @@ var tr_default = {
|
|
|
5952
6106
|
tableOfContents: "İçindekiler tablosu",
|
|
5953
6107
|
symbol: "Sembol",
|
|
5954
6108
|
help: "Yardım",
|
|
5955
|
-
reportIssue: "Sorun bildir"
|
|
6109
|
+
reportIssue: "Sorun bildir",
|
|
6110
|
+
watermark: "Filigran"
|
|
5956
6111
|
},
|
|
5957
6112
|
formattingBar: {
|
|
5958
6113
|
groups: {
|
|
@@ -6442,6 +6597,27 @@ var tr_default = {
|
|
|
6442
6597
|
noResults: '"{query}" eşleşen kısayol yok',
|
|
6443
6598
|
pressEscToClose: "Kapatmak için {key} tuşuna bas",
|
|
6444
6599
|
or: "veya"
|
|
6600
|
+
},
|
|
6601
|
+
watermark: {
|
|
6602
|
+
applyButton: "Uygula",
|
|
6603
|
+
cancelButton: "İptal",
|
|
6604
|
+
colorLabel: "Renk",
|
|
6605
|
+
diagonal: "Çapraz",
|
|
6606
|
+
fontLabel: "Yazı tipi",
|
|
6607
|
+
horizontal: "Yatay",
|
|
6608
|
+
layoutLabel: "Düzen",
|
|
6609
|
+
noWatermark: "Filigran yok",
|
|
6610
|
+
picture: "Resim filigranı",
|
|
6611
|
+
presetLabel: "Hazır ayar",
|
|
6612
|
+
scale: "Ölçek",
|
|
6613
|
+
selectPicture: "Resim Seç…",
|
|
6614
|
+
semitransparent: "Yarı saydam",
|
|
6615
|
+
sizeAuto: "Otomatik",
|
|
6616
|
+
sizeLabel: "Boyut",
|
|
6617
|
+
text: "Metin filigranı",
|
|
6618
|
+
textLabel: "Metin",
|
|
6619
|
+
title: "Filigran",
|
|
6620
|
+
washout: "Soluk"
|
|
6445
6621
|
}
|
|
6446
6622
|
},
|
|
6447
6623
|
comments: {
|
|
@@ -6791,7 +6967,8 @@ var zh_CN_default = {
|
|
|
6791
6967
|
tableOfContents: "目录",
|
|
6792
6968
|
symbol: "符号",
|
|
6793
6969
|
help: "帮助",
|
|
6794
|
-
reportIssue: "反馈问题"
|
|
6970
|
+
reportIssue: "反馈问题",
|
|
6971
|
+
watermark: "水印"
|
|
6795
6972
|
},
|
|
6796
6973
|
formattingBar: {
|
|
6797
6974
|
groups: {
|
|
@@ -7281,6 +7458,27 @@ var zh_CN_default = {
|
|
|
7281
7458
|
noResults: '未找到与 "{query}" 匹配的快捷方式',
|
|
7282
7459
|
pressEscToClose: "按 {key} 关闭",
|
|
7283
7460
|
or: "或"
|
|
7461
|
+
},
|
|
7462
|
+
watermark: {
|
|
7463
|
+
applyButton: "应用",
|
|
7464
|
+
cancelButton: "取消",
|
|
7465
|
+
colorLabel: "颜色",
|
|
7466
|
+
diagonal: "斜式",
|
|
7467
|
+
fontLabel: "字体",
|
|
7468
|
+
horizontal: "水平",
|
|
7469
|
+
layoutLabel: "版式",
|
|
7470
|
+
noWatermark: "无水印",
|
|
7471
|
+
picture: "图片水印",
|
|
7472
|
+
presetLabel: "预设",
|
|
7473
|
+
scale: "缩放",
|
|
7474
|
+
selectPicture: "选择图片…",
|
|
7475
|
+
semitransparent: "半透明",
|
|
7476
|
+
sizeAuto: "自动",
|
|
7477
|
+
sizeLabel: "大小",
|
|
7478
|
+
text: "文字水印",
|
|
7479
|
+
textLabel: "文字",
|
|
7480
|
+
title: "水印",
|
|
7481
|
+
washout: "冲蚀"
|
|
7284
7482
|
}
|
|
7285
7483
|
},
|
|
7286
7484
|
comments: {
|
package/dist/index.mjs
CHANGED
|
@@ -41,6 +41,7 @@ var en_default = {
|
|
|
41
41
|
pageBreak: "Page break",
|
|
42
42
|
tableOfContents: "Table of contents",
|
|
43
43
|
symbol: "Symbol",
|
|
44
|
+
watermark: "Watermark",
|
|
44
45
|
help: "Help",
|
|
45
46
|
reportIssue: "Report issue"
|
|
46
47
|
},
|
|
@@ -242,6 +243,27 @@ var en_default = {
|
|
|
242
243
|
tableStyleLabel: "Table style",
|
|
243
244
|
validationHint: "Rows: {minRows}-{maxRows}, Columns: {minCols}-{maxCols}"
|
|
244
245
|
},
|
|
246
|
+
watermark: {
|
|
247
|
+
title: "Watermark",
|
|
248
|
+
noWatermark: "No watermark",
|
|
249
|
+
picture: "Picture watermark",
|
|
250
|
+
text: "Text watermark",
|
|
251
|
+
selectPicture: "Select Picture...",
|
|
252
|
+
scale: "Scale",
|
|
253
|
+
washout: "Washout",
|
|
254
|
+
textLabel: "Text",
|
|
255
|
+
fontLabel: "Font",
|
|
256
|
+
sizeLabel: "Size",
|
|
257
|
+
sizeAuto: "Auto",
|
|
258
|
+
colorLabel: "Color",
|
|
259
|
+
layoutLabel: "Layout",
|
|
260
|
+
diagonal: "Diagonal",
|
|
261
|
+
horizontal: "Horizontal",
|
|
262
|
+
semitransparent: "Semitransparent",
|
|
263
|
+
presetLabel: "Preset",
|
|
264
|
+
applyButton: "Apply",
|
|
265
|
+
cancelButton: "Cancel"
|
|
266
|
+
},
|
|
245
267
|
splitCell: {
|
|
246
268
|
title: "Split Cell",
|
|
247
269
|
description: "Set how many rows and columns to split the selected cell into.",
|
|
@@ -881,7 +903,8 @@ var de_default = {
|
|
|
881
903
|
open: "Öffnen",
|
|
882
904
|
openShortcut: "Strg+O",
|
|
883
905
|
save: "Speichern",
|
|
884
|
-
saveShortcut: "Strg+S"
|
|
906
|
+
saveShortcut: "Strg+S",
|
|
907
|
+
watermark: "Wasserzeichen"
|
|
885
908
|
},
|
|
886
909
|
formattingBar: {
|
|
887
910
|
groups: {
|
|
@@ -1371,6 +1394,27 @@ var de_default = {
|
|
|
1371
1394
|
noResults: 'Keine Tastenkombinationen für "{query}" gefunden',
|
|
1372
1395
|
pressEscToClose: "{key} drücken, um zu schließen",
|
|
1373
1396
|
or: "oder"
|
|
1397
|
+
},
|
|
1398
|
+
watermark: {
|
|
1399
|
+
applyButton: "Übernehmen",
|
|
1400
|
+
cancelButton: "Abbrechen",
|
|
1401
|
+
colorLabel: "Farbe",
|
|
1402
|
+
diagonal: "Diagonal",
|
|
1403
|
+
fontLabel: "Schriftart",
|
|
1404
|
+
horizontal: "Horizontal",
|
|
1405
|
+
layoutLabel: "Layout",
|
|
1406
|
+
noWatermark: "Kein Wasserzeichen",
|
|
1407
|
+
picture: "Bildwasserzeichen",
|
|
1408
|
+
presetLabel: "Vorlage",
|
|
1409
|
+
scale: "Skalierung",
|
|
1410
|
+
selectPicture: "Bild auswählen …",
|
|
1411
|
+
semitransparent: "Halbtransparent",
|
|
1412
|
+
sizeAuto: "Automatisch",
|
|
1413
|
+
sizeLabel: "Größe",
|
|
1414
|
+
text: "Textwasserzeichen",
|
|
1415
|
+
textLabel: "Text",
|
|
1416
|
+
title: "Wasserzeichen",
|
|
1417
|
+
washout: "Auswaschen"
|
|
1374
1418
|
}
|
|
1375
1419
|
},
|
|
1376
1420
|
comments: {
|
|
@@ -1720,7 +1764,8 @@ var fr_default = {
|
|
|
1720
1764
|
tableOfContents: "Table des matières",
|
|
1721
1765
|
symbol: "Symbole",
|
|
1722
1766
|
help: "Aide",
|
|
1723
|
-
reportIssue: "Signaler un bug"
|
|
1767
|
+
reportIssue: "Signaler un bug",
|
|
1768
|
+
watermark: "Filigrane"
|
|
1724
1769
|
},
|
|
1725
1770
|
formattingBar: {
|
|
1726
1771
|
groups: {
|
|
@@ -2210,6 +2255,27 @@ var fr_default = {
|
|
|
2210
2255
|
noResults: "Aucun raccourci trouvé pour « {query} »",
|
|
2211
2256
|
pressEscToClose: "Appuyez sur {key} pour fermer",
|
|
2212
2257
|
or: "ou"
|
|
2258
|
+
},
|
|
2259
|
+
watermark: {
|
|
2260
|
+
applyButton: "Appliquer",
|
|
2261
|
+
cancelButton: "Annuler",
|
|
2262
|
+
colorLabel: "Couleur",
|
|
2263
|
+
diagonal: "Diagonale",
|
|
2264
|
+
fontLabel: "Police",
|
|
2265
|
+
horizontal: "Horizontale",
|
|
2266
|
+
layoutLabel: "Disposition",
|
|
2267
|
+
noWatermark: "Aucun filigrane",
|
|
2268
|
+
picture: "Filigrane image",
|
|
2269
|
+
presetLabel: "Prédéfini",
|
|
2270
|
+
scale: "Échelle",
|
|
2271
|
+
selectPicture: "Sélectionner une image…",
|
|
2272
|
+
semitransparent: "Semi-transparent",
|
|
2273
|
+
sizeAuto: "Auto",
|
|
2274
|
+
sizeLabel: "Taille",
|
|
2275
|
+
text: "Filigrane texte",
|
|
2276
|
+
textLabel: "Texte",
|
|
2277
|
+
title: "Filigrane",
|
|
2278
|
+
washout: "Estompé"
|
|
2213
2279
|
}
|
|
2214
2280
|
},
|
|
2215
2281
|
comments: {
|
|
@@ -2559,7 +2625,8 @@ var he_default = {
|
|
|
2559
2625
|
open: "פתיחה",
|
|
2560
2626
|
openShortcut: "Ctrl+O",
|
|
2561
2627
|
save: "שמירה",
|
|
2562
|
-
saveShortcut: "Ctrl+S"
|
|
2628
|
+
saveShortcut: "Ctrl+S",
|
|
2629
|
+
watermark: "סימן מים"
|
|
2563
2630
|
},
|
|
2564
2631
|
formattingBar: {
|
|
2565
2632
|
groups: {
|
|
@@ -3049,6 +3116,27 @@ var he_default = {
|
|
|
3049
3116
|
noResults: 'לא נמצאו קיצורים עבור "{query}"',
|
|
3050
3117
|
pressEscToClose: "לחץ {key} כדי לסגור",
|
|
3051
3118
|
or: "או"
|
|
3119
|
+
},
|
|
3120
|
+
watermark: {
|
|
3121
|
+
applyButton: "החלה",
|
|
3122
|
+
cancelButton: "ביטול",
|
|
3123
|
+
colorLabel: "צבע",
|
|
3124
|
+
diagonal: "אלכסוני",
|
|
3125
|
+
fontLabel: "גופן",
|
|
3126
|
+
horizontal: "אופקי",
|
|
3127
|
+
layoutLabel: "פריסה",
|
|
3128
|
+
noWatermark: "ללא סימן מים",
|
|
3129
|
+
picture: "סימן מים תמונה",
|
|
3130
|
+
presetLabel: "קבוע מראש",
|
|
3131
|
+
scale: "קנה מידה",
|
|
3132
|
+
selectPicture: "בחר תמונה…",
|
|
3133
|
+
semitransparent: "שקוף למחצה",
|
|
3134
|
+
sizeAuto: "אוטומטי",
|
|
3135
|
+
sizeLabel: "גודל",
|
|
3136
|
+
text: "סימן מים טקסט",
|
|
3137
|
+
textLabel: "טקסט",
|
|
3138
|
+
title: "סימן מים",
|
|
3139
|
+
washout: "דהוי"
|
|
3052
3140
|
}
|
|
3053
3141
|
},
|
|
3054
3142
|
comments: {
|
|
@@ -3398,7 +3486,8 @@ var hi_default = {
|
|
|
3398
3486
|
tableOfContents: "विषय-सूची",
|
|
3399
3487
|
symbol: "प्रतीक",
|
|
3400
3488
|
help: "सहायता",
|
|
3401
|
-
reportIssue: "समस्या की रिपोर्ट करें"
|
|
3489
|
+
reportIssue: "समस्या की रिपोर्ट करें",
|
|
3490
|
+
watermark: "वॉटरमार्क"
|
|
3402
3491
|
},
|
|
3403
3492
|
formattingBar: {
|
|
3404
3493
|
groups: {
|
|
@@ -3888,6 +3977,27 @@ var hi_default = {
|
|
|
3888
3977
|
noResults: '"{query}" से मेल खाने वाला कोई शॉर्टकट नहीं मिला',
|
|
3889
3978
|
pressEscToClose: "बंद करने के लिए {key} दबाएं",
|
|
3890
3979
|
or: "या"
|
|
3980
|
+
},
|
|
3981
|
+
watermark: {
|
|
3982
|
+
applyButton: "लागू करें",
|
|
3983
|
+
cancelButton: "रद्द करें",
|
|
3984
|
+
colorLabel: "रंग",
|
|
3985
|
+
diagonal: "विकर्ण",
|
|
3986
|
+
fontLabel: "फ़ॉन्ट",
|
|
3987
|
+
horizontal: "क्षैतिज",
|
|
3988
|
+
layoutLabel: "लेआउट",
|
|
3989
|
+
noWatermark: "कोई वॉटरमार्क नहीं",
|
|
3990
|
+
picture: "चित्र वॉटरमार्क",
|
|
3991
|
+
presetLabel: "प्रीसेट",
|
|
3992
|
+
scale: "स्केल",
|
|
3993
|
+
selectPicture: "चित्र चुनें…",
|
|
3994
|
+
semitransparent: "अर्धपारदर्शी",
|
|
3995
|
+
sizeAuto: "स्वतः",
|
|
3996
|
+
sizeLabel: "आकार",
|
|
3997
|
+
text: "टेक्स्ट वॉटरमार्क",
|
|
3998
|
+
textLabel: "टेक्स्ट",
|
|
3999
|
+
title: "वॉटरमार्क",
|
|
4000
|
+
washout: "धुंधला"
|
|
3891
4001
|
}
|
|
3892
4002
|
},
|
|
3893
4003
|
comments: {
|
|
@@ -4237,7 +4347,8 @@ var pl_default = {
|
|
|
4237
4347
|
open: "Otwórz",
|
|
4238
4348
|
openShortcut: "Ctrl+O",
|
|
4239
4349
|
save: "Zapisz",
|
|
4240
|
-
saveShortcut: "Ctrl+S"
|
|
4350
|
+
saveShortcut: "Ctrl+S",
|
|
4351
|
+
watermark: "Znak wodny"
|
|
4241
4352
|
},
|
|
4242
4353
|
formattingBar: {
|
|
4243
4354
|
groups: {
|
|
@@ -4727,6 +4838,27 @@ var pl_default = {
|
|
|
4727
4838
|
noResults: 'Nie znaleziono skrótów pasujących do "{query}"',
|
|
4728
4839
|
pressEscToClose: "Naciśnij {key}, aby zamknąć",
|
|
4729
4840
|
or: "lub"
|
|
4841
|
+
},
|
|
4842
|
+
watermark: {
|
|
4843
|
+
applyButton: "Zastosuj",
|
|
4844
|
+
cancelButton: "Anuluj",
|
|
4845
|
+
colorLabel: "Kolor",
|
|
4846
|
+
diagonal: "Po przekątnej",
|
|
4847
|
+
fontLabel: "Czcionka",
|
|
4848
|
+
horizontal: "Poziomo",
|
|
4849
|
+
layoutLabel: "Układ",
|
|
4850
|
+
noWatermark: "Bez znaku wodnego",
|
|
4851
|
+
picture: "Obrazkowy znak wodny",
|
|
4852
|
+
presetLabel: "Predefiniowany",
|
|
4853
|
+
scale: "Skala",
|
|
4854
|
+
selectPicture: "Wybierz obraz…",
|
|
4855
|
+
semitransparent: "Półprzezroczysty",
|
|
4856
|
+
sizeAuto: "Auto",
|
|
4857
|
+
sizeLabel: "Rozmiar",
|
|
4858
|
+
text: "Tekstowy znak wodny",
|
|
4859
|
+
textLabel: "Tekst",
|
|
4860
|
+
title: "Znak wodny",
|
|
4861
|
+
washout: "Wyblakły"
|
|
4730
4862
|
}
|
|
4731
4863
|
},
|
|
4732
4864
|
comments: {
|
|
@@ -5076,7 +5208,8 @@ var pt_BR_default = {
|
|
|
5076
5208
|
open: "Abrir",
|
|
5077
5209
|
openShortcut: "Ctrl+O",
|
|
5078
5210
|
save: "Salvar",
|
|
5079
|
-
saveShortcut: "Ctrl+S"
|
|
5211
|
+
saveShortcut: "Ctrl+S",
|
|
5212
|
+
watermark: "Marca d'água"
|
|
5080
5213
|
},
|
|
5081
5214
|
formattingBar: {
|
|
5082
5215
|
groups: {
|
|
@@ -5566,6 +5699,27 @@ var pt_BR_default = {
|
|
|
5566
5699
|
noResults: 'Nenhum atalho encontrado para "{query}"',
|
|
5567
5700
|
pressEscToClose: "Pressione {key} para fechar",
|
|
5568
5701
|
or: "ou"
|
|
5702
|
+
},
|
|
5703
|
+
watermark: {
|
|
5704
|
+
applyButton: "Aplicar",
|
|
5705
|
+
cancelButton: "Cancelar",
|
|
5706
|
+
colorLabel: "Cor",
|
|
5707
|
+
diagonal: "Diagonal",
|
|
5708
|
+
fontLabel: "Fonte",
|
|
5709
|
+
horizontal: "Horizontal",
|
|
5710
|
+
layoutLabel: "Layout",
|
|
5711
|
+
noWatermark: "Sem marca d'água",
|
|
5712
|
+
picture: "Marca d'água de imagem",
|
|
5713
|
+
presetLabel: "Predefinição",
|
|
5714
|
+
scale: "Escala",
|
|
5715
|
+
selectPicture: "Selecionar imagem…",
|
|
5716
|
+
semitransparent: "Semitransparente",
|
|
5717
|
+
sizeAuto: "Automático",
|
|
5718
|
+
sizeLabel: "Tamanho",
|
|
5719
|
+
text: "Marca d'água de texto",
|
|
5720
|
+
textLabel: "Texto",
|
|
5721
|
+
title: "Marca d'água",
|
|
5722
|
+
washout: "Desbotado"
|
|
5569
5723
|
}
|
|
5570
5724
|
},
|
|
5571
5725
|
comments: {
|
|
@@ -5915,7 +6069,8 @@ var tr_default = {
|
|
|
5915
6069
|
tableOfContents: "İçindekiler tablosu",
|
|
5916
6070
|
symbol: "Sembol",
|
|
5917
6071
|
help: "Yardım",
|
|
5918
|
-
reportIssue: "Sorun bildir"
|
|
6072
|
+
reportIssue: "Sorun bildir",
|
|
6073
|
+
watermark: "Filigran"
|
|
5919
6074
|
},
|
|
5920
6075
|
formattingBar: {
|
|
5921
6076
|
groups: {
|
|
@@ -6405,6 +6560,27 @@ var tr_default = {
|
|
|
6405
6560
|
noResults: '"{query}" eşleşen kısayol yok',
|
|
6406
6561
|
pressEscToClose: "Kapatmak için {key} tuşuna bas",
|
|
6407
6562
|
or: "veya"
|
|
6563
|
+
},
|
|
6564
|
+
watermark: {
|
|
6565
|
+
applyButton: "Uygula",
|
|
6566
|
+
cancelButton: "İptal",
|
|
6567
|
+
colorLabel: "Renk",
|
|
6568
|
+
diagonal: "Çapraz",
|
|
6569
|
+
fontLabel: "Yazı tipi",
|
|
6570
|
+
horizontal: "Yatay",
|
|
6571
|
+
layoutLabel: "Düzen",
|
|
6572
|
+
noWatermark: "Filigran yok",
|
|
6573
|
+
picture: "Resim filigranı",
|
|
6574
|
+
presetLabel: "Hazır ayar",
|
|
6575
|
+
scale: "Ölçek",
|
|
6576
|
+
selectPicture: "Resim Seç…",
|
|
6577
|
+
semitransparent: "Yarı saydam",
|
|
6578
|
+
sizeAuto: "Otomatik",
|
|
6579
|
+
sizeLabel: "Boyut",
|
|
6580
|
+
text: "Metin filigranı",
|
|
6581
|
+
textLabel: "Metin",
|
|
6582
|
+
title: "Filigran",
|
|
6583
|
+
washout: "Soluk"
|
|
6408
6584
|
}
|
|
6409
6585
|
},
|
|
6410
6586
|
comments: {
|
|
@@ -6754,7 +6930,8 @@ var zh_CN_default = {
|
|
|
6754
6930
|
tableOfContents: "目录",
|
|
6755
6931
|
symbol: "符号",
|
|
6756
6932
|
help: "帮助",
|
|
6757
|
-
reportIssue: "反馈问题"
|
|
6933
|
+
reportIssue: "反馈问题",
|
|
6934
|
+
watermark: "水印"
|
|
6758
6935
|
},
|
|
6759
6936
|
formattingBar: {
|
|
6760
6937
|
groups: {
|
|
@@ -7244,6 +7421,27 @@ var zh_CN_default = {
|
|
|
7244
7421
|
noResults: '未找到与 "{query}" 匹配的快捷方式',
|
|
7245
7422
|
pressEscToClose: "按 {key} 关闭",
|
|
7246
7423
|
or: "或"
|
|
7424
|
+
},
|
|
7425
|
+
watermark: {
|
|
7426
|
+
applyButton: "应用",
|
|
7427
|
+
cancelButton: "取消",
|
|
7428
|
+
colorLabel: "颜色",
|
|
7429
|
+
diagonal: "斜式",
|
|
7430
|
+
fontLabel: "字体",
|
|
7431
|
+
horizontal: "水平",
|
|
7432
|
+
layoutLabel: "版式",
|
|
7433
|
+
noWatermark: "无水印",
|
|
7434
|
+
picture: "图片水印",
|
|
7435
|
+
presetLabel: "预设",
|
|
7436
|
+
scale: "缩放",
|
|
7437
|
+
selectPicture: "选择图片…",
|
|
7438
|
+
semitransparent: "半透明",
|
|
7439
|
+
sizeAuto: "自动",
|
|
7440
|
+
sizeLabel: "大小",
|
|
7441
|
+
text: "文字水印",
|
|
7442
|
+
textLabel: "文字",
|
|
7443
|
+
title: "水印",
|
|
7444
|
+
washout: "冲蚀"
|
|
7247
7445
|
}
|
|
7248
7446
|
},
|
|
7249
7447
|
comments: {
|
package/dist/pl.js
CHANGED
|
@@ -69,7 +69,8 @@ var pl_default = {
|
|
|
69
69
|
open: "Otwórz",
|
|
70
70
|
openShortcut: "Ctrl+O",
|
|
71
71
|
save: "Zapisz",
|
|
72
|
-
saveShortcut: "Ctrl+S"
|
|
72
|
+
saveShortcut: "Ctrl+S",
|
|
73
|
+
watermark: "Znak wodny"
|
|
73
74
|
},
|
|
74
75
|
formattingBar: {
|
|
75
76
|
groups: {
|
|
@@ -559,6 +560,27 @@ var pl_default = {
|
|
|
559
560
|
noResults: 'Nie znaleziono skrótów pasujących do "{query}"',
|
|
560
561
|
pressEscToClose: "Naciśnij {key}, aby zamknąć",
|
|
561
562
|
or: "lub"
|
|
563
|
+
},
|
|
564
|
+
watermark: {
|
|
565
|
+
applyButton: "Zastosuj",
|
|
566
|
+
cancelButton: "Anuluj",
|
|
567
|
+
colorLabel: "Kolor",
|
|
568
|
+
diagonal: "Po przekątnej",
|
|
569
|
+
fontLabel: "Czcionka",
|
|
570
|
+
horizontal: "Poziomo",
|
|
571
|
+
layoutLabel: "Układ",
|
|
572
|
+
noWatermark: "Bez znaku wodnego",
|
|
573
|
+
picture: "Obrazkowy znak wodny",
|
|
574
|
+
presetLabel: "Predefiniowany",
|
|
575
|
+
scale: "Skala",
|
|
576
|
+
selectPicture: "Wybierz obraz…",
|
|
577
|
+
semitransparent: "Półprzezroczysty",
|
|
578
|
+
sizeAuto: "Auto",
|
|
579
|
+
sizeLabel: "Rozmiar",
|
|
580
|
+
text: "Tekstowy znak wodny",
|
|
581
|
+
textLabel: "Tekst",
|
|
582
|
+
title: "Znak wodny",
|
|
583
|
+
washout: "Wyblakły"
|
|
562
584
|
}
|
|
563
585
|
},
|
|
564
586
|
comments: {
|