@univerjs/docs-quick-insert-ui 0.20.1 → 0.21.0-insiders.20260424-262d69f

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.
Files changed (42) hide show
  1. package/lib/cjs/index.js +1083 -1
  2. package/lib/cjs/locale/ca-ES.js +18 -1
  3. package/lib/cjs/locale/en-US.js +33 -1
  4. package/lib/cjs/locale/es-ES.js +18 -1
  5. package/lib/cjs/locale/fa-IR.js +18 -1
  6. package/lib/cjs/locale/fr-FR.js +18 -1
  7. package/lib/cjs/locale/ja-JP.js +18 -1
  8. package/lib/cjs/locale/ko-KR.js +18 -1
  9. package/lib/cjs/locale/ru-RU.js +18 -1
  10. package/lib/cjs/locale/sk-SK.js +18 -1
  11. package/lib/cjs/locale/vi-VN.js +18 -1
  12. package/lib/cjs/locale/zh-CN.js +18 -1
  13. package/lib/cjs/locale/zh-TW.js +18 -1
  14. package/lib/es/index.js +1057 -1
  15. package/lib/es/locale/ca-ES.js +17 -1
  16. package/lib/es/locale/en-US.js +32 -1
  17. package/lib/es/locale/es-ES.js +17 -1
  18. package/lib/es/locale/fa-IR.js +17 -1
  19. package/lib/es/locale/fr-FR.js +17 -1
  20. package/lib/es/locale/ja-JP.js +17 -1
  21. package/lib/es/locale/ko-KR.js +17 -1
  22. package/lib/es/locale/ru-RU.js +17 -1
  23. package/lib/es/locale/sk-SK.js +17 -1
  24. package/lib/es/locale/vi-VN.js +17 -1
  25. package/lib/es/locale/zh-CN.js +17 -1
  26. package/lib/es/locale/zh-TW.js +17 -1
  27. package/lib/index.js +1057 -1
  28. package/lib/locale/ca-ES.js +17 -1
  29. package/lib/locale/en-US.js +32 -1
  30. package/lib/locale/es-ES.js +17 -1
  31. package/lib/locale/fa-IR.js +17 -1
  32. package/lib/locale/fr-FR.js +17 -1
  33. package/lib/locale/ja-JP.js +17 -1
  34. package/lib/locale/ko-KR.js +17 -1
  35. package/lib/locale/ru-RU.js +17 -1
  36. package/lib/locale/sk-SK.js +17 -1
  37. package/lib/locale/vi-VN.js +17 -1
  38. package/lib/locale/zh-CN.js +17 -1
  39. package/lib/locale/zh-TW.js +17 -1
  40. package/lib/umd/index.js +1 -1
  41. package/package.json +14 -14
  42. package/LICENSE +0 -176
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Llista numerada`,bulletedList:`Llista amb vinyetes`,divider:`Divisor`,text:`Text`,table:`Taula`,image:`Imatge`},group:{basics:`Bàsics`},placeholder:`No s'han trobat resultats`,keywordInputPlaceholder:`Introdueix paraules clau`}};module.exports=e;
1
+
2
+ //#region src/locale/ca-ES.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "Llista numerada",
6
+ bulletedList: "Llista amb vinyetes",
7
+ divider: "Divisor",
8
+ text: "Text",
9
+ table: "Taula",
10
+ image: "Imatge"
11
+ },
12
+ group: { basics: "Bàsics" },
13
+ placeholder: "No s'han trobat resultats",
14
+ keywordInputPlaceholder: "Introdueix paraules clau"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,33 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Numbered List`,bulletedList:`Bulleted List`,divider:`Divider`,text:`Text`,table:`Table`,image:`Image`},group:{basics:`Basics`},placeholder:`No results found`,keywordInputPlaceholder:`Enter keywords`}};module.exports=e;
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 = { docQuickInsert: {
19
+ menu: {
20
+ numberedList: "Numbered List",
21
+ bulletedList: "Bulleted List",
22
+ divider: "Divider",
23
+ text: "Text",
24
+ table: "Table",
25
+ image: "Image"
26
+ },
27
+ group: { basics: "Basics" },
28
+ placeholder: "No results found",
29
+ keywordInputPlaceholder: "Enter keywords"
30
+ } };
31
+
32
+ //#endregion
33
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Lista numerada`,bulletedList:`Lista con viñetas`,divider:`Divisor`,text:`Texto`,table:`Tabla`,image:`Imagen`},group:{basics:`Básicos`},placeholder:`No se han encontrado resultados`,keywordInputPlaceholder:`Introduce palabras clave`}};module.exports=e;
1
+
2
+ //#region src/locale/es-ES.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "Lista numerada",
6
+ bulletedList: "Lista con viñetas",
7
+ divider: "Divisor",
8
+ text: "Texto",
9
+ table: "Tabla",
10
+ image: "Imagen"
11
+ },
12
+ group: { basics: "Básicos" },
13
+ placeholder: "No se han encontrado resultados",
14
+ keywordInputPlaceholder: "Introduce palabras clave"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`لیست شمارهدار`,bulletedList:`لیست نقطهدار`,divider:`خط تقسیم`,text:`متن`,table:`جدول`,image:`تصویر`},group:{basics:`بنیادی`},placeholder:`هیچ نتیجهای یافت نشد`,keywordInputPlaceholder:`وارد کلمات کلیدی`}};module.exports=e;
1
+
2
+ //#region src/locale/fa-IR.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "لیست شمارهدار",
6
+ bulletedList: "لیست نقطهدار",
7
+ divider: "خط تقسیم",
8
+ text: "متن",
9
+ table: "جدول",
10
+ image: "تصویر"
11
+ },
12
+ group: { basics: "بنیادی" },
13
+ placeholder: "هیچ نتیجهای یافت نشد",
14
+ keywordInputPlaceholder: "وارد کلمات کلیدی"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Liste numérotée`,bulletedList:`Liste à puces`,divider:`Ligne de séparation`,text:`Texte`,table:`Tableau`,image:`Image`},group:{basics:`Basiques`},placeholder:`Aucun résultat`,keywordInputPlaceholder:`Entrez des mots clés`}};module.exports=e;
1
+
2
+ //#region src/locale/fr-FR.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "Liste numérotée",
6
+ bulletedList: "Liste à puces",
7
+ divider: "Ligne de séparation",
8
+ text: "Texte",
9
+ table: "Tableau",
10
+ image: "Image"
11
+ },
12
+ group: { basics: "Basiques" },
13
+ placeholder: "Aucun résultat",
14
+ keywordInputPlaceholder: "Entrez des mots clés"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`番号付きリスト`,bulletedList:`箇条書き`,divider:`区切り線`,text:`テキスト`,table:`表`,image:`画像`},group:{basics:`基本`},placeholder:`結果がありません`,keywordInputPlaceholder:`キーワードを入力`}};module.exports=e;
1
+
2
+ //#region src/locale/ja-JP.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "番号付きリスト",
6
+ bulletedList: "箇条書き",
7
+ divider: "区切り線",
8
+ text: "テキスト",
9
+ table: "表",
10
+ image: "画像"
11
+ },
12
+ group: { basics: "基本" },
13
+ placeholder: "結果がありません",
14
+ keywordInputPlaceholder: "キーワードを入力"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`번호가 매겨진 목록`,bulletedList:`글머리 기호 목록`,divider:`구분선`,text:`텍스트`,table:`표`,image:`이미지`},group:{basics:`기본`},placeholder:`결과가 없습니다`,keywordInputPlaceholder:`키워드 입력`}};module.exports=e;
1
+
2
+ //#region src/locale/ko-KR.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "번호가 매겨진 목록",
6
+ bulletedList: "글머리 기호 목록",
7
+ divider: "구분선",
8
+ text: "텍스트",
9
+ table: "표",
10
+ image: "이미지"
11
+ },
12
+ group: { basics: "기본" },
13
+ placeholder: "결과가 없습니다",
14
+ keywordInputPlaceholder: "키워드 입력"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Список с нумерацией`,bulletedList:`Маркированный список`,divider:`Разделительная линия`,text:`Текст`,table:`Таблица`,image:`Изображение`},group:{basics:`Основные`},placeholder:`Нет результатов`,keywordInputPlaceholder:`Введите ключевые слова`}};module.exports=e;
1
+
2
+ //#region src/locale/ru-RU.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "Список с нумерацией",
6
+ bulletedList: "Маркированный список",
7
+ divider: "Разделительная линия",
8
+ text: "Текст",
9
+ table: "Таблица",
10
+ image: "Изображение"
11
+ },
12
+ group: { basics: "Основные" },
13
+ placeholder: "Нет результатов",
14
+ keywordInputPlaceholder: "Введите ключевые слова"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Číslovaný zoznam`,bulletedList:`Odrážkový zoznam`,divider:`Oddeľovač`,text:`Text`,table:`Tabuľka`,image:`Obrázok`},group:{basics:`Základy`},placeholder:`Nenašli sa žiadne výsledky`,keywordInputPlaceholder:`Zadajte kľúčové slová`}};module.exports=e;
1
+
2
+ //#region src/locale/sk-SK.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "Číslovaný zoznam",
6
+ bulletedList: "Odrážkový zoznam",
7
+ divider: "Oddeľovač",
8
+ text: "Text",
9
+ table: "Tabuľka",
10
+ image: "Obrázok"
11
+ },
12
+ group: { basics: "Základy" },
13
+ placeholder: "Nenašli sa žiadne výsledky",
14
+ keywordInputPlaceholder: "Zadajte kľúčové slová"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`Danh sách được đánh số`,bulletedList:`Danh sách không được đánh số`,divider:`Đường phân cách`,text:`Văn bản`,table:`Bảng`,image:`Hình ảnh`},group:{basics:`Cơ bản`},placeholder:`Không có kết quả`,keywordInputPlaceholder:`Nhập từ khóa`}};module.exports=e;
1
+
2
+ //#region src/locale/vi-VN.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "Danh sách được đánh số",
6
+ bulletedList: "Danh sách không được đánh số",
7
+ divider: "Đường phân cách",
8
+ text: "Văn bản",
9
+ table: "Bảng",
10
+ image: "Hình ảnh"
11
+ },
12
+ group: { basics: "Cơ bản" },
13
+ placeholder: "Không có kết quả",
14
+ keywordInputPlaceholder: "Nhập từ khóa"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`有序列表`,bulletedList:`无序列表`,divider:`分隔线`,text:`文本`,table:`表格`,image:`图片`},group:{basics:`基础`},placeholder:`暂无结果`,keywordInputPlaceholder:`输入关键词`}};module.exports=e;
1
+
2
+ //#region src/locale/zh-CN.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "有序列表",
6
+ bulletedList: "无序列表",
7
+ divider: "分隔线",
8
+ text: "文本",
9
+ table: "表格",
10
+ image: "图片"
11
+ },
12
+ group: { basics: "基础" },
13
+ placeholder: "暂无结果",
14
+ keywordInputPlaceholder: "输入关键词"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;
@@ -1 +1,18 @@
1
- const e={docQuickInsert:{menu:{numberedList:`有序列表`,bulletedList:`無序列表`,divider:`分隔線`,text:`文本`,table:`表格`,image:`圖片`},group:{basics:`基礎`},placeholder:`無結果`,keywordInputPlaceholder:`輸入關鍵詞`}};module.exports=e;
1
+
2
+ //#region src/locale/zh-TW.ts
3
+ const locale = { docQuickInsert: {
4
+ menu: {
5
+ numberedList: "有序列表",
6
+ bulletedList: "無序列表",
7
+ divider: "分隔線",
8
+ text: "文本",
9
+ table: "表格",
10
+ image: "圖片"
11
+ },
12
+ group: { basics: "基礎" },
13
+ placeholder: "無結果",
14
+ keywordInputPlaceholder: "輸入關鍵詞"
15
+ } };
16
+
17
+ //#endregion
18
+ module.exports = locale;