Skip to content

Commit 21bcd53

Browse files
authored
Twitter to X (#1835)
1 parent f90e90e commit 21bcd53

File tree

18 files changed

+29
-26
lines changed

18 files changed

+29
-26
lines changed

frontend/public/icons/crowd-icons.svg

Lines changed: 3 additions & 3 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
-2.85 KB
Loading

frontend/src/i18n/en.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ const en = {
263263
revenueRange: 'Annual revenue',
264264
activeSince: 'Active since',
265265
github: 'GitHub',
266-
twitter: 'Twitter',
266+
twitter: 'X/Twitter',
267267
linkedin: 'LinkedIn',
268268
crunchbase: 'Crunchbase',
269269
},

frontend/src/integrations/twitter/components/twitter-connect-drawer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<app-drawer
33
v-model="isVisible"
44
custom-class="integration-twitter-drawer"
5-
title="Twitter"
5+
title="X/Twitter"
66
size="600px"
77
pre-title="Integration"
88
:pre-title-img-src="logoUrl"
9-
pre-title-img-alt="Twitter logo"
9+
pre-title-img-alt="X/Twitter logo"
1010
@close="isVisible = false"
1111
>
1212
<template #content>

frontend/src/integrations/twitter/components/twitter-connect-modal.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
<template #header>
44
<div>
55
<p class="text-2xs leading-5 text-gray-500 mb-0.5">
6-
Twitter integration
6+
X/Twitter integration
77
</p>
88
<h4 class="text-base font-semibold">
9-
Connect Twitter via Zapier
9+
Connect X/Twitter via Zapier
1010
</h4>
1111
</div>
1212
</template>
1313
<template #content>
1414
<div class="px-6 pb-6">
1515
<img src="/images/integrations/twitter-zapier.jpg" alt="Twitter Zapier integration" class="w-full mb-6">
1616
<p class="text-sm leading-5 text-gray-500 pb-8">
17-
Due to Twitter’s recent API changes, our native Twitter integration was discontinued on April 31st, 2023.
18-
To keep tracking Twitter activities, you will have to use Zapier.
17+
Due to X/Twitter’s recent API changes, our native X/Twitter integration was discontinued on April 31st, 2023.
18+
To keep tracking X/Twitter activities, you will have to use Zapier.
1919
The Zapier workflow will require some manual set-up, and a Zapier premium account (starting from $19.99/month).
2020
</p>
2121
<a href="https://zapier.com/shared/create-activities-in-crowddev-from-new-twitter-followers/e61afb14fdd16e7235343aab9aa57b4d40a71ecf" target="_blank" rel="noopener noreferrer" class="mb-4 block">

frontend/src/integrations/twitter/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import TwitterConnect from './components/twitter-connect.vue';
44

55
export default {
66
enabled: true,
7-
name: 'Twitter',
7+
name: 'X/Twitter',
88
backgroundColor: '#d2ebfc',
99
borderColor: '#d2ebfc',
1010
description:
11-
'Connect Twitter to sync profile information, followers, and relevant tweets.',
11+
'Connect X/Twitter to sync profile information, followers, and relevant tweets.',
1212
image:
13-
'https://cdn-icons-png.flaticon.com/512/733/733579.png',
13+
'/images/integrations/twitter-x.svg',
1414
connectComponent: config.isTwitterIntegrationEnabled ? TwitterConnect2 : TwitterConnect,
1515
url: ({ username }) => (username ? `https://twitter.com/${username}` : null),
1616
chartColor: '#1D9BF0',

frontend/src/modules/activity/activity-platform-field.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default class ActivityPlatformField extends StringField {
2929
},
3030
{
3131
value: 'twitter',
32-
label: 'Twitter',
32+
label: 'X/Twitter',
3333
},
3434
{
3535
value: 'devto',

frontend/src/modules/automation/config/automation-types/shared/filter-options/new-activity-filter-options.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const computedPlatformOptions = computed(() => [...active.value.map((item) => ({
126126
})),
127127
{
128128
value: 'twitter',
129-
label: 'Twitter',
129+
label: 'X/Twitter',
130130
},
131131
]);
132132

frontend/src/modules/automation/config/automation-types/shared/filter-options/new-member-filter-options.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const computedPlatformOptions = computed(() => [...active.value.map((item) => ({
7777
})),
7878
{
7979
value: 'twitter',
80-
label: 'Twitter',
80+
label: 'X/Twitter',
8181
},
8282
]);
8383

0 commit comments

Comments
 (0)