tiptapify 0.0.9 → 0.0.11
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/README.md +1 -1
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +21133 -19765
- package/dist/tiptapify.umd.js +37 -38
- package/package.json +43 -43
- package/src/components/Tiptapify.vue +2 -2
- package/src/components/Toolbar/GroupBtn.vue +2 -6
- package/src/components/Toolbar/GroupDropdown.vue +4 -8
- package/src/components/Toolbar/Index.vue +5 -4
- package/src/components/Toolbar/Items.vue +2 -2
- package/src/components/Toolbar/Toggle.vue +2 -2
- package/src/components/Toolbar/items.ts +20 -20
- package/src/components/UI/Dialog.vue +141 -0
- package/src/components/editorExtensions.ts +1 -1
- package/src/{components/Toolbar/items/actions.ts → composables/Toolbar/useActionsItems.ts} +6 -3
- package/src/{components/Toolbar/items/alignment.ts → composables/Toolbar/useAlignmentItems.ts} +12 -9
- package/src/{components/Toolbar/items/formatExtra.ts → composables/Toolbar/useFormatExtraItems.ts} +10 -7
- package/src/{components/Toolbar/items/format.ts → composables/Toolbar/useFormatItems.ts} +20 -17
- package/src/{components/Toolbar/items/list.ts → composables/Toolbar/useListItems.ts} +14 -11
- package/src/{components/Toolbar/items/media.ts → composables/Toolbar/useMediaItems.ts} +22 -20
- package/src/{components/Toolbar/items/misc.ts → composables/Toolbar/useMiscItems.ts} +9 -6
- package/src/composables/Toolbar/useStyleItems.ts +231 -0
- package/src/{components/Toolbar/fonts.ts → constants/style.ts} +21 -0
- package/src/extensions/components/FontFamily.vue +82 -0
- package/src/extensions/components/FontSize.vue +83 -0
- package/src/extensions/components/ImageDialog.vue +17 -29
- package/src/extensions/components/LineHeight.vue +82 -0
- package/src/extensions/components/LinkDialog.vue +75 -44
- package/src/extensions/components/PreviewDialog.vue +8 -16
- package/src/extensions/components/ShowSourceDialog.vue +17 -18
- package/src/extensions/components/StyleColor.vue +68 -15
- package/src/extensions/components/TableBuilder.vue +3 -6
- package/src/extensions/link.ts +8 -0
- package/src/extensions/slash-commands.ts +1 -1
- package/src/i18n/index.ts +0 -1
- package/src/i18n/locales/ch.json +119 -0
- package/src/i18n/locales/cz.json +119 -0
- package/src/i18n/locales/de.json +83 -76
- package/src/i18n/locales/en.json +82 -75
- package/src/i18n/locales/es.json +80 -73
- package/src/i18n/locales/fr.json +81 -73
- package/src/i18n/locales/it.json +80 -73
- package/src/i18n/locales/la.json +119 -0
- package/src/i18n/locales/lt.json +119 -0
- package/src/i18n/locales/nl.json +119 -0
- package/src/i18n/locales/pl.json +80 -74
- package/src/i18n/locales/pt.json +119 -0
- package/src/i18n/locales/ru.json +78 -71
- package/src/i18n/locales/se.json +119 -0
- package/src/i18n/locales/ua.json +79 -72
- package/src/components/Toolbar/items/style.ts +0 -187
- /package/src/{components → extensions/components}/CodeBlockComponent.vue +0 -0
package/src/i18n/locales/pl.json
CHANGED
|
@@ -1,110 +1,116 @@
|
|
|
1
|
-
|
|
2
1
|
{
|
|
2
|
+
"defaultValue": "Wartość domyślna",
|
|
3
3
|
"content": {
|
|
4
|
-
"placeholder": "
|
|
4
|
+
"placeholder": "Napisz coś..."
|
|
5
5
|
},
|
|
6
6
|
"style": {
|
|
7
7
|
"paragraph": "akapit",
|
|
8
|
-
"heading": "
|
|
8
|
+
"heading": "Nagłówek",
|
|
9
9
|
"headings": {
|
|
10
|
-
"h1": "
|
|
11
|
-
"h2": "
|
|
12
|
-
"h3": "
|
|
13
|
-
"h4": "
|
|
14
|
-
"h5": "
|
|
15
|
-
"h6": "
|
|
10
|
+
"h1": "Nagłówek 1. poziomu",
|
|
11
|
+
"h2": "Nagłówek 2. poziomu",
|
|
12
|
+
"h3": "Nagłówek 3. poziomu",
|
|
13
|
+
"h4": "Nagłówek 4. poziomu",
|
|
14
|
+
"h5": "Nagłówek 5. poziomu",
|
|
15
|
+
"h6": "Nagłówek 6. poziomu"
|
|
16
16
|
},
|
|
17
|
-
"fontFamily": "
|
|
18
|
-
"fontSize": "
|
|
19
|
-
"lineHeight": "
|
|
17
|
+
"fontFamily": "Czcionka",
|
|
18
|
+
"fontSize": "Rozmiar",
|
|
19
|
+
"lineHeight": "Wysokość linii",
|
|
20
20
|
"color": {
|
|
21
|
-
"highlight": "
|
|
22
|
-
"text": "
|
|
23
|
-
"unset": "
|
|
24
|
-
"custom": "
|
|
21
|
+
"highlight": "Kolor podświetlenia",
|
|
22
|
+
"text": "Kolor tekstu",
|
|
23
|
+
"unset": "Wyczyść kolor",
|
|
24
|
+
"custom": "Własny wybór"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"format": {
|
|
28
|
-
"bold": "
|
|
29
|
-
"italic": "
|
|
30
|
-
"strike": "
|
|
31
|
-
"underline": "
|
|
32
|
-
"sup": "
|
|
33
|
-
"sub": "
|
|
34
|
-
"break": "
|
|
35
|
-
"line": "
|
|
36
|
-
"blockquote": "
|
|
37
|
-
"code": "
|
|
38
|
-
"codeblock": "
|
|
39
|
-
"formatClear": "
|
|
28
|
+
"bold": "Pogrubienie",
|
|
29
|
+
"italic": "Kursywa",
|
|
30
|
+
"strike": "Przekreślenie",
|
|
31
|
+
"underline": "Podkreślenie",
|
|
32
|
+
"sup": "Indeks górny",
|
|
33
|
+
"sub": "Indeks dolny",
|
|
34
|
+
"break": "Łamanie linii",
|
|
35
|
+
"line": "Linia pozioma",
|
|
36
|
+
"blockquote": "Cytat",
|
|
37
|
+
"code": "Kod",
|
|
38
|
+
"codeblock": "Blok kodu",
|
|
39
|
+
"formatClear": "Wyczyść formatowanie"
|
|
40
40
|
},
|
|
41
41
|
"media": {
|
|
42
|
-
"link": "
|
|
43
|
-
"image": "
|
|
42
|
+
"link": "Link zewnętrzny",
|
|
43
|
+
"image": "Obraz",
|
|
44
44
|
"tables": {
|
|
45
|
-
"table": "
|
|
46
|
-
"insertTable": "
|
|
47
|
-
"deleteTable": "
|
|
48
|
-
"insertWithHeaderRow": "
|
|
49
|
-
"rows": "
|
|
50
|
-
"row": "
|
|
51
|
-
"insertRowBefore": "
|
|
52
|
-
"insertRowAfter": "
|
|
53
|
-
"deleteRow": "
|
|
54
|
-
"cols": "
|
|
55
|
-
"col": "
|
|
56
|
-
"insertColBefore": "
|
|
57
|
-
"insertColAfter": "
|
|
58
|
-
"deleteCol": "
|
|
59
|
-
"mergeCells": "
|
|
60
|
-
"splitCell": "
|
|
45
|
+
"table": "Tabela",
|
|
46
|
+
"insertTable": "Wstaw tabelę",
|
|
47
|
+
"deleteTable": "Usuń tabelę",
|
|
48
|
+
"insertWithHeaderRow": "Wstaw tabelę z nagłówkiem",
|
|
49
|
+
"rows": "Wiersze",
|
|
50
|
+
"row": "Wiersz",
|
|
51
|
+
"insertRowBefore": "Wstaw wiersz przed",
|
|
52
|
+
"insertRowAfter": "Wstaw wiersz po",
|
|
53
|
+
"deleteRow": "Usuń wiersz",
|
|
54
|
+
"cols": "Kolumny",
|
|
55
|
+
"col": "Kolumna",
|
|
56
|
+
"insertColBefore": "Wstaw kolumnę przed",
|
|
57
|
+
"insertColAfter": "Wstaw kolumnę po",
|
|
58
|
+
"deleteCol": "Usuń kolumnę",
|
|
59
|
+
"mergeCells": "Scal komórki",
|
|
60
|
+
"splitCell": "Podziel komórkę"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"action": {
|
|
64
|
-
"undo": "
|
|
65
|
-
"redo": "
|
|
64
|
+
"undo": "Cofnij",
|
|
65
|
+
"redo": "Ponów"
|
|
66
66
|
},
|
|
67
|
-
"alignment": "
|
|
67
|
+
"alignment": "Wyrównanie",
|
|
68
68
|
"alignments": {
|
|
69
|
-
"left": "
|
|
70
|
-
"center": "
|
|
71
|
-
"right": "
|
|
72
|
-
"justify": "
|
|
69
|
+
"left": "Wyrównanie do lewej",
|
|
70
|
+
"center": "Wyrównanie do środka",
|
|
71
|
+
"right": "Wyrównanie do prawej",
|
|
72
|
+
"justify": "Wyjustowanie"
|
|
73
73
|
},
|
|
74
|
-
"list": "
|
|
74
|
+
"list": "Lista",
|
|
75
75
|
"lists": {
|
|
76
|
-
"bullet": "
|
|
77
|
-
"numbered": "
|
|
78
|
-
"task": "
|
|
79
|
-
"indent": "wcięcie elementu
|
|
80
|
-
"outdent": "
|
|
76
|
+
"bullet": "Lista punktowana",
|
|
77
|
+
"numbered": "Lista numerowana",
|
|
78
|
+
"task": "Lista zadań",
|
|
79
|
+
"indent": "Zwiększ wcięcie elementu",
|
|
80
|
+
"outdent": "Zmniejsz wcięcie elementu"
|
|
81
81
|
},
|
|
82
82
|
"dialog": {
|
|
83
|
-
"apply": "
|
|
84
|
-
"clear": "
|
|
85
|
-
"close": "
|
|
83
|
+
"apply": "Zastosuj",
|
|
84
|
+
"clear": "Wyczyść",
|
|
85
|
+
"close": "Zamknij",
|
|
86
86
|
"image": {
|
|
87
|
-
"title": "
|
|
88
|
-
"src": "
|
|
87
|
+
"title": "Dodaj/zmień obraz",
|
|
88
|
+
"src": "Źródło",
|
|
89
89
|
"alt": "alt",
|
|
90
|
-
"width": "
|
|
91
|
-
"height": "
|
|
90
|
+
"width": "Szerokość",
|
|
91
|
+
"height": "Wysokość"
|
|
92
92
|
},
|
|
93
93
|
"link": {
|
|
94
|
-
"title": "
|
|
95
|
-
"href": "
|
|
96
|
-
"
|
|
94
|
+
"title": "Dodaj/zmień link",
|
|
95
|
+
"href": "Adres linka",
|
|
96
|
+
"href_error": "Nieprawidłowy adres linka",
|
|
97
|
+
"target": "Otwórz w...",
|
|
98
|
+
"target_blank": "Nowym oknie",
|
|
99
|
+
"target_self": "Bieżącym oknie",
|
|
97
100
|
"rel": "rel",
|
|
98
|
-
"class": "
|
|
101
|
+
"class": "Klasa CSS"
|
|
102
|
+
},
|
|
103
|
+
"preview": {
|
|
104
|
+
"title": "Podgląd"
|
|
99
105
|
},
|
|
100
106
|
"source": {
|
|
101
|
-
"title": "
|
|
102
|
-
"prettify": "
|
|
107
|
+
"title": "Pokaż kod źródłowy",
|
|
108
|
+
"prettify": "prettify"
|
|
103
109
|
}
|
|
104
110
|
},
|
|
105
111
|
"misc": {
|
|
106
|
-
"source": "
|
|
107
|
-
"preview": "
|
|
112
|
+
"source": "Pokaż kod źródłowy",
|
|
113
|
+
"preview": "Podgląd"
|
|
108
114
|
},
|
|
109
115
|
"footer": {
|
|
110
116
|
"words": "słowa",
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"defaultValue": "Valor padrão",
|
|
3
|
+
"content": {
|
|
4
|
+
"placeholder": "Escreva algo..."
|
|
5
|
+
},
|
|
6
|
+
"style": {
|
|
7
|
+
"paragraph": "parágrafo",
|
|
8
|
+
"heading": "Cabeçalho",
|
|
9
|
+
"headings": {
|
|
10
|
+
"h1": "Cabeçalho de nível 1",
|
|
11
|
+
"h2": "Cabeçalho de nível 2",
|
|
12
|
+
"h3": "Cabeçalho de nível 3",
|
|
13
|
+
"h4": "Cabeçalho de nível 4",
|
|
14
|
+
"h5": "Cabeçalho de nível 5",
|
|
15
|
+
"h6": "Cabeçalho de nível 6"
|
|
16
|
+
},
|
|
17
|
+
"fontFamily": "Fonte",
|
|
18
|
+
"fontSize": "Tamanho",
|
|
19
|
+
"lineHeight": "Altura da linha",
|
|
20
|
+
"color": {
|
|
21
|
+
"highlight": "Cor de destaque",
|
|
22
|
+
"text": "Cor do texto",
|
|
23
|
+
"unset": "Limpar cor",
|
|
24
|
+
"custom": "Seleção personalizada"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"format": {
|
|
28
|
+
"bold": "Negrito",
|
|
29
|
+
"italic": "Itálico",
|
|
30
|
+
"strike": "Riscado",
|
|
31
|
+
"underline": "Sublinhado",
|
|
32
|
+
"sup": "Sobrescrito",
|
|
33
|
+
"sub": "Subscrito",
|
|
34
|
+
"break": "Quebra de linha",
|
|
35
|
+
"line": "Linha horizontal",
|
|
36
|
+
"blockquote": "Citação",
|
|
37
|
+
"code": "Código",
|
|
38
|
+
"codeblock": "Bloco de código",
|
|
39
|
+
"formatClear": "Limpar formatação"
|
|
40
|
+
},
|
|
41
|
+
"media": {
|
|
42
|
+
"link": "Link externo",
|
|
43
|
+
"image": "Imagem",
|
|
44
|
+
"tables": {
|
|
45
|
+
"table": "Tabela",
|
|
46
|
+
"insertTable": "Inserir tabela",
|
|
47
|
+
"deleteTable": "Excluir tabela",
|
|
48
|
+
"insertWithHeaderRow": "Inserir tabela com cabeçalho",
|
|
49
|
+
"rows": "Linhas",
|
|
50
|
+
"row": "Linha",
|
|
51
|
+
"insertRowBefore": "Inserir linha antes",
|
|
52
|
+
"insertRowAfter": "Inserir linha depois",
|
|
53
|
+
"deleteRow": "Excluir linha",
|
|
54
|
+
"cols": "Colunas",
|
|
55
|
+
"col": "Coluna",
|
|
56
|
+
"insertColBefore": "Inserir coluna antes",
|
|
57
|
+
"insertColAfter": "Inserir coluna depois",
|
|
58
|
+
"deleteCol": "Excluir coluna",
|
|
59
|
+
"mergeCells": "Mesclar células",
|
|
60
|
+
"splitCell": "Dividir célula"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"action": {
|
|
64
|
+
"undo": "Desfazer",
|
|
65
|
+
"redo": "Refazer"
|
|
66
|
+
},
|
|
67
|
+
"alignment": "Alinhamento",
|
|
68
|
+
"alignments": {
|
|
69
|
+
"left": "Alinhamento à esquerda",
|
|
70
|
+
"center": "Alinhamento centralizado",
|
|
71
|
+
"right": "Alinhamento à direita",
|
|
72
|
+
"justify": "Justificado"
|
|
73
|
+
},
|
|
74
|
+
"list": "Lista",
|
|
75
|
+
"lists": {
|
|
76
|
+
"bullet": "Lista com marcadores",
|
|
77
|
+
"numbered": "Lista numerada",
|
|
78
|
+
"task": "Lista de tarefas",
|
|
79
|
+
"indent": "Aumentar recuo do item",
|
|
80
|
+
"outdent": "Diminuir recuo do item"
|
|
81
|
+
},
|
|
82
|
+
"dialog": {
|
|
83
|
+
"apply": "Aplicar",
|
|
84
|
+
"clear": "Limpar",
|
|
85
|
+
"close": "Fechar",
|
|
86
|
+
"image": {
|
|
87
|
+
"title": "Adicionar/modificar imagem",
|
|
88
|
+
"src": "Fonte",
|
|
89
|
+
"alt": "alt",
|
|
90
|
+
"width": "Largura",
|
|
91
|
+
"height": "Altura"
|
|
92
|
+
},
|
|
93
|
+
"link": {
|
|
94
|
+
"title": "Adicionar/modificar link",
|
|
95
|
+
"href": "Endereço do link",
|
|
96
|
+
"href_error": "Endereço de link incorreto",
|
|
97
|
+
"target": "Abrir em...",
|
|
98
|
+
"target_blank": "Nova janela",
|
|
99
|
+
"target_self": "Janela atual",
|
|
100
|
+
"rel": "rel",
|
|
101
|
+
"class": "Classe CSS"
|
|
102
|
+
},
|
|
103
|
+
"preview": {
|
|
104
|
+
"title": "Visualização"
|
|
105
|
+
},
|
|
106
|
+
"source": {
|
|
107
|
+
"title": "Ver código fonte",
|
|
108
|
+
"prettify": "prettify"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"misc": {
|
|
112
|
+
"source": "Ver código fonte",
|
|
113
|
+
"preview": "Visualização"
|
|
114
|
+
},
|
|
115
|
+
"footer": {
|
|
116
|
+
"words": "palavras",
|
|
117
|
+
"chars": "caracteres"
|
|
118
|
+
}
|
|
119
|
+
}
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -1,109 +1,116 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Значение по-умолчанию",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "
|
|
4
|
+
"placeholder": "Напишите что-нибудь..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
7
|
"paragraph": "абзац",
|
|
7
|
-
"heading": "
|
|
8
|
+
"heading": "Заголовок",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "
|
|
10
|
-
"h2": "
|
|
11
|
-
"h3": "
|
|
12
|
-
"h4": "
|
|
13
|
-
"h5": "
|
|
14
|
-
"h6": "
|
|
10
|
+
"h1": "Заголовок 1-го уровня",
|
|
11
|
+
"h2": "Заголовок 2-го уровня",
|
|
12
|
+
"h3": "Заголовок 3-го уровня",
|
|
13
|
+
"h4": "Заголовок 4-го уровня",
|
|
14
|
+
"h5": "Заголовок 5-го уровня",
|
|
15
|
+
"h6": "Заголовок 6-го уровня"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
18
|
-
"lineHeight": "
|
|
17
|
+
"fontFamily": "Шрифт",
|
|
18
|
+
"fontSize": "Размер",
|
|
19
|
+
"lineHeight": "Высота строки",
|
|
19
20
|
"color": {
|
|
20
|
-
"highlight": "
|
|
21
|
-
"text": "
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
21
|
+
"highlight": "Цвет выделения",
|
|
22
|
+
"text": "Цвет текста",
|
|
23
|
+
"unset": "Очистить цвет",
|
|
24
|
+
"custom": "Свой выбор"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
27
|
-
"bold": "
|
|
28
|
-
"italic": "
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
31
|
-
"sup": "
|
|
32
|
-
"sub": "
|
|
33
|
-
"break": "
|
|
34
|
-
"line": "
|
|
35
|
-
"blockquote": "
|
|
36
|
-
"code": "
|
|
37
|
-
"codeblock": "
|
|
38
|
-
"formatClear": "
|
|
28
|
+
"bold": "Жирный",
|
|
29
|
+
"italic": "Курсив",
|
|
30
|
+
"strike": "Зачеркивание",
|
|
31
|
+
"underline": "Подчеркивание",
|
|
32
|
+
"sup": "Верхний индекс",
|
|
33
|
+
"sub": "Нижний индекс",
|
|
34
|
+
"break": "Разрыв строки",
|
|
35
|
+
"line": "Горизонтальная линия",
|
|
36
|
+
"blockquote": "Цитата",
|
|
37
|
+
"code": "Код",
|
|
38
|
+
"codeblock": "Блок кода",
|
|
39
|
+
"formatClear": "Очистить форматирование"
|
|
39
40
|
},
|
|
40
41
|
"media": {
|
|
41
|
-
"link": "
|
|
42
|
-
"image": "
|
|
42
|
+
"link": "Внешняя ссылка",
|
|
43
|
+
"image": "Изображение",
|
|
43
44
|
"tables": {
|
|
44
|
-
"table": "
|
|
45
|
-
"insertTable": "
|
|
46
|
-
"deleteTable": "
|
|
47
|
-
"insertWithHeaderRow": "
|
|
48
|
-
"rows": "
|
|
49
|
-
"row": "
|
|
50
|
-
"insertRowBefore": "
|
|
51
|
-
"insertRowAfter": "
|
|
52
|
-
"deleteRow": "
|
|
53
|
-
"cols": "
|
|
54
|
-
"col": "
|
|
55
|
-
"insertColBefore": "
|
|
56
|
-
"insertColAfter": "
|
|
57
|
-
"deleteCol": "
|
|
58
|
-
"mergeCells": "
|
|
59
|
-
"splitCell": "
|
|
45
|
+
"table": "Таблица",
|
|
46
|
+
"insertTable": "Вставить таблицу",
|
|
47
|
+
"deleteTable": "Удалить таблицу",
|
|
48
|
+
"insertWithHeaderRow": "Вставить таблицу с заголовком",
|
|
49
|
+
"rows": "Строки",
|
|
50
|
+
"row": "Строка",
|
|
51
|
+
"insertRowBefore": "Вставить строку перед",
|
|
52
|
+
"insertRowAfter": "Вставить строку после",
|
|
53
|
+
"deleteRow": "Удалить строку",
|
|
54
|
+
"cols": "Столбцы",
|
|
55
|
+
"col": "Столбец",
|
|
56
|
+
"insertColBefore": "Вставить колонку перед",
|
|
57
|
+
"insertColAfter": "Вставить колонку после",
|
|
58
|
+
"deleteCol": "Удалить колонку",
|
|
59
|
+
"mergeCells": "Объединить ячейки",
|
|
60
|
+
"splitCell": "Разделить ячейку"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
62
63
|
"action": {
|
|
63
|
-
"undo": "
|
|
64
|
-
"redo": "
|
|
64
|
+
"undo": "Отмена",
|
|
65
|
+
"redo": "Повтор"
|
|
65
66
|
},
|
|
66
|
-
"alignment": "
|
|
67
|
+
"alignment": "Выравнивание",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Выравнивание по левому краю",
|
|
70
|
+
"center": "Выравнивание по центру",
|
|
71
|
+
"right": "Выравнивание по правому краю",
|
|
72
|
+
"justify": "Выравнивание по ширине"
|
|
72
73
|
},
|
|
73
|
-
"list": "
|
|
74
|
+
"list": "Список",
|
|
74
75
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
-
"numbered": "
|
|
77
|
-
"task": "
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
76
|
+
"bullet": "Ненумерованный список",
|
|
77
|
+
"numbered": "Нумерованный список",
|
|
78
|
+
"task": "Список задач",
|
|
79
|
+
"indent": "Увеличить отступ элемента списка",
|
|
80
|
+
"outdent": "Уменьшить отступ элемента списка"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
|
-
"apply": "
|
|
83
|
-
"clear": "
|
|
84
|
-
"close": "
|
|
83
|
+
"apply": "Применить",
|
|
84
|
+
"clear": "Очистить",
|
|
85
|
+
"close": "Закрыть",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "
|
|
87
|
-
"src": "
|
|
87
|
+
"title": "Добавление/изменение изображения",
|
|
88
|
+
"src": "Источник",
|
|
88
89
|
"alt": "alt",
|
|
89
|
-
"width": "
|
|
90
|
-
"height": "
|
|
90
|
+
"width": "Ширина",
|
|
91
|
+
"height": "Высота"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "
|
|
94
|
-
"href": "
|
|
95
|
-
"
|
|
94
|
+
"title": "Добавление/изменение ссылки",
|
|
95
|
+
"href": "Адрес ссылки",
|
|
96
|
+
"href_error": "Некорректный адрес ссылки",
|
|
97
|
+
"target": "Открывать в...",
|
|
98
|
+
"target_blank": "Новом окне",
|
|
99
|
+
"target_self": "Текущем окне",
|
|
96
100
|
"rel": "rel",
|
|
97
101
|
"class": "CSS класс"
|
|
98
102
|
},
|
|
103
|
+
"preview": {
|
|
104
|
+
"title": "Предпросмотр"
|
|
105
|
+
},
|
|
99
106
|
"source": {
|
|
100
|
-
"title": "
|
|
107
|
+
"title": "Просмотр исходного кода",
|
|
101
108
|
"prettify": "prettify"
|
|
102
109
|
}
|
|
103
110
|
},
|
|
104
111
|
"misc": {
|
|
105
|
-
"source": "
|
|
106
|
-
"preview": "
|
|
112
|
+
"source": "Просмотр исходного кода",
|
|
113
|
+
"preview": "Предпросмотр"
|
|
107
114
|
},
|
|
108
115
|
"footer": {
|
|
109
116
|
"words": "слова",
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"defaultValue": "Standardvärde",
|
|
3
|
+
"content": {
|
|
4
|
+
"placeholder": "Skriv något..."
|
|
5
|
+
},
|
|
6
|
+
"style": {
|
|
7
|
+
"paragraph": "stycke",
|
|
8
|
+
"heading": "Rubrik",
|
|
9
|
+
"headings": {
|
|
10
|
+
"h1": "Rubrik nivå 1",
|
|
11
|
+
"h2": "Rubrik nivå 2",
|
|
12
|
+
"h3": "Rubrik nivå 3",
|
|
13
|
+
"h4": "Rubrik nivå 4",
|
|
14
|
+
"h5": "Rubrik nivå 5",
|
|
15
|
+
"h6": "Rubrik nivå 6"
|
|
16
|
+
},
|
|
17
|
+
"fontFamily": "Typsnitt",
|
|
18
|
+
"fontSize": "Storlek",
|
|
19
|
+
"lineHeight": "Radhöjd",
|
|
20
|
+
"color": {
|
|
21
|
+
"highlight": "Markeringsfärg",
|
|
22
|
+
"text": "Textfärg",
|
|
23
|
+
"unset": "Rensa färg",
|
|
24
|
+
"custom": "Eget val"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"format": {
|
|
28
|
+
"bold": "Fet",
|
|
29
|
+
"italic": "Kursiv",
|
|
30
|
+
"strike": "Genomstruken",
|
|
31
|
+
"underline": "Understruken",
|
|
32
|
+
"sup": "Upphöjt",
|
|
33
|
+
"sub": "Nedsänkt",
|
|
34
|
+
"break": "Radbrytning",
|
|
35
|
+
"line": "Horisontell linje",
|
|
36
|
+
"blockquote": "Citat",
|
|
37
|
+
"code": "Kod",
|
|
38
|
+
"codeblock": "Kodblock",
|
|
39
|
+
"formatClear": "Rensa formatering"
|
|
40
|
+
},
|
|
41
|
+
"media": {
|
|
42
|
+
"link": "Extern länk",
|
|
43
|
+
"image": "Bild",
|
|
44
|
+
"tables": {
|
|
45
|
+
"table": "Tabell",
|
|
46
|
+
"insertTable": "Sätt in tabell",
|
|
47
|
+
"deleteTable": "Ta bort tabell",
|
|
48
|
+
"insertWithHeaderRow": "Sätt in tabell med rubrik",
|
|
49
|
+
"rows": "Rader",
|
|
50
|
+
"row": "Rad",
|
|
51
|
+
"insertRowBefore": "Sätt in rad före",
|
|
52
|
+
"insertRowAfter": "Sätt in rad efter",
|
|
53
|
+
"deleteRow": "Ta bort rad",
|
|
54
|
+
"cols": "Kolumner",
|
|
55
|
+
"col": "Kolumn",
|
|
56
|
+
"insertColBefore": "Sätt in kolumn före",
|
|
57
|
+
"insertColAfter": "Sätt in kolumn efter",
|
|
58
|
+
"deleteCol": "Ta bort kolumn",
|
|
59
|
+
"mergeCells": "Sammanfoga celler",
|
|
60
|
+
"splitCell": "Dela cell"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"action": {
|
|
64
|
+
"undo": "Ångra",
|
|
65
|
+
"redo": "Gör om"
|
|
66
|
+
},
|
|
67
|
+
"alignment": "Justering",
|
|
68
|
+
"alignments": {
|
|
69
|
+
"left": "Vänsterjustering",
|
|
70
|
+
"center": "Centrerjustering",
|
|
71
|
+
"right": "Högerjustering",
|
|
72
|
+
"justify": "Marginaljustering"
|
|
73
|
+
},
|
|
74
|
+
"list": "Lista",
|
|
75
|
+
"lists": {
|
|
76
|
+
"bullet": "Punktlista",
|
|
77
|
+
"numbered": "Numrerad lista",
|
|
78
|
+
"task": "Uppgiftslista",
|
|
79
|
+
"indent": "Öka indrag för element",
|
|
80
|
+
"outdent": "Minska indrag för element"
|
|
81
|
+
},
|
|
82
|
+
"dialog": {
|
|
83
|
+
"apply": "Tillämpa",
|
|
84
|
+
"clear": "Rensa",
|
|
85
|
+
"close": "Stäng",
|
|
86
|
+
"image": {
|
|
87
|
+
"title": "Lägg till/ändra bild",
|
|
88
|
+
"src": "Källa",
|
|
89
|
+
"alt": "alt",
|
|
90
|
+
"width": "Bredd",
|
|
91
|
+
"height": "Höjd"
|
|
92
|
+
},
|
|
93
|
+
"link": {
|
|
94
|
+
"title": "Lägg till/ändra länk",
|
|
95
|
+
"href": "Länkadress",
|
|
96
|
+
"href_error": "Felaktig länkadress",
|
|
97
|
+
"target": "Öppna i...",
|
|
98
|
+
"target_blank": "Nytt fönster",
|
|
99
|
+
"target_self": "Aktuellt fönster",
|
|
100
|
+
"rel": "rel",
|
|
101
|
+
"class": "CSS-klass"
|
|
102
|
+
},
|
|
103
|
+
"preview": {
|
|
104
|
+
"title": "Förhandsgranskning"
|
|
105
|
+
},
|
|
106
|
+
"source": {
|
|
107
|
+
"title": "Visa källkod",
|
|
108
|
+
"prettify": "prettify"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"misc": {
|
|
112
|
+
"source": "Visa källkod",
|
|
113
|
+
"preview": "Förhandsgranskning"
|
|
114
|
+
},
|
|
115
|
+
"footer": {
|
|
116
|
+
"words": "ord",
|
|
117
|
+
"chars": "tecken"
|
|
118
|
+
}
|
|
119
|
+
}
|