Use this skill to translate compliance-critical files — XLIFF exports from Articulate
Rise 360, supplier qualification forms, safety data sheets, JSAs, LOTOs, arc flash
procedures, and more — into any target language with terminology precision.
Supply Chain Managers — Onboard global suppliers faster. Translate qualification
questionnaires, vendor codes of conduct, and procurement forms without waiting on
LSP quotes.
Articulate Rise 360 / L&D Teams — Export your course XLIFF from Rise, translate
it here, re-import. No manual copy-paste. Preserves all tags, inline formatting,
and segment structure. Ideal for safety inductions, compliance modules, and
onboarding courses across multilingual workforces.
Heavy Industry HSE Professionals — Translate JSAs, SDS sheets, arc flash warning
labels, LOTO procedures, confined space permits, and toolbox talk scripts into the
field languages your workers actually speak. Supports Arabic (RTL), Vietnamese,
Tagalog, Hindi, Portuguese, and 130+ more.
SUMMON_API_KEY=st_live_curl -s https://summontranslator.com/api/v1/ping \
-H "Authorization: Bearer $SUMMON_API_KEY"
Expected response: {"ok":true,"version":"1",...}
Use this command when the user wants to translate a file.
Parameters:
file_path — path to the file on disk (required)target_languages — comma-separated BCP-47 codes, e.g. ja-JP,fr-FR,de-DE (required)model — AI model to use (optional, default: claude-haiku-4-5-20251001)provider — anthropic | openai | gemini | deepseek (optional, inferred from model)source_language — source language BCP-47 code (optional, default: en-US)output_dir — directory to save translated files (optional, default: same dir as input)curl -s -X POST https://summontranslator.com/api/v1/jobs \
-H "Authorization: Bearer $SUMMON_API_KEY" \
-F "file=@{file_path}" \
-F "provider={provider}" \
-F "model={model}" \
-F "targetLanguages={target_languages}" \
-F "sourceLanguage={source_language}" \
-F "name=$(basename {file_path})"
Save the jobId from the response.
curl -s https://summontranslator.com/api/v1/jobs/{jobId} \
-H "Authorization: Bearer $SUMMON_API_KEY"
Repeat every 15 seconds until status is "completed" or "failed".
Each task in the tasks array shows per-language progress.
For each completed task, use the downloadUrl from the poll response:
curl -s -L -o "{output_dir}/{taskId}.{ext}" \
-H "Authorization: Bearer $SUMMON_API_KEY" \
"{downloadUrl}"
Or use the explicit URL:
curl -s -L -o "{output_dir}/{language}.{ext}" \
-H "Authorization: Bearer $SUMMON_API_KEY" \
"https://summontranslator.com/api/v1/jobs/{jobId}/tasks/{taskId}/download"
Use when the user wants to check the status of a previously submitted job.
curl -s https://summontranslator.com/api/v1/jobs/{job_id} \
-H "Authorization: Bearer $SUMMON_API_KEY"
curl -s "https://summontranslator.com/api/v1/jobs?limit=10" \
-H "Authorization: Bearer $SUMMON_API_KEY"
| Extension | Format | Typical Use Case |
|---|---|---|
| --- | --- | --- |
| .xliff / .xlf | XLIFF 1.2 bilingual | Articulate Rise 360 exports, TMS roundtrips |
| .json | JSON key-value | Supplier portal UI strings, web app content |
| .csv | CSV (id, value columns) | Qualification forms, audit checklists |
| .md | Markdown | SOPs, safety bulletins, internal wikis |
| .txt | Plain text | Toolbox talk scripts, permit-to-work templates |
| .xml | Android string resources | Mobile HSE apps, field inspection tools |
| .po | GNU gettext | Open-source EHS platforms |
| .strings | iOS/macOS Localizable.strings | Native mobile safety apps |
| .stringsdict | iOS/macOS plural rules | Mobile apps with count-based strings |
| .xcstrings | Xcode String Catalog | Modern iOS/macOS app localization |
| .arb | Flutter ARB | Cross-platform field inspection apps |
| .properties | Java resource bundles | Enterprise ERP / WMS localization |
Rise 360 exports course content as an XLIFF file (.xlf). Use Summon Translator
to localize it without breaking your course structure:
.xlftranslate_file with your .xlf and target languages (e.g., es-ES,pt-BR,vi-VN).xlf filesAll inline tags (, , ) are preserved. No broken segments.
> Recommended model for eLearning: claude-sonnet-4-6 — best at maintaining
> instructional tone, safety register, and consistent terminology across modules.
For safety-critical translations, use claude-sonnet-4-6 and add a system prompt
or glossary note in your job name to signal the domain:
-F "name=arc-flash-loto-procedure_HSE"
High-stakes content types that benefit most from AI translation review:
> ⚠️ For regulatory submissions or legally binding safety documents,
> always have a qualified human reviewer validate the final translation.
| Language | Code | Common regions |
|---|---|---|
| --- | --- | --- |
| Spanish (Latin America) | es-419 | Mexico, Central/South America |
| Spanish (Spain) | es-ES | Spain, EU supplier base |
| Portuguese (Brazil) | pt-BR | Brazil manufacturing |
| Vietnamese | vi-VN | Southeast Asia operations |
| Tagalog | tl-PH | Philippines, offshore marine |
| Hindi | hi-IN | India supply chain |
| Arabic | ar-SA | Gulf region, oilfield |
| French | fr-FR | France, West Africa, Canada |
| Mandarin (Simplified) | zh-CN | China manufacturing |
| Mandarin (Traditional) | zh-TW | Taiwan, HK procurement |
| Thai | th-TH | Thailand, ASEAN |
| Indonesian | id-ID | Indonesia, mining |
| Polish | pl-PL | Eastern Europe manufacturing |
| Model ID | Provider | Best for |
|---|---|---|
| --- | --- | --- |
| claude-sonnet-4-6 | anthropic | HSE docs, eLearning, compliance content requiring precision |
| claude-haiku-4-5-20251001 | anthropic | High-volume supplier forms, UI strings, fast turnaround |
| gpt-4o | openai | Alternative premium option |
| gpt-4o-mini | openai | Cost-conscious batch jobs |
| gemini-2.0-flash | gemini | Bulk processing, lower cost |
| deepseek-chat | deepseek | Budget option for non-critical content |
Recommended default: claude-haiku-4-5-20251001 — fast and affordable for most
supply chain and onboarding content.
For safety-critical or Rise 360 eLearning: use claude-sonnet-4-6.
-F "promoCode=1TIME" to your first job> A typical 30-minute Rise 360 safety induction course (~3,000 source words)
> costs roughly $21–$45 depending on model — vs. $300–$600+ from a traditional LSP.
Email: support@summontranslator.com
API docs: https://summontranslator.com/llms.txt
共 1 个版本