From 5748bb4bfcd66e25036c0d374b2a7a9a8110c6b5 Mon Sep 17 00:00:00 2001 From: crschnick Date: Sun, 21 Jul 2024 02:25:14 +0000 Subject: [PATCH] Add foot terminal translation --- app/src/main/java/io/xpipe/app/prefs/AboutCategory.java | 7 +++++++ app/src/main/java/io/xpipe/app/util/Hyperlinks.java | 2 ++ .../main/resources/io/xpipe/app/resources/misc/welcome.md | 1 + lang/app/strings/fixed_en.properties | 3 ++- lang/app/strings/translations_da.properties | 1 + lang/app/strings/translations_de.properties | 1 + lang/app/strings/translations_en.properties | 1 + lang/app/strings/translations_es.properties | 1 + lang/app/strings/translations_fr.properties | 1 + lang/app/strings/translations_it.properties | 1 + lang/app/strings/translations_ja.properties | 1 + lang/app/strings/translations_nl.properties | 1 + lang/app/strings/translations_pt.properties | 1 + lang/app/strings/translations_ru.properties | 1 + lang/app/strings/translations_tr.properties | 1 + lang/app/strings/translations_zh.properties | 1 + lang/uacc/texts/contact_da.md | 7 ++++--- lang/uacc/texts/contact_de.md | 3 ++- lang/uacc/texts/contact_en.md | 1 + lang/uacc/texts/contact_es.md | 1 + lang/uacc/texts/contact_fr.md | 3 ++- lang/uacc/texts/contact_it.md | 1 + lang/uacc/texts/contact_ja.md | 1 + lang/uacc/texts/contact_nl.md | 1 + lang/uacc/texts/contact_pt.md | 3 ++- lang/uacc/texts/contact_ru.md | 1 + lang/uacc/texts/contact_tr.md | 1 + lang/uacc/texts/contact_zh.md | 1 + 28 files changed, 42 insertions(+), 7 deletions(-) diff --git a/app/src/main/java/io/xpipe/app/prefs/AboutCategory.java b/app/src/main/java/io/xpipe/app/prefs/AboutCategory.java index 8d0b2b28..5b363285 100644 --- a/app/src/main/java/io/xpipe/app/prefs/AboutCategory.java +++ b/app/src/main/java/io/xpipe/app/prefs/AboutCategory.java @@ -31,6 +31,13 @@ public class AboutCategory extends AppPrefsCategory { }) .grow(true, false), null) + .addComp( + new TileButtonComp("slack", "slackDescription", "mdi2s-slack", e -> { + Hyperlinks.open(Hyperlinks.SLACK); + e.consume(); + }) + .grow(true, false), + null) .addComp( new TileButtonComp("securityPolicy", "securityPolicyDescription", "mdrmz-security", e -> { Hyperlinks.open(Hyperlinks.SECURITY); diff --git a/app/src/main/java/io/xpipe/app/util/Hyperlinks.java b/app/src/main/java/io/xpipe/app/util/Hyperlinks.java index 71a78bfd..9a1b9021 100644 --- a/app/src/main/java/io/xpipe/app/util/Hyperlinks.java +++ b/app/src/main/java/io/xpipe/app/util/Hyperlinks.java @@ -11,6 +11,8 @@ public class Hyperlinks { public static final String SECURITY = "https://docs.xpipe.io/security"; public static final String TRANSLATE = "https://github.com/xpipe-io/xpipe/tree/master/lang"; public static final String DISCORD = "https://discord.gg/8y89vS8cRb"; + public static final String SLACK = + "https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg"; static final String[] browsers = { "xdg-open", "google-chrome", "firefox", "opera", "konqueror", "mozilla", "gnome-open", "open" diff --git a/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md b/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md index ee1e0aa7..3d99b607 100644 --- a/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md +++ b/app/src/main/resources/io/xpipe/app/resources/misc/welcome.md @@ -5,6 +5,7 @@ You can view the development status, report issues, and more at the following pl - [GitHub Repository](https://github.com/xpipe-io/xpipe/) - [Discord Server](https://discord.gg/8y89vS8cRb) +- [Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - [Email me](mailto://crschnick@xpipe.io) Note that the XPipe project currently is a one-man show, but I still try to respond to everything in time. diff --git a/lang/app/strings/fixed_en.properties b/lang/app/strings/fixed_en.properties index dff455dc..5ec85025 100644 --- a/lang/app/strings/fixed_en.properties +++ b/lang/app/strings/fixed_en.properties @@ -18,6 +18,7 @@ alacrittyMacOs=Alacritty kittyMacOs=Kitty bbedit=BBEdit fleet=Fleet +foot=Foot intellij=IntelliJ IDEA pycharm=PyCharm webstorm=WebStorm @@ -34,7 +35,6 @@ coolRetroTerm=Cool Retro Term guake=Guake tilda=Tilda xterm=XTerm -foot=Foot deepinTerminal=Deepin Terminal qTerminal=QTerminal vscode=Visual Studio Code @@ -50,6 +50,7 @@ textEdit=Text Edit sublime=Sublime Text nullPointer=Null Pointer discord=Discord +slack=Slack github=GitHub mstsc=Microsoft Terminal Services Client (MSTSC) remmina=Remmina diff --git a/lang/app/strings/translations_da.properties b/lang/app/strings/translations_da.properties index d4cb7637..b1347c8d 100644 --- a/lang/app/strings/translations_da.properties +++ b/lang/app/strings/translations_da.properties @@ -203,6 +203,7 @@ securityPolicy=Sikkerhedsoplysninger securityPolicyDescription=Læs den detaljerede sikkerhedspolitik privacy=Privatlivspolitik privacyDescription=Læs privatlivspolitikken for XPipe-applikationen +slackDescription=Deltag i Slack-arbejdsområdet support=Understøttelse githubDescription=Tjek GitHub-arkivet ud openSourceNotices=Open Source-meddelelser diff --git a/lang/app/strings/translations_de.properties b/lang/app/strings/translations_de.properties index 2019dc88..d963e234 100644 --- a/lang/app/strings/translations_de.properties +++ b/lang/app/strings/translations_de.properties @@ -201,6 +201,7 @@ securityPolicy=Sicherheitsinformationen securityPolicyDescription=Lies die detaillierte Sicherheitsrichtlinie privacy=Datenschutzrichtlinie privacyDescription=Lies die Datenschutzbestimmungen für die XPipe-Anwendung +slackDescription=Dem Slack-Arbeitsbereich beitreten support=Unterstützung githubDescription=Schau dir das GitHub-Repository an openSourceNotices=Open-Source-Hinweise diff --git a/lang/app/strings/translations_en.properties b/lang/app/strings/translations_en.properties index fbeacc82..d19e68f1 100644 --- a/lang/app/strings/translations_en.properties +++ b/lang/app/strings/translations_en.properties @@ -200,6 +200,7 @@ securityPolicy=Security information securityPolicyDescription=Read the detailed security policy privacy=Privacy Policy privacyDescription=Read the privacy policy for the XPipe application +slackDescription=Join the Slack workspace support=Support githubDescription=Check out the GitHub repository openSourceNotices=Open Source Notices diff --git a/lang/app/strings/translations_es.properties b/lang/app/strings/translations_es.properties index 05a89cfd..9e70ffc5 100644 --- a/lang/app/strings/translations_es.properties +++ b/lang/app/strings/translations_es.properties @@ -193,6 +193,7 @@ securityPolicy=Información de seguridad securityPolicyDescription=Lee la política de seguridad detallada privacy=Política de privacidad privacyDescription=Lee la política de privacidad de la aplicación XPipe +slackDescription=Únete al espacio de trabajo Slack support=Soporte githubDescription=Consulta el repositorio GitHub openSourceNotices=Avisos de código abierto diff --git a/lang/app/strings/translations_fr.properties b/lang/app/strings/translations_fr.properties index 72c86b9c..42c7e441 100644 --- a/lang/app/strings/translations_fr.properties +++ b/lang/app/strings/translations_fr.properties @@ -193,6 +193,7 @@ securityPolicy=Informations de sécurité securityPolicyDescription=Lire la politique de sécurité détaillée privacy=Politique de confidentialité privacyDescription=Lis la politique de confidentialité de l'application XPipe +slackDescription=Rejoins l'espace de travail Slack support=Support githubDescription=Jette un coup d'œil au dépôt GitHub openSourceNotices=Avis Open Source diff --git a/lang/app/strings/translations_it.properties b/lang/app/strings/translations_it.properties index 2f3b6e1f..28cd94e1 100644 --- a/lang/app/strings/translations_it.properties +++ b/lang/app/strings/translations_it.properties @@ -193,6 +193,7 @@ securityPolicy=Informazioni sulla sicurezza securityPolicyDescription=Leggi la politica di sicurezza dettagliata privacy=Informativa sulla privacy privacyDescription=Leggi l'informativa sulla privacy dell'applicazione XPipe +slackDescription=Unisciti allo spazio di lavoro Slack support=Supporto githubDescription=Scopri il repository GitHub openSourceNotices=Avvisi Open Source diff --git a/lang/app/strings/translations_ja.properties b/lang/app/strings/translations_ja.properties index 35d1c364..a295c132 100644 --- a/lang/app/strings/translations_ja.properties +++ b/lang/app/strings/translations_ja.properties @@ -193,6 +193,7 @@ securityPolicy=セキュリティ情報 securityPolicyDescription=詳細なセキュリティポリシーを読む privacy=プライバシーポリシー privacyDescription=XPipeアプリケーションのプライバシーポリシーを読む +slackDescription=Slackワークスペースに参加する support=サポート githubDescription=GitHubリポジトリをチェックする openSourceNotices=オープンソースのお知らせ diff --git a/lang/app/strings/translations_nl.properties b/lang/app/strings/translations_nl.properties index e89be121..375539cf 100644 --- a/lang/app/strings/translations_nl.properties +++ b/lang/app/strings/translations_nl.properties @@ -193,6 +193,7 @@ securityPolicy=Beveiligingsinformatie securityPolicyDescription=Het gedetailleerde beveiligingsbeleid lezen privacy=Privacybeleid privacyDescription=Lees het privacybeleid voor de XPipe-toepassing +slackDescription=Word lid van de Slack-werkruimte support=Ondersteuning githubDescription=Bekijk de GitHub opslagplaats openSourceNotices=Open Bron Mededelingen diff --git a/lang/app/strings/translations_pt.properties b/lang/app/strings/translations_pt.properties index af58d6df..ebdad7e9 100644 --- a/lang/app/strings/translations_pt.properties +++ b/lang/app/strings/translations_pt.properties @@ -193,6 +193,7 @@ securityPolicy=Informações de segurança securityPolicyDescription=Lê a política de segurança detalhada privacy=Política de privacidade privacyDescription=Lê a política de privacidade da aplicação XPipe +slackDescription=Junta-te ao espaço de trabalho do Slack support=Apoia githubDescription=Consulta o repositório do GitHub openSourceNotices=Avisos de código aberto diff --git a/lang/app/strings/translations_ru.properties b/lang/app/strings/translations_ru.properties index 3a78fc08..b99610f5 100644 --- a/lang/app/strings/translations_ru.properties +++ b/lang/app/strings/translations_ru.properties @@ -193,6 +193,7 @@ securityPolicy=Информация о безопасности securityPolicyDescription=Прочитай подробную политику безопасности privacy=Политика конфиденциальности privacyDescription=Прочитай политику конфиденциальности для приложения XPipe +slackDescription=Присоединяйся к рабочему пространству Slack support=Поддержите githubDescription=Загляни в репозиторий GitHub openSourceNotices=Уведомления об открытом исходном коде diff --git a/lang/app/strings/translations_tr.properties b/lang/app/strings/translations_tr.properties index 6624765d..1ef862bb 100644 --- a/lang/app/strings/translations_tr.properties +++ b/lang/app/strings/translations_tr.properties @@ -193,6 +193,7 @@ securityPolicy=Güvenlik bilgileri securityPolicyDescription=Ayrıntılı güvenlik politikasını okuyun privacy=Gizlilik Politikası privacyDescription=XPipe uygulaması için gizlilik politikasını okuyun +slackDescription=Slack çalışma alanına katılın support=Destek githubDescription=GitHub deposuna göz atın openSourceNotices=Açık Kaynak Bildirimleri diff --git a/lang/app/strings/translations_zh.properties b/lang/app/strings/translations_zh.properties index b267b44d..c2b84394 100644 --- a/lang/app/strings/translations_zh.properties +++ b/lang/app/strings/translations_zh.properties @@ -193,6 +193,7 @@ securityPolicy=安全信息 securityPolicyDescription=阅读详细的安全策略 privacy=隐私政策 privacyDescription=阅读 XPipe 应用程序的隐私政策 +slackDescription=加入 Slack 工作区 support=支持 githubDescription=查看 GitHub 仓库 openSourceNotices=开源通知 diff --git a/lang/uacc/texts/contact_da.md b/lang/uacc/texts/contact_da.md index d34dd501..790e2b18 100644 --- a/lang/uacc/texts/contact_da.md +++ b/lang/uacc/texts/contact_da.md @@ -1,5 +1,6 @@ -Hvis du har spørgsmål, støder på problemer eller andet, kan du kontakte os: +Hvis du har spørgsmål, har problemer eller andet, kan du kontakte os: - Send os en e-mail på [hello@xpipe.io](mailto://hello@xpipe.io) -- Deltag i [XPipe Discord Server](https://discord.gg/8y89vS8cRb) -- Åbn et problem i [GitHub repository](https://github.com/xpipe-io/xpipe) \ No newline at end of file +- Deltag i vores [XPipe Discord Server](https://discord.gg/8y89vS8cRb) +- Deltag i vores [XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) +- Åbn et problem i vores [GitHub repository](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_de.md b/lang/uacc/texts/contact_de.md index 0e7a882e..f12a03c6 100644 --- a/lang/uacc/texts/contact_de.md +++ b/lang/uacc/texts/contact_de.md @@ -2,4 +2,5 @@ Wenn du Fragen hast, auf Probleme stößt oder irgendetwas anderes, kannst du un - Schreib uns eine E-Mail an [hello@xpipe.io](mailto://hello@xpipe.io) - Tritt dem [XPipe Discord Server](https://discord.gg/8y89vS8cRb) bei -- Eröffne ein Problem im [GitHub Repository](https://github.com/xpipe-io/xpipe) \ No newline at end of file +- Tritt dem [XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) bei +- Eröffne ein Problem im [GitHub-Repository](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_en.md b/lang/uacc/texts/contact_en.md index 6a332d6d..a3f67ee3 100644 --- a/lang/uacc/texts/contact_en.md +++ b/lang/uacc/texts/contact_en.md @@ -2,4 +2,5 @@ If you have any questions, encounter any issues, or anything else, you can conta - Email us at [hello@xpipe.io](mailto://hello@xpipe.io) - Join the [XPipe Discord Server](https://discord.gg/8y89vS8cRb) +- Join the [XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - Open an issue in the [GitHub repository](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_es.md b/lang/uacc/texts/contact_es.md index c5d270c7..c2b43134 100644 --- a/lang/uacc/texts/contact_es.md +++ b/lang/uacc/texts/contact_es.md @@ -2,4 +2,5 @@ Si tienes alguna pregunta, te surge algún problema o cualquier otra cosa, puede - Envíanos un correo electrónico a [hello@xpipe.io](mailto://hello@xpipe.io) - Únete al [Servidor Discord de XPipe](https://discord.gg/8y89vS8cRb) +- Únete al [Servidor Slack de XPipe](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - Abre una incidencia en el [Repositorio de GitHub](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_fr.md b/lang/uacc/texts/contact_fr.md index 9b7efe0f..7491c491 100644 --- a/lang/uacc/texts/contact_fr.md +++ b/lang/uacc/texts/contact_fr.md @@ -2,4 +2,5 @@ Si tu as des questions, si tu rencontres des problèmes, ou quoi que ce soit d'a - Envoie-nous un courriel à [hello@xpipe.io](mailto://hello@xpipe.io) - Rejoindre le [Serveur XPipe Discord](https://discord.gg/8y89vS8cRb) -- Ouvrir un problème dans le [dépôt GitHub](https://github.com/xpipe-io/xpipe) \ No newline at end of file +- Rejoins le [Serveur XPipe Slack](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) +- Ouvre un problème dans le [dépôt GitHub](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_it.md b/lang/uacc/texts/contact_it.md index 4092cadd..b493a9dd 100644 --- a/lang/uacc/texts/contact_it.md +++ b/lang/uacc/texts/contact_it.md @@ -2,4 +2,5 @@ Se hai domande, problemi o altro, puoi contattarci: - Inviaci un'e-mail a [hello@xpipe.io](mailto://hello@xpipe.io) - Iscriviti al [Server Discord XPipe](https://discord.gg/8y89vS8cRb) +- Iscriviti al [Server Slack XPipe](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - Apri un problema nel [repository GitHub](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_ja.md b/lang/uacc/texts/contact_ja.md index 26794597..e59e55d8 100644 --- a/lang/uacc/texts/contact_ja.md +++ b/lang/uacc/texts/contact_ja.md @@ -2,4 +2,5 @@ - hello@xpipe.io](mailto://hello@xpipe.io) までメールを送る。 - XPipe Discord Server](https://discord.gg/8y89vS8cRb) に参加する。 +- XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) に参加する。 - GitHub リポジトリ](https://github.com/xpipe-io/xpipe) に課題を投稿する。 \ No newline at end of file diff --git a/lang/uacc/texts/contact_nl.md b/lang/uacc/texts/contact_nl.md index e5d43194..26cb4044 100644 --- a/lang/uacc/texts/contact_nl.md +++ b/lang/uacc/texts/contact_nl.md @@ -2,4 +2,5 @@ Als je vragen hebt, problemen tegenkomt of iets anders, kun je contact met ons o - E-mail ons op [hello@xpipe.io](mailto://hello@xpipe.io) - Word lid van de [XPipe Discord Server](https://discord.gg/8y89vS8cRb) +- Word lid van de [XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - Open een probleem in de [GitHub repository](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_pt.md b/lang/uacc/texts/contact_pt.md index 6f9288cb..58fd8ce7 100644 --- a/lang/uacc/texts/contact_pt.md +++ b/lang/uacc/texts/contact_pt.md @@ -1,5 +1,6 @@ Se tiveres alguma dúvida, encontrares algum problema ou qualquer outra coisa, podes contactar-nos: - Envia-nos um e-mail para [hello@xpipe.io](mailto://hello@xpipe.io) -- Junta-te ao [Servidor de Discórdia XPipe](https://discord.gg/8y89vS8cRb) +- Junta-te ao [XPipe Discord Server](https://discord.gg/8y89vS8cRb) +- Junta-te ao [XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - Abre um problema no [repositório GitHub](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_ru.md b/lang/uacc/texts/contact_ru.md index e6f65621..c7aaef3d 100644 --- a/lang/uacc/texts/contact_ru.md +++ b/lang/uacc/texts/contact_ru.md @@ -2,4 +2,5 @@ - Пиши нам на [hello@xpipe.io](mailto://hello@xpipe.io) - Присоединяйся к [XPipe Discord Server](https://discord.gg/8y89vS8cRb) +- Присоединяйся к [XPipe Slack Server](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - Открой проблему в [репозитории GitHub](https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_tr.md b/lang/uacc/texts/contact_tr.md index d973da4a..8070a35b 100644 --- a/lang/uacc/texts/contact_tr.md +++ b/lang/uacc/texts/contact_tr.md @@ -2,4 +2,5 @@ Herhangi bir sorunuz varsa, herhangi bir sorunla karşılaşırsanız veya başk - Bize [hello@xpipe.io](mailto://hello@xpipe.io) adresinden e-posta gönderin - XPipe Discord Sunucusuna Katılın](https://discord.gg/8y89vS8cRb) +- XPipe Slack Sunucusuna Katılın](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - GitHub deposu]'nda bir sorun açın (https://github.com/xpipe-io/xpipe) \ No newline at end of file diff --git a/lang/uacc/texts/contact_zh.md b/lang/uacc/texts/contact_zh.md index 1f12143d..d6cda322 100644 --- a/lang/uacc/texts/contact_zh.md +++ b/lang/uacc/texts/contact_zh.md @@ -2,4 +2,5 @@ - 发送电子邮件至 [hello@xpipe.io](mailto://hello@xpipe.io) - 加入 [XPipe Discord 服务器](https://discord.gg/8y89vS8cRb) +- 加入 [XPipe Slack 服务器](https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg) - 在 [GitHub 存储库](https://github.com/xpipe-io/xpipe) 中打开一个问题 \ No newline at end of file