From c57246450fd3c794c24caeff2ca34c3193ed3f7e Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Wed, 19 Feb 2020 07:09:29 +0000
Subject: [PATCH] "Delegations" is renamed to "Accounts"

---
 mod/settings.php            | 2 +-
 src/Content/Nav.php         | 2 +-
 src/Module/BaseSettings.php | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/mod/settings.php b/mod/settings.php
index d06f5885f5..d5e2ceb474 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -127,7 +127,7 @@ function settings_init(App $a)
 	];
 
 	$tabs[] =	[
-		'label'	=> DI::l10n()->t('Delegations'),
+		'label'	=> DI::l10n()->t('Manage Accounts'),
 		'url' 	=> 'settings/delegation',
 		'selected'	=> (($a->argc > 1) && ($a->argv[1] === 'delegation')?'active':''),
 		'accesskey' => 'd',
diff --git a/src/Content/Nav.php b/src/Content/Nav.php
index 37bf081752..c3e0218573 100644
--- a/src/Content/Nav.php
+++ b/src/Content/Nav.php
@@ -271,7 +271,7 @@ class Nav
 			$nav['messages']['new'] = ['message/new', DI::l10n()->t('New Message'), '', DI::l10n()->t('New Message')];
 
 			if (is_array($a->identities) && count($a->identities) > 1) {
-				$nav['delegation'] = ['delegation', DI::l10n()->t('Delegation'), '', DI::l10n()->t('Manage other pages')];
+				$nav['delegation'] = ['delegation', DI::l10n()->t('Accounts'), '', DI::l10n()->t('Manage other pages')];
 			}
 
 			$nav['settings'] = ['settings', DI::l10n()->t('Settings'), '', DI::l10n()->t('Account settings')];
diff --git a/src/Module/BaseSettings.php b/src/Module/BaseSettings.php
index 8621427f76..aad67b25f5 100644
--- a/src/Module/BaseSettings.php
+++ b/src/Module/BaseSettings.php
@@ -91,7 +91,7 @@ class BaseSettings extends BaseModule
 		];
 
 		$tabs[] = [
-			'label' => DI::l10n()->t('Delegations'),
+			'label' => DI::l10n()->t('Manage Accounts'),
 			'url' => 'settings/delegation',
 			'selected' => (($a->argc > 1) && ($a->argv[1] === 'delegation') ? 'active' : ''),
 			'accesskey' => 'd',
-- 
2.39.5