-
+
-
+
@@ -669,7 +680,7 @@
-
Carregando dados...
+
Loading data...
@@ -703,13 +714,13 @@
const data = await response.json();
currentData = data;
updateStats(data);
- showSuccess('Status do cluster carregado com sucesso. Carregando validações...');
+ showSuccess('Cluster status loaded successfully. Loading analysis...');
// Carregar automaticamente as validações após o scan inicial
await loadValidationsByNamespace();
} catch (error) {
- showError('Erro ao carregar status do cluster: ' + error.message);
+ showError('Error loading cluster status: ' + error.message);
} finally {
hideLoading();
}
@@ -734,7 +745,7 @@
document.getElementById('validationsCard').style.display = 'block';
} catch (error) {
- showError('Erro ao carregar validações: ' + error.message);
+ showError('Error loading analysis: ' + error.message);
} finally {
hideLoading();
}
@@ -772,7 +783,7 @@
document.getElementById('validationsCard').style.display = 'block';
} catch (error) {
- showError('Erro ao carregar validações por namespace: ' + error.message);
+ showError('Error loading analysis by namespace: ' + error.message);
} finally {
hideLoading();
}
@@ -801,7 +812,7 @@
displayValidationsByNamespace(data);
} catch (error) {
- showError('Erro ao carregar página: ' + error.message);
+ showError('Error loading page: ' + error.message);
} finally {
hideLoading();
}
@@ -821,7 +832,7 @@
document.getElementById('vpaCard').style.display = 'block';
} catch (error) {
- showError('Erro ao carregar recomendações VPA: ' + error.message);
+ showError('Error loading VPA recommendations: ' + error.message);
} finally {
hideLoading();
}
@@ -859,10 +870,10 @@
}
const result = await response.json();
- showSuccess(`Relatório exportado: ${result.filepath}`);
+ showSuccess(`Report exported: ${result.filepath}`);
} catch (error) {
- showError('Erro ao exportar relatório: ' + error.message);
+ showError('Error exporting report: ' + error.message);
} finally {
hideLoading();
}
@@ -927,10 +938,11 @@
${namespace.namespace}
${pods.length} pods
-
${totalValidations} validações
-
${errorCount} erros
-
${warningCount} avisos
+
${totalValidations} analysis
+
${errorCount} errors
+
${warningCount} warnings
+
▶
@@ -1133,7 +1145,7 @@
document.getElementById('historicalCard').style.display = 'block';
} catch (error) {
- showError('Erro ao carregar análise histórica: ' + error.message);
+ showError('Error loading historical analysis: ' + error.message);
} finally {
hideLoading();
}