Skip to main content 홈 크리에이터 proffesor-for-testing sentinel-api-testing localization-testing
localization-testing Internationalization (i18n) and localization (l10n) testing for global products including translations, locale formats, RTL languages, and cultural appropriateness. Use when launching in new markets or building multi-language products.
설치로 이동 Skills Marketplace 커뮤니티가 만든 AI 스킬을 발견하고 탐색하세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/proffesor-for-testing/sentinel-api-testing --skill localization-testing명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Zip 다운로드 다운로드 중... proffesor-for-testing
proffesor-for-testing/sentinel-api-testing
GitHub 저장소 열기 name localization-testing description Internationalization (i18n) and localization (l10n) testing for global products including translations, locale formats, RTL languages, and cultural appropriateness. Use when launching in new markets or building multi-language products. category specialized-testing priority medium tokenEstimate 800 agents ["qe-test-generator","qe-test-executor","qe-visual-tester"] implementation_status optimized optimization_version 1 last_optimized 2025-12-02T00:00:00.000Z dependencies [] quick_reference_card true tags ["localization","i18n","l10n","translation","rtl","unicode","locale"]
Localization & Internationalization Testing
<default_to_action>
When testing multi-language/region support:
VERIFY translation coverage (all strings translated)
TEST locale-specific formats (date, time, currency, numbers)
VALIDATE RTL layout (Arabic, Hebrew)
CHECK character encoding (UTF-8, unicode)
CONFIRM cultural appropriateness (icons, colors, content)
Quick i18n Checklist:
All user-facing strings externalized
No hardcoded text in code
Date/time/currency formatted per locale
RTL languages flip layout correctly
Unicode characters display properly
Critical Success Factors:
Don't hardcode strings - externalize everything
Test with real speakers, not just translation files
RTL requires mirrored UI layout
</default_to_action>
Quick Reference Card
When to Use
Launching in new markets
Adding language support
Before international releases
After UI changes
i18n vs l10n
Term Full Name Focus i18n Internationalization Building for localization l10n Localization Adapting for specific locale
Common Locale Formats
Type US (en-US) UK (en-GB) Japan (ja-JP) Date 10/24/2025 24/10/2025 2025/10/24 Currency $1,234.56 £1,234.56 ¥1,235 Number 1,234.56 1,234.56 1,234.56
Translation Coverage Testing
test ('all strings are translated' , () => {
const enKeys = Object .keys (translations. );
frKeys = . (translations. );
esKeys = . (translations. );
(frKeys). (enKeys);
(esKeys). (enKeys);
});
( , ({ page }) => {
page. ( );
text = page. ( );
(text). . ( );
(text). . ( );
});
en
const
Object
keys
fr
const
Object
keys
es
expect
toEqual
expect
toEqual
test
'no missing translation placeholders'
async
await
goto
'/?lang=fr'
const
await
textContent
'body'
expect
not
toContain
'translation.missing'
expect
not
toMatch
/\{\{.*\}\}/
Date/Time/Currency Formats test ('date formats by locale' , () => {
const date = new Date ('2025-10-24' );
expect (formatDate (date, 'en-US' )).toBe ('10/24/2025' );
expect (formatDate (date, 'en-GB' )).toBe ('24/10/2025' );
expect (formatDate (date, 'ja-JP' )).toBe ('2025/10/24' );
});
test ('currency formats by locale' , () => {
const amount = 1234.56 ;
expect (formatCurrency (amount, 'en-US' , 'USD' )).toBe ('$1,234.56' );
expect (formatCurrency (amount, 'de-DE' , 'EUR' )).toBe ('1.234,56 €' );
expect (formatCurrency (amount, 'ja-JP' , 'JPY' )).toBe ('¥1,235' );
});
RTL (Right-to-Left) Testing test ('layout flips for RTL languages' , async ({ page }) => {
await page.goto ('/?lang=ar' );
const dir = await page.locator ('html' ).getAttribute ('dir' );
expect (dir).toBe ('rtl' );
const nav = await page.locator ('nav' );
const styles = await nav.evaluate (el =>
window .getComputedStyle (el)
);
expect (styles.direction ).toBe ('rtl' );
});
test ('icons/images appropriate for RTL' , async ({ page }) => {
await page.goto ('/?lang=he' );
const backIcon = await page.locator ('.back-icon' );
expect (await backIcon.getAttribute ('class' )).toContain ('rtl-flipped' );
});
Unicode Character Support test ('supports unicode characters' , async ({ page }) => {
await page.fill ('#name' , '山田太郎' );
await page.click ('#submit' );
const saved = await db.users .findOne ({ });
expect (saved.name ).toBe ('山田太郎' );
await page.fill ('#name' , 'محمد' );
await page.fill ('#bio' , '👋🌍' );
expect (saved.bio ).toBe ('👋🌍' );
});
Agent-Driven Localization Testing
await Task ("Localization Testing" , {
url : 'https://example.com' ,
locales : ['en-US' , 'fr-FR' , 'de-DE' , 'ja-JP' , 'ar-SA' ],
checks : ['translations' , 'formats' , 'rtl' , 'unicode' ],
detectHardcodedStrings : true
}, "qe-test-generator" );
Agent Coordination Hints
Memory Namespace aqe/localization-testing/
├── translations/* - Translation coverage
├── formats/* - Locale-specific formats
├── rtl-validation/* - RTL layout checks
└── unicode/* - Character encoding tests
Fleet Coordination const l10nFleet = await FleetManager .coordinate ({
strategy : 'localization-testing' ,
agents : [
'qe-test-generator' ,
'qe-test-executor' ,
'qe-visual-tester'
],
topology : 'parallel'
});
Related Skills
Remember Don't hardcode. Externalize all user-facing strings. Every string visible to users must come from translation files, not code.
Test with native speakers, not just translation files. Machine translations and translation files can have context issues that only native speakers catch.
With Agents: Agents validate translation coverage, detect hardcoded strings, test locale-specific formatting, and verify RTL layouts automatically across all supported languages.