Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
johnrogers avatar

Localization

  • 138 installs
  • 222 repo stars
  • Updated January 18, 2026
  • johnrogers/claude-swift-engineering

Localize iOS apps with String Catalogs, plural rules, RTL layouts, and locale-aware formatting for global App Store releases.

About

Localization skill covers end-to-end iOS internationalization: extract strings to catalogs, handle plurals and device-specific variants, test RTL and long-string overflow, format dates and numbers per locale, and integrate XLIFF/export pipelines so multilingual builds ship without layout breakage.

  • String Catalogs workflow
  • Plural and variant strings
  • RTL layout handling
  • Locale-aware dates/numbers
  • Export and QA checks

Localization by the numbers

  • 138 all-time installs (skills.sh)
  • +2 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #535 of 1,039 Mobile Development skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/johnrogers/claude-swift-engineering --skill localization

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs138
repo stars222
Last updatedJanuary 18, 2026
Repositoryjohnrogers/claude-swift-engineering

What it does

Localize iOS apps with String Catalogs, plural rules, RTL layouts, and locale-aware formatting for global App Store releases.

Files

SKILL.mdMarkdownGitHub ↗

Localization

Modern iOS localization using String Catalogs (.xcstrings) for managing translations, plural forms, and locale-aware content. Supports SwiftUI's LocalizedStringKey and String(localized:) APIs.

Reference Loading Guide

ALWAYS load reference files if there is even a small chance the content may be required. It's better to have the context than to miss a pattern or make a mistake.

ReferenceLoad When
[String Catalogs](references/string-catalogs.md)Setting up or using Xcode 15+ String Catalogs
[Pluralization](references/pluralization.md)Handling plural forms, stringsdict migration
[Formatting](references/formatting.md)Date, number, currency locale-aware formatting
[RTL Support](references/rtl-support.md)Right-to-left layouts, semantic directions

Core Workflow

1. Create String Catalog in Xcode (File > New > String Catalog) 2. Mark strings with String(localized:comment:) or use SwiftUI's automatic extraction 3. Add plural variants in String Catalog editor where needed 4. Test with pseudo-localization (Scheme > Run > Options > App Language) 5. Export for translation (File > Export Localizations)

Key Patterns

// SwiftUI - automatic localization
Text("Welcome")
Button("Continue") { }

// Explicit localization with context
let title = String(localized: "Settings", comment: "Navigation title")

// Deferred localization for custom views
struct CardView: View {
    let title: LocalizedStringResource
    var body: some View { Text(title) }
}

Build Settings

  • Use Compiler to Extract Swift Strings: Yes
  • Localization Prefers String Catalogs: Yes

Common Mistakes

1. Forgetting String Catalog in Build Phases — Adding String Catalog but forgetting to check "Localize" in File Inspector means it's not embedded. Always verify in Build Phases > Copy Bundle Resources.

2. Pseudo-localization not tested — Not running your app with pseudo-localization (German/Chinese pseudo-locale) means you miss text overflow and RTL issues. Always test with pseudo-localization before translation.

3. Hardcoded strings anywhere — Even one hardcoded string outside the String Catalog breaks extraction and automation. Use String(localized:) everywhere or use LocalizedStringResource for deferred localization.

4. Context loss in translations — Providing no comment for translators means they guess context and get it wrong. Add comments explaining where the string appears and what it means.

5. RTL layouts not tested — Assuming LTR layout works for RTL languages (Arabic, Hebrew) fails miserably. Test with system language set to Arabic and verify semantic directions are used.

Related skills

Mobile Developmentfrontendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.