From 1ef672ba1c67fb40f3abacb733c846e2d025f37a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D0=BA=D1=82=D0=BE=D1=80?= <78488229+viktor138irk@users.noreply.github.com> Date: Mon, 11 May 2026 23:17:57 +0900 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D0=B5=D0=B4?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9?= =?UTF-8?q?=D1=81=20DevConsole=20=D0=BD=D0=B0=20=D1=80=D1=83=D1=81=D1=81?= =?UTF-8?q?=D0=BA=D0=B8=D0=B9=20=D1=8F=D0=B7=D1=8B=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/index.html | 58 ++++++++++++++++++++++----------------------- 1 file changed, 29 insertions(+), 29 deletions(-) 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',