OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Applies tenant-specific translation entries.
Goal
Allow tenants to override selected message keys.
Context
Called by the Studio when a tenant customizes labels or copy for their locale.
Source Definition
export const UpdateTenantTranslationOverridesCommand = defineCommand({
meta: {
key: 'appConfig.updateTenantTranslations',
version: '1.0.0',
description: 'Applies tenant-specific translation entries.',
owners: [OwnersEnum.PlatformSigil],
tags: [TagsEnum.I18n],
stability: StabilityEnum.Beta,
goal: 'Allow tenants to override selected message keys.',
context:
'Called by the Studio when a tenant customizes labels or copy for their locale.',
},
io: {
input: UpdateTenantTranslationInput,
output: UpdateTenantBrandingOutput,
},
policy: {
auth: 'admin',
policies: [{ key: 'platform.app-config.manage', version: '1.0.0' }],
},
});