# Localization Design

> Design interfaces that survive translation, RTL scripts, and cultural difference. Per-language text-expansion table, full RTL mirroring rules, non-Latin typography, logical CSS properties, and cultural color/icon traps.

- Skill: `podo/localization-design` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add podo/localization-design`
- Raw SKILL.md: https://api.skillmd.com/api/skills/podo/localization-design/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Design & Media
- Author: podo (https://skillmd.com/u/podo)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/podo/localization-design

---


# localization-design

> Catalogue stub — full skill: [Owl-Listener/designer-skills](https://github.com/Owl-Listener/designer-skills)

## Decision tree

1. **Is the full skill already installed?**
   - Global: `grep -q "^das:" ~/.agents/skills/localization-design/SKILL.md 2>/dev/null && echo "pointer" || echo "installed"`
   - Project: `grep -q "^das:" .agents/skills/localization-design/SKILL.md 2>/dev/null && echo "pointer" || echo "installed"`
   - No `das:` block → full skill installed, invoke and proceed
   - `das:` block present → go to step 2

2. **Detect scope, then install:**

   ```bash
   [ -e ~/.agents/skills/localization-design ] && echo "global" || echo "project"
   ```

   **Global:**
   ```bash
   npx skills add Owl-Listener/designer-skills --skill localization-design -g -y
   ```

   **Project:**
   ```bash
   npx skills add Owl-Listener/designer-skills --skill localization-design -y
   ```
   > **Claude Code:** send either command as a chat message starting with `!` to run it without leaving the conversation.

## What it does

Owls best-in-class localization-design skill. Covers the failure modes generic agents miss: text-expansion budgets per language (German +35%, Finnish +40%), full RTL layout mirroring (what flips vs what does not), non-Latin script typography, `margin-inline-start`-style logical properties, and culturally loaded color/icon meanings. Web research found no public skill with deeper localization-*design* coverage.

## When NOT to use

- Pure string/i18n plumbing (use an i18n library, not a design skill)
- General accessibility audits → use `wcag-audit-patterns` or `fixing-accessibility`

