From 7e8b2634a2d995fec3845629fffa6341ca8698c3 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Fri, 3 Nov 2023 12:23:32 +0000 Subject: [PATCH] Add new X icons, replace Twitter --- frontend/src/components/Dialogs/Community.tsx | 12 ++++-------- frontend/src/components/Dialogs/Coordinator.tsx | 8 ++++---- frontend/src/components/Icons/X.tsx | 15 +++++++++++++++ frontend/src/components/Icons/index.ts | 1 + frontend/static/locales/ca.json | 6 +++--- frontend/static/locales/cs.json | 6 +++--- frontend/static/locales/de.json | 6 +++--- frontend/static/locales/en.json | 6 +++--- frontend/static/locales/es.json | 6 +++--- frontend/static/locales/eu.json | 6 +++--- frontend/static/locales/fr.json | 6 +++--- frontend/static/locales/it.json | 6 +++--- frontend/static/locales/ja.json | 6 +++--- frontend/static/locales/pl.json | 6 +++--- frontend/static/locales/pt.json | 6 +++--- frontend/static/locales/ru.json | 6 +++--- frontend/static/locales/sv.json | 6 +++--- frontend/static/locales/sw.json | 6 +++--- frontend/static/locales/th.json | 6 +++--- frontend/static/locales/zh-SI.json | 6 +++--- frontend/static/locales/zh-TR.json | 6 +++--- 21 files changed, 75 insertions(+), 63 deletions(-) create mode 100644 frontend/src/components/Icons/X.tsx diff --git a/frontend/src/components/Dialogs/Community.tsx b/frontend/src/components/Dialogs/Community.tsx index de492d69..43f44e42 100644 --- a/frontend/src/components/Dialogs/Community.tsx +++ b/frontend/src/components/Dialogs/Community.tsx @@ -15,10 +15,9 @@ import { } from '@mui/material'; import SendIcon from '@mui/icons-material/Send'; import GitHubIcon from '@mui/icons-material/GitHub'; -import TwitterIcon from '@mui/icons-material/Twitter'; import RedditIcon from '@mui/icons-material/Reddit'; import Flags from 'country-flag-icons/react/3x2'; -import { NostrIcon, SimplexIcon } from '../Icons'; +import { NostrIcon, SimplexIcon, XIcon } from '../Icons'; interface Props { open: boolean; @@ -117,17 +116,14 @@ const CommunityDialog = ({ open = false, onClose }: Props): JSX.Element => { - + - + diff --git a/frontend/src/components/Dialogs/Coordinator.tsx b/frontend/src/components/Dialogs/Coordinator.tsx index 425b2f58..f4a18881 100644 --- a/frontend/src/components/Dialogs/Coordinator.tsx +++ b/frontend/src/components/Dialogs/Coordinator.tsx @@ -40,7 +40,6 @@ import { Language, Send, Tag, - Twitter, } from '@mui/icons-material'; import LinkIcon from '@mui/icons-material/Link'; @@ -58,6 +57,7 @@ import { BadgeLimits, NostrIcon, SimplexIcon, + XIcon, } from '../Icons'; import { AppContext } from '../../contexts/AppContext'; import { systemClient } from '../../services/System'; @@ -155,14 +155,14 @@ const ContactButtons = ({ {twitter !== undefined && ( - + - + diff --git a/frontend/src/components/Icons/X.tsx b/frontend/src/components/Icons/X.tsx new file mode 100644 index 00000000..91a3ae26 --- /dev/null +++ b/frontend/src/components/Icons/X.tsx @@ -0,0 +1,15 @@ +import React from 'react'; +import { SvgIcon, type SvgIconProps } from '@mui/material'; + +const X: React.FC = (props) => { + return ( + + + + ); +}; + +export default X; diff --git a/frontend/src/components/Icons/index.ts b/frontend/src/components/Icons/index.ts index 4c31811f..d86bca9e 100644 --- a/frontend/src/components/Icons/index.ts +++ b/frontend/src/components/Icons/index.ts @@ -17,6 +17,7 @@ export { default as ExportIcon } from './Export'; export { default as UserNinjaIcon } from './UserNinja'; export { default as TorIcon } from './Tor'; export { default as SimplexIcon } from './Simplex'; +export { default as XIcon } from './X'; // Badges export { default as BadgeFounder } from './BadgeFounder'; diff --git a/frontend/static/locales/ca.json b/frontend/static/locales/ca.json index 86d080ee..d2c6cee6 100644 --- a/frontend/static/locales/ca.json +++ b/frontend/static/locales/ca.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Comunitat", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Segueix RoboSats a Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Problemes de Github - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Uneix-te a la nostra comunitat de RoboSats en anglès!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Proposa funcionalitats o notifica errors", - "Twitter Official Account": "Compte oficial a Twitter", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Volum contractat en 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Robots actius avui", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Activar", diff --git a/frontend/static/locales/cs.json b/frontend/static/locales/cs.json index 44eef86b..55397ef7 100644 --- a/frontend/static/locales/cs.json +++ b/frontend/static/locales/cs.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Komunity", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Sleduj RoboSats na Twitteru", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Přidej se k anglicky mluvící RoboSats komunitě!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Našel jsi bug nebo novou funkci? Napiš nám ", - "Twitter Official Account": "Oficiální Twitter účet", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Zobchodované množství za 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Dnešní aktivní roboti", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Povolit", diff --git a/frontend/static/locales/de.json b/frontend/static/locales/de.json index 9332a663..c74aa6a3 100644 --- a/frontend/static/locales/de.json +++ b/frontend/static/locales/de.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Community", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Folge RoboSats auf Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - Das Roboter-Satoshi Open-Source-Projekt", "Join RoboSats English speaking community!": "Tritt der Englischen RoboSats-Gruppe bei!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Erzähle uns von neuen Funktionen oder einem Fehler", - "Twitter Official Account": "Offizieller Twitter-Account", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24h Handelsvolumen", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Heute aktive Roboter", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Aktivieren", diff --git a/frontend/static/locales/en.json b/frontend/static/locales/en.json index 7b99608d..5407716b 100644 --- a/frontend/static/locales/en.json +++ b/frontend/static/locales/en.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Community", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Follow RoboSats in Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Join RoboSats English speaking community!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Tell us about a new feature or a bug", - "Twitter Official Account": "Twitter Official Account", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24h contracted volume", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Today active robots", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Enable", diff --git a/frontend/static/locales/es.json b/frontend/static/locales/es.json index 09dd7e0c..396da024 100644 --- a/frontend/static/locales/es.json +++ b/frontend/static/locales/es.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Comunidad", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Sigue a RoboSats en Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Fallos en Github - El proyecto de código libre de satoshis robóticos", "Join RoboSats English speaking community!": "¡Únete a la comunidad de RoboSats en inglés!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Propón funcionalidades o notifica errores", - "Twitter Official Account": "Cuenta oficial en Twitter", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Volumen de los contratos en 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Robots activos hoy", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Activar", diff --git a/frontend/static/locales/eu.json b/frontend/static/locales/eu.json index 7ed2c1ec..9a3d92ee 100644 --- a/frontend/static/locales/eu.json +++ b/frontend/static/locales/eu.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Komunitatea", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Jarraitu RoboSats Twitterren", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Egin bat ingelerazko RoboSats komunitatearekin!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Jakinarazi funtzionalitate berri bat edo akats bat", - "Twitter Official Account": "Twitter Kontu Ofiziala", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24 ordutan kontratatutako bolumena", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Robot aktiboak gaur", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Baimendu", diff --git a/frontend/static/locales/fr.json b/frontend/static/locales/fr.json index 3e08a257..1070d9f0 100644 --- a/frontend/static/locales/fr.json +++ b/frontend/static/locales/fr.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Communauté", "Follow RoboSats in Nostr": "Suivez RoboSats sur Nostr", - "Follow RoboSats in Twitter": "Suivez RoboSats sur Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Sujets Github - Le Projet Open Source des Satoshis Robotiques", "Join RoboSats English speaking community!": "Rejoignez la communauté anglophone de RoboSats!", "Join RoboSats SimpleX group": "Rejoignez RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats support public principal", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "L'assistance n'est offerte que via SimpleX. Rejoignez notre communauté si vous avez des questions ou si vous voulez passer du temps avec d'autres robots sympas. Utilisez les Sujets Github si vous trouvez un bug ou si vous voulez voir de nouvelles fonctionnalités !", "Tell us about a new feature or a bug": "Parlez-nous d'une nouvelle fonctionnalité ou d'un bug", - "Twitter Official Account": "Compte officiel Twitter", "We are abandoning Telegram! Our old TG groups": "Nous abandonnons Telegram ! Nos anciens groupes TG", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Volume contracté en 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Robots actifs aujourd'hui", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Navigateur", "Enable": "Activer", diff --git a/frontend/static/locales/it.json b/frontend/static/locales/it.json index 44a76110..03be2738 100644 --- a/frontend/static/locales/it.json +++ b/frontend/static/locales/it.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Comunità", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Segui RoboSats su Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Unisciti alla comunità RoboSats che parla inglese!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Comunicaci nuove funzionalità o bug", - "Twitter Official Account": "Account Twitter ufficiale", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Volume scambiato in 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "I robots attivi oggi", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Attiva", diff --git a/frontend/static/locales/ja.json b/frontend/static/locales/ja.json index 5126acb0..029a27fb 100644 --- a/frontend/static/locales/ja.json +++ b/frontend/static/locales/ja.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "コミュニティー", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "TwitterでRoboSatsをフォロー", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "GitHub Issues-ロボティック・サトシ・オープンソース・プロジェクト", "Join RoboSats English speaking community!": "RoboSatsの英語コミュニティーへの参加はこちら!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "新しい機能やバグについて教えてください", - "Twitter Official Account": "Twitter公式アカウント", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24時間の契約量", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "本日アクティブなロボット", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "ブラウザー", "Enable": "有効化", diff --git a/frontend/static/locales/pl.json b/frontend/static/locales/pl.json index 53465d07..f9eb28ad 100644 --- a/frontend/static/locales/pl.json +++ b/frontend/static/locales/pl.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Społeczność", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Follow RoboSats in Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Problemy z Githubem — projekt Robotic Satoshis Open Source", "Join RoboSats English speaking community!": "Dołącz do anglojęzycznej społeczności RoboSats!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Poinformuj nas o nowej funkcji lub błędzie", - "Twitter Official Account": "Twitter Official Account", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Zakontraktowana objętość 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Dziś aktywne roboty", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Włączyć", diff --git a/frontend/static/locales/pt.json b/frontend/static/locales/pt.json index c6c0f931..7027771d 100644 --- a/frontend/static/locales/pt.json +++ b/frontend/static/locales/pt.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Comunidade", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Siga RoboSats no Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Junte-se à comunidade RoboSats de língua inglesa!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Conte-nos sobre um novo recurso ou um bug", - "Twitter Official Account": "Conta oficial no Twitter", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Volume contratado em 24h", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Robôs ativos hoje", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Ativar", diff --git a/frontend/static/locales/ru.json b/frontend/static/locales/ru.json index 3ac20e00..b1cbfcc5 100644 --- a/frontend/static/locales/ru.json +++ b/frontend/static/locales/ru.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Сообщество", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Подпиcаться на RoboSats в Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis проект с открытым исходным кодом", "Join RoboSats English speaking community!": "Присоединиться к англоязычному сообществу RoboSats!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Расскажите нам о новой функции или ошибке", - "Twitter Official Account": "Официальный аккаунт в Twitter", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Объём контрактов за 24 часа", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Сегодня активных роботов", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Включить", diff --git a/frontend/static/locales/sv.json b/frontend/static/locales/sv.json index 8111c928..0d88e422 100644 --- a/frontend/static/locales/sv.json +++ b/frontend/static/locales/sv.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Community", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "Följ RoboSats på Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Join RoboSats English speaking community!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "Tipsa om en bugg eller ny funktion", - "Twitter Official Account": "Officielt Twitterkonto", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24h kontrakterad volym", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Aktiva robotar idag", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "Aktivera", diff --git a/frontend/static/locales/sw.json b/frontend/static/locales/sw.json index aefd9ee2..1cc846be 100644 --- a/frontend/static/locales/sw.json +++ b/frontend/static/locales/sw.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "Jumuiya", "Follow RoboSats in Nostr": "Fuata RoboSats katika Nostr", - "Follow RoboSats in Twitter": "Fuata RoboSats kwenye Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Masuala ya Github - Mradi wa Chanzo Wazi wa Robotic Satoshis", "Join RoboSats English speaking community!": "Jiunge na jumuiya ya wasemaji wa Kiingereza wa RoboSats!", "Join RoboSats SimpleX group": "Jiunge na kikundi cha SimpleX cha RoboSats", @@ -234,8 +234,8 @@ "RoboSats main public support": "Msaada mkuu wa umma wa RoboSats", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Msaada unatolewa tu kupitia SimpleX. Jiunge na jumuiya yetu ikiwa una maswali au unataka kutumia wakati na robots wengine wazuri. Tafadhali, tumia Masuala yetu ya Github ikiwa utapata mdudu au unataka kuona huduma mpya!", "Tell us about a new feature or a bug": "Tuambie kuhusu huduma mpya au mdudu", - "Twitter Official Account": "Akaunti Rasmi ya Twitter", "We are abandoning Telegram! Our old TG groups": "Tunaiacha Telegram! Vikundi vyetu vya zamani vya TG", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "Kiasi kilichoidhinishwa kwa masaa 24", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "Robots wenye shughuli leo", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Kivinjari", "Enable": "Washa", diff --git a/frontend/static/locales/th.json b/frontend/static/locales/th.json index c2217091..4e940823 100644 --- a/frontend/static/locales/th.json +++ b/frontend/static/locales/th.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "ชุมชน", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "ติดตาม RoboSats บน Twitter", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project", "Join RoboSats English speaking community!": "Join RoboSats English speaking community!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "บอกเราเกี่ยวกับฟีเจอร์ใหม่หรือบัค", - "Twitter Official Account": "Twitter Official Account", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24h ปริมาณการซื้อขาย 24 ชั่วโมงที่แล้ว", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "จำนวนโรบอทที่ใช้งานในวันนี้", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "Browser", "Enable": "เปิดใช้งาน", diff --git a/frontend/static/locales/zh-SI.json b/frontend/static/locales/zh-SI.json index b57a3b46..31708b92 100644 --- a/frontend/static/locales/zh-SI.json +++ b/frontend/static/locales/zh-SI.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "社群", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "在 Twitter 上关注 RoboSats", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - Robotic Satoshis 开源项目", "Join RoboSats English speaking community!": "加入 RoboSats 英语社群!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "向我们报告错误或要求新功能", - "Twitter Official Account": "Twitter 官方账号", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24小时合约量", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "今天活跃的机器人", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "浏览器", "Enable": "开启", diff --git a/frontend/static/locales/zh-TR.json b/frontend/static/locales/zh-TR.json index 0db0a48e..c735c779 100644 --- a/frontend/static/locales/zh-TR.json +++ b/frontend/static/locales/zh-TR.json @@ -224,7 +224,7 @@ "#22": "Phrases in components/Dialogs/Community.tsx", "Community": "社群", "Follow RoboSats in Nostr": "Follow RoboSats in Nostr", - "Follow RoboSats in Twitter": "在 Twitter 上關注 RoboSats", + "Follow RoboSats in X": "Follow RoboSats in X", "Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - Robotic Satoshis 開源項目", "Join RoboSats English speaking community!": "加入 RoboSats 英語社群!", "Join RoboSats SimpleX group": "Join RoboSats SimpleX group", @@ -234,8 +234,8 @@ "RoboSats main public support": "RoboSats main public support", "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support is only offered via SimpleX. Join our community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!", "Tell us about a new feature or a bug": "向我們報告錯誤或要求新功能", - "Twitter Official Account": "Twitter 官方帳號", "We are abandoning Telegram! Our old TG groups": "We are abandoning Telegram! Our old TG groups", + "X Official Account": "X Official Account", "#23": "Phrases in components/Dialogs/Coordinator.tsx", "...Opening on Nostr gateway. Pubkey copied!": "...Opening on Nostr gateway. Pubkey copied!", "24h contracted volume": "24小時合約量", @@ -277,8 +277,8 @@ "The coordinator does not seem to receive exceptional love from robots over the internet": "The coordinator does not seem to receive exceptional love from robots over the internet", "The privacy practices of this coordinator could improve": "The privacy practices of this coordinator could improve", "Today active robots": "今天活躍的機器人", - "Twitter": "Twitter", "Website": "Website", + "X": "X", "#24": "Phrases in components/Dialogs/EnableTelegram.tsx", "Browser": "瀏覽器", "Enable": "開啟",