@yiitap/i18n 0.13.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/LICENSE +21 -0
- package/README.md +13 -0
- package/dist/index.cjs +4 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +2720 -0
- package/dist/types/__tests__/index.spec.d.ts +1 -0
- package/dist/types/generate/config/index.d.ts +0 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/languages.d.ts +9 -0
- package/dist/types/messages/de-DE.d.ts +206 -0
- package/dist/types/messages/en-US.d.ts +206 -0
- package/dist/types/messages/fr-FR.d.ts +206 -0
- package/dist/types/messages/id-ID.d.ts +206 -0
- package/dist/types/messages/ja-JP.d.ts +206 -0
- package/dist/types/messages/ko-KR.d.ts +206 -0
- package/dist/types/messages/pl-PL.d.ts +206 -0
- package/dist/types/messages/pt-BR.d.ts +206 -0
- package/dist/types/messages/ru-RU.d.ts +206 -0
- package/dist/types/messages/vi-VN.d.ts +206 -0
- package/dist/types/messages/zh-Hans.d.ts +204 -0
- package/dist/types/messages/zh-Hant.d.ts +204 -0
- package/dist/types/messages.d.ts +4 -0
- package/dist/types/types/index.d.ts +5 -0
- package/package.json +45 -0
- package/src/__tests__/index.spec.ts +7 -0
- package/src/generate/README.md +29 -0
- package/src/generate/config/index.ts +0 -0
- package/src/generate/config/languages.json +189 -0
- package/src/generate/index.js +398 -0
- package/src/generate/meta/en-US.meta.json +189 -0
- package/src/generate/meta/zh-Hans.meta.json +187 -0
- package/src/index.ts +2 -0
- package/src/languages.ts +126 -0
- package/src/messages/de-DE.ts +206 -0
- package/src/messages/en-US.ts +206 -0
- package/src/messages/fr-FR.ts +206 -0
- package/src/messages/id-ID.ts +206 -0
- package/src/messages/ja-JP.ts +205 -0
- package/src/messages/ko-KR.ts +205 -0
- package/src/messages/pl-PL.ts +206 -0
- package/src/messages/pt-BR.ts +206 -0
- package/src/messages/ru-RU.ts +206 -0
- package/src/messages/vi-VN.ts +206 -0
- package/src/messages/zh-Hans.ts +203 -0
- package/src/messages/zh-Hant.ts +203 -0
- package/src/messages.ts +37 -0
- package/src/types/index.ts +6 -0
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
ai: {
|
|
3
|
+
askAi: 'Fragen Sie die KI',
|
|
4
|
+
changeTone: 'Ton ändern',
|
|
5
|
+
continuation: 'Fortsetzung',
|
|
6
|
+
enrichWithEmoji: 'Mit Emoji bereichern',
|
|
7
|
+
error: 'Bitte geben Sie die korrekte AI-Konfiguration an',
|
|
8
|
+
explain: 'Erklären',
|
|
9
|
+
fixSpellingGrammar: 'Korrigieren Sie Rechtschreibung und Grammatik',
|
|
10
|
+
improveWriting: 'Verbessern Sie das Schreiben',
|
|
11
|
+
makeLonger: 'Länger machen',
|
|
12
|
+
makeShorter: 'Kürzer machen',
|
|
13
|
+
summarize: 'Zusammenfassen',
|
|
14
|
+
tellAi: 'Sagen Sie der KI, was sie schreiben soll',
|
|
15
|
+
tone: {
|
|
16
|
+
authoritative: 'Maßgeblich',
|
|
17
|
+
casual: 'Lässig',
|
|
18
|
+
empathetic: 'Einfühlsam',
|
|
19
|
+
enthusiastic: 'Enthusiastisch',
|
|
20
|
+
formal: 'Formell',
|
|
21
|
+
friendly: 'Freundlich',
|
|
22
|
+
humorous: 'Humorvoll',
|
|
23
|
+
inspirational: 'Inspirierend',
|
|
24
|
+
mysterious: 'Geheimnisvoll',
|
|
25
|
+
},
|
|
26
|
+
translate: 'Übersetzen nach',
|
|
27
|
+
write: 'Schreiben Sie etwas',
|
|
28
|
+
},
|
|
29
|
+
diagram: {
|
|
30
|
+
class: 'Klassendiagramm',
|
|
31
|
+
flow: 'Flussdiagramm',
|
|
32
|
+
gantt: 'Gantt-Diagramm',
|
|
33
|
+
name: 'Textdiagramm',
|
|
34
|
+
sequence: 'Sequenzdiagramm',
|
|
35
|
+
state: 'Zustandsdiagramm',
|
|
36
|
+
tips: 'Generierung von Diagrammen und Diagrammen aus Text auf ähnliche Weise wie beim Markdown',
|
|
37
|
+
},
|
|
38
|
+
editor: {
|
|
39
|
+
add: 'Hinzufügen',
|
|
40
|
+
addMore: 'Weitere hinzufügen',
|
|
41
|
+
aiBlock: 'KI-Block',
|
|
42
|
+
align: 'Ausrichten',
|
|
43
|
+
backgroundColor: 'Hintergrundfarbe',
|
|
44
|
+
blockFormula: 'Block',
|
|
45
|
+
blockMath: 'Mathe blockieren',
|
|
46
|
+
blockquote: 'Blockquote',
|
|
47
|
+
bold: 'Deutlich',
|
|
48
|
+
callout: 'Aufbieten, ausrufen, zurufen',
|
|
49
|
+
center: 'Mittig ausrichten',
|
|
50
|
+
code: 'Code',
|
|
51
|
+
codeBlock: 'Codeblock',
|
|
52
|
+
default: 'Standard',
|
|
53
|
+
defaultColor: 'Standardfarbe',
|
|
54
|
+
defaultFont: 'Standardschriftart',
|
|
55
|
+
delete: 'Löschen',
|
|
56
|
+
duplicate: 'Duplikat',
|
|
57
|
+
emoji: 'Emoji',
|
|
58
|
+
fontFamily: 'Schriftfamilie',
|
|
59
|
+
fontSize: 'Schriftgröße',
|
|
60
|
+
formatting: 'Formatierung',
|
|
61
|
+
formula: 'Formel',
|
|
62
|
+
heading: 'Überschrift und Absatz',
|
|
63
|
+
heading1: 'Überschrift 1',
|
|
64
|
+
heading2: 'Überschrift 2',
|
|
65
|
+
heading3: 'Überschrift 3',
|
|
66
|
+
heading4: 'Überschrift 4',
|
|
67
|
+
heading5: 'Überschrift 5',
|
|
68
|
+
headings: 'Überschriften',
|
|
69
|
+
highlightColor: 'Farbe hervorheben',
|
|
70
|
+
horizontal: 'Horizontale Regel',
|
|
71
|
+
hr: 'Horizontale Regel einfügen',
|
|
72
|
+
hyperlink: 'Hyperlink',
|
|
73
|
+
indent: 'Einrückung vergrößern',
|
|
74
|
+
indentDropdown: 'Einzug',
|
|
75
|
+
inlineFormula: 'Im Einklang',
|
|
76
|
+
inlineMath: 'Inline-Mathematik',
|
|
77
|
+
italic: 'Kursiv',
|
|
78
|
+
justify: 'Ausrichten ausrichten',
|
|
79
|
+
left: 'Linksbündig',
|
|
80
|
+
lineHeight: 'Zeilenhöhe',
|
|
81
|
+
list: 'Liste',
|
|
82
|
+
noColor: 'Keine Farbe',
|
|
83
|
+
orderedList: 'Geordnete Liste',
|
|
84
|
+
outdent: 'Einzug verkleinern',
|
|
85
|
+
paragraph: 'Absatz',
|
|
86
|
+
photo: 'Foto einfügen',
|
|
87
|
+
print: 'Drucken',
|
|
88
|
+
quote: 'Zitat',
|
|
89
|
+
redo: 'Wiederholen',
|
|
90
|
+
removeFormat: 'Formatierung entfernen',
|
|
91
|
+
right: 'Rechts ausrichten',
|
|
92
|
+
size1: 'Sehr klein',
|
|
93
|
+
size2: 'Etwas klein',
|
|
94
|
+
size3: 'Normal',
|
|
95
|
+
size4: 'Mittelgroß',
|
|
96
|
+
size5: 'Groß',
|
|
97
|
+
size6: 'Sehr groß',
|
|
98
|
+
size7: 'Maximal',
|
|
99
|
+
strikethrough: 'Durchgestrichen',
|
|
100
|
+
subscript: 'Index',
|
|
101
|
+
superscript: 'Hochgestellt',
|
|
102
|
+
table: 'Tisch',
|
|
103
|
+
textColor: 'Textfarbe',
|
|
104
|
+
textFormat: 'Mehr Textformat',
|
|
105
|
+
thirdPartyService: 'Dienstleistungen Dritter',
|
|
106
|
+
todoList: 'Alle Liste',
|
|
107
|
+
toggleFullscreen: 'Vollbild umschalten',
|
|
108
|
+
toggleList: 'Liste umschalten',
|
|
109
|
+
underline: 'Unterstreichen',
|
|
110
|
+
undo: 'Rückgängig machen',
|
|
111
|
+
unorderedList: 'Ungeordnete Liste',
|
|
112
|
+
url: 'URL',
|
|
113
|
+
video: 'Video einfügen',
|
|
114
|
+
viewSource: 'Quelle anzeigen',
|
|
115
|
+
},
|
|
116
|
+
image: {
|
|
117
|
+
caption: 'Untertitel',
|
|
118
|
+
height: 'Höhe',
|
|
119
|
+
large: 'Groß',
|
|
120
|
+
link: 'Link',
|
|
121
|
+
lockAspectRatio: 'Seitenverhältnis sperren',
|
|
122
|
+
medium: 'Medium',
|
|
123
|
+
original: 'Original',
|
|
124
|
+
preferences: 'Bildeinstellungen',
|
|
125
|
+
ratio: 'Verhältnis',
|
|
126
|
+
reposition: 'Neu positionieren',
|
|
127
|
+
repositionTips: 'Ziehen Sie das Bild, um es neu zu positionieren',
|
|
128
|
+
size: 'Größe',
|
|
129
|
+
small: 'Klein',
|
|
130
|
+
src: 'Bildquelle',
|
|
131
|
+
unlockAspectRatio: 'Seitenverhältnis freischalten',
|
|
132
|
+
width: 'Breite',
|
|
133
|
+
zoom: 'Zoom',
|
|
134
|
+
},
|
|
135
|
+
label: {
|
|
136
|
+
advanced: 'Fortschrittlich',
|
|
137
|
+
ai: 'KI',
|
|
138
|
+
back: 'Zurück',
|
|
139
|
+
basic: 'Basic',
|
|
140
|
+
basicBlocks: 'Grundblöcke',
|
|
141
|
+
cancel: 'Stornieren',
|
|
142
|
+
close: 'Schließen',
|
|
143
|
+
color: 'Farbe',
|
|
144
|
+
common: 'Gemeinsam',
|
|
145
|
+
copy: 'Kopie',
|
|
146
|
+
cut: 'Schneiden',
|
|
147
|
+
download: 'Herunterladen',
|
|
148
|
+
edit: 'Bearbeiten',
|
|
149
|
+
empty: 'Leer',
|
|
150
|
+
emptyTips:
|
|
151
|
+
'Drücken Sie die Eingabetaste, um mit einer leeren Notiz fortzufahren, oder wählen Sie Folgendes aus',
|
|
152
|
+
example: 'Beispiel',
|
|
153
|
+
generate: 'Erzeugen',
|
|
154
|
+
generatedBy: 'Erstellt von',
|
|
155
|
+
help: 'Helfen',
|
|
156
|
+
image: 'Bild',
|
|
157
|
+
link: 'Link',
|
|
158
|
+
linkAddress: 'Linkadresse',
|
|
159
|
+
media: 'Medien',
|
|
160
|
+
model: 'Modell',
|
|
161
|
+
modelViewer: 'Modellbetrachter',
|
|
162
|
+
more: 'Mehr',
|
|
163
|
+
noResults: 'Keine Ergebnisse',
|
|
164
|
+
ok: 'OK',
|
|
165
|
+
preview: 'Vorschau',
|
|
166
|
+
remove: 'Entfernen',
|
|
167
|
+
replace: 'Ersetzen',
|
|
168
|
+
search: 'Suchen',
|
|
169
|
+
settings: 'Einstellungen',
|
|
170
|
+
splitHorizontal: 'Horizontal teilen',
|
|
171
|
+
splitVertical: 'Vertikal teilen',
|
|
172
|
+
styles: 'Stile',
|
|
173
|
+
submit: 'Einreichen',
|
|
174
|
+
suggested: 'Empfohlen',
|
|
175
|
+
template: 'Vorlage',
|
|
176
|
+
think: 'Denken',
|
|
177
|
+
toc: 'Inhaltsverzeichnis',
|
|
178
|
+
turnInto: 'Verwandeln Sie sich in',
|
|
179
|
+
typeForCommands: 'Geben Sie „/“ für Befehle ein',
|
|
180
|
+
untitled: 'Ohne Titel',
|
|
181
|
+
update: 'Aktualisieren',
|
|
182
|
+
video: 'Video',
|
|
183
|
+
view: 'Sicht',
|
|
184
|
+
write: 'Schreiben',
|
|
185
|
+
},
|
|
186
|
+
link: {
|
|
187
|
+
back: 'Zurück zum Hauptmenü',
|
|
188
|
+
edit: 'Link bearbeiten',
|
|
189
|
+
off: 'Link deaktivieren',
|
|
190
|
+
open: 'Link öffnen',
|
|
191
|
+
openInNewTab: 'In neuem Tab öffnen',
|
|
192
|
+
},
|
|
193
|
+
table: {
|
|
194
|
+
addColumn: 'Spalte hinzufügen',
|
|
195
|
+
addRow: 'Zeile hinzufügen',
|
|
196
|
+
cellBackground: 'Zellhintergrund',
|
|
197
|
+
insert: 'Tabelle einfügen',
|
|
198
|
+
merge: 'Zellen zusammenführen',
|
|
199
|
+
remove: 'Tabelle entfernen',
|
|
200
|
+
removeColumn: 'Spalte entfernen',
|
|
201
|
+
removeRow: 'Zeile entfernen',
|
|
202
|
+
selectColumn: 'Wählen Sie Spalte aus',
|
|
203
|
+
selectRow: 'Wählen Sie Zeile aus',
|
|
204
|
+
split: 'Geteilte Zellen',
|
|
205
|
+
},
|
|
206
|
+
}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
ai: {
|
|
3
|
+
askAi: 'Ask AI',
|
|
4
|
+
changeTone: 'Change tone',
|
|
5
|
+
continuation: 'Continuation',
|
|
6
|
+
enrichWithEmoji: 'Enrich with Emoji',
|
|
7
|
+
error: 'Please provide correct AI configuration',
|
|
8
|
+
explain: 'Explain',
|
|
9
|
+
fixSpellingGrammar: 'Fix spelling & grammar',
|
|
10
|
+
improveWriting: 'Improve writing',
|
|
11
|
+
makeLonger: 'Make longer',
|
|
12
|
+
makeShorter: 'Make shorter',
|
|
13
|
+
summarize: 'Summarize',
|
|
14
|
+
tellAi: 'Tell the AI what to write',
|
|
15
|
+
tone: {
|
|
16
|
+
authoritative: 'Authoritative',
|
|
17
|
+
casual: 'Casual',
|
|
18
|
+
empathetic: 'Empathetic',
|
|
19
|
+
enthusiastic: 'Enthusiastic',
|
|
20
|
+
formal: 'Formal',
|
|
21
|
+
friendly: 'Friendly',
|
|
22
|
+
humorous: 'Humorous',
|
|
23
|
+
inspirational: 'Inspirational',
|
|
24
|
+
mysterious: 'Mysterious',
|
|
25
|
+
},
|
|
26
|
+
translate: 'Translate to',
|
|
27
|
+
write: 'Write anything',
|
|
28
|
+
},
|
|
29
|
+
diagram: {
|
|
30
|
+
class: 'Class Diagram',
|
|
31
|
+
flow: 'Flow Diagram',
|
|
32
|
+
gantt: 'Gantt Diagram',
|
|
33
|
+
name: 'Text Diagram',
|
|
34
|
+
sequence: 'Sequence Diagram',
|
|
35
|
+
state: 'State Diagram',
|
|
36
|
+
tips: 'Generation of diagram and chart from text in a similar manner as markdown',
|
|
37
|
+
},
|
|
38
|
+
editor: {
|
|
39
|
+
add: 'Add',
|
|
40
|
+
addMore: 'Add More',
|
|
41
|
+
aiBlock: 'AI Block',
|
|
42
|
+
align: 'Align',
|
|
43
|
+
backgroundColor: 'Background Color',
|
|
44
|
+
blockFormula: 'Block',
|
|
45
|
+
blockMath: 'Block Math',
|
|
46
|
+
blockquote: 'Blockquote',
|
|
47
|
+
bold: 'Bold',
|
|
48
|
+
callout: 'Callout',
|
|
49
|
+
center: 'Center align',
|
|
50
|
+
code: 'Code',
|
|
51
|
+
codeBlock: 'Code Block',
|
|
52
|
+
default: 'Default',
|
|
53
|
+
defaultColor: 'Default Color',
|
|
54
|
+
defaultFont: 'Default Font',
|
|
55
|
+
delete: 'Delete',
|
|
56
|
+
duplicate: 'Duplicate',
|
|
57
|
+
emoji: 'Emoji',
|
|
58
|
+
fontFamily: 'Font Family',
|
|
59
|
+
fontSize: 'Font Size',
|
|
60
|
+
formatting: 'Formatting',
|
|
61
|
+
formula: 'Formula',
|
|
62
|
+
heading: 'Heading & Paragraph',
|
|
63
|
+
heading1: 'Heading 1',
|
|
64
|
+
heading2: 'Heading 2',
|
|
65
|
+
heading3: 'Heading 3',
|
|
66
|
+
heading4: 'Heading 4',
|
|
67
|
+
heading5: 'Heading 5',
|
|
68
|
+
headings: 'Headings',
|
|
69
|
+
highlightColor: 'Highlight Color',
|
|
70
|
+
horizontal: 'Horizontal Rule',
|
|
71
|
+
hr: 'Insert Horizontal Rule',
|
|
72
|
+
hyperlink: 'Hyperlink',
|
|
73
|
+
indent: 'Increase indentation',
|
|
74
|
+
indentDropdown: 'Indent',
|
|
75
|
+
inlineFormula: 'Inline',
|
|
76
|
+
inlineMath: 'Inline Math',
|
|
77
|
+
italic: 'Italic',
|
|
78
|
+
justify: 'Justify align',
|
|
79
|
+
left: 'Left align',
|
|
80
|
+
lineHeight: 'Line Height',
|
|
81
|
+
list: 'List',
|
|
82
|
+
noColor: 'No Color',
|
|
83
|
+
orderedList: 'Ordered List',
|
|
84
|
+
outdent: 'Decrease indentation',
|
|
85
|
+
paragraph: 'Paragraph',
|
|
86
|
+
photo: 'Insert Photo',
|
|
87
|
+
print: 'Print',
|
|
88
|
+
quote: 'Quote',
|
|
89
|
+
redo: 'Redo',
|
|
90
|
+
removeFormat: 'Remove formatting',
|
|
91
|
+
right: 'Right align',
|
|
92
|
+
size1: 'Very small',
|
|
93
|
+
size2: 'A bit small',
|
|
94
|
+
size3: 'Normal',
|
|
95
|
+
size4: 'Medium-large',
|
|
96
|
+
size5: 'Big',
|
|
97
|
+
size6: 'Very big',
|
|
98
|
+
size7: 'Maximum',
|
|
99
|
+
strikethrough: 'Strikethrough',
|
|
100
|
+
subscript: 'Subscript',
|
|
101
|
+
superscript: 'Superscript',
|
|
102
|
+
table: 'Table',
|
|
103
|
+
textColor: 'Text Color',
|
|
104
|
+
textFormat: 'More text format',
|
|
105
|
+
thirdPartyService: 'Third party services',
|
|
106
|
+
todoList: 'Todo List',
|
|
107
|
+
toggleFullscreen: 'Toggle Fullscreen',
|
|
108
|
+
toggleList: 'Toggle List',
|
|
109
|
+
underline: 'Underline',
|
|
110
|
+
undo: 'Undo',
|
|
111
|
+
unorderedList: 'Unordered List',
|
|
112
|
+
url: 'URL',
|
|
113
|
+
video: 'Insert Video',
|
|
114
|
+
viewSource: 'View Source',
|
|
115
|
+
},
|
|
116
|
+
image: {
|
|
117
|
+
caption: 'Caption',
|
|
118
|
+
height: 'Height',
|
|
119
|
+
large: 'Large',
|
|
120
|
+
link: 'Link',
|
|
121
|
+
lockAspectRatio: 'Lock aspect ratio',
|
|
122
|
+
medium: 'Medium',
|
|
123
|
+
original: 'Original',
|
|
124
|
+
preferences: 'Image Preferences',
|
|
125
|
+
ratio: 'Ratio',
|
|
126
|
+
reposition: 'Reposition',
|
|
127
|
+
repositionTips: 'Drag image to reposition',
|
|
128
|
+
size: 'Size',
|
|
129
|
+
small: 'Small',
|
|
130
|
+
src: 'Image Source',
|
|
131
|
+
unlockAspectRatio: 'Unlock aspect ratio',
|
|
132
|
+
width: 'Width',
|
|
133
|
+
zoom: 'Zoom',
|
|
134
|
+
},
|
|
135
|
+
label: {
|
|
136
|
+
advanced: 'Advanced',
|
|
137
|
+
ai: 'AI',
|
|
138
|
+
back: 'Back',
|
|
139
|
+
basic: 'Basic',
|
|
140
|
+
basicBlocks: 'Basic Blocks',
|
|
141
|
+
cancel: 'Cancel',
|
|
142
|
+
close: 'Close',
|
|
143
|
+
color: 'Color',
|
|
144
|
+
common: 'Common',
|
|
145
|
+
copy: 'Copy',
|
|
146
|
+
cut: 'Cut',
|
|
147
|
+
download: 'Download',
|
|
148
|
+
edit: 'Edit',
|
|
149
|
+
empty: 'Empty',
|
|
150
|
+
emptyTips:
|
|
151
|
+
'Press Enter to continue with an empty note, or select following',
|
|
152
|
+
example: 'Example',
|
|
153
|
+
generate: 'Generate',
|
|
154
|
+
generatedBy: 'Generated by',
|
|
155
|
+
help: 'Help',
|
|
156
|
+
image: 'Image',
|
|
157
|
+
link: 'Link',
|
|
158
|
+
linkAddress: 'Link Address',
|
|
159
|
+
media: 'Media',
|
|
160
|
+
model: 'Model',
|
|
161
|
+
modelViewer: 'Model Viewer',
|
|
162
|
+
more: 'More',
|
|
163
|
+
noResults: 'No results',
|
|
164
|
+
ok: 'Ok',
|
|
165
|
+
preview: 'Preview',
|
|
166
|
+
remove: 'Remove',
|
|
167
|
+
replace: 'Replace',
|
|
168
|
+
search: 'Search',
|
|
169
|
+
settings: 'Settings',
|
|
170
|
+
splitHorizontal: 'Split Horizontal',
|
|
171
|
+
splitVertical: 'Split Vertical',
|
|
172
|
+
styles: 'Styles',
|
|
173
|
+
submit: 'Submit',
|
|
174
|
+
suggested: 'Suggested',
|
|
175
|
+
template: 'Template',
|
|
176
|
+
think: 'Think',
|
|
177
|
+
toc: 'Table of Contents',
|
|
178
|
+
turnInto: 'Turn into',
|
|
179
|
+
typeForCommands: "Type '/' for commands",
|
|
180
|
+
untitled: 'Untitled',
|
|
181
|
+
update: 'Update',
|
|
182
|
+
video: 'Video',
|
|
183
|
+
view: 'View',
|
|
184
|
+
write: 'Write',
|
|
185
|
+
},
|
|
186
|
+
link: {
|
|
187
|
+
back: 'Back to main menu',
|
|
188
|
+
edit: 'Edit Link',
|
|
189
|
+
off: 'Disable Link',
|
|
190
|
+
open: 'Open Link',
|
|
191
|
+
openInNewTab: 'Open in new tab',
|
|
192
|
+
},
|
|
193
|
+
table: {
|
|
194
|
+
addColumn: 'Add Column',
|
|
195
|
+
addRow: 'Add Row',
|
|
196
|
+
cellBackground: 'Cell Background',
|
|
197
|
+
insert: 'Insert Table',
|
|
198
|
+
merge: 'Merge Cells',
|
|
199
|
+
remove: 'Remove Table',
|
|
200
|
+
removeColumn: 'Remove Column',
|
|
201
|
+
removeRow: 'Remove Row',
|
|
202
|
+
selectColumn: 'Select Column',
|
|
203
|
+
selectRow: 'Select Row',
|
|
204
|
+
split: 'Split Cells',
|
|
205
|
+
},
|
|
206
|
+
}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
ai: {
|
|
3
|
+
askAi: "Demandez à l'IA",
|
|
4
|
+
changeTone: 'Changer de ton',
|
|
5
|
+
continuation: 'Continuation',
|
|
6
|
+
enrichWithEmoji: 'Enrichissez avec Emoji',
|
|
7
|
+
error: 'Veuillez fournir une configuration IA correcte',
|
|
8
|
+
explain: 'Expliquer',
|
|
9
|
+
fixSpellingGrammar: "Corriger l'orthographe et la grammaire",
|
|
10
|
+
improveWriting: "Améliorer l'écriture",
|
|
11
|
+
makeLonger: 'Rallonger',
|
|
12
|
+
makeShorter: 'Rendre plus court',
|
|
13
|
+
summarize: 'Résumer',
|
|
14
|
+
tellAi: "Dites à l'IA quoi écrire",
|
|
15
|
+
tone: {
|
|
16
|
+
authoritative: 'Faisant autorité',
|
|
17
|
+
casual: 'Occasionnel',
|
|
18
|
+
empathetic: 'Empathique',
|
|
19
|
+
enthusiastic: 'Enthousiaste',
|
|
20
|
+
formal: 'Officiel',
|
|
21
|
+
friendly: 'Amical',
|
|
22
|
+
humorous: 'Humoristique',
|
|
23
|
+
inspirational: 'Inspirant',
|
|
24
|
+
mysterious: 'Mystérieux',
|
|
25
|
+
},
|
|
26
|
+
translate: 'Traduire en',
|
|
27
|
+
write: "Écrivez n'importe quoi",
|
|
28
|
+
},
|
|
29
|
+
diagram: {
|
|
30
|
+
class: 'Diagramme de classes',
|
|
31
|
+
flow: 'Diagramme de flux',
|
|
32
|
+
gantt: 'Diagramme de Gantt',
|
|
33
|
+
name: 'Diagramme de texte',
|
|
34
|
+
sequence: 'Diagramme de séquence',
|
|
35
|
+
state: "Diagramme d'état",
|
|
36
|
+
tips: 'Génération de diagramme et de graphique à partir de texte de la même manière que le markdown',
|
|
37
|
+
},
|
|
38
|
+
editor: {
|
|
39
|
+
add: 'Ajouter',
|
|
40
|
+
addMore: 'Ajouter plus',
|
|
41
|
+
aiBlock: 'Bloc IA',
|
|
42
|
+
align: 'Aligner',
|
|
43
|
+
backgroundColor: "Couleur d'arrière-plan",
|
|
44
|
+
blockFormula: 'Bloc',
|
|
45
|
+
blockMath: 'Bloquer les mathématiques',
|
|
46
|
+
blockquote: 'Citation de bloc',
|
|
47
|
+
bold: 'Audacieux',
|
|
48
|
+
callout: 'Appeler',
|
|
49
|
+
center: 'Aligner au centre',
|
|
50
|
+
code: 'Code',
|
|
51
|
+
codeBlock: 'Bloc de code',
|
|
52
|
+
default: 'Défaut',
|
|
53
|
+
defaultColor: 'Couleur par défaut',
|
|
54
|
+
defaultFont: 'Police par défaut',
|
|
55
|
+
delete: 'Supprimer',
|
|
56
|
+
duplicate: 'Double',
|
|
57
|
+
emoji: 'Émoji',
|
|
58
|
+
fontFamily: 'Famille de polices',
|
|
59
|
+
fontSize: 'Taille de la police',
|
|
60
|
+
formatting: 'Formatage',
|
|
61
|
+
formula: 'Formule',
|
|
62
|
+
heading: 'Titre et paragraphe',
|
|
63
|
+
heading1: 'Titre 1',
|
|
64
|
+
heading2: 'Titre 2',
|
|
65
|
+
heading3: 'Titre 3',
|
|
66
|
+
heading4: 'Titre 4',
|
|
67
|
+
heading5: 'Titre 5',
|
|
68
|
+
headings: 'Rubriques',
|
|
69
|
+
highlightColor: 'Couleur de surbrillance',
|
|
70
|
+
horizontal: 'Règle horizontale',
|
|
71
|
+
hr: 'Insérer une règle horizontale',
|
|
72
|
+
hyperlink: 'Lien hypertexte',
|
|
73
|
+
indent: "Augmenter l'indentation",
|
|
74
|
+
indentDropdown: 'Retrait',
|
|
75
|
+
inlineFormula: 'En ligne',
|
|
76
|
+
inlineMath: 'Mathématiques en ligne',
|
|
77
|
+
italic: 'Italique',
|
|
78
|
+
justify: 'Justifier aligner',
|
|
79
|
+
left: 'Aligner à gauche',
|
|
80
|
+
lineHeight: 'Hauteur de ligne',
|
|
81
|
+
list: 'Liste',
|
|
82
|
+
noColor: 'Aucune couleur',
|
|
83
|
+
orderedList: 'Liste ordonnée',
|
|
84
|
+
outdent: "Diminuer l'indentation",
|
|
85
|
+
paragraph: 'Paragraphe',
|
|
86
|
+
photo: 'Insérer une photo',
|
|
87
|
+
print: 'Imprimer',
|
|
88
|
+
quote: 'Citation',
|
|
89
|
+
redo: 'Refaire',
|
|
90
|
+
removeFormat: 'Supprimer le formatage',
|
|
91
|
+
right: 'Aligner à droite',
|
|
92
|
+
size1: 'Très petit',
|
|
93
|
+
size2: 'Un peu petit',
|
|
94
|
+
size3: 'Normale',
|
|
95
|
+
size4: 'Moyen-grand',
|
|
96
|
+
size5: 'Grand',
|
|
97
|
+
size6: 'Très grand',
|
|
98
|
+
size7: 'Maximum',
|
|
99
|
+
strikethrough: 'Barré',
|
|
100
|
+
subscript: 'Indice',
|
|
101
|
+
superscript: 'Exposant',
|
|
102
|
+
table: 'Tableau',
|
|
103
|
+
textColor: 'Couleur du texte',
|
|
104
|
+
textFormat: 'Plus de format de texte',
|
|
105
|
+
thirdPartyService: 'Services tiers',
|
|
106
|
+
todoList: 'Toutes les listes',
|
|
107
|
+
toggleFullscreen: 'Basculer en plein écran',
|
|
108
|
+
toggleList: 'Basculer la liste',
|
|
109
|
+
underline: 'Souligner',
|
|
110
|
+
undo: 'Défaire',
|
|
111
|
+
unorderedList: 'Liste non ordonnée',
|
|
112
|
+
url: 'URL',
|
|
113
|
+
video: 'Insérer une vidéo',
|
|
114
|
+
viewSource: 'Afficher la source',
|
|
115
|
+
},
|
|
116
|
+
image: {
|
|
117
|
+
caption: 'Légende',
|
|
118
|
+
height: 'Hauteur',
|
|
119
|
+
large: 'Grand',
|
|
120
|
+
link: 'Lien',
|
|
121
|
+
lockAspectRatio: 'Verrouiller le rapport hauteur/largeur',
|
|
122
|
+
medium: 'Moyen',
|
|
123
|
+
original: 'Original',
|
|
124
|
+
preferences: "Préférences d'image",
|
|
125
|
+
ratio: 'Rapport',
|
|
126
|
+
reposition: 'Repositionner',
|
|
127
|
+
repositionTips: "Faites glisser l'image pour la repositionner",
|
|
128
|
+
size: 'Taille',
|
|
129
|
+
small: 'Petit',
|
|
130
|
+
src: "Source de l'image",
|
|
131
|
+
unlockAspectRatio: 'Déverrouiller le rapport hauteur/largeur',
|
|
132
|
+
width: 'Largeur',
|
|
133
|
+
zoom: 'Zoom',
|
|
134
|
+
},
|
|
135
|
+
label: {
|
|
136
|
+
advanced: 'Avancé',
|
|
137
|
+
ai: 'IA',
|
|
138
|
+
back: 'Dos',
|
|
139
|
+
basic: 'Basique',
|
|
140
|
+
basicBlocks: 'Blocs de base',
|
|
141
|
+
cancel: 'Annuler',
|
|
142
|
+
close: 'Fermer',
|
|
143
|
+
color: 'Couleur',
|
|
144
|
+
common: 'Commun',
|
|
145
|
+
copy: 'Copie',
|
|
146
|
+
cut: 'Couper',
|
|
147
|
+
download: 'Télécharger',
|
|
148
|
+
edit: 'Modifier',
|
|
149
|
+
empty: 'Vide',
|
|
150
|
+
emptyTips:
|
|
151
|
+
'Appuyez sur Entrée pour continuer avec une note vide, ou sélectionnez ce qui suit',
|
|
152
|
+
example: 'Exemple',
|
|
153
|
+
generate: 'Générer',
|
|
154
|
+
generatedBy: 'Généré par',
|
|
155
|
+
help: 'Aide',
|
|
156
|
+
image: 'Image',
|
|
157
|
+
link: 'Lien',
|
|
158
|
+
linkAddress: 'Adresse du lien',
|
|
159
|
+
media: 'Médias',
|
|
160
|
+
model: 'Modèle',
|
|
161
|
+
modelViewer: 'Visionneuse de modèles',
|
|
162
|
+
more: 'Plus',
|
|
163
|
+
noResults: 'Aucun résultat',
|
|
164
|
+
ok: "D'accord",
|
|
165
|
+
preview: 'Aperçu',
|
|
166
|
+
remove: 'Retirer',
|
|
167
|
+
replace: 'Remplacer',
|
|
168
|
+
search: 'Recherche',
|
|
169
|
+
settings: 'Paramètres',
|
|
170
|
+
splitHorizontal: 'Diviser horizontalement',
|
|
171
|
+
splitVertical: 'Diviser verticalement',
|
|
172
|
+
styles: 'Styles',
|
|
173
|
+
submit: 'Soumettre',
|
|
174
|
+
suggested: 'Suggéré',
|
|
175
|
+
template: 'Modèle',
|
|
176
|
+
think: 'Pense',
|
|
177
|
+
toc: 'Table des matières',
|
|
178
|
+
turnInto: 'Devenir',
|
|
179
|
+
typeForCommands: "Tapez '/' pour les commandes",
|
|
180
|
+
untitled: 'Sans titre',
|
|
181
|
+
update: 'Mise à jour',
|
|
182
|
+
video: 'Vidéo',
|
|
183
|
+
view: 'Voir',
|
|
184
|
+
write: 'Écrire',
|
|
185
|
+
},
|
|
186
|
+
link: {
|
|
187
|
+
back: 'Retour au menu principal',
|
|
188
|
+
edit: 'Modifier le lien',
|
|
189
|
+
off: 'Désactiver le lien',
|
|
190
|
+
open: 'Ouvrir le lien',
|
|
191
|
+
openInNewTab: 'Ouvrir dans un nouvel onglet',
|
|
192
|
+
},
|
|
193
|
+
table: {
|
|
194
|
+
addColumn: 'Ajouter une colonne',
|
|
195
|
+
addRow: 'Ajouter une ligne',
|
|
196
|
+
cellBackground: 'Fond de cellule',
|
|
197
|
+
insert: 'Insérer un tableau',
|
|
198
|
+
merge: 'Fusionner les cellules',
|
|
199
|
+
remove: 'Supprimer le tableau',
|
|
200
|
+
removeColumn: 'Supprimer la colonne',
|
|
201
|
+
removeRow: 'Supprimer la ligne',
|
|
202
|
+
selectColumn: 'Sélectionner une colonne',
|
|
203
|
+
selectRow: 'Sélectionner une ligne',
|
|
204
|
+
split: 'Diviser les cellules',
|
|
205
|
+
},
|
|
206
|
+
}
|