diff --git a/src/components/mrf_transparency_panel/mrf_transparency_panel.vue b/src/components/mrf_transparency_panel/mrf_transparency_panel.vue
index cb2436806..fa87c9094 100644
--- a/src/components/mrf_transparency_panel/mrf_transparency_panel.vue
+++ b/src/components/mrf_transparency_panel/mrf_transparency_panel.vue
@@ -43,7 +43,7 @@
>
{{ entry.instance }} |
- {{ $t("about.mrf.simple.not_applicable") }}
+ {{ $t("general.not_applicable") }}
|
{{ entry.reason }}
@@ -70,7 +70,7 @@
>
| {{ entry.instance }} |
- {{ $t("about.mrf.simple.not_applicable") }}
+ {{ $t("general.not_applicable") }}
|
{{ entry.reason }}
@@ -97,7 +97,7 @@
>
| {{ entry.instance }} |
- {{ $t("about.mrf.simple.not_applicable") }}
+ {{ $t("general.not_applicable") }}
|
{{ entry.reason }}
@@ -124,7 +124,7 @@
>
| {{ entry.instance }} |
- {{ $t("about.mrf.simple.not_applicable") }}
+ {{ $t("general.not_applicable") }}
|
{{ entry.reason }}
@@ -151,7 +151,7 @@
>
| {{ entry.instance }} |
- {{ $t("about.mrf.simple.not_applicable") }}
+ {{ $t("general.not_applicable") }}
|
{{ entry.reason }}
@@ -178,7 +178,7 @@
>
| {{ entry.instance }} |
- {{ $t("about.mrf.simple.not_applicable") }}
+ {{ $t("general.not_applicable") }}
|
{{ entry.reason }}
diff --git a/src/components/settings_modal/admin_tabs/admin_card.vue b/src/components/settings_modal/admin_tabs/admin_card.vue
index 9f459231d..8b7b355fe 100644
--- a/src/components/settings_modal/admin_tabs/admin_card.vue
+++ b/src/components/settings_modal/admin_tabs/admin_card.vue
@@ -60,6 +60,12 @@
>
{{ $t('admin_dash.users.indicator.unapproved') }}
+
+
+
+
+ {{ $t('user_card.admin_data.data') }}
+
+
+
+ -
+ {{ $t('general.role.admin') }}
+
+ -
+ {{ $t('general.' + (user.adminData.roles.admin ? 'yes' : 'no')) }}
+
+
+
+ -
+ {{ $t('general.role.moderator') }}
+
+ -
+ {{ $t('general.' + (user.adminData.roles.moderator ? 'yes' : 'no')) }}
+
+
+
+ -
+ {{ $t('admin_dash.users.labels.email') }}
+
+ -
+ {{ user.adminData.email == null ? $t('general.not_available') : user.adminData.email }}
+
+
+
+ -
+ {{ $t('admin_dash.users.indicator.suggested') }}
+
+ -
+ {{ $t('general.' + (user.adminData.is_suggested ? 'yes' : 'no')) }}
+
+
+
+ -
+ {{ $t('admin_dash.users.indicator.confirmed') }}
+
+ -
+ {{ $t('general.' + (user.adminData.is_confirmed ? 'yes' : 'no')) }}
+
+
+
+ -
+ {{ $t('admin_dash.users.indicator.approved') }}
+
+ -
+ {{ $t('general.' + (user.adminData.is_approved ? 'yes' : 'no')) }}
+
+
+
+
+ {{ $t('user_card.admin_data.registration_reason') }}
+
+
+ {{ user.adminData.registration_reason == null ? $t('general.not_available') : user.adminData.registration_reason }}
+
+
+
+
+ {{ $t('user_card.admin_data.tags') }}
+
+
+ -
+ {{ $t('general.none') }}
+
+ -
+
+ {{ tag }}
+
+ {{ ' ' }}
+
+
+
+
+
+
{{ $t('settings.bio') }}
diff --git a/src/i18n/en.json b/src/i18n/en.json
index 1ce468cc6..777af9a72 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -106,6 +106,9 @@
"undo": "Undo",
"yes": "Yes",
"no": "No",
+ "none": "None",
+ "not_applicable": "N/A",
+ "not_available": "N/A",
"peek": "Peek",
"scroll_to_top": "Scroll to top",
"role": {
@@ -1334,6 +1337,7 @@
"confirmed": "Confirmed",
"unconfirmed": "Pending confirmation",
"approved": "Approved",
+ "suggested": "Suggested",
"unapproved": "Pending approval"
}
},
@@ -1769,6 +1773,11 @@
"group": "Group",
"birthday": "Born {birthday}",
"joined": "Joined",
+ "admin_data": {
+ "data": "Administrative info",
+ "registration_reason": "Registration reason",
+ "tags": "Tags"
+ },
"admin_menu": {
"moderation": "Moderation",
"grant_admin": "Grant Admin",
|