Replace KPI/tenant wording in admin UI and help

This commit is contained in:
Codex Agent
2026-01-23 10:55:24 +01:00
parent 564e1dbcf4
commit 335087b20f
24 changed files with 346 additions and 75 deletions

View File

@@ -221,7 +221,7 @@ export default function MobileSettingsPage() {
{user?.name ?? user?.email ?? t('settings.session.unknown', 'Benutzer')}
</Text>
{user?.tenant_id ? (
<PillBadge tone="muted">{t('mobileSettings.tenantBadge', 'Tenant #{{id}}', { id: user.tenant_id })}</PillBadge>
<PillBadge tone="muted">{t('mobileSettings.tenantBadge', 'Account #{{id}}', { id: user.tenant_id })}</PillBadge>
) : null}
<XStack space="$2">
<CTAButton label={t('settings.profile.actions.openProfile', 'Profil bearbeiten')} onPress={() => navigate(ADMIN_PROFILE_ACCOUNT_PATH)} />