@cat-factory/app 0.68.0 → 0.68.1
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/settings/KubernetesEngineForm.vue +23 -1
- package/app/components/settings/KubernetesEnvironmentForm.vue +26 -1
- package/app/components/settings/KubernetesRunnerForm.vue +18 -1
- package/i18n/locales/en.json +6 -3
- package/i18n/locales/es.json +6 -3
- package/i18n/locales/fr.json +6 -3
- package/i18n/locales/he.json +6 -3
- package/i18n/locales/ja.json +6 -3
- package/i18n/locales/pl.json +6 -3
- package/i18n/locales/tr.json +6 -3
- package/i18n/locales/uk.json +6 -3
- package/package.json +1 -1
|
@@ -189,6 +189,25 @@ const canSave = computed(
|
|
|
189
189
|
!!form.label.trim() && !!form.apiServerUrl.trim() && !!apiToken.value.trim() && urlValid.value,
|
|
190
190
|
)
|
|
191
191
|
|
|
192
|
+
// Why the Connect button is disabled, surfaced as a red hint next to it so a mandatory-field gap
|
|
193
|
+
// is visible rather than a dead button. Lists the empty required fields by their on-screen label;
|
|
194
|
+
// falls back to the port-range message for the one non-empty invalidity `canSave` can carry.
|
|
195
|
+
const connectBlockedReason = computed(() => {
|
|
196
|
+
if (canSave.value) return ''
|
|
197
|
+
const missing: string[] = []
|
|
198
|
+
if (!form.label.trim()) missing.push(t('settings.infrastructure.kubernetesEngine.label'))
|
|
199
|
+
if (!form.apiServerUrl.trim())
|
|
200
|
+
missing.push(t('settings.infrastructure.kubernetesEngine.apiServerUrl'))
|
|
201
|
+
if (!apiToken.value.trim()) missing.push(t('settings.infrastructure.kubernetesEngine.apiToken'))
|
|
202
|
+
if (form.urlSource === 'ingressTemplate' && !form.hostTemplate.trim())
|
|
203
|
+
missing.push(t('settings.infrastructure.kubernetesEngine.hostTemplate'))
|
|
204
|
+
if (form.urlSource === 'serviceStatus' && !form.serviceName.trim())
|
|
205
|
+
missing.push(t('settings.infrastructure.kubernetesEngine.serviceName'))
|
|
206
|
+
if (missing.length)
|
|
207
|
+
return t('settings.providerConnection.form.missingFields', { fields: missing.join(', ') })
|
|
208
|
+
return t('settings.infrastructure.kubernetesEngine.invalidPort')
|
|
209
|
+
})
|
|
210
|
+
|
|
192
211
|
function buildUrl(): Record<string, unknown> {
|
|
193
212
|
const url: Record<string, unknown> = { source: form.urlSource }
|
|
194
213
|
if (form.urlSource === 'ingressTemplate') {
|
|
@@ -429,7 +448,10 @@ async function copyAutoSetupCommand() {
|
|
|
429
448
|
</span>
|
|
430
449
|
</div>
|
|
431
450
|
|
|
432
|
-
<div class="flex justify-end">
|
|
451
|
+
<div class="flex items-center justify-end gap-3">
|
|
452
|
+
<p v-if="connectBlockedReason" class="flex-1 text-left text-xs text-rose-400">
|
|
453
|
+
{{ connectBlockedReason }}
|
|
454
|
+
</p>
|
|
433
455
|
<UButton
|
|
434
456
|
color="primary"
|
|
435
457
|
size="sm"
|
|
@@ -151,6 +151,28 @@ const canSave = computed(
|
|
|
151
151
|
urlValid.value,
|
|
152
152
|
)
|
|
153
153
|
|
|
154
|
+
// Why the Connect button is disabled, surfaced as a red hint next to it so a mandatory-field gap
|
|
155
|
+
// is visible rather than a dead button. Lists the empty required fields by their on-screen label;
|
|
156
|
+
// falls back to a generic message for the format/range invalidities (repo shape, service port).
|
|
157
|
+
const connectBlockedReason = computed(() => {
|
|
158
|
+
if (canSave.value) return ''
|
|
159
|
+
const missing: string[] = []
|
|
160
|
+
if (!form.label.trim()) missing.push(t('settings.providerConnection.kubernetesEnv.label'))
|
|
161
|
+
if (!form.apiServerUrl.trim())
|
|
162
|
+
missing.push(t('settings.providerConnection.kubernetesEnv.apiServerUrl'))
|
|
163
|
+
if (!apiToken.value.trim()) missing.push(t('settings.providerConnection.kubernetesEnv.apiToken'))
|
|
164
|
+
if (form.manifestSourceType === 'separate' && !form.manifestRepo.trim())
|
|
165
|
+
missing.push(t('settings.providerConnection.kubernetesEnv.repo'))
|
|
166
|
+
if (!form.manifestPath.trim()) missing.push(t('settings.providerConnection.kubernetesEnv.path'))
|
|
167
|
+
if (form.urlSource === 'ingressTemplate' && !form.hostTemplate.trim())
|
|
168
|
+
missing.push(t('settings.providerConnection.kubernetesEnv.hostTemplate'))
|
|
169
|
+
if (form.urlSource === 'serviceStatus' && !form.serviceName.trim())
|
|
170
|
+
missing.push(t('settings.providerConnection.kubernetesEnv.serviceName'))
|
|
171
|
+
if (missing.length)
|
|
172
|
+
return t('settings.providerConnection.form.missingFields', { fields: missing.join(', ') })
|
|
173
|
+
return t('settings.providerConnection.kubernetesEnv.invalidFields')
|
|
174
|
+
})
|
|
175
|
+
|
|
154
176
|
function buildManifestSource(): Record<string, unknown> {
|
|
155
177
|
if (form.manifestSourceType === 'separate') {
|
|
156
178
|
const src: Record<string, unknown> = {
|
|
@@ -368,7 +390,10 @@ function optional(label: string): string {
|
|
|
368
390
|
</span>
|
|
369
391
|
</div>
|
|
370
392
|
|
|
371
|
-
<div class="flex justify-end">
|
|
393
|
+
<div class="flex items-center justify-end gap-3">
|
|
394
|
+
<p v-if="connectBlockedReason" class="flex-1 text-left text-xs text-rose-400">
|
|
395
|
+
{{ connectBlockedReason }}
|
|
396
|
+
</p>
|
|
372
397
|
<UButton
|
|
373
398
|
color="primary"
|
|
374
399
|
size="sm"
|
|
@@ -88,6 +88,20 @@ const canSave = computed(
|
|
|
88
88
|
!!apiToken.value.trim(),
|
|
89
89
|
)
|
|
90
90
|
|
|
91
|
+
// Why the Connect button is disabled, surfaced as a red hint next to it so a mandatory-field gap
|
|
92
|
+
// is visible rather than a dead button. Lists the empty required fields by their on-screen label.
|
|
93
|
+
const connectBlockedReason = computed(() => {
|
|
94
|
+
if (canSave.value) return ''
|
|
95
|
+
const missing: string[] = []
|
|
96
|
+
if (!form.label.trim()) missing.push(t('settings.providerConnection.kubernetes.label'))
|
|
97
|
+
if (!form.apiServerUrl.trim())
|
|
98
|
+
missing.push(t('settings.providerConnection.kubernetes.apiServerUrl'))
|
|
99
|
+
if (!form.namespace.trim()) missing.push(t('settings.providerConnection.kubernetes.namespace'))
|
|
100
|
+
if (!form.image.trim()) missing.push(t('settings.providerConnection.kubernetes.image'))
|
|
101
|
+
if (!apiToken.value.trim()) missing.push(t('settings.providerConnection.kubernetes.apiToken'))
|
|
102
|
+
return t('settings.providerConnection.form.missingFields', { fields: missing.join(', ') })
|
|
103
|
+
})
|
|
104
|
+
|
|
91
105
|
function buildPayload(): { config: Record<string, unknown>; secrets: Record<string, string> } {
|
|
92
106
|
const kubernetes: Record<string, unknown> = {
|
|
93
107
|
label: form.label.trim(),
|
|
@@ -216,7 +230,10 @@ function buildPayload(): { config: Record<string, unknown>; secrets: Record<stri
|
|
|
216
230
|
</span>
|
|
217
231
|
</div>
|
|
218
232
|
|
|
219
|
-
<div class="flex justify-end">
|
|
233
|
+
<div class="flex items-center justify-end gap-3">
|
|
234
|
+
<p v-if="connectBlockedReason" class="flex-1 text-left text-xs text-rose-400">
|
|
235
|
+
{{ connectBlockedReason }}
|
|
236
|
+
</p>
|
|
220
237
|
<UButton
|
|
221
238
|
color="primary"
|
|
222
239
|
size="sm"
|
package/i18n/locales/en.json
CHANGED
|
@@ -1399,7 +1399,8 @@
|
|
|
1399
1399
|
"caCertPem": "CA certificate (PEM)",
|
|
1400
1400
|
"caCertPemHelp": "Verifies the apiserver TLS cert. Omit only for a publicly-trusted CA.",
|
|
1401
1401
|
"insecureSkipTlsVerify": "Skip TLS verification",
|
|
1402
|
-
"insecureSkipTlsVerifyHelp": "Strongly discouraged: dev/kind clusters only."
|
|
1402
|
+
"insecureSkipTlsVerifyHelp": "Strongly discouraged: dev/kind clusters only.",
|
|
1403
|
+
"invalidPort": "Enter a port between 1 and 65535."
|
|
1403
1404
|
},
|
|
1404
1405
|
"customType": {
|
|
1405
1406
|
"title": "Custom manifest types",
|
|
@@ -1497,7 +1498,8 @@
|
|
|
1497
1498
|
"caCertPem": "Cluster CA certificate (PEM)",
|
|
1498
1499
|
"caCertPemHelp": "Paste the cluster CA bundle so the apiserver's TLS certificate verifies. Omit only for a publicly-trusted CA.",
|
|
1499
1500
|
"insecureSkipTlsVerify": "Skip TLS verification",
|
|
1500
|
-
"insecureSkipTlsVerifyHelp": "Strongly discouraged. Disables apiserver TLS verification; use only for kind/dev clusters."
|
|
1501
|
+
"insecureSkipTlsVerifyHelp": "Strongly discouraged. Disables apiserver TLS verification; use only for kind/dev clusters.",
|
|
1502
|
+
"invalidFields": "Complete the required fields with valid values to connect."
|
|
1501
1503
|
},
|
|
1502
1504
|
"kubernetes": {
|
|
1503
1505
|
"label": "Name",
|
|
@@ -1540,7 +1542,8 @@
|
|
|
1540
1542
|
"@reenterSecrets": {
|
|
1541
1543
|
"description": "Count-based: how many write-only secret fields the user must re-supply before re-saving (count is always >= 1). Provide ALL plural forms your language needs (English has 2; Polish/Ukrainian need 3 - one/few/many - via the custom pluralRules in i18n.config.ts)."
|
|
1542
1544
|
},
|
|
1543
|
-
"optionalLabel": "{label} (optional)"
|
|
1545
|
+
"optionalLabel": "{label} (optional)",
|
|
1546
|
+
"missingFields": "Fill in the required fields to connect: {fields}."
|
|
1544
1547
|
},
|
|
1545
1548
|
"field": {
|
|
1546
1549
|
"defaultsTo": "Defaults to {value}"
|
package/i18n/locales/es.json
CHANGED
|
@@ -1331,7 +1331,8 @@
|
|
|
1331
1331
|
"updateConfiguration": "Actualizar configuración",
|
|
1332
1332
|
"connect": "Conectar",
|
|
1333
1333
|
"reenterSecrets": "Vuelve a introducir el campo secreto para guardar los cambios: los secretos almacenados son de solo escritura y no se muestran. | Vuelve a introducir los campos secretos para guardar los cambios: los secretos almacenados son de solo escritura y no se muestran.",
|
|
1334
|
-
"optionalLabel": "{label} (opcional)"
|
|
1334
|
+
"optionalLabel": "{label} (opcional)",
|
|
1335
|
+
"missingFields": "Completa los campos obligatorios para conectar: {fields}."
|
|
1335
1336
|
},
|
|
1336
1337
|
"field": {
|
|
1337
1338
|
"defaultsTo": "Por defecto: {value}"
|
|
@@ -1382,7 +1383,8 @@
|
|
|
1382
1383
|
"caCertPem": "Certificado CA del clúster (PEM)",
|
|
1383
1384
|
"caCertPemHelp": "Pega el bundle CA del clúster para que el certificado TLS del apiserver se verifique. Omítelo solo para una CA de confianza pública.",
|
|
1384
1385
|
"insecureSkipTlsVerify": "Omitir verificación TLS",
|
|
1385
|
-
"insecureSkipTlsVerifyHelp": "Muy desaconsejado. Desactiva la verificación TLS del apiserver; úsalo solo para clústeres kind/dev."
|
|
1386
|
+
"insecureSkipTlsVerifyHelp": "Muy desaconsejado. Desactiva la verificación TLS del apiserver; úsalo solo para clústeres kind/dev.",
|
|
1387
|
+
"invalidFields": "Completa los campos obligatorios con valores válidos para conectar."
|
|
1386
1388
|
},
|
|
1387
1389
|
"kubernetes": {
|
|
1388
1390
|
"label": "Nombre",
|
|
@@ -1808,7 +1810,8 @@
|
|
|
1808
1810
|
"caCertPem": "Certificado CA (PEM)",
|
|
1809
1811
|
"caCertPemHelp": "Verifica el certificado TLS del apiserver. Omítelo solo con una CA de confianza pública.",
|
|
1810
1812
|
"insecureSkipTlsVerify": "Omitir la verificación TLS",
|
|
1811
|
-
"insecureSkipTlsVerifyHelp": "Muy desaconsejado: solo clústeres de desarrollo/kind."
|
|
1813
|
+
"insecureSkipTlsVerifyHelp": "Muy desaconsejado: solo clústeres de desarrollo/kind.",
|
|
1814
|
+
"invalidPort": "Introduce un puerto entre 1 y 65535."
|
|
1812
1815
|
},
|
|
1813
1816
|
"customType": {
|
|
1814
1817
|
"title": "Tipos de manifiesto personalizados",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -1331,7 +1331,8 @@
|
|
|
1331
1331
|
"updateConfiguration": "Mettre à jour la configuration",
|
|
1332
1332
|
"connect": "Connecter",
|
|
1333
1333
|
"reenterSecrets": "Saisissez à nouveau le champ secret pour enregistrer les modifications : les secrets stockés sont en écriture seule et ne sont pas affichés. | Saisissez à nouveau les champs secrets pour enregistrer les modifications : les secrets stockés sont en écriture seule et ne sont pas affichés.",
|
|
1334
|
-
"optionalLabel": "{label} (facultatif)"
|
|
1334
|
+
"optionalLabel": "{label} (facultatif)",
|
|
1335
|
+
"missingFields": "Renseignez les champs obligatoires pour vous connecter : {fields}."
|
|
1335
1336
|
},
|
|
1336
1337
|
"field": {
|
|
1337
1338
|
"defaultsTo": "Valeur par défaut : {value}"
|
|
@@ -1382,7 +1383,8 @@
|
|
|
1382
1383
|
"caCertPem": "Certificat CA du cluster (PEM)",
|
|
1383
1384
|
"caCertPemHelp": "Collez le bundle CA du cluster pour que le certificat TLS de l'apiserver soit vérifié. À omettre uniquement pour une CA publiquement approuvée.",
|
|
1384
1385
|
"insecureSkipTlsVerify": "Ignorer la vérification TLS",
|
|
1385
|
-
"insecureSkipTlsVerifyHelp": "Fortement déconseillé. Désactive la vérification TLS de l'apiserver ; à utiliser uniquement pour des clusters kind/dev."
|
|
1386
|
+
"insecureSkipTlsVerifyHelp": "Fortement déconseillé. Désactive la vérification TLS de l'apiserver ; à utiliser uniquement pour des clusters kind/dev.",
|
|
1387
|
+
"invalidFields": "Renseignez les champs obligatoires avec des valeurs valides pour vous connecter."
|
|
1386
1388
|
},
|
|
1387
1389
|
"kubernetes": {
|
|
1388
1390
|
"label": "Nom",
|
|
@@ -1808,7 +1810,8 @@
|
|
|
1808
1810
|
"caCertPem": "Certificat CA (PEM)",
|
|
1809
1811
|
"caCertPemHelp": "Vérifie le certificat TLS de l'apiserver. À omettre uniquement pour une CA publiquement fiable.",
|
|
1810
1812
|
"insecureSkipTlsVerify": "Ignorer la vérification TLS",
|
|
1811
|
-
"insecureSkipTlsVerifyHelp": "Fortement déconseillé: clusters de dev/kind uniquement."
|
|
1813
|
+
"insecureSkipTlsVerifyHelp": "Fortement déconseillé: clusters de dev/kind uniquement.",
|
|
1814
|
+
"invalidPort": "Saisissez un port compris entre 1 et 65535."
|
|
1812
1815
|
},
|
|
1813
1816
|
"customType": {
|
|
1814
1817
|
"title": "Types de manifeste personnalisés",
|
package/i18n/locales/he.json
CHANGED
|
@@ -1357,7 +1357,8 @@
|
|
|
1357
1357
|
"caCertPem": "תעודת CA (PEM)",
|
|
1358
1358
|
"caCertPemHelp": "מאמתת את תעודת ה-TLS של ה-apiserver. השמט רק עבור CA מהימן ציבורית.",
|
|
1359
1359
|
"insecureSkipTlsVerify": "דלג על אימות TLS",
|
|
1360
|
-
"insecureSkipTlsVerifyHelp": "מומלץ מאוד להימנע: אשכולות פיתוח/kind בלבד."
|
|
1360
|
+
"insecureSkipTlsVerifyHelp": "מומלץ מאוד להימנע: אשכולות פיתוח/kind בלבד.",
|
|
1361
|
+
"invalidPort": "הזן פורט בין 1 ל-65535."
|
|
1361
1362
|
},
|
|
1362
1363
|
"customType": {
|
|
1363
1364
|
"title": "סוגי מניפסט מותאמים",
|
|
@@ -1455,7 +1456,8 @@
|
|
|
1455
1456
|
"caCertPem": "אישור CA של האשכול (PEM)",
|
|
1456
1457
|
"caCertPemHelp": "הדבק את חבילת ה-CA של האשכול כדי שאישור ה-TLS של ה-apiserver יאומת. השמט רק עבור CA נאמן ציבורית.",
|
|
1457
1458
|
"insecureSkipTlsVerify": "דלג על אימות TLS",
|
|
1458
|
-
"insecureSkipTlsVerifyHelp": "מומלץ בחום להימנע. מבטל את אימות ה-TLS של ה-apiserver; השתמש רק עבור אשכולות kind/פיתוח."
|
|
1459
|
+
"insecureSkipTlsVerifyHelp": "מומלץ בחום להימנע. מבטל את אימות ה-TLS של ה-apiserver; השתמש רק עבור אשכולות kind/פיתוח.",
|
|
1460
|
+
"invalidFields": "מלא את השדות הנדרשים בערכים תקינים כדי להתחבר."
|
|
1459
1461
|
},
|
|
1460
1462
|
"kubernetes": {
|
|
1461
1463
|
"label": "שם",
|
|
@@ -1495,7 +1497,8 @@
|
|
|
1495
1497
|
"updateConfiguration": "עדכן הגדרות",
|
|
1496
1498
|
"connect": "התחבר",
|
|
1497
1499
|
"reenterSecrets": "הזן מחדש את שדה הסוד כדי לשמור שינויים — סודות מאוחסנים הם לכתיבה בלבד ואינם מוצגים. | הזן מחדש את שדות הסוד כדי לשמור שינויים — סודות מאוחסנים הם לכתיבה בלבד ואינם מוצגים.",
|
|
1498
|
-
"optionalLabel": "{label} (אופציונלי)"
|
|
1500
|
+
"optionalLabel": "{label} (אופציונלי)",
|
|
1501
|
+
"missingFields": "מלא את השדות הנדרשים כדי להתחבר: {fields}."
|
|
1499
1502
|
},
|
|
1500
1503
|
"field": {
|
|
1501
1504
|
"defaultsTo": "ברירת מחדל היא {value}"
|
package/i18n/locales/ja.json
CHANGED
|
@@ -1359,7 +1359,8 @@
|
|
|
1359
1359
|
"caCertPem": "CA 証明書 (PEM)",
|
|
1360
1360
|
"caCertPemHelp": "apiserver の TLS 証明書を検証します。公的に信頼された CA の場合のみ省略します。",
|
|
1361
1361
|
"insecureSkipTlsVerify": "TLS 検証をスキップ",
|
|
1362
|
-
"insecureSkipTlsVerifyHelp": "強く非推奨: 開発/kind クラスターのみ。"
|
|
1362
|
+
"insecureSkipTlsVerifyHelp": "強く非推奨: 開発/kind クラスターのみ。",
|
|
1363
|
+
"invalidPort": "1〜65535 のポート番号を入力してください。"
|
|
1363
1364
|
},
|
|
1364
1365
|
"customType": {
|
|
1365
1366
|
"title": "カスタムマニフェストタイプ",
|
|
@@ -1457,7 +1458,8 @@
|
|
|
1457
1458
|
"caCertPem": "クラスター CA 証明書 (PEM)",
|
|
1458
1459
|
"caCertPemHelp": "apiserver の TLS 証明書を検証できるよう、クラスターの CA バンドルを貼り付けてください。公的に信頼された CA の場合のみ省略できます。",
|
|
1459
1460
|
"insecureSkipTlsVerify": "TLS 検証をスキップ",
|
|
1460
|
-
"insecureSkipTlsVerifyHelp": "強く非推奨です。apiserver の TLS 検証を無効にします。kind/開発クラスターでのみ使用してください。"
|
|
1461
|
+
"insecureSkipTlsVerifyHelp": "強く非推奨です。apiserver の TLS 検証を無効にします。kind/開発クラスターでのみ使用してください。",
|
|
1462
|
+
"invalidFields": "接続するには必須項目に有効な値を入力してください。"
|
|
1461
1463
|
},
|
|
1462
1464
|
"kubernetes": {
|
|
1463
1465
|
"label": "名前",
|
|
@@ -1497,7 +1499,8 @@
|
|
|
1497
1499
|
"updateConfiguration": "設定を更新",
|
|
1498
1500
|
"connect": "接続",
|
|
1499
1501
|
"reenterSecrets": "変更を保存するにはシークレットフィールドを再入力してください。保存済みのシークレットは書き込み専用で表示されません。 | 変更を保存するにはシークレットフィールドを再入力してください。保存済みのシークレットは書き込み専用で表示されません。",
|
|
1500
|
-
"optionalLabel": "{label} (任意)"
|
|
1502
|
+
"optionalLabel": "{label} (任意)",
|
|
1503
|
+
"missingFields": "接続するには必須項目を入力してください: {fields}。"
|
|
1501
1504
|
},
|
|
1502
1505
|
"field": {
|
|
1503
1506
|
"defaultsTo": "デフォルト値は {value}"
|
package/i18n/locales/pl.json
CHANGED
|
@@ -1331,7 +1331,8 @@
|
|
|
1331
1331
|
"updateConfiguration": "Zaktualizuj konfigurację",
|
|
1332
1332
|
"connect": "Połącz",
|
|
1333
1333
|
"reenterSecrets": "Wprowadź ponownie pole sekretne, aby zapisać zmiany — przechowywane sekrety są tylko do zapisu i nie są wyświetlane. | Wprowadź ponownie pola sekretne, aby zapisać zmiany — przechowywane sekrety są tylko do zapisu i nie są wyświetlane. | Wprowadź ponownie pola sekretne, aby zapisać zmiany — przechowywane sekrety są tylko do zapisu i nie są wyświetlane.",
|
|
1334
|
-
"optionalLabel": "{label} (opcjonalne)"
|
|
1334
|
+
"optionalLabel": "{label} (opcjonalne)",
|
|
1335
|
+
"missingFields": "Uzupełnij wymagane pola, aby połączyć: {fields}."
|
|
1335
1336
|
},
|
|
1336
1337
|
"field": {
|
|
1337
1338
|
"defaultsTo": "Wartość domyślna: {value}"
|
|
@@ -1382,7 +1383,8 @@
|
|
|
1382
1383
|
"caCertPem": "Certyfikat CA klastra (PEM)",
|
|
1383
1384
|
"caCertPemHelp": "Wklej pakiet CA klastra, aby certyfikat TLS apiservera został zweryfikowany. Pomiń tylko dla publicznie zaufanego CA.",
|
|
1384
1385
|
"insecureSkipTlsVerify": "Pomiń weryfikację TLS",
|
|
1385
|
-
"insecureSkipTlsVerifyHelp": "Zdecydowanie odradzane. Wyłącza weryfikację TLS apiservera; używaj tylko dla klastrów kind/dev."
|
|
1386
|
+
"insecureSkipTlsVerifyHelp": "Zdecydowanie odradzane. Wyłącza weryfikację TLS apiservera; używaj tylko dla klastrów kind/dev.",
|
|
1387
|
+
"invalidFields": "Uzupełnij wymagane pola prawidłowymi wartościami, aby połączyć."
|
|
1386
1388
|
},
|
|
1387
1389
|
"kubernetes": {
|
|
1388
1390
|
"label": "Nazwa",
|
|
@@ -1808,7 +1810,8 @@
|
|
|
1808
1810
|
"caCertPem": "Certyfikat CA (PEM)",
|
|
1809
1811
|
"caCertPemHelp": "Weryfikuje certyfikat TLS apiservera. Pomiń tylko dla publicznie zaufanego CA.",
|
|
1810
1812
|
"insecureSkipTlsVerify": "Pomiń weryfikację TLS",
|
|
1811
|
-
"insecureSkipTlsVerifyHelp": "Zdecydowanie odradzane: tylko klastry deweloperskie/kind."
|
|
1813
|
+
"insecureSkipTlsVerifyHelp": "Zdecydowanie odradzane: tylko klastry deweloperskie/kind.",
|
|
1814
|
+
"invalidPort": "Podaj port z zakresu od 1 do 65535."
|
|
1812
1815
|
},
|
|
1813
1816
|
"customType": {
|
|
1814
1817
|
"title": "Niestandardowe typy manifestów",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -1359,7 +1359,8 @@
|
|
|
1359
1359
|
"caCertPem": "CA sertifikası (PEM)",
|
|
1360
1360
|
"caCertPemHelp": "apiserver TLS sertifikasını doğrular. Yalnızca herkesçe güvenilen bir CA için atlayın.",
|
|
1361
1361
|
"insecureSkipTlsVerify": "TLS doğrulamasını atla",
|
|
1362
|
-
"insecureSkipTlsVerifyHelp": "Kesinlikle önerilmez: yalnızca geliştirme/kind kümeleri."
|
|
1362
|
+
"insecureSkipTlsVerifyHelp": "Kesinlikle önerilmez: yalnızca geliştirme/kind kümeleri.",
|
|
1363
|
+
"invalidPort": "1 ile 65535 arasında bir bağlantı noktası girin."
|
|
1363
1364
|
},
|
|
1364
1365
|
"customType": {
|
|
1365
1366
|
"title": "Özel manifest türleri",
|
|
@@ -1457,7 +1458,8 @@
|
|
|
1457
1458
|
"caCertPem": "Küme CA sertifikası (PEM)",
|
|
1458
1459
|
"caCertPemHelp": "apiserver'ın TLS sertifikasının doğrulanması için küme CA paketini yapıştırın. Yalnızca herkesçe güvenilen bir CA için boş bırakın.",
|
|
1459
1460
|
"insecureSkipTlsVerify": "TLS doğrulamasını atla",
|
|
1460
|
-
"insecureSkipTlsVerifyHelp": "Kesinlikle önerilmez. apiserver TLS doğrulamasını devre dışı bırakır; yalnızca kind/dev kümeleri için kullanın."
|
|
1461
|
+
"insecureSkipTlsVerifyHelp": "Kesinlikle önerilmez. apiserver TLS doğrulamasını devre dışı bırakır; yalnızca kind/dev kümeleri için kullanın.",
|
|
1462
|
+
"invalidFields": "Bağlanmak için zorunlu alanları geçerli değerlerle doldurun."
|
|
1461
1463
|
},
|
|
1462
1464
|
"kubernetes": {
|
|
1463
1465
|
"label": "Ad",
|
|
@@ -1497,7 +1499,8 @@
|
|
|
1497
1499
|
"updateConfiguration": "Yapılandırmayı güncelle",
|
|
1498
1500
|
"connect": "Bağlan",
|
|
1499
1501
|
"reenterSecrets": "Değişiklikleri kaydetmek için sır alanını yeniden girin — saklanan sırlar yalnızca yazılabilir ve gösterilmez. | Değişiklikleri kaydetmek için sır alanlarını yeniden girin — saklanan sırlar yalnızca yazılabilir ve gösterilmez.",
|
|
1500
|
-
"optionalLabel": "{label} (isteğe bağlı)"
|
|
1502
|
+
"optionalLabel": "{label} (isteğe bağlı)",
|
|
1503
|
+
"missingFields": "Bağlanmak için zorunlu alanları doldurun: {fields}."
|
|
1501
1504
|
},
|
|
1502
1505
|
"field": {
|
|
1503
1506
|
"defaultsTo": "Varsayılan: {value}"
|
package/i18n/locales/uk.json
CHANGED
|
@@ -1331,7 +1331,8 @@
|
|
|
1331
1331
|
"updateConfiguration": "Оновити конфігурацію",
|
|
1332
1332
|
"connect": "Підключити",
|
|
1333
1333
|
"reenterSecrets": "Введіть секретне поле повторно, щоб зберегти зміни — збережені секрети доступні лише для запису й не показуються. | Введіть секретні поля повторно, щоб зберегти зміни — збережені секрети доступні лише для запису й не показуються. | Введіть секретні поля повторно, щоб зберегти зміни — збережені секрети доступні лише для запису й не показуються.",
|
|
1334
|
-
"optionalLabel": "{label} (необов'язково)"
|
|
1334
|
+
"optionalLabel": "{label} (необов'язково)",
|
|
1335
|
+
"missingFields": "Заповніть обовʼязкові поля, щоб підключитися: {fields}."
|
|
1335
1336
|
},
|
|
1336
1337
|
"field": {
|
|
1337
1338
|
"defaultsTo": "Типово: {value}"
|
|
@@ -1382,7 +1383,8 @@
|
|
|
1382
1383
|
"caCertPem": "Сертифікат CA кластера (PEM)",
|
|
1383
1384
|
"caCertPemHelp": "Вставте CA-набір кластера, щоб TLS-сертифікат apiserver проходив перевірку. Пропустіть лише для публічно довіреного CA.",
|
|
1384
1385
|
"insecureSkipTlsVerify": "Пропустити перевірку TLS",
|
|
1385
|
-
"insecureSkipTlsVerifyHelp": "Наполегливо не рекомендується. Вимикає перевірку TLS apiserver; використовуйте лише для кластерів kind/dev."
|
|
1386
|
+
"insecureSkipTlsVerifyHelp": "Наполегливо не рекомендується. Вимикає перевірку TLS apiserver; використовуйте лише для кластерів kind/dev.",
|
|
1387
|
+
"invalidFields": "Заповніть обовʼязкові поля правильними значеннями, щоб підключитися."
|
|
1386
1388
|
},
|
|
1387
1389
|
"kubernetes": {
|
|
1388
1390
|
"label": "Назва",
|
|
@@ -1808,7 +1810,8 @@
|
|
|
1808
1810
|
"caCertPem": "Сертифікат CA (PEM)",
|
|
1809
1811
|
"caCertPemHelp": "Перевіряє TLS-сертифікат apiserver. Пропускайте лише для публічно довіреного CA.",
|
|
1810
1812
|
"insecureSkipTlsVerify": "Пропустити перевірку TLS",
|
|
1811
|
-
"insecureSkipTlsVerifyHelp": "Наполегливо не рекомендується: лише кластери розробки/kind."
|
|
1813
|
+
"insecureSkipTlsVerifyHelp": "Наполегливо не рекомендується: лише кластери розробки/kind.",
|
|
1814
|
+
"invalidPort": "Введіть порт від 1 до 65535."
|
|
1812
1815
|
},
|
|
1813
1816
|
"customType": {
|
|
1814
1817
|
"title": "Власні типи маніфестів",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.1",
|
|
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",
|