一键导入
umbraco-language
Language and culture management for variant content
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Language and culture management for variant content
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use csv-update to batch-modify a property across multiple documents.
Search for a data type, inspect it, and update its configuration.
Walk the content tree to find a document, update a property, and publish.
Search for documents matching a query and publish them.
Call an authenticated raw Umbraco Management API endpoint
Persistent authentication helpers
| name | umbraco-language |
| description | Language and culture management for variant content |
| metadata | {"version":"0.4.8","requires":{"bins":["umbraco"],"skills":["umbraco-shared"]}} |
PREREQUISITE: Read
../umbraco-shared/SKILL.mdfor auth, global flags, and security rules.
umbraco language <command> [flags]
| Command | Description |
|---|---|
language cultures | List the ISO cultures available for new languages (paginated; --skip/--take/--all) |
language default | Get the default language |
language get <iso-code> | Get a language by ISO code (e.g. en-US) |
language list | List configured languages (paginated; --skip/--take/--all) |
umbraco language cultures
| Flag | Type | Default | Description |
|---|---|---|---|
--all | bool | false | Walk every page until exhausted (auto-paginates with --take as the page size, default 500; combine with --skip to start partway through). Bounded by an internal 100k-item ceiling. |
--fields | string | — | Limit response fields (comma-separated top-level keys) |
--first-n | int | 0 | Return only the first N items from item collections |
--ids-only | bool | false | Return only item IDs for item collections |
--params | string | — | Query parameters as JSON |
--skip | int | -1 | Skip count (passes through as ?skip=N; lets you walk past the server page size on large children/root collections) |
--summarize | bool | false | Return only id/name/alias fields for item collections |
--take | int | -1 | Take count (passes through as ?take=N; combine with --skip to page) |
umbraco language default
umbraco language get <iso-code>
| Flag | Type | Default | Description |
|---|---|---|---|
--fields | string | — | Limit response fields (comma-separated top-level keys) |
umbraco language list
| Flag | Type | Default | Description |
|---|---|---|---|
--all | bool | false | Walk every page until exhausted (auto-paginates with --take as the page size, default 500; combine with --skip to start partway through). Bounded by an internal 100k-item ceiling. |
--fields | string | — | Limit response fields (comma-separated top-level keys) |
--first-n | int | 0 | Return only the first N items from item collections |
--ids-only | bool | false | Return only item IDs for item collections |
--params | string | — | Query parameters as JSON |
--skip | int | -1 | Skip count (passes through as ?skip=N; lets you walk past the server page size on large children/root collections) |
--summarize | bool | false | Return only id/name/alias fields for item collections |
--take | int | -1 | Take count (passes through as ?take=N; combine with --skip to page) |
Safety: Always use
--dry-runfirst. Remove the flag only after verifying the dry-run output.
| Command | Description |
|---|---|
language create | Create a language |
language delete <iso-code> | Permanently delete a language (content variants for it become unreachable) |
language update <iso-code> | Update a language |
umbraco language create
POST /language. Either pass the full payload via --json, or use the convenience flags (--iso-code and --name required). Valid ISO codes come from 'language cultures'.
| Flag | Type | Default | Description |
|---|---|---|---|
--default | bool | false | Make this the default language |
--dry-run | bool | false | Print the planned request without executing |
--fallback | string | — | Fallback language ISO code |
--iso-code | string | — | Language ISO code (e.g. da-DK) |
--json | string | — | Create payload as JSON |
--mandatory | bool | false | Require this language before content can publish |
--name | string | — | Display name (e.g. Danish) |
Safe pattern:
# 1. Dry run first
umbraco language create --dry-run
# 2. Execute
umbraco language create
umbraco language delete <iso-code>
| Flag | Type | Default | Description |
|---|---|---|---|
--dry-run | bool | false | Print the planned request without executing |
--force | bool | false | Confirm permanent deletion |
Safe pattern:
# 1. Dry run first
umbraco language delete <iso-code> --dry-run
# 2. Execute
umbraco language delete <iso-code> --force
umbraco language update <iso-code>
| Flag | Type | Default | Description |
|---|---|---|---|
--dry-run | bool | false | Print the planned request without executing |
--json | string | — | Full replacement payload as JSON (fields not mentioned are reset by the server) |
--merge-json | string | — | Partial JSON deep-merged into the current resource before update (fields not mentioned are preserved) |
Safe pattern:
# 1. Dry run first
umbraco language update <iso-code> --dry-run
# 2. Execute
umbraco language update <iso-code>
# Browse subcommands
umbraco language --help
# Inspect a specific endpoint schema
umbraco schema language.<method>