i18n

i18n is a skill for Claude Code from arbazkhan971/godmode. It costs 57 tokens per session (1,912 once invoked), scanned A, original, MIT.

A guide to internationalization and localization, the work of preparing software for different languages, regions, writing directions, and formats. It covers translations, plural forms, dates, numbers, currencies, and right-to-left layouts.

In plain words
What is it for?
Use it to extract interface text, manage locale files, add translation support, format dates and currencies, and check right-to-left language support.
Why use it?
It helps find text that cannot be translated easily and prevents regional formatting or layout problems in multilingual interfaces.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the godmode plugin — 132 skills, 1 command, 7 agents, 3 MCP servers shipped together

Good fit Use it to extract interface text, manage locale files, add translation support, format dates and currencies, and check right-to-left language support.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arbazkhan971/godmode/i18n
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add arbazkhan971/godmode --skill i18n
Clone the repo
git clone --depth 1 https://github.com/arbazkhan971/godmode

Made for: Claude Code.

Or install godmode, the plugin that ships this one along with the rest of its 132 skills, 1 command, 7 agents, 3 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for i18n

README.md
[![agentmods](https://agentmods.dev/badge/skills/arbazkhan971/godmode/i18n/github.svg)](https://agentmods.dev/skills/arbazkhan971/godmode/i18n)
Your own site
<a href="https://agentmods.dev/skills/arbazkhan971/godmode/i18n"><img src="https://agentmods.dev/badge/skills/arbazkhan971/godmode/i18n/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for i18n

Your own site · 80×15
<a href="https://agentmods.dev/skills/arbazkhan971/godmode/i18n"><img src="https://agentmods.dev/badge/skills/arbazkhan971/godmode/i18n.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,912 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00057 $0.01912
Opus 5 $0.00028 $0.00956
Sonnet 5 $0.00011 $0.00382
Haiku 4.5 $0.00006 $0.00191

Measured 5d ago against content hash 0c486e779d16, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

i18n scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/i18n/SKILL.md · 255 lines

How it starts

The opening of the file, as written. The whole thing — 255 lines — stays where its author put it; the contents beside it link to each section on GitHub.

I18n — Internationalization & Localization

Activate When

  • User invokes /godmode:i18n
  • User says "internationalize", "translate", "localize"
  • User mentions "RTL support", "pluralization"
  • When hardcoded strings detected in UI code

Workflow

Step 1: Audit Current State

# Detect i18n library
grep -l "react-intl\|react-i18next\|vue-i18n\|\
next-intl" package.json 2>/dev/null

# Find locale files
find . -path "*/locales/*" -o -path "*/l10n/*" \
  | head -10

# Count hardcoded strings in components
grep -rn ">[A-Z][a-z].*</" src/ --include="*.tsx" \
  --include="*.jsx" | wc -l
I18N AUDIT:
Framework: <React/Vue/Angular>
Library: <react-i18next | vue-i18n | none>
Hardcoded strings: <N>
Locale files: <N> locales configured
RTL needed: <YES if ar/he/fa/ur in targets>

IF no library: install react-i18next (React) or
  vue-i18n (Vue)
IF hardcoded > 50: batch extract by component
IF RTL needed: audit CSS for physical properties

Step 2: Select i18n Framework

| Stack   | Library        | Features          |
|---------|---------------|-------------------|
| React   | react-i18next | Hooks, ICU format |
| Vue     | vue-i18n      | Directives, SFC   |
| Angular | @angular/localize | Built-in, AOT |
| Next.js | next-intl     | App Router, SSR   |

Step 3: Extract Strings

For each hardcoded string:

  1. Create key: <namespace>.<section>.<meaning>
  2. Add to base locale file (en-US)
  3. Include translator context note
  4. Set max length if UI-constrained

Step 4: Pluralization Rules

PLURAL CATEGORIES BY LOCALE:
  English: one, other
  French: one, many, other
  Arabic: zero, one, two, few, many, other
  Polish: one, few, many, other
  Japanese: other (no distinction)

USE ICU MessageFormat:
  "{count, plural,
    =0 {No items}
    one {# item}
    other {# items}
  }"

NEVER use: count === 1 ? "item" : "items"
  (breaks for most non-English languages)

Step 5: Date, Number, Currency Formatting

FORMATTING RULES:
  Dates: Intl.DateTimeFormat(locale, options)
  Numbers: Intl.NumberFormat(locale)
  Currency: Intl.NumberFormat(locale,
    { style: 'currency', currency })

EXAMPLES:
  en-US: 03/15/2025, 1,234.56, $1,234.56
  de-DE: 15.03.2025, 1.234,56, 1.234,56 EUR
  ja-JP: 2025/03/15, 1,234, JPY1,235

NEVER hardcode: $, comma separators, date formats
ALWAYS use: Intl APIs with explicit locale param

Read the full file on GitHub · 255 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 255 lines · 57 tokens per session scan A 0c486e779d16

Subscribe to this mod's changes

i18n is a skill published in the GitHub repository arbazkhan971/godmode (26 stars, last pushed 11d ago), licensed MIT. It adds 57 tokens to every session and 1,912 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

asc-localize-metadata

Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect.

rorkai/app-store-connect-cli-skills · 60 tokens

asc-subscription-localization

Bulk-localize subscription, subscription-group, and in-app purchase display names across App Store locales using asc, including API 4.4.1 version-scoped v2 resources. Use when filling or updating subscription/IAP names and descriptions without App Store Connect UI work.

rorkai/app-store-connect-cli-skills · 60 tokens

asc-metadata-sync

Sync, validate, and apply App Store metadata with the current asc canonical metadata workflow. Use when updating metadata, localizations, keywords, or migrating legacy fastlane metadata.

rorkai/app-store-connect-cli-skills · 39 tokens

asc-whats-new-writer

Generate engaging, localized App Store release notes (What's New) from git log, bullet points, or free text using canonical metadata under ./metadata. Optionally pairs with promotional text updates.

rorkai/app-store-connect-cli-skills · 45 tokens

aws-wechat-article-formatting

A local converter that turns Markdown text into HTML formatted for the Chinese WeChat editor. Markdown is plain text with simple symbols for headings, links, and emphasis; the converter puts the resulting styles directly into the HTML.

aiworkskills/wechat-article-skills · 168 tokens

translate

Document translation: quick/normal/refined modes with chunked parallel subagents and glossary support.

notque/vexjoy-agent · 21 tokens