diff --git a/frontend/index.html b/frontend/index.html index 720df08..78d8268 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -11,72 +11,72 @@
-

Pulse Workspace

+

Рабочее пространство проекта

- +
- - + +

         
-

Android Device Manager

+

Менеджер Android устройств

- +
-

APK Build & Install

+

Сборка и установка APK

- +
- - + +

         
-

AI Assistant

+

AI помощник

- + - +

         
-

OpenAI Settings

+

Настройки OpenAI

- + - +
@@ -94,7 +94,7 @@ async function api(url, options = {}) { async function analyzeProject() { const repo_url = document.getElementById('repoUrl').value; - document.getElementById('projectResult').innerText = 'Analyzing repository...'; + document.getElementById('projectResult').innerText = 'Анализ проекта...'; const data = await api('/api/projects/analyze', { method: 'POST', @@ -112,7 +112,7 @@ async function analyzeProject() { async function installDependencies() { const repo_url = document.getElementById('repoUrl').value; - document.getElementById('projectResult').innerText = 'Installing dependencies...'; + document.getElementById('projectResult').innerText = 'Установка зависимостей...'; const data = await api('/api/projects/install-dependencies', { method: 'POST', @@ -137,12 +137,12 @@ async function loadDevices() { return `
${id} - +
`; }).join(''); - document.getElementById('devices').innerHTML = html || '

No devices connected

'; + document.getElementById('devices').innerHTML = html || '

Устройства не подключены

'; } function selectDevice(id) { @@ -153,7 +153,7 @@ function selectDevice(id) { async function buildApk() { const workspace = document.getElementById('workspacePath').value; - document.getElementById('buildResult').innerText = 'Building APK...'; + document.getElementById('buildResult').innerText = 'Сборка APK...'; const data = await api('/api/android/build', { method: 'POST', @@ -167,7 +167,7 @@ async function buildApk() { async function installApk() { const workspace = document.getElementById('workspacePath').value; - document.getElementById('buildResult').innerText = 'Installing APK...'; + document.getElementById('buildResult').innerText = 'Установка APK...'; const data = await api('/api/android/install-latest', { method: 'POST', @@ -194,7 +194,7 @@ async function saveSettings() { async function runPrompt() { const prompt = document.getElementById('promptInput').value; - document.getElementById('promptResult').innerText = 'Running AI task...'; + document.getElementById('promptResult').innerText = 'Выполнение AI задачи...'; const data = await api('/api/prompts/test', { method: 'POST',