Multilingual Format
Standardized multilingual content format that enables comprehensive internationalization support across all META-AIML entity types. Provides translation management, localization options, and cultural adaptation for global AI understanding.
Language Properties
Standards Compliant
Text Direction Support
Localization Suite
ISO Language Standards
Full support for ISO 639-1/639-2 language codes with optional ISO 3166-1 country codes
Translation Management
Comprehensive translation metadata including confidence scores, methods, and completeness tracking
Localization Options
Beyond translation - date/time formats, number formats, currency, and measurement units by locale
Fallback Chains
Intelligent fallback language chains for graceful content degradation
Cultural Adaptation
Regional customization for date formats, number separators, and cultural preferences
Text Direction Support
Full support for LTR and RTL languages with proper text direction handling
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Standardized Multilingual Content Format",
"description": "Reusable schema component for multilingual content across all entity types",
"type": "object",
"aimlVersion": "2.0.1",
"schemaVersion": "2.0.1",
"properties": {
"defaultLanguage": {
"type": "string",
"description": "Default language code (ISO 639-1/639-2 with optional ISO 3166-1 country code)",
"pattern": "^[a-z]{2,3}(-[A-Z]{2})?$",
"default": "en"
},
"translations": {
"type": "object",
"description": "Container for translations of all translatable content",
"patternProperties": {
"^[a-z]{2,3}(-[A-Z]{2})?$": {
"type": "object",
"description": "Container for all translations in a specific language"
}
}
},
"supportedLanguages": {
"type": "array",
"description": "List of languages supported for this content",
"items": {
"type": "object",
"properties": {
"code": { "type": "string" },
"name": { "type": "string" },
"nativeName": { "type": "string" },
"isComplete": { "type": "boolean" }
}
}
}
}
}Note: Multilingual format provides the structure standard, but entity schemas include multilingual data directly rather than using $ref references.
{
"name": {
"en": "TechBazaar Global Marketplace",
"es": "Mercado Global TechBazaar",
"zh": "TechBazaar全球市场"
},
"description": {
"en": "Leading B2B2C technology marketplace connecting vendors and buyers worldwide",
"es": "Mercado tecnológico B2B2C líder que conecta vendedores y compradores en todo el mundo"
}
}Translation Quality
- Human translation
- Machine translation
- Hybrid approach
- Community translation
- Confidence scoring
Content Management
- Translation status tracking
- Completeness percentages
- Review workflows
- Version control
- Change tracking
Localization
- Date/time formatting
- Number formatting
- Currency display
- Measurement units
- First day of week
User Experience
- Language selector UI
- Geolocation detection
- Custom language ordering
- Flag display options
- Incomplete language handling
Basic Codes
Regional Variants
Text Direction
Multilingual format component enables comprehensive internationalization support with translation management and cultural adaptation for global AI understanding.