@univerjs/sheets-note-ui 0.20.1 → 0.21.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/lib/cjs/index.js +789 -1
- package/lib/cjs/locale/ca-ES.js +13 -1
- package/lib/cjs/locale/en-US.js +28 -1
- package/lib/cjs/locale/es-ES.js +13 -1
- package/lib/cjs/locale/fa-IR.js +13 -1
- package/lib/cjs/locale/fr-FR.js +13 -1
- package/lib/cjs/locale/ja-JP.js +13 -1
- package/lib/cjs/locale/ko-KR.js +13 -1
- package/lib/cjs/locale/ru-RU.js +13 -1
- package/lib/cjs/locale/sk-SK.js +13 -1
- package/lib/cjs/locale/vi-VN.js +13 -1
- package/lib/cjs/locale/zh-CN.js +13 -1
- package/lib/cjs/locale/zh-TW.js +13 -1
- package/lib/es/index.js +764 -1
- package/lib/es/locale/ca-ES.js +12 -1
- package/lib/es/locale/en-US.js +27 -1
- package/lib/es/locale/es-ES.js +12 -1
- package/lib/es/locale/fa-IR.js +12 -1
- package/lib/es/locale/fr-FR.js +12 -1
- package/lib/es/locale/ja-JP.js +12 -1
- package/lib/es/locale/ko-KR.js +12 -1
- package/lib/es/locale/ru-RU.js +12 -1
- package/lib/es/locale/sk-SK.js +12 -1
- package/lib/es/locale/vi-VN.js +12 -1
- package/lib/es/locale/zh-CN.js +12 -1
- package/lib/es/locale/zh-TW.js +12 -1
- package/lib/index.js +764 -1
- package/lib/locale/ca-ES.js +12 -1
- package/lib/locale/en-US.js +27 -1
- package/lib/locale/es-ES.js +12 -1
- package/lib/locale/fa-IR.js +12 -1
- package/lib/locale/fr-FR.js +12 -1
- package/lib/locale/ja-JP.js +12 -1
- package/lib/locale/ko-KR.js +12 -1
- package/lib/locale/ru-RU.js +12 -1
- package/lib/locale/sk-SK.js +12 -1
- package/lib/locale/vi-VN.js +12 -1
- package/lib/locale/zh-CN.js +12 -1
- package/lib/locale/zh-TW.js +12 -1
- package/lib/umd/index.js +1 -1
- package/package.json +11 -11
package/lib/es/locale/ca-ES.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ca-ES.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "Afegeix nota",
|
|
5
|
+
deleteNote: "Elimina nota",
|
|
6
|
+
toggleNote: "Mostra/Amaga nota"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "Escriu aquí" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/en-US.js
CHANGED
|
@@ -1 +1,27 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/en-US.ts
|
|
2
|
+
/**
|
|
3
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
const locale = {
|
|
18
|
+
rightClick: {
|
|
19
|
+
addNote: "Add Note",
|
|
20
|
+
deleteNote: "Delete Note",
|
|
21
|
+
toggleNote: "Show/Hide Note"
|
|
22
|
+
},
|
|
23
|
+
note: { placeholder: "Type here" }
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
//#endregion
|
|
27
|
+
export { locale as default };
|
package/lib/es/locale/es-ES.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/es-ES.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "Agregar nota",
|
|
5
|
+
deleteNote: "Eliminar nota",
|
|
6
|
+
toggleNote: "Mostrar/Ocultar nota"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "Escribe aquí" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/fa-IR.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/fa-IR.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "افزودن یادداشت",
|
|
5
|
+
deleteNote: "حذف یادداشت",
|
|
6
|
+
toggleNote: "نمایش/پنهان کردن یادداشت"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "اینجا تایپ کنید" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/fr-FR.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/fr-FR.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "Ajouter une note",
|
|
5
|
+
deleteNote: "Supprimer la note",
|
|
6
|
+
toggleNote: "Afficher/Masquer la note"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "Écrivez ici" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/ja-JP.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ja-JP.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "コメントを追加",
|
|
5
|
+
deleteNote: "コメントを削除",
|
|
6
|
+
toggleNote: "コメントの表示/非表示"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "ここに入力" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/ko-KR.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ko-KR.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "노트 추가",
|
|
5
|
+
deleteNote: "노트 삭제",
|
|
6
|
+
toggleNote: "노트 표시/숨기기"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "여기에 입력" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/ru-RU.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ru-RU.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "Добавить примечание",
|
|
5
|
+
deleteNote: "Удалить примечание",
|
|
6
|
+
toggleNote: "Показать/Скрыть примечание"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "Введите текст здесь" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/sk-SK.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/sk-SK.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "Pridať poznámku",
|
|
5
|
+
deleteNote: "Odstrániť poznámku",
|
|
6
|
+
toggleNote: "Zobraziť/Skryť poznámku"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "Píšte sem" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/vi-VN.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/vi-VN.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "Thêm ghi chú",
|
|
5
|
+
deleteNote: "Xóa ghi chú",
|
|
6
|
+
toggleNote: "Hiện/Ẩn ghi chú"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "Nhập tại đây" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/zh-CN.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/zh-CN.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "添加批注",
|
|
5
|
+
deleteNote: "删除批注",
|
|
6
|
+
toggleNote: "显示/隐藏批注"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "在此输入" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|
package/lib/es/locale/zh-TW.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/zh-TW.ts
|
|
2
|
+
const locale = {
|
|
3
|
+
rightClick: {
|
|
4
|
+
addNote: "添加批註",
|
|
5
|
+
deleteNote: "刪除批註",
|
|
6
|
+
toggleNote: "顯示/隱藏批註"
|
|
7
|
+
},
|
|
8
|
+
note: { placeholder: "在此輸入" }
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { locale as default };
|