feat: Localize default UI language and service messages to Spanish.

This commit is contained in:
2026-01-26 09:18:42 -03:00
parent c774c3608b
commit 7a0a42ed25
3 changed files with 122 additions and 81 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ interface I18nContextType {
const I18nContext = createContext<I18nContextType | undefined>(undefined);
export function I18nProvider({ children }: { children: React.ReactNode }) {
const [language, setLanguageState] = useState('en');
const [language, setLanguageState] = useState('es');
useEffect(() => {
const savedLang = localStorage.getItem('studio_language');