mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
fix: resolve QA report issues across routing, editor, i18n, and pipeline
- Add /tools/:toolId legacy redirect and catch-all 404 page (P1-12, P1-13) - Add Shift+O dodge/burn/sponge cycle and Ctrl+Y redo shortcut (P1-3, P1-4) - Fix Fit on Screen menu action to properly compute fit zoom (P1-8) - Add filename input to editor export dialog (P1-2) - Fix password validation mismatch: frontend now requires 8 chars (P1-11) - Add license info to Settings About section (P1-9) - Replace hardcoded strings in dropzone, files, pipeline with i18n keys (P1-17 to P1-25) - Add 20+ missing i18n keys to all 21 locale files - Translate Japanese editor.shapes and settings.aiFeatures sections (P1-19, P1-20) - Fix RTL: use logical CSS properties in sidebar, files, app-layout (P2-24 to P2-26) - Add single-file download button to pipeline results (P1-28) - Fix compress step settings restoration on pipeline load (P1-27) - Increase mobile nav touch targets to 44px minimum (P2-29)
This commit is contained in:
@@ -36,6 +36,9 @@ export const ar: TranslationKeys = {
|
||||
unexpectedError: "حدث خطأ غير متوقع.",
|
||||
retry: "إعادة المحاولة",
|
||||
privacyPolicy: "سياسة الخصوصية",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "الأساسيات",
|
||||
@@ -1679,6 +1682,8 @@ export const ar: TranslationKeys = {
|
||||
githubLink: "مستودع GitHub",
|
||||
docsLink: "التوثيق",
|
||||
apiRefLink: "مرجع API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1819,6 +1824,8 @@ export const ar: TranslationKeys = {
|
||||
pipelineName: "اسم Pipeline",
|
||||
pipelineDescription: "الوصف (اختياري)",
|
||||
noStepsPrompt: "أضف خطوات لبناء أتمتتك",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "خطوة",
|
||||
},
|
||||
nav: {
|
||||
@@ -1836,6 +1843,25 @@ export const ar: TranslationKeys = {
|
||||
uploadTab: "رفع",
|
||||
fileDetailsAriaLabel: "تفاصيل الملف",
|
||||
fileDetailsHeading: "تفاصيل الملف",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "نوع الملف هذا غير مدعوم بهذه الأداة",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const de: TranslationKeys = {
|
||||
unexpectedError: "Ein unerwarteter Fehler ist aufgetreten.",
|
||||
retry: "Erneut versuchen",
|
||||
privacyPolicy: "Datenschutzerklaerung",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Grundlagen",
|
||||
@@ -1704,6 +1707,8 @@ export const de: TranslationKeys = {
|
||||
githubLink: "GitHub-Repository",
|
||||
docsLink: "Dokumentation",
|
||||
apiRefLink: "API-Referenz (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1848,6 +1853,8 @@ export const de: TranslationKeys = {
|
||||
pipelineName: "Pipeline-Name",
|
||||
pipelineDescription: "Beschreibung (optional)",
|
||||
noStepsPrompt: "Fuegen Sie Schritte hinzu, um Ihre Automatisierung zu erstellen",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Schritt",
|
||||
},
|
||||
nav: {
|
||||
@@ -1865,6 +1872,25 @@ export const de: TranslationKeys = {
|
||||
uploadTab: "Hochladen",
|
||||
fileDetailsAriaLabel: "Dateidetails",
|
||||
fileDetailsHeading: "Dateidetails",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Dieser Dateityp wird von diesem Werkzeug nicht unterstuetzt",
|
||||
|
||||
@@ -34,6 +34,9 @@ export const en = {
|
||||
somethingWentWrong: "Something went wrong",
|
||||
unexpectedError: "An unexpected error occurred.",
|
||||
privacyPolicy: "Privacy Policy",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Essentials",
|
||||
@@ -1638,6 +1641,8 @@ export const en = {
|
||||
githubLink: "GitHub Repository",
|
||||
docsLink: "Documentation",
|
||||
apiRefLink: "API Reference (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1779,6 +1784,8 @@ export const en = {
|
||||
pipelineName: "Pipeline Name",
|
||||
pipelineDescription: "Description (optional)",
|
||||
noStepsPrompt: "Add steps to build your automation",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Step",
|
||||
},
|
||||
nav: {
|
||||
@@ -1796,6 +1803,25 @@ export const en = {
|
||||
uploadTab: "Upload",
|
||||
fileDetailsAriaLabel: "File Details",
|
||||
fileDetailsHeading: "File Details",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "This file type is not supported by this tool",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const es: TranslationKeys = {
|
||||
unexpectedError: "Ocurrio un error inesperado.",
|
||||
retry: "Reintentar",
|
||||
privacyPolicy: "Politica de privacidad",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Esenciales",
|
||||
@@ -1683,6 +1686,8 @@ export const es: TranslationKeys = {
|
||||
githubLink: "Repositorio en GitHub",
|
||||
docsLink: "Documentacion",
|
||||
apiRefLink: "Referencia API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1825,6 +1830,8 @@ export const es: TranslationKeys = {
|
||||
pipelineName: "Nombre del Pipeline",
|
||||
pipelineDescription: "Descripcion (opcional)",
|
||||
noStepsPrompt: "Agrega pasos para construir tu automatizacion",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Paso",
|
||||
},
|
||||
nav: {
|
||||
@@ -1842,6 +1849,25 @@ export const es: TranslationKeys = {
|
||||
uploadTab: "Subir",
|
||||
fileDetailsAriaLabel: "Detalles del archivo",
|
||||
fileDetailsHeading: "Detalles del archivo",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Este tipo de archivo no es compatible con esta herramienta",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const fr: TranslationKeys = {
|
||||
unexpectedError: "Une erreur inattendue est survenue.",
|
||||
retry: "Réessayer",
|
||||
privacyPolicy: "Politique de confidentialite",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Essentiels",
|
||||
@@ -1702,6 +1705,8 @@ export const fr: TranslationKeys = {
|
||||
githubLink: "Depot GitHub",
|
||||
docsLink: "Documentation",
|
||||
apiRefLink: "Reference API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1846,6 +1851,8 @@ export const fr: TranslationKeys = {
|
||||
pipelineName: "Nom du Pipeline",
|
||||
pipelineDescription: "Description (optionnel)",
|
||||
noStepsPrompt: "Ajoutez des etapes pour construire votre automatisation",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Etape",
|
||||
},
|
||||
nav: {
|
||||
@@ -1863,6 +1870,25 @@ export const fr: TranslationKeys = {
|
||||
uploadTab: "Importer",
|
||||
fileDetailsAriaLabel: "Details du fichier",
|
||||
fileDetailsHeading: "Details du fichier",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Ce type de fichier n'est pas pris en charge par cet outil",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const hi: TranslationKeys = {
|
||||
unexpectedError: "एक अप्रत्याशित त्रुटि हुई।",
|
||||
retry: "पुनः प्रयास करें",
|
||||
privacyPolicy: "गोपनीयता नीति",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "आवश्यक टूल्स",
|
||||
@@ -1675,6 +1678,8 @@ export const hi: TranslationKeys = {
|
||||
githubLink: "GitHub रिपॉज़िटरी",
|
||||
docsLink: "डॉक्यूमेंटेशन",
|
||||
apiRefLink: "API रेफरेंस (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1816,6 +1821,8 @@ export const hi: TranslationKeys = {
|
||||
pipelineName: "Pipeline का नाम",
|
||||
pipelineDescription: "विवरण (वैकल्पिक)",
|
||||
noStepsPrompt: "अपना ऑटोमेशन बनाने के लिए स्टेप्स जोड़ें",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "स्टेप",
|
||||
},
|
||||
nav: {
|
||||
@@ -1833,6 +1840,25 @@ export const hi: TranslationKeys = {
|
||||
uploadTab: "अपलोड",
|
||||
fileDetailsAriaLabel: "फाइल विवरण",
|
||||
fileDetailsHeading: "फाइल विवरण",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "इस फाइल प्रकार को यह टूल सपोर्ट नहीं करता",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const id: TranslationKeys = {
|
||||
unexpectedError: "Terjadi kesalahan yang tidak terduga.",
|
||||
retry: "Coba lagi",
|
||||
privacyPolicy: "Kebijakan Privasi",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Dasar",
|
||||
@@ -1691,6 +1694,8 @@ export const id: TranslationKeys = {
|
||||
githubLink: "Repositori GitHub",
|
||||
docsLink: "Dokumentasi",
|
||||
apiRefLink: "Referensi API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1833,6 +1838,8 @@ export const id: TranslationKeys = {
|
||||
pipelineName: "Nama Pipeline",
|
||||
pipelineDescription: "Deskripsi (opsional)",
|
||||
noStepsPrompt: "Tambahkan langkah untuk membangun otomasi Anda",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Langkah",
|
||||
},
|
||||
nav: {
|
||||
@@ -1850,6 +1857,25 @@ export const id: TranslationKeys = {
|
||||
uploadTab: "Unggah",
|
||||
fileDetailsAriaLabel: "Detail File",
|
||||
fileDetailsHeading: "Detail File",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Jenis file ini tidak didukung oleh alat ini",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const it: TranslationKeys = {
|
||||
unexpectedError: "Si e verificato un errore imprevisto.",
|
||||
retry: "Riprova",
|
||||
privacyPolicy: "Informativa sulla privacy",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Essenziali",
|
||||
@@ -1697,6 +1700,8 @@ export const it: TranslationKeys = {
|
||||
githubLink: "Repository GitHub",
|
||||
docsLink: "Documentazione",
|
||||
apiRefLink: "Riferimento API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1840,6 +1845,8 @@ export const it: TranslationKeys = {
|
||||
pipelineName: "Nome del Pipeline",
|
||||
pipelineDescription: "Descrizione (opzionale)",
|
||||
noStepsPrompt: "Aggiungi passaggi per costruire la tua automazione",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Passaggio",
|
||||
},
|
||||
nav: {
|
||||
@@ -1857,6 +1864,25 @@ export const it: TranslationKeys = {
|
||||
uploadTab: "Carica",
|
||||
fileDetailsAriaLabel: "Dettagli file",
|
||||
fileDetailsHeading: "Dettagli file",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Questo tipo di file non e supportato da questo strumento",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const ja: TranslationKeys = {
|
||||
unexpectedError: "予期しないエラーが発生しました。",
|
||||
retry: "再試行",
|
||||
privacyPolicy: "プライバシーポリシー",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "基本ツール",
|
||||
@@ -1648,6 +1651,8 @@ export const ja: TranslationKeys = {
|
||||
githubLink: "GitHubリポジトリ",
|
||||
docsLink: "ドキュメント",
|
||||
apiRefLink: "APIリファレンス(Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1789,6 +1794,8 @@ export const ja: TranslationKeys = {
|
||||
pipelineName: "Pipeline名",
|
||||
pipelineDescription: "説明(任意)",
|
||||
noStepsPrompt: "ステップを追加して自動化を構築",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "ステップ",
|
||||
},
|
||||
nav: {
|
||||
@@ -1806,6 +1813,25 @@ export const ja: TranslationKeys = {
|
||||
uploadTab: "アップロード",
|
||||
fileDetailsAriaLabel: "ファイル詳細",
|
||||
fileDetailsHeading: "ファイル詳細",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "このツールではサポートされていないファイルタイプです",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const ko: TranslationKeys = {
|
||||
unexpectedError: "예기치 않은 오류가 발생했습니다.",
|
||||
retry: "재시도",
|
||||
privacyPolicy: "개인정보 처리방침",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "기본 도구",
|
||||
@@ -1633,6 +1636,8 @@ export const ko: TranslationKeys = {
|
||||
githubLink: "GitHub 저장소",
|
||||
docsLink: "문서",
|
||||
apiRefLink: "API 레퍼런스 (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1774,6 +1779,8 @@ export const ko: TranslationKeys = {
|
||||
pipelineName: "Pipeline 이름",
|
||||
pipelineDescription: "설명 (선택)",
|
||||
noStepsPrompt: "단계를 추가하여 자동화를 구성하세요",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "단계",
|
||||
},
|
||||
nav: {
|
||||
@@ -1791,6 +1798,25 @@ export const ko: TranslationKeys = {
|
||||
uploadTab: "업로드",
|
||||
fileDetailsAriaLabel: "파일 상세",
|
||||
fileDetailsHeading: "파일 상세",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "이 도구에서 지원하지 않는 파일 형식입니다",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const nl: TranslationKeys = {
|
||||
unexpectedError: "Er is een onverwachte fout opgetreden.",
|
||||
retry: "Opnieuw proberen",
|
||||
privacyPolicy: "Privacybeleid",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Basistools",
|
||||
@@ -1694,6 +1697,8 @@ export const nl: TranslationKeys = {
|
||||
githubLink: "GitHub-repository",
|
||||
docsLink: "Documentatie",
|
||||
apiRefLink: "API-referentie (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1836,6 +1841,8 @@ export const nl: TranslationKeys = {
|
||||
pipelineName: "Pipeline-naam",
|
||||
pipelineDescription: "Beschrijving (optioneel)",
|
||||
noStepsPrompt: "Voeg stappen toe om je automatisering te bouwen",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Stap",
|
||||
},
|
||||
nav: {
|
||||
@@ -1853,6 +1860,25 @@ export const nl: TranslationKeys = {
|
||||
uploadTab: "Uploaden",
|
||||
fileDetailsAriaLabel: "Bestandsdetails",
|
||||
fileDetailsHeading: "Bestandsdetails",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Dit bestandstype wordt niet ondersteund door deze tool",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const pl: TranslationKeys = {
|
||||
unexpectedError: "Wystąpił nieoczekiwany błąd.",
|
||||
retry: "Ponów",
|
||||
privacyPolicy: "Polityka prywatności",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Podstawowe",
|
||||
@@ -1700,6 +1703,8 @@ export const pl: TranslationKeys = {
|
||||
githubLink: "Repozytorium GitHub",
|
||||
docsLink: "Dokumentacja",
|
||||
apiRefLink: "Dokumentacja API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1843,6 +1848,8 @@ export const pl: TranslationKeys = {
|
||||
pipelineName: "Nazwa Pipeline",
|
||||
pipelineDescription: "Opis (opcjonalnie)",
|
||||
noStepsPrompt: "Dodaj kroki, aby zbudować automatyzację",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Krok",
|
||||
},
|
||||
nav: {
|
||||
@@ -1860,6 +1867,25 @@ export const pl: TranslationKeys = {
|
||||
uploadTab: "Przesyłanie",
|
||||
fileDetailsAriaLabel: "Szczegóły pliku",
|
||||
fileDetailsHeading: "Szczegóły pliku",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Ten typ pliku nie jest obsługiwany przez to narzędzie",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const ptBR: TranslationKeys = {
|
||||
unexpectedError: "Ocorreu um erro inesperado.",
|
||||
retry: "Tentar novamente",
|
||||
privacyPolicy: "Politica de privacidade",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Essenciais",
|
||||
@@ -1693,6 +1696,8 @@ export const ptBR: TranslationKeys = {
|
||||
githubLink: "Repositorio no GitHub",
|
||||
docsLink: "Documentacao",
|
||||
apiRefLink: "Referencia da API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1836,6 +1841,8 @@ export const ptBR: TranslationKeys = {
|
||||
pipelineName: "Nome do Pipeline",
|
||||
pipelineDescription: "Descricao (opcional)",
|
||||
noStepsPrompt: "Adicione passos para construir sua automacao",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Passo",
|
||||
},
|
||||
nav: {
|
||||
@@ -1853,6 +1860,25 @@ export const ptBR: TranslationKeys = {
|
||||
uploadTab: "Enviar",
|
||||
fileDetailsAriaLabel: "Detalhes do arquivo",
|
||||
fileDetailsHeading: "Detalhes do arquivo",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Este tipo de arquivo nao e suportado por esta ferramenta",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const ru: TranslationKeys = {
|
||||
unexpectedError: "Произошла непредвиденная ошибка.",
|
||||
retry: "Повторить",
|
||||
privacyPolicy: "Политика конфиденциальности",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Основные",
|
||||
@@ -1693,6 +1696,8 @@ export const ru: TranslationKeys = {
|
||||
githubLink: "Репозиторий GitHub",
|
||||
docsLink: "Документация",
|
||||
apiRefLink: "Справочник API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1835,6 +1840,8 @@ export const ru: TranslationKeys = {
|
||||
pipelineName: "Название Pipeline",
|
||||
pipelineDescription: "Описание (необязательно)",
|
||||
noStepsPrompt: "Добавьте шаги для построения автоматизации",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Шаг",
|
||||
},
|
||||
nav: {
|
||||
@@ -1852,6 +1859,25 @@ export const ru: TranslationKeys = {
|
||||
uploadTab: "Загрузка",
|
||||
fileDetailsAriaLabel: "Сведения о файле",
|
||||
fileDetailsHeading: "Сведения о файле",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Этот тип файла не поддерживается данным инструментом",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const sv: TranslationKeys = {
|
||||
unexpectedError: "Ett ovantat fel uppstod.",
|
||||
retry: "Försök igen",
|
||||
privacyPolicy: "Integritetspolicy",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Grundlaggande",
|
||||
@@ -1689,6 +1692,8 @@ export const sv: TranslationKeys = {
|
||||
githubLink: "GitHub-arkiv",
|
||||
docsLink: "Dokumentation",
|
||||
apiRefLink: "API-referens (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1830,6 +1835,8 @@ export const sv: TranslationKeys = {
|
||||
pipelineName: "Pipeline-namn",
|
||||
pipelineDescription: "Beskrivning (valfritt)",
|
||||
noStepsPrompt: "Lagg till steg for att bygga din automatisering",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Steg",
|
||||
},
|
||||
nav: {
|
||||
@@ -1847,6 +1854,25 @@ export const sv: TranslationKeys = {
|
||||
uploadTab: "Ladda upp",
|
||||
fileDetailsAriaLabel: "Fildetaljer",
|
||||
fileDetailsHeading: "Fildetaljer",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Denna filtyp stods inte av detta verktyg",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const th: TranslationKeys = {
|
||||
unexpectedError: "เกิดข้อผิดพลาดที่ไม่คาดคิด",
|
||||
retry: "ลองใหม่",
|
||||
privacyPolicy: "นโยบายความเป็นส่วนตัว",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "พื้นฐาน",
|
||||
@@ -1667,6 +1670,8 @@ export const th: TranslationKeys = {
|
||||
githubLink: "คลังเก็บโค้ด GitHub",
|
||||
docsLink: "เอกสารประกอบ",
|
||||
apiRefLink: "อ้างอิง API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1807,6 +1812,8 @@ export const th: TranslationKeys = {
|
||||
pipelineName: "ชื่อ Pipeline",
|
||||
pipelineDescription: "คำอธิบาย (ไม่บังคับ)",
|
||||
noStepsPrompt: "เพิ่มขั้นตอนเพื่อสร้างการทำงานอัตโนมัติ",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "ขั้นตอน",
|
||||
},
|
||||
nav: {
|
||||
@@ -1824,6 +1831,25 @@ export const th: TranslationKeys = {
|
||||
uploadTab: "อัปโหลด",
|
||||
fileDetailsAriaLabel: "รายละเอียดไฟล์",
|
||||
fileDetailsHeading: "รายละเอียดไฟล์",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "ไฟล์ประเภทนี้ไม่รองรับโดยเครื่องมือนี้",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const tr: TranslationKeys = {
|
||||
unexpectedError: "Beklenmeyen bir hata oluştu.",
|
||||
retry: "Yeniden dene",
|
||||
privacyPolicy: "Gizlilik Politikası",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Temel Araçlar",
|
||||
@@ -1697,6 +1700,8 @@ export const tr: TranslationKeys = {
|
||||
githubLink: "GitHub Deposu",
|
||||
docsLink: "Dokümantasyon",
|
||||
apiRefLink: "API Referansı (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1840,6 +1845,8 @@ export const tr: TranslationKeys = {
|
||||
pipelineName: "Pipeline Adı",
|
||||
pipelineDescription: "Açıklama (isteğe bağlı)",
|
||||
noStepsPrompt: "Otomasyonunuzu oluşturmak için adımlar ekleyin",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Adım",
|
||||
},
|
||||
nav: {
|
||||
@@ -1857,6 +1864,25 @@ export const tr: TranslationKeys = {
|
||||
uploadTab: "Yükle",
|
||||
fileDetailsAriaLabel: "Dosya Ayrıntıları",
|
||||
fileDetailsHeading: "Dosya Ayrıntıları",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Bu dosya türü bu araç tarafından desteklenmiyor",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const uk: TranslationKeys = {
|
||||
unexpectedError: "Сталася неочікувана помилка.",
|
||||
retry: "Повторити",
|
||||
privacyPolicy: "Політика конфіденційності",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Основні",
|
||||
@@ -1693,6 +1696,8 @@ export const uk: TranslationKeys = {
|
||||
githubLink: "Репозиторій GitHub",
|
||||
docsLink: "Документація",
|
||||
apiRefLink: "Довідник API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1836,6 +1841,8 @@ export const uk: TranslationKeys = {
|
||||
pipelineName: "Назва Pipeline",
|
||||
pipelineDescription: "Опис (необов'язково)",
|
||||
noStepsPrompt: "Додайте кроки для побудови автоматизації",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Крок",
|
||||
},
|
||||
nav: {
|
||||
@@ -1853,6 +1860,25 @@ export const uk: TranslationKeys = {
|
||||
uploadTab: "Завантаження",
|
||||
fileDetailsAriaLabel: "Відомості про файл",
|
||||
fileDetailsHeading: "Відомості про файл",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Цей тип файлу не підтримується цим інструментом",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const vi: TranslationKeys = {
|
||||
unexpectedError: "Đã xảy ra lỗi không mong muốn.",
|
||||
retry: "Thử lại",
|
||||
privacyPolicy: "Chính sách bảo mật",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "Cơ bản",
|
||||
@@ -1689,6 +1692,8 @@ export const vi: TranslationKeys = {
|
||||
githubLink: "Kho mã nguồn GitHub",
|
||||
docsLink: "Tài liệu",
|
||||
apiRefLink: "Tham chiếu API (Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1830,6 +1835,8 @@ export const vi: TranslationKeys = {
|
||||
pipelineName: "Tên Pipeline",
|
||||
pipelineDescription: "Mô tả (tùy chọn)",
|
||||
noStepsPrompt: "Thêm các bước để xây dựng tự động hóa",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "Bước",
|
||||
},
|
||||
nav: {
|
||||
@@ -1847,6 +1854,25 @@ export const vi: TranslationKeys = {
|
||||
uploadTab: "Tải lên",
|
||||
fileDetailsAriaLabel: "Chi tiết tệp",
|
||||
fileDetailsHeading: "Chi tiết tệp",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "Loại tệp này không được công cụ này hỗ trợ",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const zhCN: TranslationKeys = {
|
||||
unexpectedError: "发生了意外错误。",
|
||||
retry: "重试",
|
||||
privacyPolicy: "隐私政策",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "基础工具",
|
||||
@@ -1619,6 +1622,8 @@ export const zhCN: TranslationKeys = {
|
||||
githubLink: "GitHub 仓库",
|
||||
docsLink: "文档",
|
||||
apiRefLink: "API 参考(Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1758,6 +1763,8 @@ export const zhCN: TranslationKeys = {
|
||||
pipelineName: "Pipeline 名称",
|
||||
pipelineDescription: "描述(可选)",
|
||||
noStepsPrompt: "添加步骤来构建自动化流程",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "步骤",
|
||||
},
|
||||
nav: {
|
||||
@@ -1775,6 +1782,25 @@ export const zhCN: TranslationKeys = {
|
||||
uploadTab: "上传",
|
||||
fileDetailsAriaLabel: "文件详情",
|
||||
fileDetailsHeading: "文件详情",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "此工具不支持该文件类型",
|
||||
|
||||
@@ -36,6 +36,9 @@ export const zhTW: TranslationKeys = {
|
||||
unexpectedError: "發生了非預期的錯誤。",
|
||||
retry: "重試",
|
||||
privacyPolicy: "隱私權政策",
|
||||
pageNotFound: "Page not found",
|
||||
pageNotFoundDescription: "The page you are looking for does not exist or has been moved.",
|
||||
noToolsFound: "No tools found",
|
||||
},
|
||||
categories: {
|
||||
essentials: "基本工具",
|
||||
@@ -1617,6 +1620,8 @@ export const zhTW: TranslationKeys = {
|
||||
githubLink: "GitHub儲存庫",
|
||||
docsLink: "說明文件",
|
||||
apiRefLink: "API參考(Swagger)",
|
||||
licenseLabel: "License:",
|
||||
licenseDescription: "Dual-licensed under AGPLv3 and a commercial license.",
|
||||
},
|
||||
},
|
||||
auth: {
|
||||
@@ -1756,6 +1761,8 @@ export const zhTW: TranslationKeys = {
|
||||
pipelineName: "Pipeline名稱",
|
||||
pipelineDescription: "描述(選填)",
|
||||
noStepsPrompt: "加入步驟來建構自動化",
|
||||
noStepsHeading: "No steps yet",
|
||||
searchToolsPlaceholder: "Search tools...",
|
||||
step: "步驟",
|
||||
},
|
||||
nav: {
|
||||
@@ -1773,6 +1780,25 @@ export const zhTW: TranslationKeys = {
|
||||
uploadTab: "上傳",
|
||||
fileDetailsAriaLabel: "檔案詳情",
|
||||
fileDetailsHeading: "檔案詳情",
|
||||
myFiles: "My Files",
|
||||
searchPlaceholder: "Search files...",
|
||||
selectedCount: "{count} selected",
|
||||
fileCount: "{count} files",
|
||||
fileCountSingular: "{count} file",
|
||||
noFilesFound: "No files found",
|
||||
selectFilePrompt: "Select a file to view details",
|
||||
openFile: "Open File",
|
||||
openInPipeline: "Open in Pipeline",
|
||||
name: "Name",
|
||||
format: "Format",
|
||||
size: "Size",
|
||||
dimensions: "Dimensions",
|
||||
version: "Version",
|
||||
toolsUsed: "Tools Used",
|
||||
none: "None",
|
||||
delete: "Delete",
|
||||
pipeline: "Pipeline",
|
||||
download: "Download",
|
||||
},
|
||||
dropzone: {
|
||||
unsupportedFileType: "此工具不支援該檔案類型",
|
||||
|
||||
Reference in New Issue
Block a user