aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src
diff options
context:
space:
mode:
authorGeorge Calderon <gcald117@gmail.com>2023-10-21 18:00:37 -0700
committerAndy Scherzinger <info@andy-scherzinger.de>2023-11-10 17:42:10 +0100
commit4871f59c35842591912c8bbb34e8bd3b2ed34932 (patch)
treeda9444ffc1431976dedeb1a74def4062393b6b24 /apps/settings/src
parent1d9c482e689a474be8f4010a9a898f16e7a5ae25 (diff)
downloadnextcloud-server-4871f59c35842591912c8bbb34e8bd3b2ed34932.tar.gz
nextcloud-server-4871f59c35842591912c8bbb34e8bd3b2ed34932.zip
Updated visible 'Twitter' name to 'X' in Personal info
Signed-off-by: George Calderon <gcald117@gmail.com>
Diffstat (limited to 'apps/settings/src')
-rw-r--r--apps/settings/src/components/PersonalInfo/TwitterSection.vue2
-rw-r--r--apps/settings/src/constants/AccountPropertyConstants.js2
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 78a772973fb..78e4056cf33 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 Twitter handle')" />
+ :placeholder="t('settings', 'Your X handle')" />
</template>
<script>
diff --git a/apps/settings/src/constants/AccountPropertyConstants.js b/apps/settings/src/constants/AccountPropertyConstants.js
index fdca7371507..2a9e7802fd7 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', 'Twitter'),
+ TWITTER: t('settings', 'X (Formerly Twitter)'),
FEDIVERSE: t('settings', 'Fediverse (e.g. Mastodon)'),
WEBSITE: t('settings', 'Website'),
})