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

fix: Add translator hints to avoid confusion between big and large
pull/57759/head
Joas Schilling 4 months ago committed by GitHub
commit 26f40c457b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      apps/settings/src/components/SettingsPresets/PresetsSelectionForm.vue

@ -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'),

Loading…
Cancel
Save