diff --git a/client/coral-admin/src/components/AccountHistory.js b/client/coral-admin/src/components/AccountHistory.js
index 0d85b62af..6079187c6 100644
--- a/client/coral-admin/src/components/AccountHistory.js
+++ b/client/coral-admin/src/components/AccountHistory.js
@@ -43,15 +43,15 @@ const readableDuration = (startDate, endDate) => {
const buildActionResponse = (typename, created_at, until, status) => {
switch (typename) {
case 'UsernameStatusHistory':
- return t('account_history.username_status', status);
+ return t('user_history.username_status', status);
case 'BannedStatusHistory':
return status
- ? t('account_history.user_banned')
- : t('account_history.ban_removed');
+ ? t('user_history.user_banned')
+ : t('user_history.ban_removed');
case 'SuspensionStatusHistory':
return until
- ? t('account_history.suspended', readableDuration(created_at, until))
- : t('account_history.suspension_removed');
+ ? t('user_history.suspended', readableDuration(created_at, until))
+ : t('user_history.suspension_removed');
default:
return '-';
}
@@ -62,7 +62,7 @@ const getModerationValue = assignedBy =>
assignedBy.username
) : (
- {t('account_history.system')}
+ {t('user_history.system')}
);
@@ -79,14 +79,12 @@ class AccountHistory extends React.Component {
'talk-admin-account-history-header-row'
)}
>
+
{t('user_history.date')}
- {t('account_history.date')}
+ {t('user_history.action')}
- {t('account_history.action')}
-
-
- {t('account_history.taken_by')}
+ {t('user_history.taken_by')}
{userHistory.map(
diff --git a/client/coral-admin/src/components/UserDetail.js b/client/coral-admin/src/components/UserDetail.js
index 31ad999dc..7181a6f52 100644
--- a/client/coral-admin/src/components/UserDetail.js
+++ b/client/coral-admin/src/components/UserDetail.js
@@ -286,7 +286,7 @@ class UserDetail extends React.Component {
'talk-admin-user-detail-history-tab'
)}
>
- {t('user_detail.account_history')}
+ {t('user_detail.user_history')}
diff --git a/locales/ar.yml b/locales/ar.yml
index 3c94c06f0..98f6cc54e 100644
--- a/locales/ar.yml
+++ b/locales/ar.yml
@@ -438,8 +438,8 @@ ar:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/da.yml b/locales/da.yml
index 9618b2f58..0afe4c5ce 100644
--- a/locales/da.yml
+++ b/locales/da.yml
@@ -431,8 +431,8 @@ da:
reports: "Rapporter"
all: "Alle"
rejected: "Afvist"
- account_history: "Konto historik"
- account_history:
+ user_history: "Konto historik"
+ user_history:
user_banned: "Bruger bannet"
ban_removed: "Ban fjernet"
username_status: "Brugernavn {0}"
diff --git a/locales/de.yml b/locales/de.yml
index 972c2735b..6f7a1a66e 100644
--- a/locales/de.yml
+++ b/locales/de.yml
@@ -430,8 +430,8 @@ de:
reports: "Meldungen"
all: "Alle"
rejected: "Abgelehnte"
- account_history: "Konto-Verlauf"
- account_history:
+ user_history: "Konto-Verlauf"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/en.yml b/locales/en.yml
index 08d64ddc8..6e4f82c0d 100644
--- a/locales/en.yml
+++ b/locales/en.yml
@@ -439,8 +439,8 @@ en:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/es.yml b/locales/es.yml
index ba6cb8ad3..e492aca6f 100644
--- a/locales/es.yml
+++ b/locales/es.yml
@@ -432,8 +432,8 @@ es:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/fr.yml b/locales/fr.yml
index dd14bea81..1f027d49a 100644
--- a/locales/fr.yml
+++ b/locales/fr.yml
@@ -432,8 +432,8 @@ fr:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/nl_NL.yml b/locales/nl_NL.yml
index aa80f58be..9d4057065 100644
--- a/locales/nl_NL.yml
+++ b/locales/nl_NL.yml
@@ -431,8 +431,8 @@ nl_NL:
reports: "Rapportages"
all: "Alle"
rejected: "Afgewezen"
- account_history: "Accountgeschiedenis"
- account_history:
+ user_history: "Accountgeschiedenis"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/pt_BR.yml b/locales/pt_BR.yml
index 86267d51d..d9ef119ed 100644
--- a/locales/pt_BR.yml
+++ b/locales/pt_BR.yml
@@ -430,8 +430,8 @@ pt_BR:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/zh_CN.yml b/locales/zh_CN.yml
index 59e028eb7..b3307a886 100644
--- a/locales/zh_CN.yml
+++ b/locales/zh_CN.yml
@@ -432,8 +432,8 @@ zh_CN:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"
diff --git a/locales/zh_TW.yml b/locales/zh_TW.yml
index 1b131f636..c186a667f 100644
--- a/locales/zh_TW.yml
+++ b/locales/zh_TW.yml
@@ -432,8 +432,8 @@ zh_TW:
reports: "Reports"
all: "All"
rejected: "Rejected"
- account_history: "Account History"
- account_history:
+ user_history: "User History"
+ user_history:
user_banned: "User banned"
ban_removed: "Ban removed"
username_status: "Username {0}"