@lobehub/lobehub 2.0.0-next.304 → 2.0.0-next.305
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/manual-build-desktop.yml +11 -1
- package/CHANGELOG.md +25 -0
- package/apps/desktop/.i18nrc.js +3 -3
- package/apps/desktop/electron.vite.config.ts +0 -2
- package/apps/desktop/resources/locales/ar/dialog.json +5 -1
- package/apps/desktop/resources/locales/ar/menu.json +16 -0
- package/apps/desktop/resources/locales/bg-BG/dialog.json +5 -1
- package/apps/desktop/resources/locales/bg-BG/menu.json +16 -0
- package/apps/desktop/resources/locales/de-DE/dialog.json +5 -1
- package/apps/desktop/resources/locales/de-DE/menu.json +16 -0
- package/apps/desktop/resources/locales/en/common.json +26 -0
- package/apps/desktop/resources/locales/en/dialog.json +27 -0
- package/apps/desktop/resources/locales/en/menu.json +73 -0
- package/apps/desktop/resources/locales/es-ES/dialog.json +5 -1
- package/apps/desktop/resources/locales/es-ES/menu.json +16 -0
- package/apps/desktop/resources/locales/fa-IR/dialog.json +5 -1
- package/apps/desktop/resources/locales/fa-IR/menu.json +16 -0
- package/apps/desktop/resources/locales/fr-FR/dialog.json +5 -1
- package/apps/desktop/resources/locales/fr-FR/menu.json +16 -0
- package/apps/desktop/resources/locales/it-IT/dialog.json +5 -1
- package/apps/desktop/resources/locales/it-IT/menu.json +16 -0
- package/apps/desktop/resources/locales/ja-JP/dialog.json +5 -1
- package/apps/desktop/resources/locales/ja-JP/menu.json +16 -0
- package/apps/desktop/resources/locales/ko-KR/dialog.json +5 -1
- package/apps/desktop/resources/locales/ko-KR/menu.json +16 -0
- package/apps/desktop/resources/locales/nl-NL/dialog.json +5 -1
- package/apps/desktop/resources/locales/nl-NL/menu.json +16 -0
- package/apps/desktop/resources/locales/pl-PL/dialog.json +5 -1
- package/apps/desktop/resources/locales/pl-PL/menu.json +16 -0
- package/apps/desktop/resources/locales/pt-BR/dialog.json +5 -1
- package/apps/desktop/resources/locales/pt-BR/menu.json +16 -0
- package/apps/desktop/resources/locales/ru-RU/dialog.json +5 -1
- package/apps/desktop/resources/locales/ru-RU/menu.json +16 -0
- package/apps/desktop/resources/locales/tr-TR/dialog.json +5 -1
- package/apps/desktop/resources/locales/tr-TR/menu.json +16 -0
- package/apps/desktop/resources/locales/vi-VN/dialog.json +5 -1
- package/apps/desktop/resources/locales/vi-VN/menu.json +16 -0
- package/apps/desktop/resources/locales/zh-TW/dialog.json +5 -1
- package/apps/desktop/resources/locales/zh-TW/menu.json +16 -0
- package/apps/desktop/scripts/update-test/README.md +15 -0
- package/apps/desktop/src/main/core/infrastructure/BackendProxyProtocolManager.ts +7 -6
- package/apps/desktop/src/main/core/infrastructure/UpdaterManager.ts +38 -5
- package/apps/desktop/src/main/utils/logger.ts +2 -2
- package/changelog/v1.json +5 -0
- package/locales/en-US/auth.json +5 -0
- package/locales/zh-CN/auth.json +5 -0
- package/package.json +6 -5
- package/packages/builtin-tool-agent-builder/src/ExecutionRuntime/index.ts +362 -30
- package/packages/builtin-tool-agent-builder/src/client/Intervention/InstallPlugin.tsx +28 -4
- package/scripts/electronWorkflow/buildDesktopChannel.ts +135 -0
- package/src/app/[variants]/(main)/_layout/index.tsx +2 -0
- package/src/features/DesktopNavigationBridge/index.tsx +0 -9
- package/src/features/Electron/AuthRequiredModal/index.tsx +151 -0
- package/src/locales/default/auth.ts +6 -0
- package/src/utils/errorResponse.ts +21 -1
|
@@ -73,7 +73,17 @@ jobs:
|
|
|
73
73
|
echo "📦 Using provided version: ${version} (base: ${base_version})"
|
|
74
74
|
else
|
|
75
75
|
ci_build_number="${{ github.run_number }}"
|
|
76
|
-
|
|
76
|
+
if [ "$CHANNEL" = "beta" ]; then
|
|
77
|
+
channel_suffix="next"
|
|
78
|
+
else
|
|
79
|
+
channel_suffix="$CHANNEL"
|
|
80
|
+
fi
|
|
81
|
+
|
|
82
|
+
if [[ "$base_version" == *"-${channel_suffix}"* ]]; then
|
|
83
|
+
version="${base_version}.manual.${ci_build_number}"
|
|
84
|
+
else
|
|
85
|
+
version="${base_version}-${channel_suffix}.manual.${ci_build_number}"
|
|
86
|
+
fi
|
|
77
87
|
echo "📦 Generated version: ${version} (base: ${base_version})"
|
|
78
88
|
fi
|
|
79
89
|
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.305](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.304...v2.0.0-next.305)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2026-01-18**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **desktop**: Add auth required modal and improve error handling.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **desktop**: Add auth required modal and improve error handling, closes [#11574](https://github.com/lobehub/lobe-chat/issues/11574) ([4e5a516](https://github.com/lobehub/lobe-chat/commit/4e5a516))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
## [Version 2.0.0-next.304](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.303...v2.0.0-next.304)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2026-01-18**</sup>
|
package/apps/desktop/.i18nrc.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
const { defineConfig } = require('@lobehub/i18n-cli');
|
|
2
2
|
|
|
3
3
|
module.exports = defineConfig({
|
|
4
|
-
entry: 'resources/locales/
|
|
5
|
-
entryLocale: '
|
|
4
|
+
entry: 'resources/locales/en',
|
|
5
|
+
entryLocale: 'en',
|
|
6
6
|
output: 'resources/locales',
|
|
7
7
|
outputLocales: [
|
|
8
8
|
'ar',
|
|
9
9
|
'bg-BG',
|
|
10
10
|
'zh-TW',
|
|
11
|
-
'
|
|
11
|
+
'zh-CN',
|
|
12
12
|
'ru-RU',
|
|
13
13
|
'ja-JP',
|
|
14
14
|
'ko-KR',
|
|
@@ -22,9 +22,7 @@ export default defineConfig({
|
|
|
22
22
|
sourcemap: isDev ? 'inline' : false,
|
|
23
23
|
},
|
|
24
24
|
define: {
|
|
25
|
-
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
|
|
26
25
|
'process.env.UPDATE_CHANNEL': JSON.stringify(process.env.UPDATE_CHANNEL),
|
|
27
|
-
|
|
28
26
|
'process.env.UPDATE_SERVER_URL': JSON.stringify(process.env.UPDATE_SERVER_URL),
|
|
29
27
|
},
|
|
30
28
|
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "حدث خطأ أثناء العملية، يرجى المحاولة لاحقًا",
|
|
12
12
|
"error.message": "حدث خطأ",
|
|
13
13
|
"error.title": "خطأ",
|
|
14
|
+
"fullDiskAccess.message": "يحتاج LobeHub إلى الوصول الكامل إلى القرص لقراءة الملفات وتمكين ميزات قاعدة المعرفة. يرجى منح الوصول في إعدادات النظام.",
|
|
15
|
+
"fullDiskAccess.openSettings": "افتح الإعدادات",
|
|
16
|
+
"fullDiskAccess.skip": "لاحقًا",
|
|
17
|
+
"fullDiskAccess.title": "مطلوب الوصول الكامل إلى القرص",
|
|
14
18
|
"update.downloadAndInstall": "تنزيل وتثبيت",
|
|
15
19
|
"update.downloadComplete": "اكتمل التنزيل",
|
|
16
20
|
"update.downloadCompleteMessage": "تم تنزيل حزمة التحديث، هل ترغب في التثبيت الآن؟",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "تم اكتشاف إصدار جديد",
|
|
21
25
|
"update.newVersionAvailable": "تم اكتشاف إصدار جديد: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "تخطي هذا الإصدار"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "لوحة المطور",
|
|
4
4
|
"dev.devTools": "أدوات المطور",
|
|
5
5
|
"dev.forceReload": "إعادة تحميل قسري",
|
|
6
|
+
"dev.openSettingsFile": "فتح ملف الإعدادات",
|
|
6
7
|
"dev.openStore": "فتح ملف التخزين",
|
|
8
|
+
"dev.openUpdaterCacheDir": "فتح ذاكرة التخزين المؤقت للمحدث",
|
|
9
|
+
"dev.openUserDataDir": "فتح بيانات المستخدم",
|
|
10
|
+
"dev.permissions.accessibility.request": "طلب إذن الوصول",
|
|
11
|
+
"dev.permissions.fullDisk.open": "فتح إعدادات الوصول الكامل إلى القرص",
|
|
12
|
+
"dev.permissions.fullDisk.request": "طلب إذن الوصول الكامل إلى القرص",
|
|
13
|
+
"dev.permissions.microphone.request": "طلب إذن الميكروفون",
|
|
14
|
+
"dev.permissions.notification.request": "طلب إذن الإشعارات",
|
|
15
|
+
"dev.permissions.screen.request": "طلب إذن تسجيل الشاشة",
|
|
16
|
+
"dev.permissions.title": "الأذونات",
|
|
7
17
|
"dev.refreshMenu": "تحديث القائمة",
|
|
8
18
|
"dev.reload": "إعادة تحميل",
|
|
19
|
+
"dev.simulateAutoDownload": "محاكاة التنزيل التلقائي (3 ثوانٍ)",
|
|
20
|
+
"dev.simulateDownloadComplete": "محاكاة اكتمال التنزيل",
|
|
21
|
+
"dev.simulateDownloadProgress": "محاكاة تقدم التنزيل",
|
|
9
22
|
"dev.title": "تطوير",
|
|
23
|
+
"dev.updaterSimulation": "محاكاة المحدث",
|
|
10
24
|
"edit.copy": "نسخ",
|
|
11
25
|
"edit.cut": "قص",
|
|
12
26
|
"edit.delete": "حذف",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "ملف",
|
|
24
38
|
"help.about": "حول",
|
|
25
39
|
"help.githubRepo": "مستودع GitHub",
|
|
40
|
+
"help.openConfigDir": "فتح دليل الإعدادات",
|
|
41
|
+
"help.openLogsDir": "فتح دليل السجلات",
|
|
26
42
|
"help.reportIssue": "الإبلاغ عن مشكلة",
|
|
27
43
|
"help.title": "مساعدة",
|
|
28
44
|
"help.visitWebsite": "زيارة الموقع الرسمي",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "Възникна грешка по време на операцията, моля опитайте отново по-късно",
|
|
12
12
|
"error.message": "Възникна грешка",
|
|
13
13
|
"error.title": "Грешка",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub се нуждае от пълен достъп до диска, за да чете файлове и да активира функциите на базата знания. Моля, предоставете достъп в Системните настройки.",
|
|
15
|
+
"fullDiskAccess.openSettings": "Отвори настройки",
|
|
16
|
+
"fullDiskAccess.skip": "По-късно",
|
|
17
|
+
"fullDiskAccess.title": "Изисква се пълен достъп до диска",
|
|
14
18
|
"update.downloadAndInstall": "Изтегли и инсталирай",
|
|
15
19
|
"update.downloadComplete": "Изтеглянето е завършено",
|
|
16
20
|
"update.downloadCompleteMessage": "Актуализационният пакет е изтеглен, желаете ли да го инсталирате веднага?",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "Открита нова версия",
|
|
21
25
|
"update.newVersionAvailable": "Открита нова версия: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "Пропусни тази версия"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "Панел на разработчика",
|
|
4
4
|
"dev.devTools": "Инструменти за разработчици",
|
|
5
5
|
"dev.forceReload": "Принудително презареждане",
|
|
6
|
+
"dev.openSettingsFile": "Отвори файл с настройки",
|
|
6
7
|
"dev.openStore": "Отворете файла за съхранение",
|
|
8
|
+
"dev.openUpdaterCacheDir": "Отвори кеш на актуализации",
|
|
9
|
+
"dev.openUserDataDir": "Отвори потребителски данни",
|
|
10
|
+
"dev.permissions.accessibility.request": "Заяви разрешение за достъпност",
|
|
11
|
+
"dev.permissions.fullDisk.open": "Отвори настройки за пълен достъп до диска",
|
|
12
|
+
"dev.permissions.fullDisk.request": "Заяви разрешение за пълен достъп до диска",
|
|
13
|
+
"dev.permissions.microphone.request": "Заяви разрешение за микрофон",
|
|
14
|
+
"dev.permissions.notification.request": "Заяви разрешение за известия",
|
|
15
|
+
"dev.permissions.screen.request": "Заяви разрешение за запис на екрана",
|
|
16
|
+
"dev.permissions.title": "Разрешения",
|
|
7
17
|
"dev.refreshMenu": "Освежаване на менюто",
|
|
8
18
|
"dev.reload": "Презареждане",
|
|
19
|
+
"dev.simulateAutoDownload": "Симулирай автоматично изтегляне (3с)",
|
|
20
|
+
"dev.simulateDownloadComplete": "Симулирай завършване на изтегляне",
|
|
21
|
+
"dev.simulateDownloadProgress": "Симулирай напредък на изтегляне",
|
|
9
22
|
"dev.title": "Разработка",
|
|
23
|
+
"dev.updaterSimulation": "Симулация на актуализатор",
|
|
10
24
|
"edit.copy": "Копиране",
|
|
11
25
|
"edit.cut": "Изрязване",
|
|
12
26
|
"edit.delete": "Изтрий",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "Файл",
|
|
24
38
|
"help.about": "За",
|
|
25
39
|
"help.githubRepo": "GitHub хранилище",
|
|
40
|
+
"help.openConfigDir": "Отвори директория с конфигурации",
|
|
41
|
+
"help.openLogsDir": "Отвори директория с логове",
|
|
26
42
|
"help.reportIssue": "Докладвай проблем",
|
|
27
43
|
"help.title": "Помощ",
|
|
28
44
|
"help.visitWebsite": "Посети уебсайта",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "Während der Operation ist ein Fehler aufgetreten, bitte versuchen Sie es später erneut",
|
|
12
12
|
"error.message": "Ein Fehler ist aufgetreten",
|
|
13
13
|
"error.title": "Fehler",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub benötigt vollen Festplattenzugriff, um Dateien zu lesen und Funktionen der Wissensdatenbank zu aktivieren. Bitte gewähren Sie den Zugriff in den Systemeinstellungen.",
|
|
15
|
+
"fullDiskAccess.openSettings": "Einstellungen öffnen",
|
|
16
|
+
"fullDiskAccess.skip": "Später",
|
|
17
|
+
"fullDiskAccess.title": "Voller Festplattenzugriff erforderlich",
|
|
14
18
|
"update.downloadAndInstall": "Herunterladen und installieren",
|
|
15
19
|
"update.downloadComplete": "Download abgeschlossen",
|
|
16
20
|
"update.downloadCompleteMessage": "Das Update-Paket wurde heruntergeladen, möchten Sie es jetzt installieren?",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "Neue Version gefunden",
|
|
21
25
|
"update.newVersionAvailable": "Neue Version verfügbar: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "Diese Version überspringen"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "Entwicklerpanel",
|
|
4
4
|
"dev.devTools": "Entwicklerwerkzeuge",
|
|
5
5
|
"dev.forceReload": "Erzwinge Neuladen",
|
|
6
|
+
"dev.openSettingsFile": "Einstellungsdatei öffnen",
|
|
6
7
|
"dev.openStore": "Speicherdatei öffnen",
|
|
8
|
+
"dev.openUpdaterCacheDir": "Updater-Cache öffnen",
|
|
9
|
+
"dev.openUserDataDir": "Benutzerdaten öffnen",
|
|
10
|
+
"dev.permissions.accessibility.request": "Zugriffsberechtigung anfordern",
|
|
11
|
+
"dev.permissions.fullDisk.open": "Einstellungen für vollen Festplattenzugriff öffnen",
|
|
12
|
+
"dev.permissions.fullDisk.request": "Berechtigung für vollen Festplattenzugriff anfordern",
|
|
13
|
+
"dev.permissions.microphone.request": "Mikrofonberechtigung anfordern",
|
|
14
|
+
"dev.permissions.notification.request": "Benachrichtigungsberechtigung anfordern",
|
|
15
|
+
"dev.permissions.screen.request": "Bildschirmaufnahmeberechtigung anfordern",
|
|
16
|
+
"dev.permissions.title": "Berechtigungen",
|
|
7
17
|
"dev.refreshMenu": "Menü aktualisieren",
|
|
8
18
|
"dev.reload": "Neuladen",
|
|
19
|
+
"dev.simulateAutoDownload": "Automatischen Download simulieren (3s)",
|
|
20
|
+
"dev.simulateDownloadComplete": "Download abgeschlossen simulieren",
|
|
21
|
+
"dev.simulateDownloadProgress": "Downloadfortschritt simulieren",
|
|
9
22
|
"dev.title": "Entwicklung",
|
|
23
|
+
"dev.updaterSimulation": "Updater-Simulation",
|
|
10
24
|
"edit.copy": "Kopieren",
|
|
11
25
|
"edit.cut": "Ausschneiden",
|
|
12
26
|
"edit.delete": "Löschen",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "Datei",
|
|
24
38
|
"help.about": "Über",
|
|
25
39
|
"help.githubRepo": "GitHub-Repository",
|
|
40
|
+
"help.openConfigDir": "Konfigurationsverzeichnis öffnen",
|
|
41
|
+
"help.openLogsDir": "Protokollverzeichnis öffnen",
|
|
26
42
|
"help.reportIssue": "Problem melden",
|
|
27
43
|
"help.title": "Hilfe",
|
|
28
44
|
"help.visitWebsite": "Besuche die Website",
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions.add": "Add",
|
|
3
|
+
"actions.back": "Back",
|
|
4
|
+
"actions.cancel": "Cancel",
|
|
5
|
+
"actions.close": "Close",
|
|
6
|
+
"actions.confirm": "Confirm",
|
|
7
|
+
"actions.delete": "Delete",
|
|
8
|
+
"actions.edit": "Edit",
|
|
9
|
+
"actions.more": "More",
|
|
10
|
+
"actions.next": "Next",
|
|
11
|
+
"actions.ok": "OK",
|
|
12
|
+
"actions.previous": "Previous",
|
|
13
|
+
"actions.refresh": "Refresh",
|
|
14
|
+
"actions.remove": "Remove",
|
|
15
|
+
"actions.retry": "Retry",
|
|
16
|
+
"actions.save": "Save",
|
|
17
|
+
"actions.search": "Search",
|
|
18
|
+
"actions.submit": "Submit",
|
|
19
|
+
"app.description": "Where Agents Collaborate",
|
|
20
|
+
"app.name": "LobeHub",
|
|
21
|
+
"status.error": "Error",
|
|
22
|
+
"status.info": "Information",
|
|
23
|
+
"status.loading": "Loading",
|
|
24
|
+
"status.success": "Success",
|
|
25
|
+
"status.warning": "Warning"
|
|
26
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"about.button": "OK",
|
|
3
|
+
"about.detail": "An LLM-powered chat app",
|
|
4
|
+
"about.message": "{{appName}} {{appVersion}}",
|
|
5
|
+
"about.title": "About",
|
|
6
|
+
"confirm.cancel": "Cancel",
|
|
7
|
+
"confirm.no": "Cancel",
|
|
8
|
+
"confirm.title": "Please confirm",
|
|
9
|
+
"confirm.yes": "Continue",
|
|
10
|
+
"error.button": "OK",
|
|
11
|
+
"error.detail": "Couldn't complete the action. Retry or try again later.",
|
|
12
|
+
"error.message": "An error occurred",
|
|
13
|
+
"error.title": "Error",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub needs Full Disk Access to read files and enable knowledge base features. Please grant access in System Settings.",
|
|
15
|
+
"fullDiskAccess.openSettings": "Open Settings",
|
|
16
|
+
"fullDiskAccess.skip": "Later",
|
|
17
|
+
"fullDiskAccess.title": "Full Disk Access Required",
|
|
18
|
+
"update.downloadAndInstall": "Download and Install",
|
|
19
|
+
"update.downloadComplete": "Download Complete",
|
|
20
|
+
"update.downloadCompleteMessage": "Update downloaded. Install now?",
|
|
21
|
+
"update.installLater": "Install Later",
|
|
22
|
+
"update.installNow": "Install Now",
|
|
23
|
+
"update.later": "Remind Me Later",
|
|
24
|
+
"update.newVersion": "New Version Found",
|
|
25
|
+
"update.newVersionAvailable": "New version: {{version}}",
|
|
26
|
+
"update.skipThisVersion": "Skip This Version"
|
|
27
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common.checkUpdates": "Check for updates...",
|
|
3
|
+
"dev.devPanel": "Developer Panel",
|
|
4
|
+
"dev.devTools": "Developer Tools",
|
|
5
|
+
"dev.forceReload": "Force Reload",
|
|
6
|
+
"dev.openSettingsFile": "Open Settings File",
|
|
7
|
+
"dev.openStore": "Open Data Folder",
|
|
8
|
+
"dev.openUpdaterCacheDir": "Open Updater Cache",
|
|
9
|
+
"dev.openUserDataDir": "Open User Data",
|
|
10
|
+
"dev.permissions.accessibility.request": "Request Accessibility Permission",
|
|
11
|
+
"dev.permissions.fullDisk.open": "Open Full Disk Access Settings",
|
|
12
|
+
"dev.permissions.fullDisk.request": "Request Full Disk Access Permission",
|
|
13
|
+
"dev.permissions.microphone.request": "Request Microphone Permission",
|
|
14
|
+
"dev.permissions.notification.request": "Request Notification Permission",
|
|
15
|
+
"dev.permissions.screen.request": "Request Screen Recording Permission",
|
|
16
|
+
"dev.permissions.title": "Permissions",
|
|
17
|
+
"dev.refreshMenu": "Refresh Menu",
|
|
18
|
+
"dev.reload": "Reload",
|
|
19
|
+
"dev.simulateAutoDownload": "Simulate Auto Download (3s)",
|
|
20
|
+
"dev.simulateDownloadComplete": "Simulate Download Complete",
|
|
21
|
+
"dev.simulateDownloadProgress": "Simulate Download Progress",
|
|
22
|
+
"dev.title": "Development",
|
|
23
|
+
"dev.updaterSimulation": "Updater Simulation",
|
|
24
|
+
"edit.copy": "Copy",
|
|
25
|
+
"edit.cut": "Cut",
|
|
26
|
+
"edit.delete": "Delete",
|
|
27
|
+
"edit.paste": "Paste",
|
|
28
|
+
"edit.redo": "Redo",
|
|
29
|
+
"edit.selectAll": "Select All",
|
|
30
|
+
"edit.speech": "Speech",
|
|
31
|
+
"edit.startSpeaking": "Start Speaking",
|
|
32
|
+
"edit.stopSpeaking": "Stop Speaking",
|
|
33
|
+
"edit.title": "Edit",
|
|
34
|
+
"edit.undo": "Undo",
|
|
35
|
+
"file.preferences": "Preferences",
|
|
36
|
+
"file.quit": "Quit",
|
|
37
|
+
"file.title": "File",
|
|
38
|
+
"help.about": "About",
|
|
39
|
+
"help.githubRepo": "GitHub Repository",
|
|
40
|
+
"help.openConfigDir": "Open Config Directory",
|
|
41
|
+
"help.openLogsDir": "Open Logs Directory",
|
|
42
|
+
"help.reportIssue": "Send Feedback",
|
|
43
|
+
"help.title": "Help",
|
|
44
|
+
"help.visitWebsite": "Open Website",
|
|
45
|
+
"history.back": "Back",
|
|
46
|
+
"history.forward": "Forward",
|
|
47
|
+
"history.home": "Home",
|
|
48
|
+
"history.title": "Go",
|
|
49
|
+
"macOS.about": "About {{appName}}",
|
|
50
|
+
"macOS.devTools": "LobeHub Developer Tools",
|
|
51
|
+
"macOS.hide": "Hide {{appName}}",
|
|
52
|
+
"macOS.hideOthers": "Hide Others",
|
|
53
|
+
"macOS.preferences": "Preferences...",
|
|
54
|
+
"macOS.services": "Services",
|
|
55
|
+
"macOS.unhide": "Show All",
|
|
56
|
+
"tray.open": "Open {{appName}}",
|
|
57
|
+
"tray.quit": "Quit",
|
|
58
|
+
"tray.show": "Show {{appName}}",
|
|
59
|
+
"view.forceReload": "Force Reload",
|
|
60
|
+
"view.reload": "Reload",
|
|
61
|
+
"view.resetZoom": "Reset Zoom",
|
|
62
|
+
"view.title": "View",
|
|
63
|
+
"view.toggleFullscreen": "Toggle Fullscreen",
|
|
64
|
+
"view.zoomIn": "Zoom In",
|
|
65
|
+
"view.zoomOut": "Zoom Out",
|
|
66
|
+
"window.bringAllToFront": "Bring All Windows to Front",
|
|
67
|
+
"window.close": "Close",
|
|
68
|
+
"window.front": "Bring All Windows to Front",
|
|
69
|
+
"window.minimize": "Minimize",
|
|
70
|
+
"window.title": "Window",
|
|
71
|
+
"window.toggleFullscreen": "Toggle Fullscreen",
|
|
72
|
+
"window.zoom": "Zoom"
|
|
73
|
+
}
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "Se produjo un error durante la operación, por favor intente de nuevo más tarde",
|
|
12
12
|
"error.message": "Se produjo un error",
|
|
13
13
|
"error.title": "Error",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub necesita acceso completo al disco para leer archivos y habilitar las funciones de la base de conocimientos. Por favor, concede acceso en la Configuración del Sistema.",
|
|
15
|
+
"fullDiskAccess.openSettings": "Abrir Configuración",
|
|
16
|
+
"fullDiskAccess.skip": "Más tarde",
|
|
17
|
+
"fullDiskAccess.title": "Se requiere acceso completo al disco",
|
|
14
18
|
"update.downloadAndInstall": "Descargar e instalar",
|
|
15
19
|
"update.downloadComplete": "Descarga completada",
|
|
16
20
|
"update.downloadCompleteMessage": "El paquete de actualización se ha descargado, ¿desea instalarlo ahora?",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "Nueva versión disponible",
|
|
21
25
|
"update.newVersionAvailable": "Nueva versión encontrada: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "Saltar esta versión"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "Panel de desarrollador",
|
|
4
4
|
"dev.devTools": "Herramientas de desarrollador",
|
|
5
5
|
"dev.forceReload": "Recargar forzosamente",
|
|
6
|
+
"dev.openSettingsFile": "Abrir archivo de configuración",
|
|
6
7
|
"dev.openStore": "Abrir archivo de almacenamiento",
|
|
8
|
+
"dev.openUpdaterCacheDir": "Abrir caché del actualizador",
|
|
9
|
+
"dev.openUserDataDir": "Abrir datos de usuario",
|
|
10
|
+
"dev.permissions.accessibility.request": "Solicitar permiso de accesibilidad",
|
|
11
|
+
"dev.permissions.fullDisk.open": "Abrir configuración de acceso completo al disco",
|
|
12
|
+
"dev.permissions.fullDisk.request": "Solicitar permiso de acceso completo al disco",
|
|
13
|
+
"dev.permissions.microphone.request": "Solicitar permiso de micrófono",
|
|
14
|
+
"dev.permissions.notification.request": "Solicitar permiso de notificaciones",
|
|
15
|
+
"dev.permissions.screen.request": "Solicitar permiso para grabar pantalla",
|
|
16
|
+
"dev.permissions.title": "Permisos",
|
|
7
17
|
"dev.refreshMenu": "Actualizar menú",
|
|
8
18
|
"dev.reload": "Recargar",
|
|
19
|
+
"dev.simulateAutoDownload": "Simular descarga automática (3s)",
|
|
20
|
+
"dev.simulateDownloadComplete": "Simular descarga completada",
|
|
21
|
+
"dev.simulateDownloadProgress": "Simular progreso de descarga",
|
|
9
22
|
"dev.title": "Desarrollo",
|
|
23
|
+
"dev.updaterSimulation": "Simulación del actualizador",
|
|
10
24
|
"edit.copy": "Copiar",
|
|
11
25
|
"edit.cut": "Cortar",
|
|
12
26
|
"edit.delete": "Eliminar",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "Archivo",
|
|
24
38
|
"help.about": "Acerca de",
|
|
25
39
|
"help.githubRepo": "Repositorio de GitHub",
|
|
40
|
+
"help.openConfigDir": "Abrir directorio de configuración",
|
|
41
|
+
"help.openLogsDir": "Abrir directorio de registros",
|
|
26
42
|
"help.reportIssue": "Reportar un problema",
|
|
27
43
|
"help.title": "Ayuda",
|
|
28
44
|
"help.visitWebsite": "Visitar el sitio web",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "در حین انجام عملیات خطایی رخ داده است، لطفاً بعداً دوباره تلاش کنید",
|
|
12
12
|
"error.message": "خطا رخ داده است",
|
|
13
13
|
"error.title": "خطا",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub برای خواندن فایلها و فعالسازی ویژگیهای پایگاه دانش به دسترسی کامل به دیسک نیاز دارد. لطفاً در تنظیمات سیستم دسترسی را اعطا کنید.",
|
|
15
|
+
"fullDiskAccess.openSettings": "باز کردن تنظیمات",
|
|
16
|
+
"fullDiskAccess.skip": "بعداً",
|
|
17
|
+
"fullDiskAccess.title": "دسترسی کامل به دیسک مورد نیاز است",
|
|
14
18
|
"update.downloadAndInstall": "دانلود و نصب",
|
|
15
19
|
"update.downloadComplete": "دانلود کامل شد",
|
|
16
20
|
"update.downloadCompleteMessage": "بسته بهروزرسانی دانلود شده است، آیا میخواهید بلافاصله نصب کنید؟",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "نسخه جدیدی پیدا شد",
|
|
21
25
|
"update.newVersionAvailable": "نسخه جدید پیدا شد: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "این نسخه را نادیده بگیرید"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "پنل توسعهدهنده",
|
|
4
4
|
"dev.devTools": "ابزارهای توسعهدهنده",
|
|
5
5
|
"dev.forceReload": "بارگذاری اجباری",
|
|
6
|
+
"dev.openSettingsFile": "باز کردن فایل تنظیمات",
|
|
6
7
|
"dev.openStore": "باز کردن فایلهای ذخیره شده",
|
|
8
|
+
"dev.openUpdaterCacheDir": "باز کردن کش بهروزرسان",
|
|
9
|
+
"dev.openUserDataDir": "باز کردن دادههای کاربر",
|
|
10
|
+
"dev.permissions.accessibility.request": "درخواست دسترسی به قابلیتهای دسترسی",
|
|
11
|
+
"dev.permissions.fullDisk.open": "باز کردن تنظیمات دسترسی کامل به دیسک",
|
|
12
|
+
"dev.permissions.fullDisk.request": "درخواست دسترسی کامل به دیسک",
|
|
13
|
+
"dev.permissions.microphone.request": "درخواست دسترسی به میکروفون",
|
|
14
|
+
"dev.permissions.notification.request": "درخواست دسترسی به اعلانها",
|
|
15
|
+
"dev.permissions.screen.request": "درخواست دسترسی به ضبط صفحه",
|
|
16
|
+
"dev.permissions.title": "مجوزها",
|
|
7
17
|
"dev.refreshMenu": "بهروزرسانی منو",
|
|
8
18
|
"dev.reload": "بارگذاری مجدد",
|
|
19
|
+
"dev.simulateAutoDownload": "شبیهسازی دانلود خودکار (۳ ثانیه)",
|
|
20
|
+
"dev.simulateDownloadComplete": "شبیهسازی اتمام دانلود",
|
|
21
|
+
"dev.simulateDownloadProgress": "شبیهسازی پیشرفت دانلود",
|
|
9
22
|
"dev.title": "توسعه",
|
|
23
|
+
"dev.updaterSimulation": "شبیهسازی بهروزرسان",
|
|
10
24
|
"edit.copy": "کپی",
|
|
11
25
|
"edit.cut": "برش",
|
|
12
26
|
"edit.delete": "حذف",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "فایل",
|
|
24
38
|
"help.about": "درباره",
|
|
25
39
|
"help.githubRepo": "مخزن GitHub",
|
|
40
|
+
"help.openConfigDir": "باز کردن پوشه تنظیمات",
|
|
41
|
+
"help.openLogsDir": "باز کردن پوشه گزارشها",
|
|
26
42
|
"help.reportIssue": "گزارش مشکل",
|
|
27
43
|
"help.title": "کمک",
|
|
28
44
|
"help.visitWebsite": "بازدید از وبسایت",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "Une erreur s'est produite lors de l'opération, veuillez réessayer plus tard",
|
|
12
12
|
"error.message": "Une erreur s'est produite",
|
|
13
13
|
"error.title": "Erreur",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub nécessite un accès complet au disque pour lire les fichiers et activer les fonctionnalités de la base de connaissances. Veuillez accorder l'accès dans les paramètres système.",
|
|
15
|
+
"fullDiskAccess.openSettings": "Ouvrir les paramètres",
|
|
16
|
+
"fullDiskAccess.skip": "Plus tard",
|
|
17
|
+
"fullDiskAccess.title": "Accès complet au disque requis",
|
|
14
18
|
"update.downloadAndInstall": "Télécharger et installer",
|
|
15
19
|
"update.downloadComplete": "Téléchargement terminé",
|
|
16
20
|
"update.downloadCompleteMessage": "Le paquet de mise à jour a été téléchargé, souhaitez-vous l'installer maintenant ?",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "Nouvelle version détectée",
|
|
21
25
|
"update.newVersionAvailable": "Nouvelle version disponible : {{version}}",
|
|
22
26
|
"update.skipThisVersion": "Ignorer cette version"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "Panneau de développement",
|
|
4
4
|
"dev.devTools": "Outils de développement",
|
|
5
5
|
"dev.forceReload": "Recharger de force",
|
|
6
|
+
"dev.openSettingsFile": "Ouvrir le fichier de configuration",
|
|
6
7
|
"dev.openStore": "Ouvrir le fichier de stockage",
|
|
8
|
+
"dev.openUpdaterCacheDir": "Ouvrir le cache de mise à jour",
|
|
9
|
+
"dev.openUserDataDir": "Ouvrir les données utilisateur",
|
|
10
|
+
"dev.permissions.accessibility.request": "Demander l'autorisation d'accessibilité",
|
|
11
|
+
"dev.permissions.fullDisk.open": "Ouvrir les paramètres d'accès complet au disque",
|
|
12
|
+
"dev.permissions.fullDisk.request": "Demander l'autorisation d'accès complet au disque",
|
|
13
|
+
"dev.permissions.microphone.request": "Demander l'autorisation du microphone",
|
|
14
|
+
"dev.permissions.notification.request": "Demander l'autorisation de notification",
|
|
15
|
+
"dev.permissions.screen.request": "Demander l'autorisation d'enregistrement d'écran",
|
|
16
|
+
"dev.permissions.title": "Autorisations",
|
|
7
17
|
"dev.refreshMenu": "Rafraîchir le menu",
|
|
8
18
|
"dev.reload": "Recharger",
|
|
19
|
+
"dev.simulateAutoDownload": "Simuler le téléchargement automatique (3s)",
|
|
20
|
+
"dev.simulateDownloadComplete": "Simuler le téléchargement terminé",
|
|
21
|
+
"dev.simulateDownloadProgress": "Simuler la progression du téléchargement",
|
|
9
22
|
"dev.title": "Développement",
|
|
23
|
+
"dev.updaterSimulation": "Simulation de mise à jour",
|
|
10
24
|
"edit.copy": "Copier",
|
|
11
25
|
"edit.cut": "Couper",
|
|
12
26
|
"edit.delete": "Supprimer",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "Fichier",
|
|
24
38
|
"help.about": "À propos",
|
|
25
39
|
"help.githubRepo": "Dépôt GitHub",
|
|
40
|
+
"help.openConfigDir": "Ouvrir le répertoire de configuration",
|
|
41
|
+
"help.openLogsDir": "Ouvrir le répertoire des journaux",
|
|
26
42
|
"help.reportIssue": "Signaler un problème",
|
|
27
43
|
"help.title": "Aide",
|
|
28
44
|
"help.visitWebsite": "Visiter le site officiel",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "Si è verificato un errore durante l'operazione, riprovare più tardi",
|
|
12
12
|
"error.message": "Si è verificato un errore",
|
|
13
13
|
"error.title": "Errore",
|
|
14
|
+
"fullDiskAccess.message": "LobeHub necessita dell'accesso completo al disco per leggere i file e abilitare le funzionalità della base di conoscenza. Si prega di concedere l'accesso nelle Impostazioni di Sistema.",
|
|
15
|
+
"fullDiskAccess.openSettings": "Apri Impostazioni",
|
|
16
|
+
"fullDiskAccess.skip": "Più tardi",
|
|
17
|
+
"fullDiskAccess.title": "Accesso Completo al Disco Richiesto",
|
|
14
18
|
"update.downloadAndInstall": "Scarica e installa",
|
|
15
19
|
"update.downloadComplete": "Download completato",
|
|
16
20
|
"update.downloadCompleteMessage": "Il pacchetto di aggiornamento è stato scaricato, vuoi installarlo subito?",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "Nuova versione disponibile",
|
|
21
25
|
"update.newVersionAvailable": "Nuova versione trovata: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "Salta questa versione"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "Pannello sviluppatore",
|
|
4
4
|
"dev.devTools": "Strumenti per sviluppatori",
|
|
5
5
|
"dev.forceReload": "Ricarica forzata",
|
|
6
|
+
"dev.openSettingsFile": "Apri file impostazioni",
|
|
6
7
|
"dev.openStore": "Apri il file di archiviazione",
|
|
8
|
+
"dev.openUpdaterCacheDir": "Apri cache aggiornamenti",
|
|
9
|
+
"dev.openUserDataDir": "Apri dati utente",
|
|
10
|
+
"dev.permissions.accessibility.request": "Richiedi permesso di accessibilità",
|
|
11
|
+
"dev.permissions.fullDisk.open": "Apri impostazioni accesso completo al disco",
|
|
12
|
+
"dev.permissions.fullDisk.request": "Richiedi permesso di accesso completo al disco",
|
|
13
|
+
"dev.permissions.microphone.request": "Richiedi permesso microfono",
|
|
14
|
+
"dev.permissions.notification.request": "Richiedi permesso notifiche",
|
|
15
|
+
"dev.permissions.screen.request": "Richiedi permesso registrazione schermo",
|
|
16
|
+
"dev.permissions.title": "Permessi",
|
|
7
17
|
"dev.refreshMenu": "Aggiorna menu",
|
|
8
18
|
"dev.reload": "Ricarica",
|
|
19
|
+
"dev.simulateAutoDownload": "Simula download automatico (3s)",
|
|
20
|
+
"dev.simulateDownloadComplete": "Simula completamento download",
|
|
21
|
+
"dev.simulateDownloadProgress": "Simula progresso download",
|
|
9
22
|
"dev.title": "Sviluppo",
|
|
23
|
+
"dev.updaterSimulation": "Simulazione aggiornamento",
|
|
10
24
|
"edit.copy": "Copia",
|
|
11
25
|
"edit.cut": "Taglia",
|
|
12
26
|
"edit.delete": "Elimina",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "File",
|
|
24
38
|
"help.about": "Informazioni",
|
|
25
39
|
"help.githubRepo": "Repository GitHub",
|
|
40
|
+
"help.openConfigDir": "Apri directory configurazione",
|
|
41
|
+
"help.openLogsDir": "Apri directory log",
|
|
26
42
|
"help.reportIssue": "Segnala un problema",
|
|
27
43
|
"help.title": "Aiuto",
|
|
28
44
|
"help.visitWebsite": "Visita il sito ufficiale",
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
"error.detail": "操作中にエラーが発生しました。後で再試行してください。",
|
|
12
12
|
"error.message": "エラーが発生しました",
|
|
13
13
|
"error.title": "エラー",
|
|
14
|
+
"fullDiskAccess.message": "LobeHubはファイルを読み取り、ナレッジベース機能を有効にするためにフルディスクアクセスが必要です。システム設定でアクセスを許可してください。",
|
|
15
|
+
"fullDiskAccess.openSettings": "設定を開く",
|
|
16
|
+
"fullDiskAccess.skip": "後で",
|
|
17
|
+
"fullDiskAccess.title": "フルディスクアクセスが必要です",
|
|
14
18
|
"update.downloadAndInstall": "ダウンロードしてインストール",
|
|
15
19
|
"update.downloadComplete": "ダウンロード完了",
|
|
16
20
|
"update.downloadCompleteMessage": "更新パッケージのダウンロードが完了しました。今すぐインストールしますか?",
|
|
@@ -20,4 +24,4 @@
|
|
|
20
24
|
"update.newVersion": "新しいバージョンが見つかりました",
|
|
21
25
|
"update.newVersionAvailable": "新しいバージョンが見つかりました: {{version}}",
|
|
22
26
|
"update.skipThisVersion": "このバージョンをスキップ"
|
|
23
|
-
}
|
|
27
|
+
}
|
|
@@ -3,10 +3,24 @@
|
|
|
3
3
|
"dev.devPanel": "開発者パネル",
|
|
4
4
|
"dev.devTools": "開発者ツール",
|
|
5
5
|
"dev.forceReload": "強制再読み込み",
|
|
6
|
+
"dev.openSettingsFile": "設定ファイルを開く",
|
|
6
7
|
"dev.openStore": "ストレージファイルを開く",
|
|
8
|
+
"dev.openUpdaterCacheDir": "アップデーターキャッシュを開く",
|
|
9
|
+
"dev.openUserDataDir": "ユーザーデータを開く",
|
|
10
|
+
"dev.permissions.accessibility.request": "アクセシビリティ権限をリクエスト",
|
|
11
|
+
"dev.permissions.fullDisk.open": "フルディスクアクセス設定を開く",
|
|
12
|
+
"dev.permissions.fullDisk.request": "フルディスクアクセス権限をリクエスト",
|
|
13
|
+
"dev.permissions.microphone.request": "マイク権限をリクエスト",
|
|
14
|
+
"dev.permissions.notification.request": "通知権限をリクエスト",
|
|
15
|
+
"dev.permissions.screen.request": "画面録画権限をリクエスト",
|
|
16
|
+
"dev.permissions.title": "権限",
|
|
7
17
|
"dev.refreshMenu": "メニューを更新",
|
|
8
18
|
"dev.reload": "再読み込み",
|
|
19
|
+
"dev.simulateAutoDownload": "自動ダウンロードをシミュレート(3秒)",
|
|
20
|
+
"dev.simulateDownloadComplete": "ダウンロード完了をシミュレート",
|
|
21
|
+
"dev.simulateDownloadProgress": "ダウンロード進行をシミュレート",
|
|
9
22
|
"dev.title": "開発",
|
|
23
|
+
"dev.updaterSimulation": "アップデーターシミュレーション",
|
|
10
24
|
"edit.copy": "コピー",
|
|
11
25
|
"edit.cut": "切り取り",
|
|
12
26
|
"edit.delete": "削除",
|
|
@@ -23,6 +37,8 @@
|
|
|
23
37
|
"file.title": "ファイル",
|
|
24
38
|
"help.about": "について",
|
|
25
39
|
"help.githubRepo": "GitHub リポジトリ",
|
|
40
|
+
"help.openConfigDir": "設定ディレクトリを開く",
|
|
41
|
+
"help.openLogsDir": "ログディレクトリを開く",
|
|
26
42
|
"help.reportIssue": "問題を報告",
|
|
27
43
|
"help.title": "ヘルプ",
|
|
28
44
|
"help.visitWebsite": "公式ウェブサイトを訪問",
|