i18n-localization

Solid

Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.

Data & Documents 183 stars 39 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 91/100

Stars 20%
75
Recency 20%
75
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# i18n & Yerelleştirme > Uluslararasılaştırma (i18n) ve Yerelleştirme (L10n) en iyi uygulamaları. --- ## 1. Temel Kavramlar | Terim | Anlamı | |------|---------| | **i18n** | Uluslararasılaştırma - uygulamayı çevrilebilir hale getirme | | **L10n** | Yerelleştirme - gerçek çeviriler | | **Locale** | Dil + Bölge (en-US, tr-TR) | | **RTL** | Sağdan sola diller (Arapça, İbranice) | --- ## 2. i18n Ne Zaman Kullanılır | Proje Türü | i18n Gerekli mi? | |--------------|--------------| | Halka açık web uygulaması | ✅ Evet | | SaaS ürünü | ✅ Evet | | Dahili araç | ⚠️ Belki | | Tek bölgeli uygulama | ⚠️ Geleceği düşün | | Kişisel proje | ❌ İsteğe bağlı | --- ## 3. Uygulama Desenleri ### React (react-i18next) ```tsx import { useTranslation } from 'react-i18next'; function Welcome() { const { t } = useTranslation(); return <h1>{t('welcome.title')}</h1>; } ``` ### Next.js (next-intl) ```tsx import { useTranslations } from 'next-intl'; export default function Page() { const t = useTranslations('Home'); return <h1>{t('title')}</h1>; } ``` ### Python (gettext) ```python from gettext import gettext as _ print(_("Welcome to our app")) ``` --- ## 4. Dosya Yapısı ``` locales/ ├── en/ │ ├── common.json │ ├── auth.json │ └── errors.json ├── tr/ │ ├── common.json │ ├── auth.json │ └── errors.json └── ar/ # RTL └── ... ``` --- ## 5. En İyi Uygulamalar ### YAP ✅ - Ham metin değil, çeviri anahtarları kullan - Çevirileri özelliğe göre ad alanları...

Details

Author
majiayu000
Repository
majiayu000/claude-skill-registry
Created
5 months ago
Last Updated
1 months ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category