Merge pull request #57735 from nextcloud/fix/add-missing-translator-hint

fix: Add translator hints to avoid confusion between big and large
This commit is contained in:
Joas Schilling 2026-01-23 12:46:59 +01:00 committed by GitHub
commit 26f40c457b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,9 @@ const emit = defineEmits<{
}>()
const PresetNames = {
// TRANSLATORS Large organization > Big organization > Small organization
LARGE: t('settings', 'Large organization'),
// TRANSLATORS Large organization > Big organization > Small organization
MEDIUM: t('settings', 'Big organization'),
SMALL: t('settings', 'Small organization'),
SHARED: t('settings', 'Hosting company'),