File size: 356 Bytes
831f7e7 8ec33d8 831f7e7 |
1 2 3 4 5 6 7 8 9 |
import { useContext } from 'react';
import { LanguageContext } from '@/contexts/LanguageContext';
import { translations } from '@/i18n/translations';
export const useTranslation = () => {
const { language } = useContext(LanguageContext);
console.log('[useTranslation] Getting translations for language:', language);
return translations[language];
}; |