Touseitissimplejustlookatthestepsbelow
importi18nh,{useT}from'i18nh'//Createalanguageobjectcontainingthe//translationsasintheexamplebelowconstlanguages={en:{hello:'Hello',about:'About',goodMorning:'GoodMorning',},pt:{hello:'Olá',about:'Sobre',goodMorning:'BomDia',},}//i18nhloadthelanguageobjectcontaining//thetranslationsandalsothedefaultlanguageargumenti18nh({languages,defaultLanguage:'en'});const[t]=useT();console.log(t('hello'))//Helloconsole.log(t('about'))//Aboutconsole.log(t('goodMorning'))//GoodMorningconsole.log(t('hello','pt'))//Oláconsole.log(t('about','pt'))//Sobreconsole.log(t('goodMorning','pt'))//BomDia点击空白处退出提示
评论