inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
declare const _exports: {
aiAssistant: string;
aiCommands: string;
'AI Assistant': string;
Prompt: string;
'Ask AI to improve generated text': string;
Submit: string;
};
export = _exports;

View File

@@ -0,0 +1,14 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
aiAssistant: 'AI Assistant',
aiCommands: 'AI Commands',
'AI Assistant': 'AI Assistant',
Prompt: 'Prompt',
'Ask AI to improve generated text': 'Ask AI to improve generated text',
Submit: 'Submit'
};

View File

@@ -0,0 +1,40 @@
declare const _exports: {
aiAssistant: string;
aiCommands: string;
'AI Assistant': string;
'AI Commands': string;
'Improve writing': string;
'Make shorter': string;
'Make longer': string;
'Simplify language': string;
Summarize: string;
Continue: string;
Prompt: string;
Insert: string;
'Insert After': string;
'Try Again': string;
'Ask AI to improve generated text': string;
'Change tone to professional': string;
'Change tone to friendly': string;
'Change tone to formal': string;
'Change tone to casual': string;
'Change tone to direct': string;
'Change tone to confident': string;
'Change tone to business': string;
'Change style to legal': string;
'Change style to journalism': string;
'Change style to poetic': string;
'Translate to Spanish': string;
'Translate to French': string;
'Translate to German': string;
'Translate to Italian': string;
'Translate to Portuguese': string;
'Translate to English': string;
'Translate to Chinese': string;
'Translate to Japanese': string;
'Translate to Korean': string;
'Translate to Russian': string;
'Translate to Arabic': string;
Submit: string;
};
export = _exports;

View File

@@ -0,0 +1,45 @@
"use strict";
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
export default {
aiAssistant: 'Asistente de IA',
aiCommands: 'Comandos de IA',
'AI Assistant': 'Asistente de IA',
'AI Commands': 'Comandos de IA',
'Improve writing': 'Mejorar escritura',
'Make shorter': 'Hacer más corto',
'Make longer': 'Hacer más largo',
'Simplify language': 'Simplificar lenguaje',
Summarize: 'Resumir',
Continue: 'Continuar',
Prompt: 'Solicitud',
Insert: 'Insertar',
'Insert After': 'Insertar después',
'Try Again': 'Intentar de nuevo',
'Ask AI to improve generated text': 'Pida a la IA que mejore el texto generado',
'Change tone to professional': 'Cambiar tono a profesional',
'Change tone to friendly': 'Cambiar tono a amigable',
'Change tone to formal': 'Cambiar tono a formal',
'Change tone to casual': 'Cambiar tono a casual',
'Change tone to direct': 'Cambiar tono a directo',
'Change tone to confident': 'Cambiar tono a confiado',
'Change tone to business': 'Cambiar tono a empresarial',
'Change style to legal': 'Cambiar estilo a legal',
'Change style to journalism': 'Cambiar estilo a periodístico',
'Change style to poetic': 'Cambiar estilo a poético',
'Translate to Spanish': 'Traducir al español',
'Translate to French': 'Traducir al francés',
'Translate to German': 'Traducir al alemán',
'Translate to Italian': 'Traducir al italiano',
'Translate to Portuguese': 'Traducir al portugués',
'Translate to English': 'Traducir al inglés',
'Translate to Chinese': 'Traducir al chino',
'Translate to Japanese': 'Traducid al japonés',
'Translate to Korean': 'Traducir al coreano',
'Translate to Russian': 'Traducir al ruso',
'Translate to Arabic': 'Traducir al árabe',
Submit: 'Enviar'
};

View File

@@ -0,0 +1,11 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module plugins/ai-assistant
*/
import * as en from "./en";
import * as es from "./es";
export { en, es };

View File

@@ -0,0 +1,11 @@
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module plugins/ai-assistant
*/
import * as en from "./en.js";
import * as es from "./es.js";
export { en, es };