Skip to content
Snippets Groups Projects
Unverified Commit 288f50bd authored by Joas Schilling's avatar Joas Schilling Committed by GitHub
Browse files

Merge pull request #7346 from nextcloud/fix-federation-scope-menu-l10n

Fix translation of federation scope menu
parents 49ec86a8 3b390ef4
No related branches found
No related tags found
No related merge requests found
...@@ -46,22 +46,22 @@ ...@@ -46,22 +46,22 @@
this._scopes = [ this._scopes = [
{ {
name: 'private', name: 'private',
displayName: (this.field === 'avatar' || this.field === 'displayname') ? t('core', 'Local') : t('core', 'Private'), displayName: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Local') : t('settings', 'Private'),
tooltip: (this.field === 'avatar' || this.field === 'displayname') ? t('core', 'Only visible to local users') : t('core', 'Only visible to you'), tooltip: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
icon: OC.imagePath('core', 'actions/password'), icon: OC.imagePath('core', 'actions/password'),
active: false active: false
}, },
{ {
name: 'contacts', name: 'contacts',
displayName: t('core', 'Contacts'), displayName: t('settings', 'Contacts'),
tooltip: t('core', 'Visible to local users and to trusted servers'), tooltip: t('settings', 'Visible to local users and to trusted servers'),
icon: OC.imagePath('core', 'places/contacts-dark'), icon: OC.imagePath('core', 'places/contacts-dark'),
active: false active: false
}, },
{ {
name: 'public', name: 'public',
displayName: t('core', 'Public'), displayName: t('settings', 'Public'),
tooltip: t('core', 'Will be synced to a global and public address book'), tooltip: t('settings', 'Will be synced to a global and public address book'),
icon: OC.imagePath('core', 'places/link'), icon: OC.imagePath('core', 'places/link'),
active: false active: false
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment