{"id":"2e793fb9-a12f-4a7e-b32b-f4b13ad150b6","shortId":"J7eZuV","kind":"skill","title":"internationalization","tagline":"Plan and run a multi-language or multi-region site. Use this skill when adding new locales, choosing URL structure for languages (subfolders vs subdomains vs ccTLDs), implementing hreflang, planning translation workflow, handling currency and date formats, designing for RTL langu","description":"# Internationalization\n\nAdd languages and regions in a way that works for users, search engines, and the team maintaining the content. Stack-agnostic.\n\n---\n\n## When to use\n\n- Adding the first non-English (or non-default) language\n- Adding additional locales to an existing internationalized site\n- Choosing URL structure for languages\n- Implementing hreflang tags\n- Designing translation workflow\n- Handling currency, date, time, and number formats\n- Designing or fixing layout for RTL languages\n- Auditing an internationalization rollout that's underperforming\n\n## When NOT to use\n\n- Single-language site (use other skills)\n- Domain strategy that's not language-driven (use `domain-strategy`)\n- Content strategy independent of locale (use `content-strategy`)\n- Marketing copy production (use `content-and-copy`)\n\n---\n\n## Required inputs\n\n- The locales in scope (language + region, e.g., `en-US`, `de-DE`, `fr-CA`)\n- Business reason per locale (priority, audience size)\n- Existing site architecture\n- Translation resources (in-house, agency, AI-assisted, community)\n- Content volume and update frequency\n\n---\n\n## The framework: 5 layers\n\nInternationalization touches everything. Five layers, each with their own decisions.\n\n### Layer 1: URL structure\n\nHow locales are reflected in URLs.\n\n| Pattern | Example | When |\n|---|---|---|\n| ccTLD | example.de, example.fr | Strong country focus, distinct legal entities, willing to maintain separate domains |\n| Subdomain | de.example.com, fr.example.com | Logical separation, willing to host separately, common for large sites |\n| Subfolder | example.com/de/, example.com/fr/ | SEO equity unified, simplest to manage, default for most |\n| URL parameter | example.com?lang=de | Avoid; weak SEO signal |\n\nFor most sites: subfolder is the default. Subdomain or ccTLD only when there's a specific reason (legal, infrastructure, or brand).\n\nWithin the chosen pattern, decide:\n- Language only (`/de/`) or language plus region (`/de-de/`, `/de-at/`, `/de-ch/`)?\n- Default locale: at the apex (`example.com`) or in a folder (`example.com/en/`)?\n\nThe default-locale-at-apex pattern is common but causes hreflang complexity (the apex needs an `x-default` and the canonical for the default language).\n\n### Layer 2: Content structure\n\nHow content is organized across locales.\n\n**Pattern A: Mirror.** Every page in every locale. The translation IS the page. Suitable for marketing sites with controlled content.\n\n**Pattern B: Subset.** Some content in all locales, some only in select locales. Common for product pages (only available products), blog (some posts translated), or regulatory differences.\n\n**Pattern C: Local.** Each locale has its own content largely independent of other locales. Common for media or community sites.\n\nMost marketing sites are A. Most large sites end up at B by necessity. C is for sites with strong regional editorial.\n\nThe pattern affects:\n- How content models are designed (does each piece have parent/translation relationships?)\n- How translation is managed (workflow assumes the structure)\n- How the team coordinates\n\n### Layer 3: hreflang and canonicals\n\nTelling search engines what's translated vs distinct.\n\n**hreflang** specifies the language and optional region for each version.\n\n```html\n<link rel=\"alternate\" hreflang=\"en-US\" href=\"https://example.com/en-us/page\">\n<link rel=\"alternate\" hreflang=\"en-GB\" href=\"https://example.com/en-gb/page\">\n<link rel=\"alternate\" hreflang=\"de-DE\" href=\"https://example.com/de-de/page\">\n<link rel=\"alternate\" hreflang=\"x-default\" href=\"https://example.com/en-us/page\">\n```\n\nRules:\n- Every page lists every translated equivalent (including itself)\n- Pages must reciprocate (page A says page B is its German version; page B says page A is its English version)\n- `x-default` is the fallback for users in unspecified regions\n- Each page has its own canonical pointing to itself (not to the default language)\n\nhreflang can be in the HTML head, in HTTP headers, or in the XML sitemap. Sitemap is best for large sites; HTML head is fine for small.\n\n**Canonicals:**\n- Self-referential per page\n- Don't canonical the German page to the English page (search engines won't index the German page)\n\n### Layer 4: Translation workflow\n\nHow content gets translated, kept fresh, and quality-controlled.\n\n**Sources of translation:**\n- In-house translators (full-time staff)\n- Translation agency (paid per word, professional)\n- Community contributors (volunteer, variable quality, free)\n- AI-assisted plus human review (cheap, fast, growing in quality)\n- AI only (acceptable for some content, not for brand-critical)\n\n**Workflow stages:**\n\n1. **Source content authored** in the source language\n2. **Translation requested** through a TMS (translation management system) or spreadsheet\n3. **Translation produced** with translation memory (avoids retranslating reused phrases)\n4. **Review** by a second translator or in-region staff\n5. **Localization** beyond translation (currency, units, examples, cultural references)\n6. **Publishing** in the destination locale\n7. **Update propagation** when source content changes\n\nThe TMS pays off above ~10K words of total content. Below that, spreadsheets and disciplined naming are fine.\n\n**Update propagation is the hardest part.** Source content changes. Translations go stale. Without a process, you end up with locales drifting from the source.\n\n### Layer 5: Locale-aware UX\n\nBeyond translation, the experience must adapt.\n\n**Currency:** display in the local currency where applicable. EUR for European locales, JPY for Japanese, etc. Don't show USD to French users for a French-locale page.\n\n**Numbers:** thousand separators and decimals differ. `1,000.50` in en-US is `1.000,50` in de-DE.\n\n**Dates and times:** format and order vary. `MM/DD/YYYY` in en-US, `DD/MM/YYYY` in en-GB, `YYYY-MM-DD` (ISO) is universal but unfamiliar to many.\n\n**Names and addresses:** field order and required components differ. Country-aware address forms.\n\n**Phone numbers:** E.164 international format universally; display formatting per locale.\n\n**Units:** metric vs imperial. Most of the world is metric; the US is imperial. Some products serve both.\n\n**Right-to-left (RTL) languages:** Arabic, Hebrew, Persian, Urdu. Layout flips: navigation moves right, text aligns right, icons that imply direction may flip too. CSS logical properties (`margin-inline-start` instead of `margin-left`) make this manageable.\n\n**Language switcher:** prominent but not intrusive. Show locale names in their own language (\"Deutsch\" not \"German\"). Persist the choice. Don't auto-redirect based on browser language without offering a way back.\n\n**Cultural sensitivity:** colors, imagery, examples, references that don't translate. Avoid hand gestures in product imagery. Avoid country-specific references unless localized.\n\n---\n\n## Workflow\n\n### Step 1: Decide which locales\n\nDon't add languages just because you can. Each locale has ongoing maintenance cost.\n\n- Audience research: where are visitors and prospects?\n- Business priority: which markets are growth targets?\n- Content readiness: do you have the resources to maintain it?\n- Legal: do regulations require localization (GDPR, accessibility laws)?\n\n### Step 2: Pick URL structure\n\nSubfolder for most. Document the choice and rationale.\n\n### Step 3: Pick content structure\n\nMirror, subset, or local. Be honest about what's sustainable.\n\n### Step 4: Set up hreflang and canonicals\n\nImplement before launching the second locale, even if it's just one extra page.\n\n### Step 5: Set up translation workflow\n\nPick a TMS or spreadsheet system. Document the workflow. Designate translators and reviewers.\n\n### Step 6: Localize beyond translation\n\nFor each locale:\n- Currency, numbers, dates, units\n- Locale-specific images if needed\n- Address forms\n- Customer service hours and contact\n\n### Step 7: Implement language switcher\n\n- Prominent in the header or footer\n- Shows the current locale clearly\n- Lists all available locales in their own language\n- Persists the choice (cookie or local storage)\n- Doesn't auto-redirect based on browser; suggests instead\n\n### Step 8: Test\n\n- Each locale renders correctly\n- hreflang links are valid (use a checker)\n- Canonicals are self-referential per page\n- Currency and dates are correct\n- RTL layout is correct (for RTL locales)\n- Language switcher works and persists\n- Search-engine perspective: each locale is crawlable and indexable\n\n### Step 9: Launch and monitor\n\nPer locale:\n- Indexing rate\n- Traffic from intended geographies\n- Engagement metrics in the locale\n- Translation freshness (when did source content change without translation update?)\n\n### Step 10: Maintain\n\n- Translation update cadence (when source changes, when translations follow)\n- Quarterly review of locale performance\n- Sunset locales that aren't viable (better than maintaining a dead locale poorly)\n\n---\n\n## Failure patterns\n\n**Auto-redirect based on browser language.** User is in Germany, prefers English. Site forces German. Frustrating. Suggest, don't redirect.\n\n**Single canonical to default language.** Search engines can't index the translations. Self-canonical per page.\n\n**Reciprocal hreflang missing.** German page lists English as its translation, English page doesn't list German. Search engines treat the relationship as unconfirmed.\n\n**hreflang language without region when region matters.** `hreflang=\"es\"` is fine if there's one Spanish version. If you have es-ES (Spain) and es-MX (Mexico), use both with regions.\n\n**Auto-translated content treated as final.** Machine translation is an acceptable starting point. Human review is necessary for any user-facing content.\n\n**Currency baked into copy.** \"$99/month\" in body text breaks for European users. Use templated currency that adapts.\n\n**Hardcoded date formats.** \"January 5, 2024\" in code. Doesn't adapt. Use a date formatting library that respects locale.\n\n**Field labels left in source language.** Translated body, untranslated form labels. Inconsistent. Translate UI strings as part of localization.\n\n**Untranslated error messages.** User submits a form, gets an error in English on a French page. Frustrating. Translate UI states.\n\n**Untranslated emails.** Site is in French; transactional emails are English. Translate emails to match.\n\n**Forgotten locales in CMS.** Editors forget to update one locale. Drift. Use a TMS or workflow that surfaces drift.\n\n**Locale switcher that doesn't work mid-flow.** User is on the German checkout, switches to French, lands on French homepage. Try to land on the same page in the new locale.\n\n**RTL layouts that don't actually flip.** Margin and padding hardcoded for LTR. Use CSS logical properties.\n\n**Sunset language without redirect.** Discontinuing French; old French URLs 404. Redirect to the closest equivalent in another supported language.\n\n---\n\n## Output format\n\nAn internationalization plan includes:\n\n- **Locale list:** with priority and audience rationale\n- **URL structure:** chosen pattern and reason\n- **Content structure:** mirror, subset, or local\n- **hreflang plan:** how it's implemented\n- **Translation workflow:** sources, stages, tools\n- **Localization checklist:** beyond translation (currency, dates, etc.)\n- **Language switcher design:** position, behavior, persistence\n- **Test plan:** what's verified per locale\n- **Maintenance plan:** update cadence, drift detection\n\n---\n\n## Reference files\n\n- [`references/locale-checklist.md`](references/locale-checklist.md): Per-locale checklist of everything that needs to adapt beyond translation, organized by category (URL, content, UX, format, legal).","tags":["internationalization","claude","skills","rampstackco","agent-skills","anthropic","awesome-claude-code","awesome-claude-prompts","awesome-claude-skills","claude-code","claude-skills","good-first-issue"],"capabilities":["skill","source-rampstackco","skill-internationalization","topic-agent-skills","topic-anthropic","topic-awesome-claude-code","topic-awesome-claude-prompts","topic-awesome-claude-skills","topic-claude","topic-claude-code","topic-claude-skills","topic-good-first-issue","topic-mcp","topic-product-management","topic-seo"],"categories":["claude-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/rampstackco/claude-skills/internationalization","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add rampstackco/claude-skills","source_repo":"https://github.com/rampstackco/claude-skills","install_from":"skills.sh"}},"qualityScore":"0.540","qualityRationale":"deterministic score 0.54 from registry signals: · indexed on github topic:agent-skills · 181 github stars · SKILL.md body (11,602 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T18:55:17.182Z","embedding":null,"createdAt":"2026-04-30T01:01:28.888Z","updatedAt":"2026-05-18T18:55:17.182Z","lastSeenAt":"2026-05-18T18:55:17.182Z","tsv":"'/de':312 '/de-at':318 '/de-ch':319 '/de-de':317 '/de/,':262 '/en/':332 '/fr/':265 '000.50':828 '1':220,676,827,1008 '1.000':834 '10':1269 '10k':743 '2':361,684,1059 '2024':1440 '3':486,695,1072 '4':616,705,1087 '404':1585 '5':207,716,781,1108,1439 '50':835 '6':725,1127 '7':731,1152 '8':1193 '9':1241 '99/month':1422 'accept':665,1405 'access':1056 'across':368 'actual':1564 'ad':18,71,82 'adapt':791,1434,1445,1670 'add':46,1014 'addit':83 'address':870,880,1144 'affect':461 'agenc':195,641 'agnost':67 'ai':197,653,663 'ai-assist':196,652 'align':926 'anoth':1592 'apex':324,338,347 'applic':799 'arab':916 'architectur':189 'aren':1288 'assist':198,654 'assum':478 'audienc':185,1026,1606 'audit':115 'author':679 'auto':972,1185,1301,1395 'auto-redirect':971,1184,1300 'auto-transl':1394 'avail':408,1169 'avoid':280,701,993,999 'awar':784,879 'b':391,448,525,531 'back':982 'bake':1419 'base':974,1187,1303 'behavior':1642 'best':581 'better':1291 'beyond':718,786,1129,1633,1671 'blog':410 'bodi':1424,1461 'brand':304,672 'brand-crit':671 'break':1426 'browser':976,1189,1305 'busi':180,1033 'c':418,451 'ca':179 'cadenc':1273,1654 'canon':355,489,555,591,599,1092,1206,1322,1335 'categori':1675 'caus':343 'cctld':232,293 'cctlds':30 'chang':737,764,1264,1276 'cheap':658 'checker':1205 'checklist':1632,1664 'checkout':1540 'choic':968,1068,1177 'choos':21,90 'chosen':307,1610 'clear':1166 'closest':1589 'cms':1510 'code':1442 'color':985 'common':255,341,403,431 'communiti':199,435,646 'complex':345 'compon':875 'contact':1150 'content':64,145,152,159,200,362,365,389,394,425,463,620,668,678,736,747,763,1040,1074,1263,1397,1417,1614,1677 'content-and-copi':158 'content-strategi':151 'contributor':647 'control':388,628 'cooki':1178 'coordin':484 'copi':155,161,1421 'correct':1198,1217,1221 'cost':1025 'countri':236,878,1001 'country-awar':877 'country-specif':1000 'crawlabl':1237 'critic':673 'css':935,1573 'cultur':723,983 'currenc':37,102,720,792,797,1134,1213,1418,1432,1635 'current':1164 'custom':1146 'date':39,103,840,1136,1215,1436,1448,1636 'dd':860 'dd/mm/yyyy':852 'de':175,176,279,838,839 'de-d':174,837 'de.example.com':247 'dead':1295 'decid':309,1009 'decim':825 'decis':218 'default':80,272,290,320,335,352,358,541,562,1324 'default-locale-at-apex':334 'design':41,98,108,466,1122,1640 'destin':729 'detect':1656 'deutsch':963 'differ':416,826,876 'direct':931 'disciplin':752 'discontinu':1580 'display':793,888 'distinct':238,497 'document':1066,1119 'doesn':1182,1350,1443,1529 'domain':133,143,245 'domain-strategi':142 'drift':776,1517,1525,1655 'driven':140 'e.164':884 'e.g':170 'editor':1511 'editori':458 'email':1494,1500,1504 'en':172,831,850,855 'en-gb':854 'en-us':171,830,849 'end':445,772 'engag':1253 'engin':58,492,608,1232,1327,1355 'english':76,537,605,1312,1344,1348,1484,1502 'entiti':240 'equiti':267 'equival':515,1590 'error':1474,1482 'es':1369,1382,1383,1387 'es-':1381 'es-mx':1386 'etc':807,1637 'eur':800 'european':802,1428 'even':1099 'everi':373,376,510,513 'everyth':211,1666 'exampl':230,722,987 'example.com':261,264,277,325,331 'example.com/de/,':260 'example.com/en/':330 'example.com/fr/':263 'example.de':233 'example.fr':234 'exist':87,187 'experi':789 'extra':1105 'face':1416 'failur':1298 'fallback':544 'fast':659 'field':871,1454 'file':1658 'final':1400 'fine':588,755,1371 'first':73 'five':212 'fix':110 'flip':921,933,1565 'flow':1534 'focus':237 'folder':329 'follow':1279 'footer':1161 'forc':1314 'forget':1512 'forgotten':1507 'form':881,1145,1463,1479 'format':40,107,843,886,889,1437,1449,1596,1679 'fr':178 'fr-ca':177 'fr.example.com':248 'framework':206 'free':651 'french':813,818,1487,1498,1543,1546,1581,1583 'french-local':817 'frequenc':204 'fresh':624,1259 'frustrat':1316,1489 'full':637 'full-tim':636 'gb':856 'gdpr':1055 'geographi':1252 'german':528,601,613,965,1315,1341,1353,1539 'germani':1310 'gestur':995 'get':621,1480 'go':766 'grow':660 'growth':1038 'hand':994 'handl':36,101 'hardcod':1435,1569 'hardest':760 'head':570,586 'header':573,1159 'hebrew':917 'homepag':1547 'honest':1081 'host':253 'hour':1148 'hous':194,634 'hreflang':32,96,344,487,498,564,1090,1199,1339,1361,1368,1620 'html':508,569,585 'http':572 'human':656,1408 'icon':928 'imag':1141 'imageri':986,998 'imperi':895,905 'implement':31,95,1093,1153,1625 'impli':930 'in-hous':192,632 'in-region':712 'includ':516,1600 'inconsist':1465 'independ':147,427 'index':611,1239,1247,1330 'infrastructur':302 'inlin':940 'input':163 'instead':942,1191 'intend':1251 'intern':885 'internation':1,45,88,117,209,1598 'intrus':955 'iso':861 'januari':1438 'japanes':806 'jpi':804 'kept':623 'label':1455,1464 'land':1544,1550 'lang':278 'langu':44 'languag':8,25,47,81,94,114,128,139,168,310,314,359,501,563,683,915,950,962,977,1015,1154,1174,1225,1306,1325,1362,1459,1577,1594,1638 'language-driven':138 'larg':257,426,443,583 'launch':1095,1242 'law':1057 'layer':208,213,219,360,485,615,780 'layout':111,920,1219,1560 'left':913,946,1456 'legal':239,301,1050,1680 'librari':1450 'link':1200 'list':512,1167,1343,1352,1602 'local':20,84,149,165,183,224,321,336,369,377,397,402,419,421,430,717,730,775,783,796,803,819,891,957,1005,1011,1021,1054,1079,1098,1128,1133,1139,1165,1170,1180,1196,1224,1235,1246,1257,1283,1286,1296,1453,1472,1508,1516,1526,1558,1601,1619,1631,1650,1663 'locale-awar':782 'locale-specif':1138 'logic':249,936,1574 'ltr':1571 'machin':1401 'maintain':62,243,1048,1270,1293 'mainten':1024,1651 'make':947 'manag':271,476,691,949 'mani':867 'margin':939,945,1566 'margin-inline-start':938 'margin-left':944 'market':154,385,438,1036 'match':1506 'matter':1367 'may':932 'media':433 'memori':700 'messag':1475 'metric':893,901,1254 'mexico':1389 'mid':1533 'mid-flow':1532 'mirror':372,1076,1616 'miss':1340 'mm':859 'mm/dd/yyyy':847 'model':464 'monitor':1244 'move':923 'multi':7,11 'multi-languag':6 'multi-region':10 'must':519,790 'mx':1388 'name':753,868,958 'navig':922 'necess':450 'necessari':1411 'need':348,1143,1668 'new':19,1557 'non':75,79 'non-default':78 'non-english':74 'number':106,821,883,1135 'offer':979 'old':1582 'one':1104,1375,1515 'ongo':1023 'option':503 'order':845,872 'organ':367,1673 'output':1595 'pad':1568 'page':374,382,406,511,518,521,524,530,533,551,596,602,606,614,820,1106,1212,1337,1342,1349,1488,1554 'paid':642 'paramet':276 'parent/translation':471 'part':761,1470 'pattern':229,308,339,370,390,417,460,1299,1611 'pay':740 'per':182,595,643,890,1211,1245,1336,1649,1662 'per-local':1661 'perform':1284 'persian':918 'persist':966,1175,1229,1643 'perspect':1233 'phone':882 'phrase':704 'pick':1060,1073,1113 'piec':469 'plan':2,33,1599,1621,1645,1652 'plus':315,655 'point':556,1407 'poor':1297 'posit':1641 'post':412 'prefer':1311 'prioriti':184,1034,1604 'process':770 'produc':697 'product':156,405,409,907,997 'profession':645 'promin':952,1156 'propag':733,757 'properti':937,1575 'prospect':1032 'publish':726 'qualiti':627,650,662 'quality-control':626 'quarter':1280 'rate':1248 'rational':1070,1607 'readi':1041 'reason':181,300,1613 'reciproc':520,1338 'redirect':973,1186,1302,1320,1579,1586 'refer':724,988,1003,1657 'references/locale-checklist.md':1659,1660 'referenti':594,1210 'reflect':226 'region':12,49,169,316,457,504,549,714,1364,1366,1393 'regul':1052 'regulatori':415 'relationship':472,1358 'render':1197 'request':686 'requir':162,874,1053 'research':1027 'resourc':191,1046 'respect':1452 'retransl':702 'reus':703 'review':657,706,1125,1281,1409 'right':911,924,927 'right-to-left':910 'rollout':118 'rtl':43,113,914,1218,1223,1559 'rule':509 'run':4 'say':523,532 'scope':167 'search':57,491,607,1231,1326,1354 'search-engin':1230 'second':709,1097 'select':401 'self':593,1209,1334 'self-canon':1333 'self-referenti':592,1208 'sensit':984 'seo':266,282 'separ':244,250,254,823 'serv':908 'servic':1147 'set':1088,1109 'show':810,956,1162 'signal':283 'simplest':269 'singl':127,1321 'single-languag':126 'site':13,89,129,188,258,286,386,436,439,444,454,584,1313,1495 'sitemap':578,579 'size':186 'skill':16,132 'skill-internationalization' 'small':590 'sourc':629,677,682,735,762,779,1262,1275,1458,1628 'source-rampstackco' 'spain':1384 'spanish':1376 'specif':299,1002,1140 'specifi':499 'spreadsheet':694,750,1117 'stack':66 'stack-agnost':65 'staff':639,715 'stage':675,1629 'stale':767 'start':941,1406 'state':1492 'step':1007,1058,1071,1086,1107,1126,1151,1192,1240,1268 'storag':1181 'strategi':134,144,146,153 'string':1468 'strong':235,456 'structur':23,92,222,363,480,1062,1075,1609,1615 'subdomain':28,246,291 'subfold':26,259,287,1063 'submit':1477 'subset':392,1077,1617 'suggest':1190,1317 'suitabl':383 'sunset':1285,1576 'support':1593 'surfac':1524 'sustain':1085 'switch':1541 'switcher':951,1155,1226,1527,1639 'system':692,1118 'tag':97 'target':1039 'team':61,483 'tell':490 'templat':1431 'test':1194,1644 'text':925,1425 'thousand':822 'time':104,638,842 'tms':689,739,1115,1520 'tool':1630 'topic-agent-skills' 'topic-anthropic' 'topic-awesome-claude-code' 'topic-awesome-claude-prompts' 'topic-awesome-claude-skills' 'topic-claude' 'topic-claude-code' 'topic-claude-skills' 'topic-good-first-issue' 'topic-mcp' 'topic-product-management' 'topic-seo' 'total':746 'touch':210 'traffic':1249 'transact':1499 'translat':34,99,190,379,413,474,495,514,617,622,631,635,640,685,690,696,699,710,719,765,787,992,1111,1123,1130,1258,1266,1271,1278,1332,1347,1396,1402,1460,1466,1490,1503,1626,1634,1672 'treat':1356,1398 'tri':1548 'ui':1467,1491 'unconfirm':1360 'underperform':121 'unfamiliar':865 'unifi':268 'unit':721,892,1137 'univers':863,887 'unless':1004 'unspecifi':548 'untransl':1462,1473,1493 'updat':203,732,756,1267,1272,1514,1653 'urdu':919 'url':22,91,221,228,275,1061,1584,1608,1676 'us':173,832,851,903 'usd':811 'use':14,70,125,130,141,150,157,1203,1390,1430,1446,1518,1572 'user':56,546,814,1307,1415,1429,1476,1535 'user-fac':1414 'ux':785,1678 'valid':1202 'vari':846 'variabl':649 'verifi':1648 'version':507,529,538,1377 'viabl':1290 'visitor':1030 'volum':201 'volunt':648 'vs':27,29,496,894 'way':52,981 'weak':281 'will':241,251 'within':305 'without':768,978,1265,1363,1578 'won':609 'word':644,744 'work':54,1227,1531 'workflow':35,100,477,618,674,1006,1112,1121,1522,1627 'world':899 'x':351,540 'x-default':350,539 'xml':577 'yyyi':858 'yyyy-mm-dd':857","prices":[{"id":"ef114be9-3efe-457a-8e78-37d1c563babf","listingId":"2e793fb9-a12f-4a7e-b32b-f4b13ad150b6","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"rampstackco","category":"claude-skills","install_from":"skills.sh"},"createdAt":"2026-04-30T01:01:28.888Z"}],"sources":[{"listingId":"2e793fb9-a12f-4a7e-b32b-f4b13ad150b6","source":"github","sourceId":"rampstackco/claude-skills/internationalization","sourceUrl":"https://github.com/rampstackco/claude-skills/tree/main/skills/internationalization","isPrimary":false,"firstSeenAt":"2026-04-30T01:01:28.888Z","lastSeenAt":"2026-05-18T18:55:17.182Z"}],"details":{"listingId":"2e793fb9-a12f-4a7e-b32b-f4b13ad150b6","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"rampstackco","slug":"internationalization","github":{"repo":"rampstackco/claude-skills","stars":181,"topics":["agent-skills","anthropic","awesome-claude-code","awesome-claude-prompts","awesome-claude-skills","claude","claude-code","claude-skills","good-first-issue","mcp","product-management","seo","show-hn","showcase","showdev","web-design","web-development"],"license":"mit","html_url":"https://github.com/rampstackco/claude-skills","pushed_at":"2026-05-10T22:40:22Z","description":"Stack-agnostic Claude Skills covering the full website lifecycle: brand, design, content, SEO, dev, ops, growth, and research. Build, ship, audit, optimize.","skill_md_sha":"01f91ab4d4fa7948e10339274e290e2bc8f61217","skill_md_path":"skills/internationalization/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/rampstackco/claude-skills/tree/main/skills/internationalization"},"layout":"multi","source":"github","category":"claude-skills","frontmatter":{"name":"internationalization","description":"Plan and run a multi-language or multi-region site. Use this skill when adding new locales, choosing URL structure for languages (subfolders vs subdomains vs ccTLDs), implementing hreflang, planning translation workflow, handling currency and date formats, designing for RTL languages, or auditing a stalled internationalization rollout. Triggers on internationalization, i18n, localization, l10n, hreflang, multi-language, translation workflow, RTL, locale, ccTLD, subfolder vs subdomain, language switcher. Also triggers when international audiences underperform or translations are stale."},"skills_sh_url":"https://skills.sh/rampstackco/claude-skills/internationalization"},"updatedAt":"2026-05-18T18:55:17.182Z"}}