@vue-pdf-viewer/shared 0.0.0-experimental.12 → 0.0.0-experimental.13
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
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
"annotationFreeTextTooltip": "Free text",
|
|
90
90
|
"annotationSignatureLabel": "Signature",
|
|
91
91
|
"annotationSignatureTooltip": "Signature",
|
|
92
|
+
"annotationSignatureAddLabel": "Add new signature",
|
|
93
|
+
"annotationSignatureAddTooltip": "Add new signature",
|
|
92
94
|
"annotationCommentLabel": "Comment",
|
|
93
95
|
"annotationCommentTooltip": "Comment"
|
|
94
96
|
}
|
package/dist/locales/it_IT.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
"annotationFreeTextTooltip": "Testo libero",
|
|
90
90
|
"annotationSignatureLabel": "Firma",
|
|
91
91
|
"annotationSignatureTooltip": "Firma",
|
|
92
|
+
"annotationSignatureAddLabel": "Aggiungi nuova firma",
|
|
93
|
+
"annotationSignatureAddTooltip": "Aggiungi nuova firma",
|
|
92
94
|
"annotationCommentLabel": "Commento",
|
|
93
95
|
"annotationCommentTooltip": "Commento"
|
|
94
96
|
}
|
package/dist/locales/pt_PT.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
"annotationFreeTextTooltip": "Texto livre",
|
|
90
90
|
"annotationSignatureLabel": "Assinatura",
|
|
91
91
|
"annotationSignatureTooltip": "Assinatura",
|
|
92
|
+
"annotationSignatureAddLabel": "Adicionar nova assinatura",
|
|
93
|
+
"annotationSignatureAddTooltip": "Adicionar nova assinatura",
|
|
92
94
|
"annotationCommentLabel": "Comentário",
|
|
93
95
|
"annotationCommentTooltip": "Comentário"
|
|
94
96
|
}
|
package/dist/locales/th_TH.json
CHANGED
|
@@ -87,8 +87,10 @@
|
|
|
87
87
|
"annotationHighlightDeleteTooltip": "ลบไฮไลท์",
|
|
88
88
|
"annotationFreeTextLabel": "ข้อความ",
|
|
89
89
|
"annotationFreeTextTooltip": "ข้อความ",
|
|
90
|
-
"annotationSignatureLabel": "
|
|
91
|
-
"annotationSignatureTooltip": "
|
|
90
|
+
"annotationSignatureLabel": "ลายเซ็น",
|
|
91
|
+
"annotationSignatureTooltip": "ลายเซ็น",
|
|
92
|
+
"annotationSignatureAddLabel": "เพิ่มลายเซ็นใหม่",
|
|
93
|
+
"annotationSignatureAddTooltip": "เพิ่มลายเซ็นใหม่",
|
|
92
94
|
"annotationCommentLabel": "ความคิดเห็น",
|
|
93
95
|
"annotationCommentTooltip": "ความคิดเห็น"
|
|
94
96
|
}
|
package/dist/locales/zh_CN.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
"annotationFreeTextTooltip": "自由文本",
|
|
90
90
|
"annotationSignatureLabel": "签名",
|
|
91
91
|
"annotationSignatureTooltip": "签名",
|
|
92
|
+
"annotationSignatureAddLabel": "添加新签名",
|
|
93
|
+
"annotationSignatureAddTooltip": "添加新签名",
|
|
92
94
|
"annotationCommentLabel": "注释",
|
|
93
95
|
"annotationCommentTooltip": "注释"
|
|
94
96
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -90,6 +90,8 @@ export type Localization = {
|
|
|
90
90
|
annotationFreeTextTooltip: string;
|
|
91
91
|
annotationSignatureLabel: string;
|
|
92
92
|
annotationSignatureTooltip: string;
|
|
93
|
+
annotationSignatureAddLabel: string;
|
|
94
|
+
annotationSignatureAddTooltip: string;
|
|
93
95
|
annotationCommentLabel: string;
|
|
94
96
|
annotationCommentTooltip: string;
|
|
95
97
|
};
|
|
@@ -111,6 +113,7 @@ export interface PluginContext {
|
|
|
111
113
|
AppTooltip?: Component;
|
|
112
114
|
AppPopover?: Component;
|
|
113
115
|
AppHighlightColorPicker?: Component;
|
|
116
|
+
AppSignatures?: Component;
|
|
114
117
|
};
|
|
115
118
|
};
|
|
116
119
|
}
|