Spaces:
Runtime error
Runtime error
nyk
feat: full i18n — 1752 keys across 10 languages, all panels translated (#326)
b180108 unverified | 'use client' | |
| import { useTranslations } from 'next-intl' | |
| import { useMissionControl } from '@/store' | |
| import { useNavigateToPanel } from '@/lib/navigation' | |
| import { Button } from '@/components/ui/button' | |
| export function LocalModeBanner() { | |
| const { dashboardMode, bannerDismissed, capabilitiesChecked, dismissBanner } = useMissionControl() | |
| const navigateToPanel = useNavigateToPanel() | |
| const t = useTranslations('localModeBanner') | |
| const tc = useTranslations('common') | |
| if (!capabilitiesChecked || dashboardMode === 'full' || bannerDismissed) return null | |
| return ( | |
| <div className="mx-4 mt-3 mb-0 flex items-center gap-3 px-4 py-2.5 rounded-lg bg-void-cyan/5 border border-void-cyan/15 text-sm"> | |
| <span className="w-1.5 h-1.5 rounded-full bg-void-cyan shrink-0" /> | |
| <p className="flex-1 text-xs text-muted-foreground"> | |
| <span className="font-medium text-foreground">{t('noGatewayDetected')}</span> | |
| {t('runningInLocalMode')} | |
| </p> | |
| <Button | |
| variant="outline" | |
| size="xs" | |
| onClick={() => navigateToPanel('gateways')} | |
| className="shrink-0 text-2xs font-medium text-void-cyan hover:text-void-cyan/80 border-void-cyan/20 hover:border-void-cyan/40" | |
| > | |
| {t('configureGateway')} | |
| </Button> | |
| <Button | |
| variant="ghost" | |
| size="icon-xs" | |
| onClick={dismissBanner} | |
| className="shrink-0 text-void-cyan/60 hover:text-void-cyan hover:bg-transparent" | |
| title={tc('dismiss')} | |
| > | |
| <svg className="w-3.5 h-3.5" viewBox="0 0 16 16" fill="none" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round"> | |
| <path d="M4 4l8 8M12 4l-8 8" /> | |
| </svg> | |
| </Button> | |
| </div> | |
| ) | |
| } | |