@vue-pdf-viewer/shared 0.0.0-experimental.13 → 0.0.0-experimental.14
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/locales/en_US.json
CHANGED
|
@@ -92,5 +92,8 @@
|
|
|
92
92
|
"annotationSignatureAddLabel": "Add new signature",
|
|
93
93
|
"annotationSignatureAddTooltip": "Add new signature",
|
|
94
94
|
"annotationCommentLabel": "Comment",
|
|
95
|
-
"annotationCommentTooltip": "Comment"
|
|
95
|
+
"annotationCommentTooltip": "Comment",
|
|
96
|
+
"annotationImageLabel": "Image",
|
|
97
|
+
"annotationImageTooltip": "Add image",
|
|
98
|
+
"annotationImageUnsupportedFileMessage": "Unsupported file type"
|
|
96
99
|
}
|
package/dist/locales/it_IT.json
CHANGED
|
@@ -92,5 +92,8 @@
|
|
|
92
92
|
"annotationSignatureAddLabel": "Aggiungi nuova firma",
|
|
93
93
|
"annotationSignatureAddTooltip": "Aggiungi nuova firma",
|
|
94
94
|
"annotationCommentLabel": "Commento",
|
|
95
|
-
"annotationCommentTooltip": "Commento"
|
|
95
|
+
"annotationCommentTooltip": "Commento",
|
|
96
|
+
"annotationImageLabel": "Immagine",
|
|
97
|
+
"annotationImageTooltip": "Aggiungi immagine",
|
|
98
|
+
"annotationImageUnsupportedFileMessage": "Tipo di file non supportato"
|
|
96
99
|
}
|
package/dist/locales/pt_PT.json
CHANGED
|
@@ -92,5 +92,8 @@
|
|
|
92
92
|
"annotationSignatureAddLabel": "Adicionar nova assinatura",
|
|
93
93
|
"annotationSignatureAddTooltip": "Adicionar nova assinatura",
|
|
94
94
|
"annotationCommentLabel": "Comentário",
|
|
95
|
-
"annotationCommentTooltip": "Comentário"
|
|
95
|
+
"annotationCommentTooltip": "Comentário",
|
|
96
|
+
"annotationImageLabel": "Imagem",
|
|
97
|
+
"annotationImageTooltip": "Adicionar imagem",
|
|
98
|
+
"annotationImageUnsupportedFileMessage": "Tipo de arquivo não suportado"
|
|
96
99
|
}
|
package/dist/locales/th_TH.json
CHANGED
|
@@ -92,5 +92,8 @@
|
|
|
92
92
|
"annotationSignatureAddLabel": "เพิ่มลายเซ็นใหม่",
|
|
93
93
|
"annotationSignatureAddTooltip": "เพิ่มลายเซ็นใหม่",
|
|
94
94
|
"annotationCommentLabel": "ความคิดเห็น",
|
|
95
|
-
"annotationCommentTooltip": "ความคิดเห็น"
|
|
95
|
+
"annotationCommentTooltip": "ความคิดเห็น",
|
|
96
|
+
"annotationImageLabel": "รูปภาพ",
|
|
97
|
+
"annotationImageTooltip": "เพิ่มรูปภาพ",
|
|
98
|
+
"annotationImageUnsupportedFileMessage": "ประเภทไฟล์ไม่รองรับ"
|
|
96
99
|
}
|
package/dist/locales/zh_CN.json
CHANGED
|
@@ -92,5 +92,8 @@
|
|
|
92
92
|
"annotationSignatureAddLabel": "添加新签名",
|
|
93
93
|
"annotationSignatureAddTooltip": "添加新签名",
|
|
94
94
|
"annotationCommentLabel": "注释",
|
|
95
|
-
"annotationCommentTooltip": "注释"
|
|
95
|
+
"annotationCommentTooltip": "注释",
|
|
96
|
+
"annotationImageLabel": "图片",
|
|
97
|
+
"annotationImageTooltip": "添加图片",
|
|
98
|
+
"annotationImageUnsupportedFileMessage": "不支持的文件类型"
|
|
96
99
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -94,6 +94,9 @@ export type Localization = {
|
|
|
94
94
|
annotationSignatureAddTooltip: string;
|
|
95
95
|
annotationCommentLabel: string;
|
|
96
96
|
annotationCommentTooltip: string;
|
|
97
|
+
annotationImageLabel: string;
|
|
98
|
+
annotationImageTooltip: string;
|
|
99
|
+
annotationImageUnsupportedFileMessage: string;
|
|
97
100
|
};
|
|
98
101
|
export type ToolbarDirection = "top" | "left" | "right";
|
|
99
102
|
export interface PluginItem {
|