@cat-factory/app 0.113.0 → 0.114.0
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/app/components/auth/BackendMisconfiguredScreen.vue +10 -0
- package/i18n/locales/de.json +1 -0
- package/i18n/locales/en.json +1 -0
- package/i18n/locales/es.json +1 -0
- package/i18n/locales/fr.json +1 -0
- package/i18n/locales/he.json +1 -0
- package/i18n/locales/it.json +1 -0
- package/i18n/locales/ja.json +1 -0
- package/i18n/locales/pl.json +1 -0
- package/i18n/locales/tr.json +1 -0
- package/i18n/locales/uk.json +1 -0
- package/package.json +2 -2
|
@@ -41,6 +41,16 @@ function reload() {
|
|
|
41
41
|
<span class="font-medium text-slate-300">{{ t('app.misconfigured.howToFix') }}</span>
|
|
42
42
|
{{ problem.remedy }}
|
|
43
43
|
</p>
|
|
44
|
+
<a
|
|
45
|
+
v-if="problem.docsUrl"
|
|
46
|
+
:href="problem.docsUrl"
|
|
47
|
+
target="_blank"
|
|
48
|
+
rel="noopener noreferrer"
|
|
49
|
+
class="mt-2 inline-flex items-center gap-1 text-sm text-amber-300 hover:text-amber-200"
|
|
50
|
+
>
|
|
51
|
+
<UIcon name="i-lucide-book-open" class="h-4 w-4" />
|
|
52
|
+
{{ t('app.misconfigured.viewDocs') }}
|
|
53
|
+
</a>
|
|
44
54
|
</li>
|
|
45
55
|
</ul>
|
|
46
56
|
|
package/i18n/locales/de.json
CHANGED
|
@@ -3654,6 +3654,7 @@
|
|
|
3654
3654
|
"title": "Backend nicht konfiguriert",
|
|
3655
3655
|
"intro": "Der Server wurde gestartet, kann aber erst laufen, wenn die folgenden Einstellungen vorhanden sind. Ergänze die fehlenden Werte in deiner Umgebung und lade neu.",
|
|
3656
3656
|
"howToFix": "So behebst du es:",
|
|
3657
|
+
"viewDocs": "Dokumentation ansehen",
|
|
3657
3658
|
"reload": "Neu laden",
|
|
3658
3659
|
"hint": "Hier werden nur Variablennamen und deren Einrichtung angezeigt, niemals geheime Werte."
|
|
3659
3660
|
}
|
package/i18n/locales/en.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "Backend not configured",
|
|
10
10
|
"intro": "The server started but can't run until the settings below are provided. Add the missing values to your environment, then reload.",
|
|
11
11
|
"howToFix": "How to fix:",
|
|
12
|
+
"viewDocs": "View documentation",
|
|
12
13
|
"reload": "Reload",
|
|
13
14
|
"hint": "Only variable names and how to set them are shown here, never any secret values."
|
|
14
15
|
}
|
package/i18n/locales/es.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "Backend sin configurar",
|
|
10
10
|
"intro": "El servidor se inició pero no puede funcionar hasta que se proporcionen los ajustes siguientes. Añade los valores que faltan a tu entorno y vuelve a cargar.",
|
|
11
11
|
"howToFix": "Cómo solucionarlo:",
|
|
12
|
+
"viewDocs": "Ver la documentación",
|
|
12
13
|
"reload": "Recargar",
|
|
13
14
|
"hint": "Aquí solo se muestran los nombres de las variables y cómo definirlas, nunca valores secretos."
|
|
14
15
|
}
|
package/i18n/locales/fr.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "Backend non configuré",
|
|
10
10
|
"intro": "Le serveur a démarré mais ne peut pas fonctionner tant que les paramètres ci-dessous ne sont pas fournis. Ajoutez les valeurs manquantes à votre environnement, puis rechargez.",
|
|
11
11
|
"howToFix": "Comment corriger :",
|
|
12
|
+
"viewDocs": "Voir la documentation",
|
|
12
13
|
"reload": "Recharger",
|
|
13
14
|
"hint": "Seuls les noms des variables et la façon de les définir sont affichés ici, jamais de valeurs secrètes."
|
|
14
15
|
}
|
package/i18n/locales/he.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "השרת אינו מוגדר",
|
|
10
10
|
"intro": "השרת עלה אך אינו יכול לפעול עד שהערכים הבאים יסופקו. הוסיפו את הערכים החסרים לסביבה שלכם וטענו מחדש.",
|
|
11
11
|
"howToFix": "איך לתקן:",
|
|
12
|
+
"viewDocs": "צפייה בתיעוד",
|
|
12
13
|
"reload": "טעינה מחדש",
|
|
13
14
|
"hint": "כאן מוצגים רק שמות המשתנים וכיצד להגדיר אותם, לעולם לא ערכים סודיים."
|
|
14
15
|
}
|
package/i18n/locales/it.json
CHANGED
|
@@ -3654,6 +3654,7 @@
|
|
|
3654
3654
|
"title": "Backend non configurato",
|
|
3655
3655
|
"intro": "Il server è avviato ma non può funzionare finché non vengono forniti i parametri seguenti. Aggiungi i valori mancanti al tuo ambiente e ricarica.",
|
|
3656
3656
|
"howToFix": "Come risolvere:",
|
|
3657
|
+
"viewDocs": "Vedi la documentazione",
|
|
3657
3658
|
"reload": "Ricarica",
|
|
3658
3659
|
"hint": "Qui vengono mostrati solo i nomi delle variabili e come impostarle, mai valori segreti."
|
|
3659
3660
|
}
|
package/i18n/locales/ja.json
CHANGED
package/i18n/locales/pl.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "Backend nie jest skonfigurowany",
|
|
10
10
|
"intro": "Serwer wystartował, ale nie zadziała, dopóki nie uzupełnisz poniższych ustawień. Dodaj brakujące wartości do swojego środowiska i odśwież.",
|
|
11
11
|
"howToFix": "Jak naprawić:",
|
|
12
|
+
"viewDocs": "Zobacz dokumentację",
|
|
12
13
|
"reload": "Odśwież",
|
|
13
14
|
"hint": "Tutaj pokazujemy tylko nazwy zmiennych i sposób ich ustawienia, nigdy wartości sekretnych."
|
|
14
15
|
}
|
package/i18n/locales/tr.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "Arka uç yapılandırılmadı",
|
|
10
10
|
"intro": "Sunucu başladı ancak aşağıdaki ayarlar sağlanana kadar çalışamaz. Eksik değerleri ortamınıza ekleyip yeniden yükleyin.",
|
|
11
11
|
"howToFix": "Nasıl düzeltilir:",
|
|
12
|
+
"viewDocs": "Belgeleri görüntüle",
|
|
12
13
|
"reload": "Yeniden yükle",
|
|
13
14
|
"hint": "Burada yalnızca değişken adları ve nasıl ayarlanacakları gösterilir, asla gizli değerler değil."
|
|
14
15
|
}
|
package/i18n/locales/uk.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"title": "Бекенд не налаштовано",
|
|
10
10
|
"intro": "Сервер запустився, але не працюватиме, доки не буде задано наведені нижче параметри. Додайте відсутні значення до свого середовища та перезавантажте.",
|
|
11
11
|
"howToFix": "Як виправити:",
|
|
12
|
+
"viewDocs": "Переглянути документацію",
|
|
12
13
|
"reload": "Перезавантажити",
|
|
13
14
|
"hint": "Тут показано лише назви змінних і як їх задати, ніколи не секретні значення."
|
|
14
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.114.0",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"valibot": "^1.4.2",
|
|
35
35
|
"vue": "3.5.39",
|
|
36
36
|
"wretch": "^3.0.9",
|
|
37
|
-
"@cat-factory/contracts": "0.
|
|
37
|
+
"@cat-factory/contracts": "0.126.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@toad-contracts/testing": "0.3.2",
|