tiptapify 0.1.6 → 0.2.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/README.md +1 -1
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +25885 -22016
- package/dist/tiptapify.umd.js +55 -50
- package/index.d.ts +70 -1
- package/package.json +2 -2
- package/src/components/Tiptapify.vue +38 -1
- package/src/components/Toolbar/ai.ts +13 -0
- package/src/components/Toolbar/items.ts +2 -0
- package/src/components/editorExtensions.ts +7 -3
- package/src/components/index.ts +4 -3
- package/src/extensions/components/ai/Button.vue +42 -0
- package/src/extensions/components/ai/Dialog.vue +262 -0
- package/src/i18n/locales/ar.json +29 -0
- package/src/i18n/locales/ch.json +29 -0
- package/src/i18n/locales/cz.json +29 -0
- package/src/i18n/locales/de.json +29 -0
- package/src/i18n/locales/en.json +29 -0
- package/src/i18n/locales/es.json +29 -0
- package/src/i18n/locales/fi.json +29 -0
- package/src/i18n/locales/fr.json +29 -0
- package/src/i18n/locales/hu.json +29 -0
- package/src/i18n/locales/it.json +29 -0
- package/src/i18n/locales/ja.json +29 -0
- package/src/i18n/locales/ko.json +29 -0
- package/src/i18n/locales/la.json +29 -0
- package/src/i18n/locales/lt.json +29 -0
- package/src/i18n/locales/nl.json +29 -0
- package/src/i18n/locales/pl.json +29 -0
- package/src/i18n/locales/pt.json +29 -0
- package/src/i18n/locales/ru.json +29 -0
- package/src/i18n/locales/se.json +29 -0
- package/src/i18n/locales/th.json +29 -0
- package/src/i18n/locales/tr.json +29 -0
- package/src/i18n/locales/uk.json +29 -0
- package/src/i18n/locales/vi.json +29 -0
- package/src/index.ts +15 -1
- package/src/types/editor.ts +74 -1
- package/src/types/toolbarTypes.ts +2 -1
package/src/i18n/locales/de.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "Wörter",
|
|
174
174
|
"chars": "Zeichen"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/en.json
CHANGED
|
@@ -171,5 +171,34 @@
|
|
|
171
171
|
"footer": {
|
|
172
172
|
"words": "words",
|
|
173
173
|
"chars": "characters"
|
|
174
|
+
},
|
|
175
|
+
"ai": {
|
|
176
|
+
"title": "AI assistant",
|
|
177
|
+
"prompt": "Prompt",
|
|
178
|
+
"examples": "Examples",
|
|
179
|
+
"generate": "Generate",
|
|
180
|
+
"apply": "Apply",
|
|
181
|
+
"result": "Result",
|
|
182
|
+
"loading": "Generating...",
|
|
183
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
184
|
+
"error": "AI generation failed",
|
|
185
|
+
"defaultExamples": {
|
|
186
|
+
"improve": {
|
|
187
|
+
"title": "Improve writing",
|
|
188
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
189
|
+
},
|
|
190
|
+
"proofReading": {
|
|
191
|
+
"title": "Proof-reading",
|
|
192
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
193
|
+
},
|
|
194
|
+
"summarize": {
|
|
195
|
+
"title": "Summarize",
|
|
196
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
197
|
+
},
|
|
198
|
+
"expand": {
|
|
199
|
+
"title": "Expand",
|
|
200
|
+
"prompt": "Expand this into a more detailed version."
|
|
201
|
+
}
|
|
202
|
+
}
|
|
174
203
|
}
|
|
175
204
|
}
|
package/src/i18n/locales/es.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "palabras",
|
|
174
174
|
"chars": "caracteres"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/fi.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "sanaa",
|
|
174
174
|
"chars": "merkkiä"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/fr.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "mots",
|
|
174
174
|
"chars": "caractères"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/hu.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "szavak",
|
|
174
174
|
"chars": "karakterek"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/it.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "parole",
|
|
174
174
|
"chars": "caratteri"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/ja.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "単語数",
|
|
174
174
|
"chars": "文字数"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/ko.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "단어",
|
|
174
174
|
"chars": "글자"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/la.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "vārdi",
|
|
174
174
|
"chars": "zīmes"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/lt.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "žodžiai",
|
|
174
174
|
"chars": "simboliai"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/nl.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "woorden",
|
|
174
174
|
"chars": "tekens"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/pl.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "słowa",
|
|
174
174
|
"chars": "znaki"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/pt.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "palavras",
|
|
174
174
|
"chars": "caracteres"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "слова",
|
|
174
174
|
"chars": "символы"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/se.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "ord",
|
|
174
174
|
"chars": "tecken"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/th.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "คำ",
|
|
174
174
|
"chars": "ตัวอักษร"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/tr.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "kelime",
|
|
174
174
|
"chars": "karakter"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|
package/src/i18n/locales/uk.json
CHANGED
|
@@ -172,5 +172,34 @@
|
|
|
172
172
|
"footer": {
|
|
173
173
|
"words": "слова",
|
|
174
174
|
"chars": "символи"
|
|
175
|
+
},
|
|
176
|
+
"ai": {
|
|
177
|
+
"title": "AI assistant",
|
|
178
|
+
"prompt": "Prompt",
|
|
179
|
+
"examples": "Examples",
|
|
180
|
+
"generate": "Generate",
|
|
181
|
+
"apply": "Apply",
|
|
182
|
+
"result": "Result",
|
|
183
|
+
"loading": "Generating...",
|
|
184
|
+
"unavailable": "Configure an AI provider to use this action",
|
|
185
|
+
"error": "AI generation failed",
|
|
186
|
+
"defaultExamples": {
|
|
187
|
+
"improve": {
|
|
188
|
+
"title": "Improve writing",
|
|
189
|
+
"prompt": "Improve the clarity and tone of this text."
|
|
190
|
+
},
|
|
191
|
+
"proofReading": {
|
|
192
|
+
"title": "Proof-reading",
|
|
193
|
+
"prompt": "Correct grammar, spelling, and punctuation without changing the meaning."
|
|
194
|
+
},
|
|
195
|
+
"summarize": {
|
|
196
|
+
"title": "Summarize",
|
|
197
|
+
"prompt": "Summarize this text in a concise paragraph."
|
|
198
|
+
},
|
|
199
|
+
"expand": {
|
|
200
|
+
"title": "Expand",
|
|
201
|
+
"prompt": "Expand this into a more detailed version."
|
|
202
|
+
}
|
|
203
|
+
}
|
|
175
204
|
}
|
|
176
205
|
}
|