シリーズ: vibe coding
javascript
27 行
· 更新日 2026-04-26
i18n.js
vibe_coding/src/i18n.js
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import LanguageDetector from 'i18next-browser-languagedetector';
import es from './locales/es.json';
import en from './locales/en.json';
import zh from './locales/zh.json';
i18n
.use(LanguageDetector)
.use(initReactI18next)
.init({
resources: {
es: { translation: es },
en: { translation: en },
zh: { translation: zh }
},
fallbackLng: 'es',
supportedLngs: ['es', 'en', 'zh'],
interpolation: { escapeValue: false },
detection: {
order: ['localStorage', 'navigator'],
caches: ['localStorage']
}
});
export default i18n;
関連記事
vibe coding
javascript
更新日 2026-04-26
App.jsx
App.jsx — javascript source code from the vibe coding learning materials (vibe_coding/src/App.jsx).
記事を読む →
vibe coding
javascript
更新日 2026-04-26
Footer.jsx
Footer.jsx — javascript source code from the vibe coding learning materials (vibe_coding/src/components/Footer.jsx).
記事を読む →
vibe coding
javascript
更新日 2026-04-26
LanguageSwitcher.jsx
LanguageSwitcher.jsx — javascript source code from the vibe coding learning materials (vibe_coding/src/components/LanguageSwitcher.jsx).
記事を読む →
vibe coding
javascript
更新日 2026-04-26
Navbar.jsx
Navbar.jsx — javascript source code from the vibe coding learning materials (vibe_coding/src/components/Navbar.jsx).
記事を読む →
vibe coding
javascript
更新日 2026-04-26
ProjectCard.jsx
ProjectCard.jsx — javascript source code from the vibe coding learning materials (vibe_coding/src/components/ProjectCard.jsx).
記事を読む →
vibe coding
javascript
更新日 2026-04-26
ScrollToTop.jsx
ScrollToTop.jsx — javascript source code from the vibe coding learning materials (vibe_coding/src/components/ScrollToTop.jsx).
記事を読む →