i18n

LobeHub Internationalization Guide

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "i18n" with this command: npx skills add lobehub/lobehub/lobehub-lobehub-i18n

LobeHub Internationalization Guide

  • Default language: Chinese (zh-CN)

  • Framework: react-i18next

  • Only edit files in src/locales/default/

  • Never edit JSON files in locales/

  • Run pnpm i18n to generate translations (or manually translate zh-CN/en-US for dev preview)

Key Naming Convention

Flat keys with dot notation (not nested objects):

// ✅ Correct export default { 'alert.cloud.action': '立即体验', 'sync.actions.sync': '立即同步', 'sync.status.ready': '已连接', };

// ❌ Avoid nested objects export default { alert: { cloud: { action: '...' } }, };

Patterns: {feature}.{context}.{action|status}

Parameters: Use {{variableName}} syntax

'alert.cloud.desc': '我们提供 {{credit}} 额度积分',

Avoid key conflicts:

// ❌ Conflict 'clientDB.solve': '自助解决', 'clientDB.solve.backup.title': '数据备份',

// ✅ Solution 'clientDB.solve.action': '自助解决', 'clientDB.solve.backup.title': '数据备份',

Workflow

  • Add keys to src/locales/default/{namespace}.ts

  • Export new namespace in src/locales/default/index.ts

  • For dev preview: manually translate locales/zh-CN/{namespace}.json and locales/en-US/{namespace}.json

  • Run pnpm i18n to generate all languages (CI handles this automatically)

Usage

import { useTranslation } from 'react-i18next';

const { t } = useTranslation('common');

t('newFeature.title'); t('alert.cloud.desc', { credit: '1000' });

// Multiple namespaces const { t } = useTranslation(['common', 'chat']); t('common:save');

Common Namespaces

Most used: common (shared UI), chat (chat features), setting (settings)

Others: auth, changelog, components, discover, editor, electron, error, file, hotkey, knowledgeBase, memory, models, plugin, portal, providers, tool, topic

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

react

No summary provided by upstream source.

Repository SourceNeeds Review
-1.3K
lobehub
General

zustand

No summary provided by upstream source.

Repository SourceNeeds Review
General

project-overview

No summary provided by upstream source.

Repository SourceNeeds Review