mediawiki_check_translations
Identify pages lacking translations in specified languages to manage language coverage and prioritize translation work.
Instructions
Find pages missing translations in specified languages.
USE WHEN: User asks "which pages need German translation", "find missing translations", "check language coverage".
PARAMETERS:
languages: Array of language codes (required, e.g., ["de", "fr", "es"])
base_pages: Specific pages to check (optional)
category: Check pages in category (optional)
pattern: Naming pattern - "subpages" (Page/de), "suffixes" (Page (de)), or "prefixes" (de:Page)
limit: Max pages (default 50)
RETURNS: Missing translations grouped by language.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| base_pages | No | Base page names to check for translations (without language suffix) | |
| category | No | Category to get base pages from (alternative to base_pages) | |
| languages | Yes | Language codes to check (e.g., ['en', 'no', 'sv']) | |
| pattern | No | Pattern for language pages: 'subpage' (Page/lang), 'suffix' (Page (lang)), or 'prefix' (lang:Page). Default: 'subpage' | |
| limit | No | Max base pages to check (default 20, max 100) |