@univerjs/sheets-thread-comment-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 +1099 -1
- package/lib/cjs/locale/ca-ES.js +9 -1
- package/lib/cjs/locale/en-US.js +24 -1
- package/lib/cjs/locale/es-ES.js +9 -1
- package/lib/cjs/locale/fa-IR.js +9 -1
- package/lib/cjs/locale/fr-FR.js +9 -1
- package/lib/cjs/locale/ja-JP.js +9 -1
- package/lib/cjs/locale/ko-KR.js +9 -1
- package/lib/cjs/locale/ru-RU.js +9 -1
- package/lib/cjs/locale/sk-SK.js +9 -1
- package/lib/cjs/locale/vi-VN.js +9 -1
- package/lib/cjs/locale/zh-CN.js +9 -1
- package/lib/cjs/locale/zh-TW.js +9 -1
- package/lib/es/index.js +1043 -1
- package/lib/es/locale/ca-ES.js +8 -1
- package/lib/es/locale/en-US.js +23 -1
- package/lib/es/locale/es-ES.js +8 -1
- package/lib/es/locale/fa-IR.js +8 -1
- package/lib/es/locale/fr-FR.js +8 -1
- package/lib/es/locale/ja-JP.js +8 -1
- package/lib/es/locale/ko-KR.js +8 -1
- package/lib/es/locale/ru-RU.js +8 -1
- package/lib/es/locale/sk-SK.js +8 -1
- package/lib/es/locale/vi-VN.js +8 -1
- package/lib/es/locale/zh-CN.js +8 -1
- package/lib/es/locale/zh-TW.js +8 -1
- package/lib/index.js +1043 -1
- package/lib/locale/ca-ES.js +8 -1
- package/lib/locale/en-US.js +23 -1
- package/lib/locale/es-ES.js +8 -1
- package/lib/locale/fa-IR.js +8 -1
- package/lib/locale/fr-FR.js +8 -1
- package/lib/locale/ja-JP.js +8 -1
- package/lib/locale/ko-KR.js +8 -1
- package/lib/locale/ru-RU.js +8 -1
- package/lib/locale/sk-SK.js +8 -1
- package/lib/locale/vi-VN.js +8 -1
- package/lib/locale/zh-CN.js +8 -1
- package/lib/locale/zh-TW.js +8 -1
- package/lib/umd/index.js +1 -1
- package/package.json +13 -13
package/lib/cjs/locale/ca-ES.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/ca-ES.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "Afegeix un comentari",
|
|
5
|
+
commentManagement: "Gestió de comentaris"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/en-US.js
CHANGED
|
@@ -1 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/en-US.ts
|
|
3
|
+
/**
|
|
4
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
const locale = { sheetThreadComment: { menu: {
|
|
19
|
+
addComment: "Add Comment",
|
|
20
|
+
commentManagement: "Comment Management"
|
|
21
|
+
} } };
|
|
22
|
+
|
|
23
|
+
//#endregion
|
|
24
|
+
module.exports = locale;
|
package/lib/cjs/locale/es-ES.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/es-ES.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "Añadir comentario",
|
|
5
|
+
commentManagement: "Gestión de comentarios"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/fa-IR.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/fa-IR.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "افزودن نظر",
|
|
5
|
+
commentManagement: "مدیریت نظر"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/fr-FR.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/fr-FR.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "Ajouter un commentaire",
|
|
5
|
+
commentManagement: "Gestion des commentaires"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/ja-JP.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/ja-JP.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "コメントを追加",
|
|
5
|
+
commentManagement: "コメント管理"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/ko-KR.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/ko-KR.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "댓글 추가",
|
|
5
|
+
commentManagement: "댓글 관리"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/ru-RU.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/ru-RU.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "Добавить комментарий",
|
|
5
|
+
commentManagement: "Управление комментариями"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/sk-SK.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/sk-SK.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "Pridať komentár",
|
|
5
|
+
commentManagement: "Správa komentárov"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/vi-VN.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/vi-VN.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "Thêm bình luận",
|
|
5
|
+
commentManagement: "Quản lý bình luận"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/zh-CN.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/zh-CN.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "添加评论",
|
|
5
|
+
commentManagement: "评论管理"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|
package/lib/cjs/locale/zh-TW.js
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
//#region src/locale/zh-TW.ts
|
|
3
|
+
const locale = { sheetThreadComment: { menu: {
|
|
4
|
+
addComment: "新增評論",
|
|
5
|
+
commentManagement: "評論管理"
|
|
6
|
+
} } };
|
|
7
|
+
|
|
8
|
+
//#endregion
|
|
9
|
+
module.exports = locale;
|