@sveltia/ui 0.35.6 → 0.36.1
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/components/alert/infobar.svelte +2 -2
- package/dist/components/button/button.svelte +1 -1
- package/dist/components/button/select-button-group.svelte +1 -1
- package/dist/components/button/split-button.svelte +3 -3
- package/dist/components/calendar/calendar.svelte +20 -23
- package/dist/components/dialog/dialog.svelte +4 -4
- package/dist/components/dialog/dialog.svelte.d.ts +1 -1
- package/dist/components/dialog/prompt-dialog.svelte.d.ts +1 -1
- package/dist/components/drawer/drawer.svelte +3 -3
- package/dist/components/grid/grid.svelte +1 -1
- package/dist/components/listbox/listbox.svelte +1 -1
- package/dist/components/menu/menu-button.svelte +1 -0
- package/dist/components/menu/menu-item-checkbox.svelte +1 -0
- package/dist/components/menu/menu-item-radio.svelte +1 -0
- package/dist/components/menu/menu-item.svelte +3 -2
- package/dist/components/menu/menu.svelte +1 -1
- package/dist/components/radio/radio-group.svelte +1 -1
- package/dist/components/resizable-pane/resizable-handle.svelte +6 -4
- package/dist/components/select/combobox.svelte +5 -5
- package/dist/components/select/select-tags.svelte +6 -7
- package/dist/components/slider/slider.svelte +6 -5
- package/dist/components/slider/slider.svelte.d.ts +1 -1
- package/dist/components/tabs/tab-list.svelte +1 -1
- package/dist/components/tabs/tab.svelte +1 -0
- package/dist/components/text-editor/code-editor.svelte +2 -2
- package/dist/components/text-editor/text-editor.svelte +2 -2
- package/dist/components/text-editor/toolbar/code-editor-toolbar.svelte +2 -2
- package/dist/components/text-editor/toolbar/code-language-switcher.svelte +3 -3
- package/dist/components/text-editor/toolbar/format-text-button.svelte +2 -2
- package/dist/components/text-editor/toolbar/insert-link-button.svelte +8 -8
- package/dist/components/text-editor/toolbar/insert-menu-button.svelte +2 -2
- package/dist/components/text-editor/toolbar/text-editor-toolbar.svelte +5 -5
- package/dist/components/text-editor/toolbar/toggle-block-menu-item.svelte +2 -2
- package/dist/components/text-editor/transformers/hr.test.js +0 -2
- package/dist/components/text-field/number-input.svelte +3 -3
- package/dist/components/text-field/password-input.svelte +2 -2
- package/dist/components/text-field/search-bar.svelte +2 -2
- package/dist/components/text-field/secret-input.svelte +2 -2
- package/dist/components/text-field/text-input.svelte +6 -4
- package/dist/components/text-field/text-input.svelte.d.ts +1 -1
- package/dist/components/toast/toast.svelte +2 -0
- package/dist/components/util/app-shell.svelte +10 -9
- package/dist/index.d.ts +0 -3
- package/dist/index.js +1 -2
- package/dist/locales/en.yaml +66 -0
- package/dist/locales/ja.yaml +66 -0
- package/dist/services/group.svelte.d.ts +99 -2
- package/dist/services/group.svelte.js +46 -31
- package/dist/services/group.test.js +107 -36
- package/dist/services/i18n.d.ts +0 -11
- package/dist/services/i18n.js +15 -51
- package/dist/services/i18n.test.js +2 -90
- package/dist/services/popup.test.js +0 -4
- package/package.json +19 -17
- package/dist/locales/en.d.ts +0 -77
- package/dist/locales/en.js +0 -77
- package/dist/locales/ja.d.ts +0 -77
- package/dist/locales/ja.js +0 -77
|
@@ -305,7 +305,6 @@ describe('Popup - IntersectionObserver on anchor (lines 179-180)', () => {
|
|
|
305
305
|
OrigIObserver = globalThis.IntersectionObserver;
|
|
306
306
|
|
|
307
307
|
// Stub IntersectionObserver to capture callbacks
|
|
308
|
-
// eslint-disable-next-line jsdoc/require-jsdoc
|
|
309
308
|
globalThis.IntersectionObserver = /** @type {any} */ (
|
|
310
309
|
class {
|
|
311
310
|
/** @param {(entries: any[]) => void} cb */
|
|
@@ -375,7 +374,6 @@ describe('Popup - IntersectionObserver position callback (lines 35-132)', () =>
|
|
|
375
374
|
|
|
376
375
|
ioCallbacks = [];
|
|
377
376
|
OrigIObserver = globalThis.IntersectionObserver;
|
|
378
|
-
// eslint-disable-next-line jsdoc/require-jsdoc
|
|
379
377
|
globalThis.IntersectionObserver = /** @type {any} */ (
|
|
380
378
|
class {
|
|
381
379
|
/** @param {(entries: any[]) => void} cb */
|
|
@@ -592,7 +590,6 @@ describe('Popup - ResizeObserver callback (lines 223-224)', () => {
|
|
|
592
590
|
OrigRObs = globalThis.ResizeObserver;
|
|
593
591
|
|
|
594
592
|
// Stub ResizeObserver to capture its callback
|
|
595
|
-
// eslint-disable-next-line jsdoc/require-jsdoc
|
|
596
593
|
globalThis.ResizeObserver = /** @type {any} */ (
|
|
597
594
|
class {
|
|
598
595
|
/** @param {any} cb */
|
|
@@ -609,7 +606,6 @@ describe('Popup - ResizeObserver callback (lines 223-224)', () => {
|
|
|
609
606
|
// Also stub IntersectionObserver to avoid errors
|
|
610
607
|
const OrigIO = globalThis.IntersectionObserver;
|
|
611
608
|
|
|
612
|
-
// eslint-disable-next-line jsdoc/require-jsdoc
|
|
613
609
|
globalThis.IntersectionObserver = /** @type {any} */ (
|
|
614
610
|
class {
|
|
615
611
|
// eslint-disable-next-line no-useless-constructor, no-empty-function
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltia/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -20,43 +20,45 @@
|
|
|
20
20
|
"@lexical/selection": "^0.42.0",
|
|
21
21
|
"@lexical/table": "^0.42.0",
|
|
22
22
|
"@lexical/utils": "^0.42.0",
|
|
23
|
-
"@sveltia/
|
|
23
|
+
"@sveltia/i18n": "^0.1.3",
|
|
24
|
+
"@sveltia/utils": "^0.10.0",
|
|
24
25
|
"lexical": "^0.42.0",
|
|
25
26
|
"prismjs": "^1.30.0",
|
|
26
|
-
"
|
|
27
|
+
"yaml": "^2.8.3"
|
|
27
28
|
},
|
|
28
29
|
"peerDependencies": {
|
|
29
30
|
"svelte": "^5.0.0"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
33
|
"@sveltejs/adapter-auto": "^7.0.1",
|
|
33
|
-
"@sveltejs/kit": "^2.
|
|
34
|
+
"@sveltejs/kit": "^2.56.1",
|
|
34
35
|
"@sveltejs/package": "^2.5.7",
|
|
35
36
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
36
|
-
"@vitest/coverage-v8": "^4.1.
|
|
37
|
-
"cspell": "^9.
|
|
38
|
-
"eslint": "^
|
|
39
|
-
"eslint-config-airbnb-
|
|
37
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
38
|
+
"cspell": "^9.8.0",
|
|
39
|
+
"eslint": "^9.39.4",
|
|
40
|
+
"eslint-config-airbnb-extended": "^3.0.1",
|
|
40
41
|
"eslint-config-prettier": "^10.1.8",
|
|
41
42
|
"eslint-plugin-import": "^2.32.0",
|
|
42
|
-
"eslint-plugin-jsdoc": "^62.
|
|
43
|
-
"eslint-plugin-svelte": "^
|
|
44
|
-
"
|
|
45
|
-
"
|
|
43
|
+
"eslint-plugin-jsdoc": "^62.9.0",
|
|
44
|
+
"eslint-plugin-svelte": "^3.17.0",
|
|
45
|
+
"globals": "^17.4.0",
|
|
46
|
+
"happy-dom": "^20.8.9",
|
|
47
|
+
"oxlint": "^1.58.0",
|
|
46
48
|
"postcss": "^8.5.8",
|
|
47
49
|
"postcss-html": "^1.8.1",
|
|
48
50
|
"prettier": "^3.8.1",
|
|
49
51
|
"prettier-plugin-svelte": "^3.5.1",
|
|
50
|
-
"sass": "^1.
|
|
51
|
-
"stylelint": "^17.
|
|
52
|
+
"sass": "^1.99.0",
|
|
53
|
+
"stylelint": "^17.6.0",
|
|
52
54
|
"stylelint-config-recommended-scss": "^17.0.0",
|
|
53
55
|
"stylelint-scss": "^7.0.0",
|
|
54
|
-
"svelte": "^5.55.
|
|
55
|
-
"svelte-check": "^4.4.
|
|
56
|
+
"svelte": "^5.55.1",
|
|
57
|
+
"svelte-check": "^4.4.6",
|
|
56
58
|
"svelte-preprocess": "^6.0.3",
|
|
57
59
|
"tslib": "^2.8.1",
|
|
58
60
|
"vite": "^8.0.3",
|
|
59
|
-
"vitest": "^4.1.
|
|
61
|
+
"vitest": "^4.1.2"
|
|
60
62
|
},
|
|
61
63
|
"exports": {
|
|
62
64
|
".": {
|
package/dist/locales/en.d.ts
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
export namespace strings {
|
|
2
|
-
let ok: string;
|
|
3
|
-
let cancel: string;
|
|
4
|
-
let close: string;
|
|
5
|
-
let clear: string;
|
|
6
|
-
let insert: string;
|
|
7
|
-
let update: string;
|
|
8
|
-
let remove: string;
|
|
9
|
-
let collapse: string;
|
|
10
|
-
let expand: string;
|
|
11
|
-
let dismiss: string;
|
|
12
|
-
namespace calendar {
|
|
13
|
-
let year: string;
|
|
14
|
-
let previous_decade: string;
|
|
15
|
-
let next_decade: string;
|
|
16
|
-
let month: string;
|
|
17
|
-
let previous_month: string;
|
|
18
|
-
let next_month: string;
|
|
19
|
-
let today: string;
|
|
20
|
-
}
|
|
21
|
-
namespace split_button {
|
|
22
|
-
let x_options: string;
|
|
23
|
-
let more_options: string;
|
|
24
|
-
}
|
|
25
|
-
namespace combobox {
|
|
26
|
-
let select_an_option: string;
|
|
27
|
-
let filter_options: string;
|
|
28
|
-
let no_matching_options: string;
|
|
29
|
-
}
|
|
30
|
-
namespace number_input {
|
|
31
|
-
let decrease: string;
|
|
32
|
-
let increase: string;
|
|
33
|
-
}
|
|
34
|
-
namespace password_input {
|
|
35
|
-
let show_password: string;
|
|
36
|
-
let hide_password: string;
|
|
37
|
-
}
|
|
38
|
-
namespace secret_input {
|
|
39
|
-
let show_secret: string;
|
|
40
|
-
let hide_secret: string;
|
|
41
|
-
}
|
|
42
|
-
namespace select_tags {
|
|
43
|
-
let selected_options: string;
|
|
44
|
-
let remove_x: string;
|
|
45
|
-
}
|
|
46
|
-
namespace text_editor {
|
|
47
|
-
let text_editor_1: string;
|
|
48
|
-
export { text_editor_1 as text_editor };
|
|
49
|
-
export let code_editor: string;
|
|
50
|
-
export let text_style_options: string;
|
|
51
|
-
export let show_text_style_options: string;
|
|
52
|
-
export let paragraph: string;
|
|
53
|
-
export let heading_1: string;
|
|
54
|
-
export let heading_2: string;
|
|
55
|
-
export let heading_3: string;
|
|
56
|
-
export let heading_4: string;
|
|
57
|
-
export let heading_5: string;
|
|
58
|
-
export let heading_6: string;
|
|
59
|
-
export let bulleted_list: string;
|
|
60
|
-
export let numbered_list: string;
|
|
61
|
-
export let blockquote: string;
|
|
62
|
-
export let code_block: string;
|
|
63
|
-
export let bold: string;
|
|
64
|
-
export let italic: string;
|
|
65
|
-
export let strikethrough: string;
|
|
66
|
-
export let code: string;
|
|
67
|
-
export let link: string;
|
|
68
|
-
export let insert_link: string;
|
|
69
|
-
export let update_link: string;
|
|
70
|
-
export let text: string;
|
|
71
|
-
export let url: string;
|
|
72
|
-
export let edit_in_markdown: string;
|
|
73
|
-
export let converter_error: string;
|
|
74
|
-
export let language: string;
|
|
75
|
-
export let plain_text: string;
|
|
76
|
-
}
|
|
77
|
-
}
|
package/dist/locales/en.js
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
export const strings = {
|
|
2
|
-
ok: 'OK',
|
|
3
|
-
cancel: 'Cancel',
|
|
4
|
-
close: 'Close',
|
|
5
|
-
clear: 'Clear',
|
|
6
|
-
insert: 'Insert',
|
|
7
|
-
update: 'Update',
|
|
8
|
-
remove: 'Remove',
|
|
9
|
-
collapse: 'Collapse',
|
|
10
|
-
expand: 'Expand',
|
|
11
|
-
dismiss: 'Dismiss',
|
|
12
|
-
calendar: {
|
|
13
|
-
year: 'Year',
|
|
14
|
-
previous_decade: 'Previous Decade',
|
|
15
|
-
next_decade: 'Next Decade',
|
|
16
|
-
month: 'Month',
|
|
17
|
-
previous_month: 'Previous Month',
|
|
18
|
-
next_month: 'Next Month',
|
|
19
|
-
today: 'Today',
|
|
20
|
-
},
|
|
21
|
-
split_button: {
|
|
22
|
-
x_options: '{name} Options',
|
|
23
|
-
more_options: 'More Options',
|
|
24
|
-
},
|
|
25
|
-
combobox: {
|
|
26
|
-
select_an_option: 'Select an option…',
|
|
27
|
-
filter_options: 'Filter Options',
|
|
28
|
-
no_matching_options: 'No matching options found',
|
|
29
|
-
},
|
|
30
|
-
number_input: {
|
|
31
|
-
decrease: 'Decrease',
|
|
32
|
-
increase: 'Increase',
|
|
33
|
-
},
|
|
34
|
-
password_input: {
|
|
35
|
-
show_password: 'Show Password',
|
|
36
|
-
hide_password: 'Hide Password',
|
|
37
|
-
},
|
|
38
|
-
secret_input: {
|
|
39
|
-
show_secret: 'Show Secret',
|
|
40
|
-
hide_secret: 'Hide Secret',
|
|
41
|
-
},
|
|
42
|
-
select_tags: {
|
|
43
|
-
selected_options: 'Selected options',
|
|
44
|
-
remove_x: 'Remove {name}',
|
|
45
|
-
},
|
|
46
|
-
text_editor: {
|
|
47
|
-
text_editor: 'Text Editor',
|
|
48
|
-
code_editor: 'Code Editor',
|
|
49
|
-
text_style_options: 'Text Style Options',
|
|
50
|
-
show_text_style_options: 'Show Text Style Options',
|
|
51
|
-
paragraph: 'Paragraph',
|
|
52
|
-
heading_1: 'Heading 1',
|
|
53
|
-
heading_2: 'Heading 2',
|
|
54
|
-
heading_3: 'Heading 3',
|
|
55
|
-
heading_4: 'Heading 4',
|
|
56
|
-
heading_5: 'Heading 5',
|
|
57
|
-
heading_6: 'Heading 6',
|
|
58
|
-
bulleted_list: 'Bulleted List',
|
|
59
|
-
numbered_list: 'Numbered List',
|
|
60
|
-
blockquote: 'Block Quote',
|
|
61
|
-
code_block: 'Code Block',
|
|
62
|
-
bold: 'Bold',
|
|
63
|
-
italic: 'Italic',
|
|
64
|
-
strikethrough: 'Strikethrough',
|
|
65
|
-
code: 'Code',
|
|
66
|
-
link: 'Link',
|
|
67
|
-
insert_link: 'Insert Link',
|
|
68
|
-
update_link: 'Update Link',
|
|
69
|
-
text: 'Text',
|
|
70
|
-
url: 'URL',
|
|
71
|
-
edit_in_markdown: 'Edit in Markdown',
|
|
72
|
-
converter_error:
|
|
73
|
-
'There was an error while enabling rich text mode. Please use the plain text editor instead.',
|
|
74
|
-
language: 'Language',
|
|
75
|
-
plain_text: 'Plain Text',
|
|
76
|
-
},
|
|
77
|
-
};
|
package/dist/locales/ja.d.ts
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
export namespace strings {
|
|
2
|
-
let ok: string;
|
|
3
|
-
let cancel: string;
|
|
4
|
-
let close: string;
|
|
5
|
-
let clear: string;
|
|
6
|
-
let insert: string;
|
|
7
|
-
let update: string;
|
|
8
|
-
let remove: string;
|
|
9
|
-
let collapse: string;
|
|
10
|
-
let expand: string;
|
|
11
|
-
let dismiss: string;
|
|
12
|
-
namespace calendar {
|
|
13
|
-
let year: string;
|
|
14
|
-
let previous_decade: string;
|
|
15
|
-
let next_decade: string;
|
|
16
|
-
let month: string;
|
|
17
|
-
let previous_month: string;
|
|
18
|
-
let next_month: string;
|
|
19
|
-
let today: string;
|
|
20
|
-
}
|
|
21
|
-
namespace split_button {
|
|
22
|
-
let x_options: string;
|
|
23
|
-
let more_options: string;
|
|
24
|
-
}
|
|
25
|
-
namespace combobox {
|
|
26
|
-
let select_an_option: string;
|
|
27
|
-
let filter_options: string;
|
|
28
|
-
let no_matching_options: string;
|
|
29
|
-
}
|
|
30
|
-
namespace number_input {
|
|
31
|
-
let decrease: string;
|
|
32
|
-
let increase: string;
|
|
33
|
-
}
|
|
34
|
-
namespace password_input {
|
|
35
|
-
let show_password: string;
|
|
36
|
-
let hide_password: string;
|
|
37
|
-
}
|
|
38
|
-
namespace secret_input {
|
|
39
|
-
let show_secret: string;
|
|
40
|
-
let hide_secret: string;
|
|
41
|
-
}
|
|
42
|
-
namespace select_tags {
|
|
43
|
-
let selected_options: string;
|
|
44
|
-
let remove_x: string;
|
|
45
|
-
}
|
|
46
|
-
namespace text_editor {
|
|
47
|
-
let text_editor_1: string;
|
|
48
|
-
export { text_editor_1 as text_editor };
|
|
49
|
-
export let code_editor: string;
|
|
50
|
-
export let text_style_options: string;
|
|
51
|
-
export let show_text_style_options: string;
|
|
52
|
-
export let paragraph: string;
|
|
53
|
-
export let heading_1: string;
|
|
54
|
-
export let heading_2: string;
|
|
55
|
-
export let heading_3: string;
|
|
56
|
-
export let heading_4: string;
|
|
57
|
-
export let heading_5: string;
|
|
58
|
-
export let heading_6: string;
|
|
59
|
-
export let bulleted_list: string;
|
|
60
|
-
export let numbered_list: string;
|
|
61
|
-
export let blockquote: string;
|
|
62
|
-
export let code_block: string;
|
|
63
|
-
export let bold: string;
|
|
64
|
-
export let italic: string;
|
|
65
|
-
export let strikethrough: string;
|
|
66
|
-
export let code: string;
|
|
67
|
-
export let link: string;
|
|
68
|
-
export let insert_link: string;
|
|
69
|
-
export let update_link: string;
|
|
70
|
-
export let text: string;
|
|
71
|
-
export let url: string;
|
|
72
|
-
export let edit_in_markdown: string;
|
|
73
|
-
export let converter_error: string;
|
|
74
|
-
export let language: string;
|
|
75
|
-
export let plain_text: string;
|
|
76
|
-
}
|
|
77
|
-
}
|
package/dist/locales/ja.js
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
export const strings = {
|
|
2
|
-
ok: 'OK',
|
|
3
|
-
cancel: 'キャンセル',
|
|
4
|
-
close: '閉じる',
|
|
5
|
-
clear: 'クリア',
|
|
6
|
-
insert: '挿入',
|
|
7
|
-
update: '更新',
|
|
8
|
-
remove: '削除',
|
|
9
|
-
collapse: '折り畳む',
|
|
10
|
-
expand: '広げる',
|
|
11
|
-
dismiss: '閉じる',
|
|
12
|
-
calendar: {
|
|
13
|
-
year: '年',
|
|
14
|
-
previous_decade: '前の 10 年',
|
|
15
|
-
next_decade: '次の 10 年',
|
|
16
|
-
month: '月',
|
|
17
|
-
previous_month: '前月',
|
|
18
|
-
next_month: '翌月',
|
|
19
|
-
today: '今日',
|
|
20
|
-
},
|
|
21
|
-
split_button: {
|
|
22
|
-
x_options: '{name} オプション',
|
|
23
|
-
more_options: 'その他のオプション',
|
|
24
|
-
},
|
|
25
|
-
combobox: {
|
|
26
|
-
select_an_option: 'オプションを選択…',
|
|
27
|
-
filter_options: 'オプションを絞り込み',
|
|
28
|
-
no_matching_options: '一致するオプションは見つかりませんでした',
|
|
29
|
-
},
|
|
30
|
-
number_input: {
|
|
31
|
-
decrease: '減らす',
|
|
32
|
-
increase: '増やす',
|
|
33
|
-
},
|
|
34
|
-
password_input: {
|
|
35
|
-
show_password: 'パスワードを表示',
|
|
36
|
-
hide_password: 'パスワードを隠す',
|
|
37
|
-
},
|
|
38
|
-
secret_input: {
|
|
39
|
-
show_secret: 'シークレットを表示',
|
|
40
|
-
hide_secret: 'シークレットを隠す',
|
|
41
|
-
},
|
|
42
|
-
select_tags: {
|
|
43
|
-
selected_options: '選択済みのオプション',
|
|
44
|
-
remove_x: '{name} を削除',
|
|
45
|
-
},
|
|
46
|
-
text_editor: {
|
|
47
|
-
text_editor: 'テキストエディター',
|
|
48
|
-
code_editor: 'コードエディター',
|
|
49
|
-
text_style_options: 'テキストスタイルオプション',
|
|
50
|
-
show_text_style_options: 'テキストスタイルオプションを表示',
|
|
51
|
-
paragraph: '段落',
|
|
52
|
-
heading_1: '見出し 1',
|
|
53
|
-
heading_2: '見出し 2',
|
|
54
|
-
heading_3: '見出し 3',
|
|
55
|
-
heading_4: '見出し 4',
|
|
56
|
-
heading_5: '見出し 5',
|
|
57
|
-
heading_6: '見出し 6',
|
|
58
|
-
bulleted_list: '番号なしリスト',
|
|
59
|
-
numbered_list: '番号付きリスト',
|
|
60
|
-
blockquote: 'ブロック引用',
|
|
61
|
-
code_block: 'コードブロック',
|
|
62
|
-
bold: '太字',
|
|
63
|
-
italic: '斜体',
|
|
64
|
-
strikethrough: '取り消し線',
|
|
65
|
-
code: 'コード',
|
|
66
|
-
link: 'リンク',
|
|
67
|
-
insert_link: 'リンクを挿入',
|
|
68
|
-
update_link: 'リンクを更新',
|
|
69
|
-
text: 'テキスト',
|
|
70
|
-
url: 'URL',
|
|
71
|
-
edit_in_markdown: 'マークダウンで編集',
|
|
72
|
-
converter_error:
|
|
73
|
-
'リッチテキストモードを有効化中に問題が発生しました。代わりにプレーンテキストエディターを使用してください。',
|
|
74
|
-
language: '言語',
|
|
75
|
-
plain_text: 'プレーンテキスト',
|
|
76
|
-
},
|
|
77
|
-
};
|