fix traslations
This commit is contained in:
@@ -116,9 +116,9 @@ export function SystemStatusBlock({ data, loading }: SystemStatusBlockProps) {
|
||||
{/* Status Message */}
|
||||
<p className="text-[var(--text-secondary)] mb-4">
|
||||
{hasIssues
|
||||
? t('dashboard:new_dashboard.system_status.issues_requiring_action', {
|
||||
count: issuesRequiringAction,
|
||||
})
|
||||
? t('dashboard:new_dashboard.system_status.count', {
|
||||
count: issuesRequiringAction,
|
||||
})
|
||||
: t('dashboard:new_dashboard.system_status.all_clear')}
|
||||
</p>
|
||||
|
||||
@@ -127,9 +127,8 @@ export function SystemStatusBlock({ data, loading }: SystemStatusBlockProps) {
|
||||
{/* Issues Requiring Action */}
|
||||
<div className="flex items-center gap-2 px-3 py-2 rounded-lg bg-[var(--bg-primary)] border border-[var(--border-primary)]">
|
||||
<AlertTriangle
|
||||
className={`w-5 h-5 ${
|
||||
issuesRequiringAction > 0 ? 'text-[var(--color-warning-500)]' : 'text-[var(--text-tertiary)]'
|
||||
}`}
|
||||
className={`w-5 h-5 ${issuesRequiringAction > 0 ? 'text-[var(--color-warning-500)]' : 'text-[var(--text-tertiary)]'
|
||||
}`}
|
||||
/>
|
||||
<span className="text-sm font-medium text-[var(--text-primary)]">
|
||||
{issuesRequiringAction}
|
||||
@@ -148,7 +147,7 @@ export function SystemStatusBlock({ data, loading }: SystemStatusBlockProps) {
|
||||
<span className="text-sm text-[var(--text-secondary)]">
|
||||
{t('dashboard:new_dashboard.system_status.ai_prevented_label')}
|
||||
</span>
|
||||
|
||||
|
||||
{/* Show specific issue types on hover */}
|
||||
{preventedIssues.length > 0 && (
|
||||
<div className="absolute left-0 bottom-full mb-2 hidden group-hover:block z-10">
|
||||
|
||||
Reference in New Issue
Block a user