From 74da6fe456881c70635c1642c012c6ff8b70da40 Mon Sep 17 00:00:00 2001 From: Artur Date: Tue, 27 Jan 2026 13:57:24 +0300 Subject: [PATCH] translations --- sdkjs-plugins/content/ai/scripts/code.js | 6 +++--- sdkjs-plugins/content/ai/scripts/customAssistant.js | 6 +++--- sdkjs-plugins/content/ai/translations/ar-SA.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/cs-CS.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/de-DE.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/es-ES.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/fr-FR.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/it-IT.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/ja-JA.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/pt-BR.json | 11 +++++++++++ sdkjs-plugins/content/ai/translations/ru-RU.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/sq-AL.json | 13 ++++++++++++- .../content/ai/translations/sr-Cyrl-RS.json | 13 ++++++++++++- .../content/ai/translations/sr-Latn-RS.json | 13 ++++++++++++- sdkjs-plugins/content/ai/translations/zh-CN.json | 12 +++++++++++- 15 files changed, 160 insertions(+), 18 deletions(-) diff --git a/sdkjs-plugins/content/ai/scripts/code.js b/sdkjs-plugins/content/ai/scripts/code.js index b6d3375e..14772a5b 100644 --- a/sdkjs-plugins/content/ai/scripts/code.js +++ b/sdkjs-plugins/content/ai/scripts/code.js @@ -1125,7 +1125,7 @@ function customAssistantWarning(warningText, assistantData) { description : window.Asc.plugin.tr('Warning!'), isVisual : true, buttons : [ - { text: window.Asc.plugin.tr('Ok'), primary: true }, + { text: window.Asc.plugin.tr('OK'), primary: true }, ], isModal : true, isCanDocked: false, @@ -1189,13 +1189,13 @@ async function onStartCustomAssistant(assistantId, buttonAssistant) break; case customAssistantManager.STATUSES.NOT_FOUND: console.error("Custom assistant not found: " + assistantId); - customAssistantWarning("Custom assistant is not available. Please check your configuration."); + customAssistantWarning(window.Asc.plugin.tr("Custom assistant is not available. Please check your configuration.")); //buttonAssistant.disabled = true; //Asc.Buttons.updateToolbarMenu(window.buttonMainToolbar.id, window.buttonMainToolbar.name, [buttonAssistant]); break; case customAssistantManager.STATUSES.ERROR: customAssistantWarning( - "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.", + window.Asc.plugin.tr("Not able to perform this action. Please use prompts related to text analysis, editing, or formatting."), assistant.assistantData ); // TODO: Add the ability to remove a button press. diff --git a/sdkjs-plugins/content/ai/scripts/customAssistant.js b/sdkjs-plugins/content/ai/scripts/customAssistant.js index f7b9a31e..790839dd 100644 --- a/sdkjs-plugins/content/ai/scripts/customAssistant.js +++ b/sdkjs-plugins/content/ai/scripts/customAssistant.js @@ -102,9 +102,9 @@ window.Asc.plugin.attachEvent( "onDeleteAssistant", (/** @type {localStorageCustomAssistantItem} */ assistant) => { - mainContainer.innerHTML = '

' + + mainContainer.innerHTML = '

' + window.Asc.plugin.tr("Are you sure you want to delete this assistant?") + - '

' + + '

' + window.Asc.plugin.tr("This action cannot be undone.") + '

'; } @@ -119,7 +119,7 @@ '' + ''; const text = '
' + - image + '

' + window.Asc.plugin.tr(warningText) + '

' + image + '

' + warningText + '

' mainContainer.innerHTML = image + text; } ); diff --git a/sdkjs-plugins/content/ai/translations/ar-SA.json b/sdkjs-plugins/content/ai/translations/ar-SA.json index e6074b8a..7f9eaafa 100644 --- a/sdkjs-plugins/content/ai/translations/ar-SA.json +++ b/sdkjs-plugins/content/ai/translations/ar-SA.json @@ -153,5 +153,16 @@ "Check current text": "تدقيق النص الحالي", "Suggested correction": "تصحيح مقترح", "Explanation": "شرح", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "حوّل أي مهمة نصية متكررة إلى زر مخصص على شريط الأدوات. أتمتة مهام التحرير أو التدقيق أو إعادة الكتابة المحددة باستخدام قوة الذكاء الاصطناعي." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "حوّل أي مهمة نصية متكررة إلى زر مخصص على شريط الأدوات. أتمتة مهام التحرير أو التدقيق أو إعادة الكتابة المحددة باستخدام قوة الذكاء الاصطناعي.", + "Create a new assistant": "إنشاء مساعد جديد", + "Save": "حفظ", + "Create": "إنشاء", + "Delete Assistant": "حذف المساعد", + "Yes": "نعم", + "No": "لا", + "Are you sure you want to delete this assistant?": "هل أنت متأكد من حذف هذا المساعد؟", + "This action cannot be undone.": "هذا الإجراء لا يمكن التراجع عنه.", + "Warning!": "تحذير!", + "Custom assistant is not available. Please check your configuration.": "المساعد المخصص غير متاح. يرجى التحقق من إعداداتك.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "غير قادر على تنفيذ هذا الإجراء. يرجى استخدام تعليمات متعلقة بتحليل النصوص، التحرير، أو التنسيق." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/cs-CS.json b/sdkjs-plugins/content/ai/translations/cs-CS.json index d643f0fd..235301d2 100644 --- a/sdkjs-plugins/content/ai/translations/cs-CS.json +++ b/sdkjs-plugins/content/ai/translations/cs-CS.json @@ -153,5 +153,16 @@ "Check current text": "Zkontrolovat aktuální text", "Suggested correction": "Navrhovaná oprava", "Explanation": "Vysvětlení", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Transformujte náhodnou textovou úlohu do vlastního tlacítku na vasí připojovací lišta. Automatizujte specifikování, kontrolu nebo zápisování učinku pomocou moci AI." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Transformujte náhodnou textovou úlohu do vlastního tlacítku na vasí připojovací lišta. Automatizujte specifikování, kontrolu nebo zápisování učinku pomocou moci AI.", + "Create a new assistant": "Vytvořit nového asistenta", + "Save": "Uložit", + "Create": "Vytvořit", + "Delete Assistant": "Smazat asistenta", + "Yes": "Ano", + "No": "Ne", + "Are you sure you want to delete this assistant?": "Jste si jisti, že chcete smazat tohoto asistenta?", + "This action cannot be undone.": "Tuto akci nelze vrátit zpět.", + "Warning!": "Varování!", + "Custom assistant is not available. Please check your configuration.": "Vlastní asistent není k dispozici. Zkontrolujte prosím svou konfiguraci.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Nelze provést tuto akci. Použijte prosím výzvy související s analýzou textu, úpravami nebo formátováním." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/de-DE.json b/sdkjs-plugins/content/ai/translations/de-DE.json index 9e46bc7e..1225948f 100644 --- a/sdkjs-plugins/content/ai/translations/de-DE.json +++ b/sdkjs-plugins/content/ai/translations/de-DE.json @@ -154,5 +154,16 @@ "Check current text": "Aktuellen Text prüfen", "Suggested correction": "Korrekturvorschlag", "Explanation": "Erklärung", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Verwandeln Sie wiederkehrende Textaufgaben in benutzerdefinierte Schaltflächen Ihrer Symbolleiste. Automatisieren Sie bestimmte Bearbeitungs-, Prüf- oder Überarbeitungsaufgaben mithilfe von KI." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Verwandeln Sie wiederkehrende Textaufgaben in benutzerdefinierte Schaltflächen Ihrer Symbolleiste. Automatisieren Sie bestimmte Bearbeitungs-, Prüf- oder Überarbeitungsaufgaben mithilfe von KI.", + "Create a new assistant": "Neuen Assistenten erstellen", + "Save": "Speichern", + "Create": "Erstellen", + "Delete Assistant": "Assistent löschen", + "Yes": "Ja", + "No": "Nein", + "Are you sure you want to delete this assistant?": "Möchten Sie diesen Assistenten wirklich löschen?", + "This action cannot be undone.": "Diese Aktion kann nicht rückgängig gemacht werden.", + "Warning!": "Warnung!", + "Custom assistant is not available. Please check your configuration.": "Benutzerdefinierter Assistent ist nicht verfügbar. Bitte überprüfen Sie Ihre Konfiguration.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Diese Aktion kann nicht ausgeführt werden. Bitte verwenden Sie Prompts im Zusammenhang mit Textanalyse, Bearbeitung oder Formatierung.", } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/es-ES.json b/sdkjs-plugins/content/ai/translations/es-ES.json index 0c3e2a4c..ded780bc 100644 --- a/sdkjs-plugins/content/ai/translations/es-ES.json +++ b/sdkjs-plugins/content/ai/translations/es-ES.json @@ -154,4 +154,15 @@ "Suggested correction": "Corrección sugerida", "Explanation": "Explicación", "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Transforma cualquier tarea de texto repetitivo en un botón personalizado en la barra de herramientas. Automatiza tareas de edición, verificación o reescritura usando la potencia de la IA.", -} \ No newline at end of file + "Create a new assistant": "Crear un nuevo asistente", + "Save": "Guardar", + "Create": "Crear", + "Delete Assistant": "Eliminar asistente", + "Yes": "Sí", + "No": "No", + "Are you sure you want to delete this assistant?": "¿Está seguro de que desea eliminar este asistente?", + "This action cannot be undone.": "Esta acción no se puede deshacer.", + "Warning!": "¡Advertencia!", + "Custom assistant is not available. Please check your configuration.": "El asistente personalizado no está disponible. Por favor, verifique su configuración.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "No se puede realizar esta acción. Por favor, use prompts relacionados con el análisis, edición o formato de texto." +} diff --git a/sdkjs-plugins/content/ai/translations/fr-FR.json b/sdkjs-plugins/content/ai/translations/fr-FR.json index e27b128a..b9843232 100644 --- a/sdkjs-plugins/content/ai/translations/fr-FR.json +++ b/sdkjs-plugins/content/ai/translations/fr-FR.json @@ -154,5 +154,16 @@ "Check current text": "Vérifier le texte actuel", "Suggested correction": "Correction suggérée", "Explanation": "Explication", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Transformez n'importe quel taquin de texte en bouton personnalisé sur votre barre d'outils. Automatiser les taches d'edition, de verification ou de remplacement utilisant le pouvoir de l'IA." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Transformez n'importe quel taquin de texte en bouton personnalisé sur votre barre d'outils. Automatiser les taches d'edition, de verification ou de remplacement utilisant le pouvoir de l'IA.", + "Create a new assistant": "Créer un nouvel assistant", + "Save": "Sauvegarder", + "Create": "Créer", + "Delete Assistant": "Supprimer l'assistant", + "Yes": "Oui", + "No": "Non", + "Are you sure you want to delete this assistant?": "Êtes-vous sûr de vouloir supprimer cet assistant ?", + "This action cannot be undone.": "Cette action ne peut pas être annulée.", + "Warning!": "Avertissement!", + "Custom assistant is not available. Please check your configuration.": "L'assistant personnalisé n'est pas disponible. Veuillez vérifier votre configuration.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Impossible d'effectuer cette action. Veuillez utiliser des invites liées à l'analyse, l'édition ou le formatage du texte." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/it-IT.json b/sdkjs-plugins/content/ai/translations/it-IT.json index 42cdf5c1..a4484af2 100644 --- a/sdkjs-plugins/content/ai/translations/it-IT.json +++ b/sdkjs-plugins/content/ai/translations/it-IT.json @@ -155,4 +155,15 @@ "Suggested correction": "Correzione suggerita", "Explanation": "Spiegazione", "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Rendi qualsiasi compito di testo ripetitivo un pulsante personalizzato nella barra degli strumenti. Automatizza le attività di modifica, controllo o riscrittura utilizzando la potenza dell'IA.", -} \ No newline at end of file + "Create a new assistant": "Crea un nuovo assistente", + "Save": "Salva", + "Create": "Crea", + "Delete Assistant": "Elimina assistente", + "Yes": "Sì", + "No": "No", + "Are you sure you want to delete this assistant?": "Sei sicuro di voler eliminare questo assistente?", + "This action cannot be undone.": "Questa azione non può essere annullata.", + "Warning!": "Attenzione!", + "Custom assistant is not available. Please check your configuration.": "L'assistente personalizzato non è disponibile. Controlla la tua configurazione.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Impossibile eseguire questa azione. Usa prompt relativi all'analisi, modifica o formattazione del testo." +} diff --git a/sdkjs-plugins/content/ai/translations/ja-JA.json b/sdkjs-plugins/content/ai/translations/ja-JA.json index 889d9655..cdfd1cbf 100644 --- a/sdkjs-plugins/content/ai/translations/ja-JA.json +++ b/sdkjs-plugins/content/ai/translations/ja-JA.json @@ -154,5 +154,16 @@ "Check current text": "現在のテキストをチェック", "Suggested correction": "修正提案", "Explanation": "説明", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "重複するテキストタスクをカスタムボタンで置き換えます。AIの力を使って特定の編集、チェック、または再書き込みタスクを自動化します。" + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "重複するテキストタスクをカスタムボタンで置き換えます。AIの力を使って特定の編集、チェック、または再書き込みタスクを自動化します。", + "Create a new assistant": "新しいアシスタントを作成", + "Save": "保存", + "Create": "作成", + "Delete Assistant": "アシスタントを削除", + "Yes": "はい", + "No": "いいえ", + "Are you sure you want to delete this assistant?": "このアシスタントを削除してもよろしいですか?", + "This action cannot be undone.": "この操作は元に戻せません。", + "Warning!": "警告!", + "Custom assistant is not available. Please check your configuration.": "カスタムアシスタントは利用できません。設定を確認してください。", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "この操作は実行できません。テキスト分析、編集、またはフォーマットに関連するプロンプトを使用してください。" } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/pt-BR.json b/sdkjs-plugins/content/ai/translations/pt-BR.json index 9d39bb27..2596340b 100644 --- a/sdkjs-plugins/content/ai/translations/pt-BR.json +++ b/sdkjs-plugins/content/ai/translations/pt-BR.json @@ -155,4 +155,15 @@ "Suggested correction": "Correção sugerida", "Explanation": "Explicação", "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Transforme qualquer tarefa de texto repetitivo em um botão personalizado na barra de ferramentas. Automatize tarefas de edição, verificação ou reescrita usando a potência da IA.", + "Create a new assistant": "Criar novo assistente", + "Save": "Salvar", + "Create": "Criar", + "Delete Assistant": "Excluir assistente", + "Yes": "Sim", + "No": "Não", + "Are you sure you want to delete this assistant?": "Tem certeza de que deseja excluir este assistente?", + "This action cannot be undone.": "Esta ação não pode ser desfeita.", + "Warning!": "Aviso!", + "Custom assistant is not available. Please check your configuration.": "O assistente personalizado não está disponível. Verifique sua configuração.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Não é possível realizar esta ação. Use prompts relacionados à análise de texto, edição ou formatação." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/ru-RU.json b/sdkjs-plugins/content/ai/translations/ru-RU.json index 5136903f..6ff09279 100644 --- a/sdkjs-plugins/content/ai/translations/ru-RU.json +++ b/sdkjs-plugins/content/ai/translations/ru-RU.json @@ -154,5 +154,16 @@ "Check current text": "Проверить текущий текст", "Suggested correction": "Предложение", "Explanation": "Объяснение", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Превратите любую повторяющуюся текстовую задачу в настраиваемую кнопку на панели инструментов. Автоматизируйте конкретные задачи редактирования, проверки или переписывания текста, используя возможности искусственного интеллекта." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Превратите любую повторяющуюся текстовую задачу в настраиваемую кнопку на панели инструментов. Автоматизируйте конкретные задачи редактирования, проверки или переписывания текста, используя возможности искусственного интеллекта.", + "Create a new assistant": "Создать нового ассистента", + "Save": "Сохранить", + "Create": "Создать", + "Delete Assistant": "Удалить ассистента", + "Yes": "Да", + "No": "Нет", + "Are you sure you want to delete this assistant?": "Вы уверены, что хотите удалить этого ассистента?", + "This action cannot be undone.": "Это действие не может быть отменено.", + "Warning!": "Предупреждение!", + "Custom assistant is not available. Please check your configuration.": "Пользовательский ассистент недоступен. Пожалуйста, проверьте вашу конфигурацию.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Не удается выполнить это действие. Пожалуйста, используйте запросы, связанные с анализом текста, редактированием или форматированием." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/sq-AL.json b/sdkjs-plugins/content/ai/translations/sq-AL.json index b282cde1..8c2a6f98 100644 --- a/sdkjs-plugins/content/ai/translations/sq-AL.json +++ b/sdkjs-plugins/content/ai/translations/sq-AL.json @@ -153,5 +153,16 @@ "Check current text": "Kontrolloni tekstin aktual", "Suggested correction": "Korrigjim i sugjeruar", "Explanation": "Shpjegim", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Pretvori biletjen e tekstit te ri i ri ne nje buton personalizuar ne toolbaren tuaj. Automatizo tasket e editimit, kontrollimit ose rikthejeve duke perdorur moshen e IA." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Pretvori biletjen e tekstit te ri i ri ne nje buton personalizuar ne toolbaren tuaj. Automatizo tasket e editimit, kontrollimit ose rikthejeve duke perdorur moshen e IA.", + "Create a new assistant": "Krijoni një asistent të ri", + "Save": "Ruaj", + "Create": "Krijoni", + "Delete Assistant": "Fshijeni Asistentin", + "Yes": "Po", + "No": "Jo", + "Are you sure you want to delete this assistant?": "A jeni të sigurt që dëshironi të fshini këtë asistent?", + "This action cannot be undone.": "Kjo veprim nuk mund të zhbëhet.", + "Warning!": "Paralajmërim!", + "Custom assistant is not available. Please check your configuration.": "Asistenti i personalizuar nuk është i disponueshëm. Ju lutemi kontrolloni konfigurimin tuaj.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Nuk mund të kryhet kjo veprim. Ju lutemi përdorni promptet të lidhura me analizën e tekstit, redaktimin ose formatimin." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/sr-Cyrl-RS.json b/sdkjs-plugins/content/ai/translations/sr-Cyrl-RS.json index a7494792..a0b7dd53 100644 --- a/sdkjs-plugins/content/ai/translations/sr-Cyrl-RS.json +++ b/sdkjs-plugins/content/ai/translations/sr-Cyrl-RS.json @@ -154,5 +154,16 @@ "Check current text": "Провери тренутни текст", "Suggested correction": "Предложена исправка", "Explanation": "Објашњење", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Претворите било који понављајући текстуални задатак у прилагођено дугме на вашој траци са алаткама. Аутоматизујте одређене задатке уређивања, провере или преписивања користећи моћ вештачке интелигенције." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Претворите било који понављајући текстуални задатак у прилагођено дугме на вашој траци са алаткама. Аутоматизујте одређене задатке уређивања, провере или преписивања користећи моћ вештачке интелигенције.", + "Create a new assistant": "Направите новог асистента", + "Save": "Сачувај", + "Create": "Направите", + "Delete Assistant": "Обришите асистента", + "Yes": "Да", + "No": "Не", + "Are you sure you want to delete this assistant?": "Да ли сте сигурни да желите да обришете овог асистента?", + "This action cannot be undone.": "Ова акција не може бити обрисана.", + "Warning!": "Упозорење!", + "Custom assistant is not available. Please check your configuration.": "Кориснички асистент није доступан. Молимо проверите вашу конфигурацију.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Није могуће извршити ову акцију. Молимо користите промпте повезане са анализом текста, уређивањем или форматирањем." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/sr-Latn-RS.json b/sdkjs-plugins/content/ai/translations/sr-Latn-RS.json index da0730c4..b048ff94 100644 --- a/sdkjs-plugins/content/ai/translations/sr-Latn-RS.json +++ b/sdkjs-plugins/content/ai/translations/sr-Latn-RS.json @@ -154,5 +154,16 @@ "Check current text": "Proveri trenutni tekst", "Suggested correction": "Predložena ispravka", "Explanation": "Objašnjenje", - "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Pretvori bilo koje ponavljajuce tekstove u prilagođenu gumbu u vasoj alatnoj trci. Automatizujte specificne zadatke za uređivanje, provjeru ili pisanje koristeći moc veštačke inteligencije." + "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "Pretvori bilo koje ponavljajuce tekstove u prilagođenu gumbu u vasoj alatnoj trci. Automatizujte specificne zadatke za uređivanje, provjeru ili pisanje koristeći moc veštačke inteligencije.", + "Create a new assistant": "Kreiraj novog asistent", + "Save": "Spremi", + "Create": "Kreiraj", + "Delete Assistant": "Obriši asistent", + "Yes": "Da", + "No": "Ne", + "Are you sure you want to delete this assistant?": "Da li ste sigurni da želite obrisati ovog asistenta?", + "This action cannot be undone.": "Ova akcija ne može biti ponovljena.", + "Warning!": "Upozorenje!", + "Custom assistant is not available. Please check your configuration.": "Prilagođeni asistent nije dostupan. Molimo provjerite konfiguraciju.", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "Nije u stanju da izvrsi ovu akciju. Molimo koristi prompove vezane za analizu teksta, uređivanje ili formatiranje." } \ No newline at end of file diff --git a/sdkjs-plugins/content/ai/translations/zh-CN.json b/sdkjs-plugins/content/ai/translations/zh-CN.json index 28fe543c..be2ad86c 100644 --- a/sdkjs-plugins/content/ai/translations/zh-CN.json +++ b/sdkjs-plugins/content/ai/translations/zh-CN.json @@ -155,5 +155,15 @@ "Suggested correction": "修改建议", "Explanation": "解释说明", "Turn any repetitive text task into a custom button on your toolbar. Automate specific editing, checking, or rewriting tasks using the power of AI.": "将任何重复的文本任务转换为工具栏上的自定义按钮。使用 AI 的力量自动化特定的编辑、检查或重写任务。", - "Create a new assistant": + "Create a new assistant": "创建新助手", + "Save": "保存", + "Create": "创建", + "Delete Assistant": "删除助手", + "Yes": "是", + "No": "否", + "Are you sure you want to delete this assistant?": "确定要删除此助手吗?", + "This action cannot be undone.": "此操作无法撤销。", + "Warning!": "警告!", + "Custom assistant is not available. Please check your configuration.": "自定义助手不可用。请检查您的配置。", + "Not able to perform this action. Please use prompts related to text analysis, editing, or formatting.": "无法执行此操作。请使用与文本分析、编辑或格式化相关的提示。" } \ No newline at end of file