diff options
author | George Calderon <gcald117@gmail.com> | 2023-10-21 18:00:37 -0700 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-11-10 17:42:10 +0100 |
commit | a04768628267e34e7eeb40e3dbca434e04a9fd06 (patch) | |
tree | 98ee2d7e59e341230fd1d115cfa64cbe3e58a92e | |
parent | 4871f59c35842591912c8bbb34e8bd3b2ed34932 (diff) | |
download | nextcloud-server-a04768628267e34e7eeb40e3dbca434e04a9fd06.tar.gz nextcloud-server-a04768628267e34e7eeb40e3dbca434e04a9fd06.zip |
Updated visible 'Twitter' name to 'X' in Personal info
Signed-off-by: George Calderon <gcald117@gmail.com>
-rw-r--r-- | apps/settings/src/components/PersonalInfo/TwitterSection.vue | 2 | ||||
-rw-r--r-- | apps/settings/src/constants/AccountPropertyConstants.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/components/PersonalInfo/TwitterSection.vue b/apps/settings/src/components/PersonalInfo/TwitterSection.vue index 78e4056cf33..dda773a0179 100644 --- a/apps/settings/src/components/PersonalInfo/TwitterSection.vue +++ b/apps/settings/src/components/PersonalInfo/TwitterSection.vue @@ -22,7 +22,7 @@ <template> <AccountPropertySection v-bind.sync="twitter" - :placeholder="t('settings', 'Your X handle')" /> + :placeholder="t('settings', 'Your X (formerly Twitter) handle')" /> </template> <script> diff --git a/apps/settings/src/constants/AccountPropertyConstants.js b/apps/settings/src/constants/AccountPropertyConstants.js index 2a9e7802fd7..04367fde811 100644 --- a/apps/settings/src/constants/AccountPropertyConstants.js +++ b/apps/settings/src/constants/AccountPropertyConstants.js @@ -58,7 +58,7 @@ export const ACCOUNT_PROPERTY_READABLE_ENUM = Object.freeze({ PHONE: t('settings', 'Phone number'), PROFILE_ENABLED: t('settings', 'Profile'), ROLE: t('settings', 'Role'), - TWITTER: t('settings', 'X (Formerly Twitter)'), + TWITTER: t('settings', 'X (formerly Twitter)'), FEDIVERSE: t('settings', 'Fediverse (e.g. Mastodon)'), WEBSITE: t('settings', 'Website'), }) |