diff --git a/README.md b/README.md index 2ad67003fd..5d7850bb52 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ -[![Translate - with Weblate](https://img.shields.io/badge/translate%20with-Weblate-green.svg?style=flat)](https://weblate.tusky.app/) [![OpenCollective](https://opencollective.com/tusky/backers/badge.svg)](https://opencollective.com/tusky/) [![Build Status](https://app.bitrise.io/app/a3e773c3c57a894c/status.svg?token=qLu_Ti4Gp2LWcYT4eo2INQ&branch=develop)](https://app.bitrise.io/app/a3e773c3c57a894c) -# Tusky +# Gab - +Gab is a beautiful Android client for [Mastodon](https://github.com/tootsuite/mastodon). Mastodon is an ActivityPub federated social network. That means no single entity controls the whole network, rather, like e-mail, volunteers and organisations operate their own independent servers, users from which can all interact with each other seamlessly. -Tusky is a beautiful Android client for [Mastodon](https://github.com/mastodon/mastodon). Mastodon is an ActivityPub federated social network. That means no single entity controls the whole network, rather, like e-mail, volunteers and organisations operate their own independent servers, users from which can all interact with each other seamlessly. - -[Get it on F-Droid](https://f-droid.org/repository/browse/?fdid=com.keylesspalace.tusky) -[Get it on Google Play](https://play.google.com/store/apps/details?id=com.keylesspalace.tusky&utm_source=github&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1) +Gab is a fork of Tusky (https://github.com/tuskyapp/Tusky) that does not censor free-speech nodes. ## Features @@ -14,28 +10,20 @@ Tusky is a beautiful Android client for [Mastodon](https://github.com/mastodon/m - Most Mastodon APIs implemented - Multi-Account support - Dark, light and black themes with the possibility to auto-switch based on the time of day -- Drafts - compose posts and save them for later +- Drafts - compose toots and save them for later - Choose between different emoji styles - Optimized for all screen sizes - Completely open-source - no non-free dependencies like Google services -### Testing - -The nightly build from master is [available on Google Play](https://play.google.com/store/apps/details?id=com.keylesspalace.tusky.test). ### Support -Check out our [FAQs](https://github.com/tuskyapp/faq), your question may already be answered. -If you have any bug reports, feature requests or questions please open an issue or send us a message at [Tusky@mastodon.social](https://mastodon.social/@Tusky)! +If you have any bug reports, feature requests or questions please open an issue. -For translating Tusky into your language, visit https://weblate.tusky.app/ +For translating Gab-changed strings into your language, please open an issue. ### Head of development -This app was developed by [Vavassor@mastodon.social](https://mastodon.social/@Vavassor). -The current maintainer is [ConnyDuck@chaos.social](https://chaos.social/@ConnyDuck). - -### Development chatroom -https://riot.im/app/#/room/#Tusky:matrix.org +This port was done by johanw666. ### diff --git a/app/build.gradle b/app/build.gradle index 2bf6000e69..4042c56f25 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,6 +6,7 @@ apply plugin: 'kotlin-parcelize' apply from: "../instance-build.gradle" def getGitSha = { +/* def stdout = new ByteArrayOutputStream() try { exec { @@ -16,6 +17,8 @@ def getGitSha = { return "unknown" } return stdout.toString().trim() +*/ + return ""; // JW } android { @@ -25,16 +28,31 @@ android { minSdkVersion 23 targetSdkVersion 33 versionCode 97 - versionName "20.0" + versionName "20.0.0-JW" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true resValue "string", "app_name", APP_NAME + setProperty("archivesBaseName", "Gab-$versionName") // JW: added buildConfigField("String", "CUSTOM_LOGO_URL", "\"$CUSTOM_LOGO_URL\"") buildConfigField("String", "CUSTOM_INSTANCE", "\"$CUSTOM_INSTANCE\"") buildConfigField("String", "SUPPORT_ACCOUNT_URL", "\"$SUPPORT_ACCOUNT_URL\"") + // JW: add abifilters + ndk { + abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' + } + + splits { + abi { + enable true + reset() + include 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' + universalApk true + } + } + kapt { arguments { arg("room.schemaLocation", "$projectDir/schemas") diff --git a/app/src/blue/res/mipmap-hdpi/ic_launcher.png b/app/src/blue/res/mipmap-hdpi/ic_launcher.png index 023b25f7a5..d27950f664 100644 Binary files a/app/src/blue/res/mipmap-hdpi/ic_launcher.png and b/app/src/blue/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/blue/res/mipmap-mdpi/ic_launcher.png b/app/src/blue/res/mipmap-mdpi/ic_launcher.png index 3463d7bb46..bd594c323b 100644 Binary files a/app/src/blue/res/mipmap-mdpi/ic_launcher.png and b/app/src/blue/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/blue/res/mipmap-xhdpi/ic_launcher.png b/app/src/blue/res/mipmap-xhdpi/ic_launcher.png index 3694d986d0..4824ef5c9c 100644 Binary files a/app/src/blue/res/mipmap-xhdpi/ic_launcher.png and b/app/src/blue/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/blue/res/mipmap-xxhdpi/ic_launcher.png b/app/src/blue/res/mipmap-xxhdpi/ic_launcher.png index 2ef6e08ad3..7541408834 100644 Binary files a/app/src/blue/res/mipmap-xxhdpi/ic_launcher.png and b/app/src/blue/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/blue/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/blue/res/mipmap-xxxhdpi/ic_launcher.png index 88795199d4..2efd676e50 100644 Binary files a/app/src/blue/res/mipmap-xxxhdpi/ic_launcher.png and b/app/src/blue/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/green/res/mipmap-hdpi/ic_launcher.png b/app/src/green/res/mipmap-hdpi/ic_launcher.png index 08960b9231..d27950f664 100644 Binary files a/app/src/green/res/mipmap-hdpi/ic_launcher.png and b/app/src/green/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/green/res/mipmap-mdpi/ic_launcher.png b/app/src/green/res/mipmap-mdpi/ic_launcher.png index 1a769a71c4..bd594c323b 100644 Binary files a/app/src/green/res/mipmap-mdpi/ic_launcher.png and b/app/src/green/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/green/res/mipmap-xhdpi/ic_launcher.png b/app/src/green/res/mipmap-xhdpi/ic_launcher.png index 33714c7162..4824ef5c9c 100644 Binary files a/app/src/green/res/mipmap-xhdpi/ic_launcher.png and b/app/src/green/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/green/res/mipmap-xxhdpi/ic_launcher.png b/app/src/green/res/mipmap-xxhdpi/ic_launcher.png index 5de70d9fd0..7541408834 100644 Binary files a/app/src/green/res/mipmap-xxhdpi/ic_launcher.png and b/app/src/green/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/green/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/green/res/mipmap-xxxhdpi/ic_launcher.png index 0297f2e19b..2efd676e50 100644 Binary files a/app/src/green/res/mipmap-xxxhdpi/ic_launcher.png and b/app/src/green/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/main/java/com/keylesspalace/tusky/AboutActivity.kt b/app/src/main/java/com/keylesspalace/tusky/AboutActivity.kt index fc8b3db2b6..e6cf3afab7 100644 --- a/app/src/main/java/com/keylesspalace/tusky/AboutActivity.kt +++ b/app/src/main/java/com/keylesspalace/tusky/AboutActivity.kt @@ -44,6 +44,11 @@ class AboutActivity : BottomSheetActivity(), Injectable { viewUrl(BuildConfig.SUPPORT_ACCOUNT_URL) } + // JW: added + if (BuildConfig.SUPPORT_ACCOUNT_URL.isBlank()) { + binding.tuskyProfileButton.hide() + } + binding.aboutLicensesButton.setOnClickListener { startActivityWithSlideInAnimation(Intent(this, LicenseActivity::class.java)) } diff --git a/app/src/main/java/com/keylesspalace/tusky/di/NetworkModule.kt b/app/src/main/java/com/keylesspalace/tusky/di/NetworkModule.kt index 8250e61f7b..bcf146ff59 100644 --- a/app/src/main/java/com/keylesspalace/tusky/di/NetworkModule.kt +++ b/app/src/main/java/com/keylesspalace/tusky/di/NetworkModule.kt @@ -78,7 +78,7 @@ class NetworkModule { val requestWithUserAgent = chain.request().newBuilder() .header( "User-Agent", - "Tusky/${BuildConfig.VERSION_NAME} Android/${Build.VERSION.RELEASE} OkHttp/${OkHttp.VERSION}" + "Gab/${BuildConfig.VERSION_NAME} Android/${Build.VERSION.RELEASE} OkHttp/${OkHttp.VERSION}" // JW: change user agent name ) .build() chain.proceed(requestWithUserAgent) diff --git a/app/src/main/res/drawable-hdpi/ic_notify.png b/app/src/main/res/drawable-hdpi/ic_notify.png new file mode 100644 index 0000000000..96f30e95a9 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_notify.png differ diff --git a/app/src/main/res/drawable-hdpi/splash.png b/app/src/main/res/drawable-hdpi/splash.png new file mode 100644 index 0000000000..487215631f Binary files /dev/null and b/app/src/main/res/drawable-hdpi/splash.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_notify.png b/app/src/main/res/drawable-mdpi/ic_notify.png new file mode 100644 index 0000000000..68ad5ab030 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_notify.png differ diff --git a/app/src/main/res/drawable-mdpi/splash.png b/app/src/main/res/drawable-mdpi/splash.png new file mode 100644 index 0000000000..156eba79fd Binary files /dev/null and b/app/src/main/res/drawable-mdpi/splash.png differ diff --git a/app/src/main/res/drawable-v24/ic_notoemoji.xml b/app/src/main/res/drawable-v24/ic_notoemoji.xml deleted file mode 100644 index d016e35c0f..0000000000 --- a/app/src/main/res/drawable-v24/ic_notoemoji.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/src/main/res/drawable-xhdpi/ic_notify.png b/app/src/main/res/drawable-xhdpi/ic_notify.png new file mode 100644 index 0000000000..e2f4ba583e Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_notify.png differ diff --git a/app/src/main/res/drawable-xhdpi/splash.png b/app/src/main/res/drawable-xhdpi/splash.png new file mode 100644 index 0000000000..28f17ebefe Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/splash.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_notify.png b/app/src/main/res/drawable-xxhdpi/ic_notify.png new file mode 100644 index 0000000000..90adcda569 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_notify.png differ diff --git a/app/src/main/res/drawable-xxhdpi/splash.png b/app/src/main/res/drawable-xxhdpi/splash.png new file mode 100644 index 0000000000..1e0e7ebc4e Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/splash.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/splash.png b/app/src/main/res/drawable-xxxhdpi/splash.png new file mode 100644 index 0000000000..e31346d928 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/splash.png differ diff --git a/app/src/main/res/drawable/ic_splash.xml b/app/src/main/res/drawable/ic_splash.xml index 90d7ab9308..d79dee5140 100644 --- a/app/src/main/res/drawable/ic_splash.xml +++ b/app/src/main/res/drawable/ic_splash.xml @@ -1,11 +1,11 @@ - - - - - - + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml deleted file mode 100644 index dd9dd02ba5..0000000000 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000..3e523eeb3b Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000..87595e5c99 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000000..9681579be5 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000..105b46eae4 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000..f254ed9fe6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000000..0499ac3bf5 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000000..93e2c84bf8 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000..bd3953e47c Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000000..287916fedf Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000..d1ff545b78 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000..5545bc6b84 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000..2daf3dc7f2 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000..b200bbb32c Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000000..5f1f4e361d Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000..d813ee7c61 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml index 0c8a203f11..4ebfcef946 100644 --- a/app/src/main/res/values-ar/strings.xml +++ b/app/src/main/res/values-ar/strings.xml @@ -231,9 +231,9 @@ * the url can be changed to link to the localized version of the license. --> موقع المشروع :\n - https://tusky.app + https://gab.com تقارير الأخطاء و طلبات التحسينات على :\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues الملف الشخصي لتوسكي شارك محتوى التبويق شارك الرابط إلى التبويق @@ -475,7 +475,7 @@ الفواصل المرجعية أضفه إلى الفواصل المرجعية الفواصل المرجعية - مدعوم بِـ Tusky + مدعوم بِـ Gab أضيف إلى الفواصل المرجعية اختر قائمة القائمة diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml index 99543c3c1d..3cf43482b8 100644 --- a/app/src/main/res/values-bg/strings.xml +++ b/app/src/main/res/values-bg/strings.xml @@ -103,7 +103,7 @@ CC-BY-SA 4.0 CC-BY 4.0 Лицензиран под лиценза Apache (копие по-долу) - Tusky съдържа код и активи от следните проекти с отворен код: + Gab съдържа код и активи от следните проекти с отворен код: Отсподеляне Споделяне с оригиналната аудитория %1$s се премести в: @@ -116,7 +116,7 @@ Емоджи комплектът по подразбиране в устройство ви Рестартиране По-късно - Ще трябва да рестартирате Tusky, за да приложите тези промени + Ще трябва да рестартирате Gab, за да приложите тези промени Изисква се рестартиране на приложението Отваряне на публикация Разгъване/свиване на всички състояния @@ -187,14 +187,14 @@ Изображения Споделяне на връзка към публикация Споделяне на съдържание на публикация - Профилът на Tusky + Профилът на Gab Доклади за грешки и заявки за функции: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues Уебсайт на проекта: -\n https://tusky.app - Tusky е свободен софтуер с отворен код. Той е лицензиран под Общият публичен лиценз на GNU Версия 3. Можете да видите лиценза тук: https://www.gnu.org/licenses/gpl-3.0.en.html - Осъществено от Tusky - Tusky %s +\n https://gab.com + Gab е свободен софтуер с отворен код. Той е лицензиран под Общият публичен лиценз на GNU Версия 3. Можете да видите лиценза тук: https://www.gnu.org/licenses/gpl-3.0.en.html + Осъществено от Gab + Gab %s Относно Заключен акаунт diff --git a/app/src/main/res/values-bn-rBD/strings.xml b/app/src/main/res/values-bn-rBD/strings.xml index ff8bdedfc8..21587f3521 100644 --- a/app/src/main/res/values-bn-rBD/strings.xml +++ b/app/src/main/res/values-bn-rBD/strings.xml @@ -103,9 +103,9 @@ টুট এর কন্টেন্ট ভাগ করুন টাস্কির প্রোফাইল বাগ রিপোর্ট এবং বৈশিষ্ট্য অনুরোধ: -\nhttps://github.com/tuskyapp/Tusky/issues +\nhttps://github.com/johanw666/Gab/issues প্রকল্প ওয়েবসাইট: -\nhttps://tusky.app +\nhttps://gab.com টাস্কি মুক্ত এবং ওপেন সোর্স সফ্টওয়্যার। এটি GNU জেনারেল পাবলিক লাইসেন্স সংস্করণ 3 এর অধীনে লাইসেন্সযুক্ত। আপনি এখানে লাইসেন্স দেখতে পারেন: https://www.gnu.org/licenses/gpl-3.0.en.html টাস্কি %s সম্পর্কিত diff --git a/app/src/main/res/values-bn-rIN/strings.xml b/app/src/main/res/values-bn-rIN/strings.xml index 521e0d3d1d..12d6a931b3 100644 --- a/app/src/main/res/values-bn-rIN/strings.xml +++ b/app/src/main/res/values-bn-rIN/strings.xml @@ -237,9 +237,9 @@ * the url can be changed to link to the localized version of the license. --> প্রকল্প ওয়েবসাইট: -\nhttps://tusky.app +\nhttps://gab.com বাগ রিপোর্ট এবং বৈশিষ্ট্য অনুরোধ: -\nhttps://github.com/tuskyapp/Tusky/issues +\nhttps://github.com/johanw666/Gab/issues টাস্কির প্রোফাইল টুট এর কন্টেন্ট ভাগ করুন টুট এর সাথে লিংক ভাগ করুন diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml index 0d49849e70..19bfa6820f 100644 --- a/app/src/main/res/values-ca/strings.xml +++ b/app/src/main/res/values-ca/strings.xml @@ -157,20 +157,20 @@ Compte blocat Quant a - Tusky %s - Tusky és programari gratuït, lliure i de codi obert. + Gab %s + Gab és programari gratuït, lliure i de codi obert. Està llicenciat en els termes de la Llicència Pública General GNU versió 3. Podeu trobar les llicència aquí: https://www.gnu.org/licenses/gpl-3.0.ca.html Lloc web del projecte:\n - https://tusky.app + https://gab.com Informes d\'errors i peticions de funcionalitats:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Perfil del Tusky + Perfil del Gab Comparteix el contingut de la publicació Comparteix l\'enllaç a la publicació Imatges @@ -319,7 +319,7 @@ %1$s s\'ha trasllat a: Tornar a impulsar No impulsar - Tusky conté codi i recursos dels següents projectes: + Gab conté codi i recursos dels següents projectes: Sota llicencia Apache (text a sota) CC-BY 4.0 CC-BY-SA 4.0 @@ -422,7 +422,7 @@ Publicacions programades Programa la publicació Reiniciar - Desenvolupat per Tusky + Desenvolupat per Gab S\'ha afegit a les adreces d\'interès Seleccionar la llista Llista diff --git a/app/src/main/res/values-ckb/strings.xml b/app/src/main/res/values-ckb/strings.xml index e428c45932..d334a6f708 100644 --- a/app/src/main/res/values-ckb/strings.xml +++ b/app/src/main/res/values-ckb/strings.xml @@ -435,9 +435,9 @@ هاوبەشکردنی ناوەڕۆکی دووت پرۆفایلی تاسکی ڕاپۆرتەکانی هەڵەکان و داواکاریەکانی تایبەتمەندی: -\nhttps://github.com/tuskyapp/Tusky/issues +\nhttps://github.com/johanw666/Gab/issues وێبسایتی پڕۆژە: -\nhttps://tusky.app +\nhttps://gab.com توسکی سۆفتوێری ئازاد و سەرچاوەی کراوەیە مۆڵەتدراوە بە پێ نامەی گشتی GNU Public Version 3. دەتوانیت لێرە مۆڵەتەکە نیشان بدەی: https://www.gnu.org/licenses/gpl-3.0.en.html لەلایەن تاسکیەوە دەست کراوە بە توسکی %s diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 581628e575..d11b6b2a6a 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -225,8 +225,8 @@ Uzamčený účet O této aplikaci - Tusky %s - Tusky je svobodný a otevřený software. + Gab %s + Gab je svobodný a otevřený software. Je dostupný pod licencí GNU General Public License, verze 3. Licenci můžete zobrazit zde: https://www.gnu.org/licenses/gpl-3.0.en.html Webová stránka projektu:\n - https://tusky.app + https://gab.com Hlášení chyb a návrhy na nové vlastnosti:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Profil aplikace Tusky + Profil aplikace Gab Sdílet obsah příspěvku Sdílet odkaz na příspěvek Obrázky @@ -313,7 +313,7 @@ Rozbalit/Sbalit všechny příspěvky Otevřít příspěvek Je vyžadováno restartování aplikace - Pro použití těchto změn musíte restartovat aplikaci Tusky + Pro použití těchto změn musíte restartovat aplikaci Gab Později Restartovat Výchozí sada emoji vašeho zařízení @@ -324,7 +324,7 @@ %1$s se přesunul/a na: Boostnout původnímu publiku Zrušit boost - Tusky obsahuje kód a zdroje z následujících otevřených projektů: + Gab obsahuje kód a zdroje z následujících otevřených projektů: Pod licencí Apache License (kopie níže) CC-BY 4.0 CC-BY-SA 4.0 @@ -471,7 +471,7 @@ Vybrat seznam Umístění hlavní navigační lišty Hashtagy - Powered by Tusky + Powered by Gab Zablokovat @%s\? Nahoře Zrušit skrytí domény %s @@ -517,7 +517,7 @@ \n - Statistiky sledujících a příspěvků na profilech \n \nPush oznámení nebudou ovlivněna, ale můžete si zkontrolovat jejich nastavení manuálně. - Znovu jste se přihlásili ke svému aktuálnímu účtu, abyste aplikaci Tusky udělili oprávnění k odběru push. Stále však máte další účty, které tímto způsobem migrovány nebyly. Přepněte se na ně a znovu se přihlaste na jednom po druhém, abyste povolili podporu oznámení UnifiedPush. + Znovu jste se přihlásili ke svému aktuálnímu účtu, abyste aplikaci Gab udělili oprávnění k odběru push. Stále však máte další účty, které tímto způsobem migrovány nebyly. Přepněte se na ně a znovu se přihlaste na jednom po druhém, abyste povolili podporu oznámení UnifiedPush. Uložit koncept\? (Přílohy budou znovu nahrány, když obnovíte koncept.) Klepnutím nebo přetažením kruhu vyberte ohnisko, které bude vždy viditelné v miniaturách. Před oblíbením zobrazit dialog pro potvrzení @@ -543,7 +543,7 @@ Nastavit bod zaostření Nepodařilo se nastavit zaostřovací bod Znovu se přihlaste ke všem účtům, abyste povolili podporu push oznámení. - Aby bylo možné používat push oznámení prostřednictvím UnifiedPush, Tusky potřebuje oprávnění k odběru oznámení na vašem serveru Mastodon. To vyžaduje opětovné přihlášení ke změně rozsahů OAuth udělených aplikaci Tusky. Použitím možnosti opětovného přihlášení zde nebo v předvolbách účtu zachováte všechny vaše místní koncepty a mezipaměť. + Aby bylo možné používat push oznámení prostřednictvím UnifiedPush, Gab potřebuje oprávnění k odběru oznámení na vašem serveru Mastodon. To vyžaduje opětovné přihlášení ke změně rozsahů OAuth udělených aplikaci Gab. Použitím možnosti opětovného přihlášení zde nebo v předvolbách účtu zachováte všechny vaše místní koncepty a mezipaměť. přidat reakci příspěvek, se kterým jsem interagoval/a, je upraven někdo se zaregistroval diff --git a/app/src/main/res/values-cy/strings.xml b/app/src/main/res/values-cy/strings.xml index 71ade87395..224659485c 100644 --- a/app/src/main/res/values-cy/strings.xml +++ b/app/src/main/res/values-cy/strings.xml @@ -198,7 +198,7 @@ Cyfrif wedi\'i gloi Ynghylch - Mae Tusky yn feddalwedd ffynhonnell agored barn rydd. + Mae Gab yn feddalwedd ffynhonnell agored barn rydd. Fe\'i trwyddedir dan Drwydded Gyhoeddus Gyffredinol GNU Fersiwn 3. Gallwch weld y drwydded yma: https://www.gnu.org/licenses/gpl-3.0.en.html Gwefan y prosiect:\n - https://tusky.app + https://gab.com Adrodd byg & ceisiadau nodwedd:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Proffil Tusky + Proffil Gab Rhannu cynnwys y post Rhannu dolen i\'r post Delweddau @@ -260,7 +260,7 @@ Chwyddo/Lleihau pob pyst Agor post Angen ailddechrau\'r app - Bydd angen ailddechrau Tusky i roi\'r newidiadau ar waith + Bydd angen ailddechrau Gab i roi\'r newidiadau ar waith Nes ymlaen Ailddechrau Dewiswyd emoji ragosodedig i\'ch dyfais @@ -270,7 +270,7 @@ %1$s wedi symud i: Hwb i\'r gynulleidfa wreiddiol Dad-hybu - Mae gan Tusky god ac asedau o\'r prosiectau ffynhonnell agored canlynol: + Mae gan Gab god ac asedau o\'r prosiectau ffynhonnell agored canlynol: Trwyddedir dan Drwydded Apache (copi isod) Metaddata\'r proffil ychwanegu data @@ -384,7 +384,7 @@ Dangos graddiannau lliwgar ar gyfer cyfryngau cudd Methu cydamseru gosodiadau Brig - Tusky %s + Gab %s Hashnodau Gwaelod Dangos ffefrynnau @@ -455,7 +455,7 @@ Lleoliad y panel llywio Animeiddio lluniau proffil GIF Nodi cyfryngau yn sensitif bob tro - Pwerir gan Tusky + Pwerir gan Gab Cyfrifon Pôl CC-BY 4.0 @@ -467,6 +467,6 @@ Methodd anfon y neges hon! Ysgrifennu neges Ailfewngofnodwch i\'ch cyfrifon er mwyn galluogi hysbysiadau i\'ch ffôn. - Er mwyn derbyn hysbysiadau i\'ch ffôn drwy UnifiedPush, mae angen caniatâd ar Tusky i danysgrifio i hysbysiadau ar eich gweinydd Mastodon. Bydd rhaid i chi fewngofnodi eto i newid y sgôp OAuth a roddir i Tusky. Bydd defnyddio\'r opsiwn ailfewngofnodi yma neu yn \'Dewisiadau\'ch cyfrif\' yn cadw\'ch holl ddrafftiau a\'ch storfa leol. + Er mwyn derbyn hysbysiadau i\'ch ffôn drwy UnifiedPush, mae angen caniatâd ar Gab i danysgrifio i hysbysiadau ar eich gweinydd Mastodon. Bydd rhaid i chi fewngofnodi eto i newid y sgôp OAuth a roddir i Gab. Bydd defnyddio\'r opsiwn ailfewngofnodi yma neu yn \'Dewisiadau\'ch cyfrif\' yn cadw\'ch holl ddrafftiau a\'ch storfa leol. Ydych chi\'n sicr yr hoffech chi rwystro %s i gyd\? Welwch chi ddim cynnwys o\'r parth hwnnw mewn unrhyw llinellau amser cyhoeddus nac ychwaith yn eich hysbysiadau. Ceir gwared ar eich dilynwyr o\'r parth hwnnw. \ No newline at end of file diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 71ae7e1830..34fb3a0506 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -221,7 +221,7 @@ Gesperrtes Profil Über - Tusky ist freie und quelloffene Software. Es ist lizenziert unter der GNU General Public License Version 3. Du kannst dir die Lizenz hier anschauen: https://www.gnu.org/licenses/gpl-3.0.de.html + Gab ist freie und quelloffene Software. Es ist lizenziert unter der GNU General Public License Version 3. Du kannst dir die Lizenz hier anschauen: https://www.gnu.org/licenses/gpl-3.0.de.html Website des Projekts: -\n https://tusky.app +\n https://gab.com Fehlermeldungen & Verbesserungsvorschläge:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tuskys Profil + Gabs Profil Inhalt teilen Link teilen Bilder @@ -286,7 +286,7 @@ Alle Beiträge aus-/einklappen Beitrag öffnen App-Neustart erforderlich - Du musst Tusky neustarten um die Änderungen anzuwenden + Du musst Gab neustarten um die Änderungen anzuwenden Später Neustarten Die Standard-Emojis deines Geräts @@ -298,7 +298,7 @@ %1$s ist umgezogen auf: An ursprüngliches Publikum teilen nicht mehr teilen - Tusky enthält Code und Inhalte von den folgenden Open-Source-Projekten: + Gab enthält Code und Inhalte von den folgenden Open-Source-Projekten: Lizenziert unter der Apache-Lizenz (s. u.) CC-BY 4.0 CC-BY-SA 4.0 @@ -429,7 +429,7 @@ Lesezeichen Lesezeichen Lesezeichen - Angetrieben durch Tusky + Angetrieben durch Gab Als Lesezeichen gespeichert Liste auswählen Liste @@ -538,8 +538,8 @@ Beitragsbearbeitungen Neuanmeldung für Push-Benachrichtigungen Ablehnen - Du hast dich erneut in dein aktuelles Konto eingeloggt, um Tusky die Genehmigung für Push-Abonnements zu erteilen. Du hast jedoch noch andere Konten, die nicht auf diese Weise migriert wurden. Wechsel zu diesen Konten und melde dich nacheinander neu an, um die Unterstützung für UnifiedPush-Benachrichtigungen zu aktivieren. - Um Push-Benachrichtigungen über UnifiedPush verwenden zu können, benötigt Tusky die Erlaubnis, Benachrichtigungen auf Ihrem Mastodon-Server zu abonnieren. Dies erfordert eine erneute Anmeldung, um die Tusky gewährten OAuth-Bereiche zu ändern. Wenn du die Option zum erneuten Einloggen hier oder in den Kontoeinstellungen verwendest, bleiben alle deine lokalen Entwürfe und der Cache erhalten. + Du hast dich erneut in dein aktuelles Konto eingeloggt, um Gab die Genehmigung für Push-Abonnements zu erteilen. Du hast jedoch noch andere Konten, die nicht auf diese Weise migriert wurden. Wechsel zu diesen Konten und melde dich nacheinander neu an, um die Unterstützung für UnifiedPush-Benachrichtigungen zu aktivieren. + Um Push-Benachrichtigungen über UnifiedPush verwenden zu können, benötigt Gab die Erlaubnis, Benachrichtigungen auf Ihrem Mastodon-Server zu abonnieren. Dies erfordert eine erneute Anmeldung, um die Gab gewährten OAuth-Bereiche zu ändern. Wenn du die Option zum erneuten Einloggen hier oder in den Kontoeinstellungen verwendest, bleiben alle deine lokalen Entwürfe und der Cache erhalten. Melde alle Konten neu an, um die Unterstützung für Push-Benachrichtigungen zu aktivieren. %1$s beigetreten 1+ diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml index 27df785a1b..a43d21f32a 100644 --- a/app/src/main/res/values-eo/strings.xml +++ b/app/src/main/res/values-eo/strings.xml @@ -222,8 +222,8 @@ Ŝlosita konto Pri - Tusky %s - Tusky estas libera kaj malfermitkoda programo. + Gab %s + Gab estas libera kaj malfermitkoda programo. Ĝi estas publikigita laŭ la permesilo «GNU General Public License Version 3». Vi povas vidi la permesilon ĉi tie: https://www.gnu.org/licenses/gpl-3.0.en.html Paĝaro de la projekto: -\n https://tusky.app +\n https://gab.com Raportoj de cimoj kaj petoj de funkcioj: -\n https://github.com/tuskyapp/Tusky/issues - Profilo de Tusky +\n https://github.com/johanw666/Gab/issues + Profilo de Gab Konigi enhavon de la mesaĝo Konigi ligilon al mesaĝo Bildoj @@ -305,7 +305,7 @@ Pligrandigi/malgrandigi ĉiujn mesaĝojn Malfermi mesaĝon Restartigo necesas - Vi devos restartigi Tusky por apliki ĉi tiujn ŝanĝojn + Vi devos restartigi Gab por apliki ĉi tiujn ŝanĝojn Poste Restartigi Dekomenca emoĝiaro de via aparato @@ -316,7 +316,7 @@ %1$s moviĝis al: Diskonigi al la originala atentaro Maldiskonigi - Tusky enhavas kodon kaj risurcojn el la sekvantaj malfermitkodaj projetkoj: + Gab enhavas kodon kaj risurcojn el la sekvantaj malfermitkodaj projetkoj: Laŭ la permesilo «Apache» (kopio sube) CC-BY 4.0 CC-BY-SA 4.0 @@ -432,7 +432,7 @@ Planitaj mesaĝoj Plani mesaĝon Restarigi - Funkciigita de Tusky + Funkciigita de Gab Aldonita al la legosignoj Elekti la liston Listo @@ -564,7 +564,7 @@ Neniam Montri uzantnomon en ilobreto Mesaĝolingvo - Por ricevi sciigoj per UnifiedPush, Tusky bezonas taŭgan permeson el Mastodon-servilo. Tio postulas re-ensaluton por ŝanĝi OAuth-rajtoj donitaj al Tusky. Se vi uzas la opcion re-ensaluti ĉi tie aŭ en la agordoj de la konto, viaj malnetoj kaj kaŝmemoroj estos konservitaj. - Vi re-ensalutis en tiu konto por doni sciigo-permeson al Tusky. Vi havas tamen aliajn kontojn, ĉe kiuj vi devas re-sensaluti. Iru al ili, kaj re-ensalutu por ebligi ricevon de sciigoj per UnifiedPush. + Por ricevi sciigoj per UnifiedPush, Gab bezonas taŭgan permeson el Mastodon-servilo. Tio postulas re-ensaluton por ŝanĝi OAuth-rajtoj donitaj al Gab. Se vi uzas la opcion re-ensaluti ĉi tie aŭ en la agordoj de la konto, viaj malnetoj kaj kaŝmemoroj estos konservitaj. + Vi re-ensalutis en tiu konto por doni sciigo-permeson al Gab. Vi havas tamen aliajn kontojn, ĉe kiuj vi devas re-sensaluti. Iru al ili, kaj re-ensalutu por ebligi ricevon de sciigoj per UnifiedPush. %s (🔗 %s) \ No newline at end of file diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index ddc4f9d93f..013138a3b7 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -208,8 +208,8 @@ Cuenta protegida Acerca de - Tusky %s - Tusky es un software libre y de código abierto. + Gab %s + Gab es un software libre y de código abierto. Está licenciado bajo la licencia \"GNU General Public License Version 3\". Puedes leer sobre la misma en: https://www.gnu.org/licenses/gpl-3.0.en.html Sitio del proyecto:\n - https://tusky.app + https://gab.com Reporte de errores y peticiones de características:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Perfil de Tusky + Perfil de Gab Compartir contenido Compartir enlace Imágenes @@ -290,7 +290,7 @@ %1$s se trasladó a: Volver a compartir Dejar de compartir - Tusky contiene código y recursos de los siguientes proyectos: + Gab contiene código y recursos de los siguientes proyectos: Licenciado bajo Apache License (texto bajo la lista) CC BY 4.0 CC-BY-SA 4.0 @@ -455,7 +455,7 @@ Programar estado Reiniciar Error al buscar el post %s - Potenciado por Tusky + Potenciado por Gab Marcadores Marcador Marcadores @@ -560,7 +560,7 @@ 14 días 365 días Inicia sesión de nuevo en todas las cuentas para activar las notificaciones push. - Para poder usar las notificaciones push con UnifiedPush, Tusky necesita permiso para suscribirse a las notificaciones de tu servidor de Mastodon. Es necesario volver a acceder para cambiar los parámetros OAuth concedidos a Tusky. Usar aquí, o en las Preferencias de la Cuenta, la opción de volver a acceder conservarás los borradores y la caché. + Para poder usar las notificaciones push con UnifiedPush, Gab necesita permiso para suscribirse a las notificaciones de tu servidor de Mastodon. Es necesario volver a acceder para cambiar los parámetros OAuth concedidos a Gab. Usar aquí, o en las Preferencias de la Cuenta, la opción de volver a acceder conservarás los borradores y la caché. Fallo al fijar Fallo al quitarlo Cuando hay varias cuentas activas @@ -580,7 +580,7 @@ (Sin cambios) Escribir publicación Guardando borrador… - Has vuelto a iniciar sesión en esta cuenta para dar permiso de notificaciones push a Tusky. Sin embargo, aún hay otras cuentas que no tienen este permiso. Cambia a estas cuentas y vuelve a iniciar sesión, una a una, para activar el soporte de notificaciones de UnifiedPush. + Has vuelto a iniciar sesión en esta cuenta para dar permiso de notificaciones push a Gab. Sin embargo, aún hay otras cuentas que no tienen este permiso. Cambia a estas cuentas y vuelve a iniciar sesión, una a una, para activar el soporte de notificaciones de UnifiedPush. Al iniciar sesión aceptas las normas de %s. Normas de %s Creación de cuentas diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml index eaf42b38ac..454aa36afe 100644 --- a/app/src/main/res/values-eu/strings.xml +++ b/app/src/main/res/values-eu/strings.xml @@ -196,7 +196,7 @@ Kontu babestua Honi buruz - Tusky software libre eta kode askekoa da. + Gab software libre eta kode askekoa da. \"GNU General Public License Version 3\" lizentziapean zabaldua. Lizentzia hontaz gehiago irakurtzeko: https://www.gnu.org/licenses/gpl-3.0.en.html Proiektuaren gunea:\n - https://tusky.app + https://gab.com Akatsen berri-emateak eta hobekuntza-eskariak: -\n https://github.com/tuskyapp/Tusky/issues - Tuskyren profila +\n https://github.com/johanw666/Gab/issues + Gabren profila Partekatu tutaren edukia Partekatu tutaren lotura Irudiak @@ -268,7 +268,7 @@ %1$s hona mugitu da: Berriz bultzatu Bultzatzea utzi - Tusky-k ondorengo proiektuetako kode eta baliabideak ditu: + Gab-k ondorengo proiektuetako kode eta baliabideak ditu: Apache Lizentziapean (testua zerrendaren azpian) Informazio gehigarria Eremua gehitu @@ -320,10 +320,10 @@ GIF abatarrak animatu Galdeketak Bukatutako galdeketen jakinarazpenak - Tusky %s + Gab %s Traolak Traolak - Tusky-k sustatuta + Gab-k sustatuta %dh %dm %ds diff --git a/app/src/main/res/values-fa/strings.xml b/app/src/main/res/values-fa/strings.xml index 46ebfe9109..20412571ad 100644 --- a/app/src/main/res/values-fa/strings.xml +++ b/app/src/main/res/values-fa/strings.xml @@ -203,9 +203,9 @@ * the url can be changed to link to the localized version of the license. --> پایگاه وب پروژه : -\n https://tusky.app +\n https://gab.com گزارش مشکلات و درخواست ویژگی‌ها: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues نمایهٔ تاسکی هم‌رسانی محتوای فرسته هم‌رسانی پیوند فرسته diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml index a9d21407be..d9ccdc5d8f 100644 --- a/app/src/main/res/values-fi/strings.xml +++ b/app/src/main/res/values-fi/strings.xml @@ -34,8 +34,8 @@ Lukitse tili Lisää tili Seuraa sinua - Tuskyn profiili - Tusky %s + Gabn profiili + Gab %s Lukittu tili Uudet tuuttaukset Seuraamispyynnöt diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 774a37a8d3..4ef4172d17 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -224,8 +224,8 @@ Compte verrouillé À propos - Tusky %s - Tusky est une application libre et open source. + Gab %s + Gab est une application libre et open source. Elle est publiée sous licence publique générale GNU version 3. Vous pouvez consulter la licence ici : https://www.gnu.org/licenses/gpl-3.0.fr.html Site du projet :\n - https://tusky.app + https://gab.com Rapports d’anomalies & demandes de fonctionnalités :\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Profil de Tusky + Profil de Gab Partager le contenu du message Partager le lien du message Images @@ -308,7 +308,7 @@ Déplier/replier tout les messages Ouvrir le message Un redémarrage de l’application est nécessaire - Vous devrez redémarrer Tusky pour appliquer ces modifications + Vous devrez redémarrer Gab pour appliquer ces modifications Plus tard Redémarrer Votre jeu d’émojis par défaut @@ -319,7 +319,7 @@ %1$s a déménagé vers : Partager à l’audience originale Annuler le partage - Tusky contient du code et des ressources issus des projets open source suivants : + Gab contient du code et des ressources issus des projets open source suivants : Sous licence Apache (copie ci-dessous) CC-BY 4.0 CC-BY-SA 4.0 @@ -444,7 +444,7 @@ Planifier le message Réinitialiser Erreur lors de la recherche du post %s - Propulsé par Tusky + Propulsé par Gab Signets Marquer comme signet Signets @@ -546,12 +546,12 @@ Détails Sauvegarde du brouillon … >1 - Tusky peut maintenant recevoir les notifications instantanées de ce compte. Cependant, d\'autres de vos comptes n\'ont pas encore accès aux notifications instantanées. Basculez sur chacun de vos comptes et reconnectez les afin de recevoir les notifications avec UnifiedPush. + Gab peut maintenant recevoir les notifications instantanées de ce compte. Cependant, d\'autres de vos comptes n\'ont pas encore accès aux notifications instantanées. Basculez sur chacun de vos comptes et reconnectez les afin de recevoir les notifications avec UnifiedPush. La page de connexion ne peut être chargée. Retoucher l’image Fermer Se reconnecter pour recevoir les notifications instantanées - Afin de recevoir les notifications via UnifiedPush, Tusky doit demander à votre serveur Mastodon la permission de s’inscrire aux notifications. Ceci nécessite une reconnexion de vos comptes afin de changer les droits OAuth accordés a Tusky. En utilisant l’option de reconnexion ici ou dans les préférences de compte, vos brouillons et le cache seront préservés. + Afin de recevoir les notifications via UnifiedPush, Gab doit demander à votre serveur Mastodon la permission de s’inscrire aux notifications. Ceci nécessite une reconnexion de vos comptes afin de changer les droits OAuth accordés a Gab. En utilisant l’option de reconnexion ici ou dans les préférences de compte, vos brouillons et le cache seront préservés. Reconnectez tous vos comptes pour activer les notifications instantanées. L\'image n’a pas pu être retouchée. Supprimer ce message planifié \? diff --git a/app/src/main/res/values-fy/strings.xml b/app/src/main/res/values-fy/strings.xml index cce1246d0f..3708b20bc5 100644 --- a/app/src/main/res/values-fy/strings.xml +++ b/app/src/main/res/values-fy/strings.xml @@ -47,7 +47,7 @@ Ôfbyldingen Keppeling nei toot diele Ynhâld fan toot diele - Tusky %s + Gab %s Oer %d nije ynteraksje diff --git a/app/src/main/res/values-ga/strings.xml b/app/src/main/res/values-ga/strings.xml index 09deea906b..da9846cc2a 100644 --- a/app/src/main/res/values-ga/strings.xml +++ b/app/src/main/res/values-ga/strings.xml @@ -182,10 +182,10 @@ Íomhánna Comhroinn nasc chuig postáil Comhroinn inneachar na postála - Próifíl Tusky - Is bogearraí foinse oscailte agus saor in aisce é Tusky. Tá sé ceadúnaithe faoi Leagan 3. Ceadúnas Poiblí Ginearálta GNU 3. Is féidir leat an ceadúnas a fheiceáil anseo: https://www.gnu.org/licenses/gpl-3.0.en.html - Cumhachtaithe ag Tusky - Tusky %s + Próifíl Gab + Is bogearraí foinse oscailte agus saor in aisce é Gab. Tá sé ceadúnaithe faoi Leagan 3. Ceadúnas Poiblí Ginearálta GNU 3. Is féidir leat an ceadúnas a fheiceáil anseo: https://www.gnu.org/licenses/gpl-3.0.en.html + Cumhachtaithe ag Gab + Gab %s Cuntas faoi Ghlas %d idirghníomhaíochtaí nua @@ -264,9 +264,9 @@ \n \nIs féidir tuilleadh faisnéise a fháil ag joinmastodon.org . Suíomh Gréasáin an tionscadail: -\n https://tusky.app +\n https://gab.com Tuarascálacha ar fhabhtanna & iarratais ar ghnéithe: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues Físeán Lean iarrtha Leanann tú @@ -285,9 +285,9 @@ Bain Amlínte poiblí Leathnaigh/Fill na postálacha go léir - Beidh ort Tusky a atosú chun na hathruithe seo a chur i bhfeidhm + Beidh ort Gab a atosú chun na hathruithe seo a chur i bhfeidhm Sraith emoji reatha Google - Tá cód agus sócmhainní ó na tionscadail foinse oscailte seo a leanas i Tusky: + Tá cód agus sócmhainní ó na tionscadail foinse oscailte seo a leanas i Gab: Féadfaidh an fhaisnéis thíos próifíl an úsáideora a léiriú go neamhiomlán. Brúigh chun próifíl iomlán a oscailt sa bhrabhsálaí. uasmhéid de chluaisíní %1$d sroichte diff --git a/app/src/main/res/values-gd/strings.xml b/app/src/main/res/values-gd/strings.xml index 2c2727a8ec..a3ea48ae71 100644 --- a/app/src/main/res/values-gd/strings.xml +++ b/app/src/main/res/values-gd/strings.xml @@ -219,7 +219,7 @@ CC-BY-SA 4.0 CC-BY 4.0 Fo cheadachas Apache License (chì thu lethbhreac dheth gu h-ìosal) - Tha còs is maoin o na pròiseactan open source seo am broinn Tusky: + Tha còs is maoin o na pròiseactan open source seo am broinn Gab: Na brosnaich tuilleadh Brosnaich dhan èisteachd thùsail Chaidh %1$s a ghluasad gu: @@ -231,7 +231,7 @@ Seata bunaiteach nan Emojis air an uidheam agad Ath-thòisich Uaireigin eile - Feumaidh tu Tusky ath-thòiseachadh gus na roghainnean seo a chur an sàs + Feumaidh tu Gab ath-thòiseachadh gus na roghainnean seo a chur an sàs Feumaidh tu an aplacaid ath-thòiseachadh Fosgail am post Leudaich/Co-theannaich gach post @@ -277,7 +277,7 @@ Leudaich postaichean ris a bheil rabhadh susbainte an-còmhnaidh Co-roinn ceangal dhan phost Co-roinn susbaint a’ phuist - ’S e bathar-bog saor le bun-tùs fosgailte a th’ ann an Tusky. Tha e fo cheadachas GNU General Public License tionndadh 3. Chì thu an ceadachas an-seo: https://www.gnu.org/licenses/gpl-3.0.en.html + ’S e bathar-bog saor le bun-tùs fosgailte a th’ ann an Gab. Tha e fo cheadachas GNU General Public License tionndadh 3. Chì thu an ceadachas an-seo: https://www.gnu.org/licenses/gpl-3.0.en.html Brathan nuair a thèid post agad a chomharrachadh ’na annsachd Brathan nuair a thèid post agad brosnachadh A bheil thu airson am post seo a sguabadh às is dreachd ùr a dhèanamh air\? @@ -330,13 +330,13 @@ Iarrtas leantainn air Videothan Dealbhan - Pròifil Tusky + Pròifil Gab Aithrisean air bugaichean ⁊ iarrtasan air gleusan: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues Làrach-lìn a’ phròiseict: -\n https://tusky.app - Le cumhachd Tusky - Tusky %s +\n https://gab.com + Le cumhachd Gab + Gab %s Cunntas glaiste %d chonaltradh ùr @@ -565,8 +565,8 @@ Mearachd a’ sgur de leantainn air #%s Mearachd a’ luchdadh fiosrachadh a’ chunntais Cha b’ urrainn dhuinn an dealbh a dheasachadh. - Airson brathan putaidh slighe UnifiedPush a chleachdadh, feumaidh Tusky cead airson fo-sgrìobhadh air brathan air an fhrithealaiche Mastodon agad fhaighinn. Bidh feum air clàradh a-steach às ùr airson na sgòpaichean OAuth a chaidh a cheadachadh dha Tusky atharrachadh. Ma nì thu clàradh a-steach às ùr an-seo no ann an roghainnean a’ chunntais, cumaidh sinn na dreachdan is an tasgadan ionadail agad. - Rinn thu clàradh a-steach às ùr dhan chunntas làithreach agad airson cead fo-sgrìobhadh putaidh a thoirt dha Tusky. Gidheadh, cha cunntasan eile agad fhathast nach deach imrich air an dòigh sin. Geàrr leum thuca is dèan clàradh a-steach às ùr do gach fear dhiubh airson taic do bhrathan UnifiedPush a chur an comas dhaibh. + Airson brathan putaidh slighe UnifiedPush a chleachdadh, feumaidh Gab cead airson fo-sgrìobhadh air brathan air an fhrithealaiche Mastodon agad fhaighinn. Bidh feum air clàradh a-steach às ùr airson na sgòpaichean OAuth a chaidh a cheadachadh dha Gab atharrachadh. Ma nì thu clàradh a-steach às ùr an-seo no ann an roghainnean a’ chunntais, cumaidh sinn na dreachdan is an tasgadan ionadail agad. + Rinn thu clàradh a-steach às ùr dhan chunntas làithreach agad airson cead fo-sgrìobhadh putaidh a thoirt dha Gab. Gidheadh, cha cunntasan eile agad fhathast nach deach imrich air an dòigh sin. Geàrr leum thuca is dèan clàradh a-steach às ùr do gach fear dhiubh airson taic do bhrathan UnifiedPush a chur an comas dhaibh. (Gun atharrachadh) Seall an t-ainm-cleachdaiche air na bàraichean-inneal Thoir gogag no slaod an cearcall a thaghadh puing an fhòcais a chithear air na dealbhagan an-còmhnaidh. diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index 64deaaf6a0..81dad63a03 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -224,7 +224,7 @@ CC-BY-SA 4.0 CC-BY 4.0 Con licenza Apache License (ver abaixo) - Tusky ten código e ferramentas dos seguintes proxectos de código aberto: + Gab ten código e ferramentas dos seguintes proxectos de código aberto: Retirar promoción Promover para a audiencia orixinal %1$s migrou a: @@ -236,7 +236,7 @@ O conxunto de emojis por defecto no sistema Reiniciar Máis tarde - Deberás reiniciar Tusky para aplicar os cambios + Deberás reiniciar Gab para aplicar os cambios Require reiniciar app Abrir toot Expandir/Pregar tódolos estados @@ -310,14 +310,14 @@ Imaxes Compartir ligazón ao toot Compartir contido do toot - Perfil de Tusky + Perfil de Gab Informar de fallos e solicitar funcións: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues Web do proxecto: -\n https://tusky.app - Tusky é software libre e de código aberto. Está baixo a licenza GNU General Public License Version 3. Podes ver a licenza aquí: https://www.gnu.org/licenses/gpl-3.0.en.html - Desenvolta por Tusky - Tusky %s +\n https://gab.com + Gab é software libre e de código aberto. Está baixo a licenza GNU General Public License Version 3. Podes ver a licenza aquí: https://www.gnu.org/licenses/gpl-3.0.en.html + Desenvolta por Gab + Gab %s Acerca de Conta bloqueada @@ -526,8 +526,8 @@ Volve a acceder con tódalas contas para activar as notificacións push. Acceder Notificacións cando son editadas publicacións coas que interactuaches - Para poder usar as notificacións push vía UnifiedPush, Tusky require o permiso para subscribirse ás notificacións do teu servidor Mastodon. É necesario volver a acceder para cambiar os ámbitos OAuth concedidos a Tusky. Usando aquí ou nas Preferencias da Conta a opción de volver a acceder conservarás os borradores locais e caché. - Volveches a acceder para obter as notificacións push en Tusky. Aínda así tes algunha outra conta que non foi migrada a este modo. Cambia a esas contas e volve a conectar unha a unha para activar o soporte para notificacións de UnifiedPush. + Para poder usar as notificacións push vía UnifiedPush, Gab require o permiso para subscribirse ás notificacións do teu servidor Mastodon. É necesario volver a acceder para cambiar os ámbitos OAuth concedidos a Gab. Usando aquí ou nas Preferencias da Conta a opción de volver a acceder conservarás os borradores locais e caché. + Volveches a acceder para obter as notificacións push en Gab. Aínda así tes algunha outra conta que non foi migrada a este modo. Cambia a esas contas e volve a conectar unha a unha para activar o soporte para notificacións de UnifiedPush. Volve a acceder para ter notificacións push %s editou a publicación Desbotar diff --git a/app/src/main/res/values-hi/strings.xml b/app/src/main/res/values-hi/strings.xml index 972a57451f..f39ca0381d 100644 --- a/app/src/main/res/values-hi/strings.xml +++ b/app/src/main/res/values-hi/strings.xml @@ -64,9 +64,9 @@ इन परिवर्तनों को लागू करने के लिए आपको टस्की को पुनः आरंभ करना होगा टस्की की प्रोफाइल बग रिपोर्ट और सुविधा अनुरोध: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues परियोजना की वेबसाइट: -\n https://tusky.app +\n https://gab.com टस्की स्वतंत्र और ओपन-सोर्स सॉफ्टवेयर है। यह GNU जनरल पब्लिक लाइसेंस संस्करण 3 के तहत लाइसेंस प्राप्त है। आप लाइसेंस यहां देख सकते हैं: https://www.gnu.org/licenses/gpl-3.0.en.html टस्की द्वारा संचालित टस्की %s diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 8432c2dd96..79e966f49f 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -209,7 +209,7 @@ Zárolt fiók Rólunk - Tusky %s + Gab %s Projekt honlapja:\n - https://tusky.app + https://gab.com Hibajelentés & új funkciók igénylése: -\n https://github.com/tuskyapp/Tusky/issues - Tusky profilja +\n https://github.com/johanw666/Gab/issues + Gab profilja Bejegyzés tartalmának megosztása Bejegyzés hivatkozásának megosztása Képek @@ -252,7 +252,7 @@ Keresés… Bejegyzés megnyitása Az app újraindítása szükséges - A beállítások érvényesítéséhez újra kell indítani a Tuskyt + A beállítások érvényesítéséhez újra kell indítani a Gabt Később Újraindítás Az eszközöd alapértelmezett emodzsi készlete @@ -261,7 +261,7 @@ Letöltés sikertelen Bot %1$s elköltözött: - A Tusky a következő nyílt forráskódú projektekből tartalmaz programkódot és más elemeket: + A Gab a következő nyílt forráskódú projektekből tartalmaz programkódot és más elemeket: CC-BY 4.0 CC-BY-SA 4.0 Profil metaadatok @@ -294,7 +294,7 @@ Közzététel (szerverrel szinkronizált) Szavazások Értesítés befejezett szavazásokról - Tusky ingyenes és nyílt forráskódú szoftver. A GNU General Public License Version 3 érvényes rá, amit itt tekinthetsz meg: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab ingyenes és nyílt forráskódú szoftver. A GNU General Public License Version 3 érvényes rá, amit itt tekinthetsz meg: https://www.gnu.org/licenses/gpl-3.0.en.html %dé múlva %dn múlva %dó múlva @@ -442,7 +442,7 @@ Könyvjelzők Könyvjelzőzés Könyvjelzők - Tusky által hajtva + Gab által hajtva Könyvjelzőzve Lista kiválasztása Lista @@ -541,8 +541,8 @@ 1+ Nem tudtuk betölteni a bejelentkező oldalt. Vázlat mentése… - Ahhoz, hogy használhass leküldési értesítéseket a UnifiedPush szolgáltatással, a Tusky-nak fel kell iratkoznia az értesítésekre a Mastodon szervereden. Ehhez új bejelentkezésre van szükség, hogy a Tusky számára kiosztott OAuth jogosultságok megváltozzanak. Az újbóli bejelentkezés funkció használata itt vagy a Fiókbeállításoknál meg fogja őrizni a helyi piszkozataidat és a cache tartalmát. - Újra bejelentkeztél a fiókodba, hogy feliratkoztasd a Tusky-t a leküldési értesítések használatára. Ugyanakkor vannak még fiókjaid, melyek még nem lettek így migrálva. Válts át rájuk és jelentkezz be újra mindegyikben, hogy ezekben is engedélyezd a UnifiedPush értesítések támogatását. + Ahhoz, hogy használhass leküldési értesítéseket a UnifiedPush szolgáltatással, a Gab-nak fel kell iratkoznia az értesítésekre a Mastodon szervereden. Ehhez új bejelentkezésre van szükség, hogy a Gab számára kiosztott OAuth jogosultságok megváltozzanak. Az újbóli bejelentkezés funkció használata itt vagy a Fiókbeállításoknál meg fogja őrizni a helyi piszkozataidat és a cache tartalmát. + Újra bejelentkeztél a fiókodba, hogy feliratkoztasd a Gab-t a leküldési értesítések használatára. Ugyanakkor vannak még fiókjaid, melyek még nem lettek így migrálva. Válts át rájuk és jelentkezz be újra mindegyikben, hogy ezekben is engedélyezd a UnifiedPush értesítések támogatását. Kép szerkesztése A kép nem szerkeszthető. Nem sikerült betölteni a fiókadatokat diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml index ea4b938dd5..b540f4c3b9 100644 --- a/app/src/main/res/values-in/strings.xml +++ b/app/src/main/res/values-in/strings.xml @@ -120,8 +120,8 @@ Notifikasi tentang pengikut baru Daftar Tentang - Tusky %s - Dipersembahkan oleh Tusky + Gab %s + Dipersembahkan oleh Gab Video Audio Lampiran diff --git a/app/src/main/res/values-is/strings.xml b/app/src/main/res/values-is/strings.xml index b19dcd1e79..38883dcf17 100644 --- a/app/src/main/res/values-is/strings.xml +++ b/app/src/main/res/values-is/strings.xml @@ -246,14 +246,14 @@ %d nýjar aðgerðir Læstur notandaaðgangur - Tusky %s - Keyrir á Tusky - Tusky er frjáls hugbúnaður með opinn grunnkóða. Hann er gefinn út með GNU General Public notkunarleyfi, útgáfu 3. Þú getur skoðað notkunarleyfið hér: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab %s + Keyrir á Gab + Gab er frjáls hugbúnaður með opinn grunnkóða. Hann er gefinn út með GNU General Public notkunarleyfi, útgáfu 3. Þú getur skoðað notkunarleyfið hér: https://www.gnu.org/licenses/gpl-3.0.en.html Vefsvæði verkefnisins: -\n https://tusky.app +\n https://gab.com Villutilkynningar og beiðnir um nýja eiginleika: -\n https://github.com/tuskyapp/Tusky/issues - Notandasnið Tusky +\n https://github.com/johanw666/Gab/issues + Notandasnið Gab Deila efni úr færslu Deila tengli á færslu Myndir @@ -323,7 +323,7 @@ Þenja út / Fella saman allar stöðufærslur Opna færslu Endurræsing forrits er nauðsynleg - Það þarf að endurræsa Tusky til að breytingarnar taki gildi + Það þarf að endurræsa Gab til að breytingarnar taki gildi Seinna Endurræsa Sjálfgefið táknmyndasett á tækinu þnu @@ -335,7 +335,7 @@ %1$s hefur verið flutt á: Endurbirta til upphaflegra lesenda Taka úr endurbirtingu - Tusky inniheldur kóða og gögn frá eftirfarandi verkefnum með opinn grunnkóða: + Gab inniheldur kóða og gögn frá eftirfarandi verkefnum með opinn grunnkóða: Notkunarleyfi er samkvæmt Apache hugbúnaðarleyfinu (afrit fyrir neðan) CC-BY 4.0 CC-BY-SA 4.0 @@ -524,10 +524,10 @@ Tilkynningar um nýja notendur Breytingar á færslum Tilkynningar þegar færslum sem þú hefur átt við er breytt - Þú hefur skráð þig aftur inn í fyrirliggjandi aðganginn þinn til þess að veita heimild fyrir áskrift að ýti-tilkynningum í Tusky. Aftur á móti ertu með aðra aðganga sem ekki hafa verið yfirfærðir á þennan hátt. Skiptu yfir í þá og skráðu þig þar inn aftur til að virkja stuðning við tilkynningar í gegnum UnifiedPush. + Þú hefur skráð þig aftur inn í fyrirliggjandi aðganginn þinn til þess að veita heimild fyrir áskrift að ýti-tilkynningum í Gab. Aftur á móti ertu með aðra aðganga sem ekki hafa verið yfirfærðir á þennan hátt. Skiptu yfir í þá og skráðu þig þar inn aftur til að virkja stuðning við tilkynningar í gegnum UnifiedPush. Skráði sig %1$s Skrá aftur inn alla aðganga til að virkja stuðning við ýti-tilkynningar. - Til þess að geta sent ýti-tilkynningar í gegnum UnifiedPush, þarf Tusky heimild til að gerast áskrifandi að tilkynningum á Mastodon-netþjóninum þínum. Þetta krefst þess að skráð sé inn aftur til að breyta vægi OAuth-heimilda sem Tusky er úthlutað. Notaðu endurinnskráninguna hérna eða í kjörstillingum aðgangsins þíns til að varðveita öll drögin þín og skyndiminni á tækinu. + Til þess að geta sent ýti-tilkynningar í gegnum UnifiedPush, þarf Gab heimild til að gerast áskrifandi að tilkynningum á Mastodon-netþjóninum þínum. Þetta krefst þess að skráð sé inn aftur til að breyta vægi OAuth-heimilda sem Gab er úthlutað. Notaðu endurinnskráninguna hérna eða í kjörstillingum aðgangsins þíns til að varðveita öll drögin þín og skyndiminni á tækinu. Skrá inn 1+ Gat ekki lesið innskráningarsíðuna. diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index f97a4c2edd..0065b60ab3 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -221,8 +221,8 @@ Account bloccato A proposito - Tusky %s - Tusky è un programma libero ed open source. + Gab %s + Gab è un programma libero ed open source. È distribuito con licenza GNU General Public License Version 3. Puoi leggere la licenza qui: https://www.gnu.org/licenses/gpl-3.0.en.html Sito web del progetto:\n - https://tusky.app + https://gab.com Segnala problemi e richiedi funzionalità: -\n https://github.com/tuskyapp/Tusky/issues - Profilo di Tusky +\n https://github.com/johanw666/Gab/issues + Profilo di Gab Condividi contenuto del messaggio Condividi collegamento al messaggio Immagini @@ -307,7 +307,7 @@ Espandi/riduci tutti i messaggi Apri messaggio Riavvio dell\'app richiesto - Devi riavviare Tusky per applicare queste modifiche + Devi riavviare Gab per applicare queste modifiche Più tardi Riavvia Le emoji predefinite del tuo dispositivo @@ -318,7 +318,7 @@ %1$s si è spostato su: Condividi con la visibilità del messaggio originale Annulla condivisione - Tusky contiene codice e risorse dai seguenti progetti open source: + Gab contiene codice e risorse dai seguenti progetti open source: Licenziata sotto la Licenza Apache (copia sotto) CC-BY 4.0 CC-BY-SA 4.0 @@ -400,7 +400,7 @@ Modifica Segnalibri Aggiungi sondaggio - Fatto usando Tusky + Fatto usando Gab Espandi sempre i messaggi segnalati come contenuto sensibile Messo nei segnalibri Sondaggio con scelte: %1$s, %2$s, %3$s, %4$s; %5$s @@ -555,9 +555,9 @@ Scartare Dettagli Riaccedi a tutti le utenze per attivare il supporto delle notifiche. - Al fine di utilizzare le notifiche tramite UnifiedPush, Tusky ha bisogno del permesso di sottoscrivere alle notifiche nella tua istanza Mastodon. Questo richiede un nuovo accesso per cambiare l\'OAuth precedentemente concesso a Tusky. Usare questa opzione qui o nelle preferenze dell\'account preserva tutte le tue bozze locali e la memoria temporanea (cache). + Al fine di utilizzare le notifiche tramite UnifiedPush, Gab ha bisogno del permesso di sottoscrivere alle notifiche nella tua istanza Mastodon. Questo richiede un nuovo accesso per cambiare l\'OAuth precedentemente concesso a Gab. Usare questa opzione qui o nelle preferenze dell\'account preserva tutte le tue bozze locali e la memoria temporanea (cache). %s (%s) - Nuovo accesso eseguito per l\'utenza corrente al fine di garantire il permesso delle notifiche a Tusky. Però hai altre utenze che non sono state migrate in questo modo. Cambia utenza e riaccedi una alla volta per abilitare il supporto alle notifiche UnifiedPush. + Nuovo accesso eseguito per l\'utenza corrente al fine di garantire il permesso delle notifiche a Gab. Però hai altre utenze che non sono state migrate in questo modo. Cambia utenza e riaccedi una alla volta per abilitare il supporto alle notifiche UnifiedPush. Registrato da %1$s Video and audio files non possono eccedere %s MB in dimensione. L\'immagine non può essere modificata. diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index dd79b2f700..31f8d73bcf 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -209,8 +209,8 @@ 非公開アカウント このアプリについて - Tusky %s - Tuskyは無料のオープンソースソフトウェアです。GNU General Public License Version 3 の下で使用許諾されています。ライセンスはここからご覧いただけます: https://www.gnu.org/licenses/gpl-3.0.ja.html プロジェクトのWebサイト(英語):\n - https://tusky.app + https://gab.com バグ報告 & 機能リクエスト(英語):\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky公式アカウント + Gab公式アカウント トゥートの内容を共有 トゥートへのリンクを共有 画像 @@ -279,7 +279,7 @@ 全て開く/閉じる トゥートを開く アプリの再起動が必要です - これらの変更を適用するには、Tuskyの再起動が必要になります + これらの変更を適用するには、Gabの再起動が必要になります 後で 再起動 あなたのデバイスのデフォルト絵文字セットです @@ -290,7 +290,7 @@ %1$s は引っ越しました: ブースト ブーストを解除 - Tuskyは、以下のオープンソース プロジェクトからのコードとアセットを含んでいます: + Gabは、以下のオープンソース プロジェクトからのコードとアセットを含んでいます: Apache Licenseの下にライセンスされています(下記をコピー) CC-BY 4.0 CC-BY-SA 4.0 @@ -462,5 +462,5 @@ 本当に %s のすべてをブロックするのですか? そのドメインからのコンテンツは、公開タイムラインや通知に表示されなくなります。また、そのドメインのフォロワーは削除されます。 音声 ドメイン全体を非表示 - Tuskyによって提供されています + Gabによって提供されています \ No newline at end of file diff --git a/app/src/main/res/values-kab/strings.xml b/app/src/main/res/values-kab/strings.xml index c22e207b51..820f18e102 100644 --- a/app/src/main/res/values-kab/strings.xml +++ b/app/src/main/res/values-kab/strings.xml @@ -83,8 +83,8 @@ %1$s, %2$s, %3$s d %4$d nniḍen %1$s, %2$s, akked %3$s %1$s akked %2$s - Tusky %s - Amaɣnu n Tusky + Gab %s + Amaɣnu n Gab Tugniwin Tibidyutin Yeṭṭafar-ik·ikem-id @@ -217,9 +217,9 @@ Ula d yiwen n ugmuḍ I yimeḍfaṛen kan Teɣzi n weḍṛis - Yettwamdemmar s Tusky + Yettwamdemmar s Gab Asmel Web n usenfaṛ: -\n https://tusky.app +\n https://gab.com %dsr %dtsd %dtsn diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index b6c4027a0d..6489a9ca52 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -233,8 +233,8 @@ 계정 잠김 이 앱에 관하여 - Tusky %s - Tusky는 무료이며 오픈 소스입니다. 이 프로젝트는 GNU General Public License Version 3에 의해 배포됩니다. 이 페이지에서 라이선스 전문(영문)을 열람하실 수 있습니다: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab %s + Gab는 무료이며 오픈 소스입니다. 이 프로젝트는 GNU General Public License Version 3에 의해 배포됩니다. 이 페이지에서 라이선스 전문(영문)을 열람하실 수 있습니다: https://www.gnu.org/licenses/gpl-3.0.en.html 프로젝트 홈페이지: -\n https://tusky.app +\n https://gab.com 버그 신고/건의사항: -\n https://github.com/tuskyapp/Tusky/issues - Tusky 공식 계정 +\n https://github.com/johanw666/Gab/issues + Gab 공식 계정 이 툿의 내용 공유 이 툿의 링크 공유 사진 @@ -315,7 +315,7 @@ 모두 보이기/줄이기 툿 열기 어플리케이션 재시작 필요 - 변경 사항을 적용하려면 Tusky를 재시작해야 합니다 + 변경 사항을 적용하려면 Gab를 재시작해야 합니다 다음에 지금 재시작 이 디바이스의 기본 이모지 @@ -327,7 +327,7 @@ %1$s는 계정을 이동했습니다: 원래의 수신자들에게 부스트 부스트 해제 - Tusky에는 다음 오픈 소스 프로젝트의 요소/코드를 일부 활용하였습니다: + Gab에는 다음 오픈 소스 프로젝트의 요소/코드를 일부 활용하였습니다: Apache License()에 의해 배포됨 CC-BY 4.0 CC-BY-SA 4.0 diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml index 4e6f59bd6e..442266cc66 100644 --- a/app/src/main/res/values-nb-rNO/strings.xml +++ b/app/src/main/res/values-nb-rNO/strings.xml @@ -206,10 +206,10 @@ Låst konto Om - Tusky %s + Gab %s Rapporter feil og ønsker om funksjonalitet her: -\n https://github.com/tuskyapp/Tusky/issues - Tuskys Profil +\n https://github.com/johanw666/Gab/issues + Gabs Profil Del inneholdet i innlegget Del lenke til tuten Bilder @@ -253,9 +253,9 @@ Standardinstilling for innlegg Nye nevnelser Varsler om nye nevnelser - Tusky er fri og åpen kildekode. Applikasjonen er lisensiert under GNU General Public License versjon 3. Du kan se lisensen her: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab er fri og åpen kildekode. Applikasjonen er lisensiert under GNU General Public License versjon 3. Du kan se lisensen her: https://www.gnu.org/licenses/gpl-3.0.en.html Hjemmeside: -\n https://tusky.app +\n https://gab.com om %dy Poster som %1$s Klarte ikke å sette bildetekst @@ -284,7 +284,7 @@ Utvid/Gjem alle statuser Åpne tut Omstart av applikasjonen kreves - Du må starte Tusky på nytt for at endringene blir aktivert + Du må starte Gab på nytt for at endringene blir aktivert Senere Start på nytt Standard-emojis for din enhet @@ -295,7 +295,7 @@ %1$s har flyttet til: Del til opprinnelig publikum Fjern deling - Tusky inneholder programkode og elementer fra følgende åpen kildekode-prosjekter: + Gab inneholder programkode og elementer fra følgende åpen kildekode-prosjekter: Lisensiert under Apache License (kopi under) CC-BY 4.0 CC-BY-SA 4.0 @@ -431,7 +431,7 @@ Planlegg innlegg Tilbakestill Det oppsto en feil under henting av %s - Drevet av Tusky + Drevet av Gab Bokmerker Bokmerke Bokmerker @@ -531,8 +531,8 @@ Detaljer Ble med %1$s Logg inn all konti på nytt for å skru på pushvarsler. - For å kunne sende pushvarsler via UnifiedPush trenger Tusky tillatelse til å abonnere på varsler på Mastodon-serveren. Dette krever at du logger inn på nytt. Ved å bruke muligheten til å logge inn på nytt her eller i kontoinstillinger vil alle lokale utkast være tilgjengelig også etter at du har logget inn på nytt. - Du har logget inn på nytt for å tillate Tusky til å sende pushvarsler, men du har fortsatt andre konti som ikke har fått den nødvendige tillatelsen. Bytt til dem og logg inn på nytt på samme måte for å skru på støtte for pushvarsler via UnifiedPush. + For å kunne sende pushvarsler via UnifiedPush trenger Gab tillatelse til å abonnere på varsler på Mastodon-serveren. Dette krever at du logger inn på nytt. Ved å bruke muligheten til å logge inn på nytt her eller i kontoinstillinger vil alle lokale utkast være tilgjengelig også etter at du har logget inn på nytt. + Du har logget inn på nytt for å tillate Gab til å sende pushvarsler, men du har fortsatt andre konti som ikke har fått den nødvendige tillatelsen. Bytt til dem og logg inn på nytt på samme måte for å skru på støtte for pushvarsler via UnifiedPush. Lagrer utkast… 1+ Rediger bilde diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 46fcd8fd57..61865ea25e 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -219,8 +219,8 @@ Besloten account Over - Tusky %s - Tusky is opensource- en vrije software. De licentie valt onder de GNU Algemene Publieke Licentie versie 3. Je kunt de licentie hier bekijken: https://www.gnu.org/licenses/gpl-3.0.nl.html + Gab %s + Gab is opensource- en vrije software. De licentie valt onder de GNU Algemene Publieke Licentie versie 3. Je kunt de licentie hier bekijken: https://www.gnu.org/licenses/gpl-3.0.nl.html Projectwebsite:\n - https://tusky.app + https://gab.com Foutmeldingen & nieuwe functies aanvragen:\n - https://github.com/tuskyapp/Tusky/issues - Tusky\'s profiel + https://github.com/johanw666/Gab/issues + Gab\'s profiel Inhoud van bericht delen Link van het bericht delen Afbeeldingen @@ -283,7 +283,7 @@ Alle berichten in- of uitklappen Bericht openen Herstarten app vereist - Je moet Tusky herstarten om deze veranderingen te kunnen doorvoeren + Je moet Gab herstarten om deze veranderingen te kunnen doorvoeren Later Herstarten Standaard emojiset van jouw apparaat @@ -294,7 +294,7 @@ %1$s is verhuisd naar: Boost naar oorspronkelijke ontvangers Niet langer boosten - Tusky bevat broncode en onderdelen van de volgende opensourceprojecten: + Gab bevat broncode en onderdelen van de volgende opensourceprojecten: Gelicenseerd onder de Apache-licentie (kopie hieronder) CC-BY 4.0 CC-BY-SA 4.0 @@ -439,7 +439,7 @@ Ingeplande berichten Ingepland bericht Herstellen - Mogelijk gemaakt door Tusky + Mogelijk gemaakt door Gab Berichten met tekstwaarschuwingen altijd uitklappen Als bladwijzer toegevoegd Kies een lijst @@ -551,8 +551,8 @@ (geen verandering) Gebruikersnaam op werkbalken tonen Tik of sleep de cirkel naar een centraal focuspunt dat op elke thumbnail zichtbaar moet blijven. - Om pushmeldingen via UnifiedPush te kunnen gebruiken, moet Tusky zich op meldingen van jouw Mastodon-server abonneren. Dit betekent dat je opnieuw moet inloggen om de OAuth-toestemmingen voor Tusky te wijzigen. Het hier of onder accountvoorkeuren opnieuw inloggen behoudt jouw lokale concepten en buffer. - Je hebt opnieuw op jouw huidige account ingelogd om toestemming voor pushmeldingen aan Tusky te verlenen. Je hebt echter nog andere accounts die nog niet op deze manier zijn overgezet. Ga naar deze accounts en log één voor één opnieuw in om UnifiedPush-meldingen ook daar in te schakelen. + Om pushmeldingen via UnifiedPush te kunnen gebruiken, moet Gab zich op meldingen van jouw Mastodon-server abonneren. Dit betekent dat je opnieuw moet inloggen om de OAuth-toestemmingen voor Gab te wijzigen. Het hier of onder accountvoorkeuren opnieuw inloggen behoudt jouw lokale concepten en buffer. + Je hebt opnieuw op jouw huidige account ingelogd om toestemming voor pushmeldingen aan Gab te verlenen. Je hebt echter nog andere accounts die nog niet op deze manier zijn overgezet. Ga naar deze accounts en log één voor één opnieuw in om UnifiedPush-meldingen ook daar in te schakelen. %s (🔗 %s) Altijd Wanneer meerdere accounts zijn ingelogd diff --git a/app/src/main/res/values-oc/strings.xml b/app/src/main/res/values-oc/strings.xml index d093cbc20c..5d8f9f5bbc 100644 --- a/app/src/main/res/values-oc/strings.xml +++ b/app/src/main/res/values-oc/strings.xml @@ -189,7 +189,7 @@ Compte blocat A prepaus - Tusky es programa gratuït, liure e de còdi dobèrt. + Gab es programa gratuït, liure e de còdi dobèrt. Es publicat jols tèrms de la licéncia publica generala GNU version 3. Podeu trobar les llicència aquí: https://www.gnu.org/licenses/gpl-3.0.ca.html Site web del projècte :\n - https://tusky.app + https://gab.com Rapòrts d\'errors e demandas de foncionalitats :\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Perfil de Tusky + Perfil de Gab Partejar lo contengut del tut Partejar lo ligam del tut Imatges @@ -247,7 +247,7 @@ Desplegar/Plegar totes los estatuts Dobrir lo tut Reaviada necessària - Vos caldrà reaviar Tusky per aplicar aquestes cambiaments + Vos caldrà reaviar Gab per aplicar aquestes cambiaments Mai tard Reaviar Los emoji per defaut de vòstre aparelh @@ -258,7 +258,7 @@ %1$s mudèt los catons a : Partejar al public d’origina Quitar de partejar - Tusky content de còdis e compausants dels projèctes liures seguents : + Gab content de còdis e compausants dels projèctes liures seguents : Licéncia Apache License (còpia çai-jos) Metadonada del perfil Contengut @@ -300,7 +300,7 @@ Servidor mandatari Totjorn marcar los mèdias coma sensibles Fracàs de la sincronizacion dels paramètres - Tusky %s + Gab %s %dd %dh %dm @@ -440,7 +440,7 @@ Planificar de tuts Escafar Error en cercant la publicacion %s - Propulsat per Tusky + Propulsat per Gab Marcapaginas Ajustar als marcapaginas Marcapaginas diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 887804e53b..dcf443885e 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -189,7 +189,7 @@ Konto zablokowane O programie - Tusky jest wolnym i otwartoźródłowym oprogramowaniem. Jest on dostępny na licencji GNU General Public License w wersji trzeciej. Możesz przeczytać przetłumaczoną treść licencji tutaj + Gab jest wolnym i otwartoźródłowym oprogramowaniem. Jest on dostępny na licencji GNU General Public License w wersji trzeciej. Możesz przeczytać przetłumaczoną treść licencji tutaj Strona projektu:\n - https://tusky.app + https://gab.com Zgłoszenia błędów i propozycje funkcji:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Profil Tusky’ego + Profil Gab’ego Udostępnij zawartość wpisu Udostępnij link do postu Obrazy @@ -249,7 +249,7 @@ Rozwiń/zwiń wszystkie wpisy Otwórz wpis Wymagane jest ponowne uruchomienie - Musisz uruchomić ponownie Tuskyego, aby zastosować zmiany + Musisz uruchomić ponownie Gabego, aby zastosować zmiany Później Uruchom ponownie Domyślny zestaw emoji tego urządzenia @@ -259,7 +259,7 @@ %1$s przeniósł się na: Podbij grupie docelowej autora oryginału Cofnij podbicie - Tusky zawiera kod i zasoby następujących projektów open source: + Gab zawiera kod i zasoby następujących projektów open source: Na licencji Apache (kopia poniżej) Metadane profilu dodaj dane @@ -314,7 +314,7 @@ Synchronizacja ustawień nie powiodła się Ankiety Powiadomienia o głosowaniach, które zostały zakończone - Tusky %s + Gab %s Zawsze rozwijaj wpisy z ostrzeżeniami o zawartości Publiczne osi czasu Konwersacje @@ -454,7 +454,7 @@ Zaplanowane wpisy Zaplanuj wpis Resetuj - Napędzane przez Tusky + Napędzane przez Gab Błąd przy wyszukiwaniu wpisu %s Zakładki Dodaj do zakładek @@ -555,11 +555,11 @@ Edycje wpisów Zapisywanie szkicu… Nie można załadować strony logowania. - Zalogowałeś/-aś się ponownie na swoje konto, aby przyzwolić Tusky na wysyłanie powiadomień push. Masz jednak inne konta które nie zostały zmigrowane. Przełącz się na nie i zaloguj się ponownie aby włączyć wsparcie dla powiadomień UnifiedPush. + Zalogowałeś/-aś się ponownie na swoje konto, aby przyzwolić Gab na wysyłanie powiadomień push. Masz jednak inne konta które nie zostały zmigrowane. Przełącz się na nie i zaloguj się ponownie aby włączyć wsparcie dla powiadomień UnifiedPush. 1+ Dołączył/-a %1$s Zaloguj się ponownie na wszystkie konta aby włączyć wsparcie dla powiadomień push. - Aby użyć powiadomień push przez UnifiedPush, Tusky wymaga pozwolenia na subskrybowanie powiadomień na twoim serwerze Mastodon. Wymaga to ponownego zalogowania aby zmienić zakresy OAuth przyznane Tusky. Użycie opcji ponownego zalogowania tutaj lub w ustawieniach konta zachowa wszystkie szkice i pamięć podręczną. + Aby użyć powiadomień push przez UnifiedPush, Gab wymaga pozwolenia na subskrybowanie powiadomień na twoim serwerze Mastodon. Wymaga to ponownego zalogowania aby zmienić zakresy OAuth przyznane Gab. Użycie opcji ponownego zalogowania tutaj lub w ustawieniach konta zachowa wszystkie szkice i pamięć podręczną. Edytuj obraz Obrazek nie mógł być zmodyfikowany. Zaloguj się ponownie aby włączyć powiadomienia push diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 1a22d85632..46c2431fc0 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -206,8 +206,8 @@ Perfil trancado Sobre - Tusky %s - Tusky é um software livre e de código aberto. Ele é licenciado sob a versão 3 da Licença Pública Geral GNU. Leia a licença aqui: https://www.gnu.org/licenses/gpl-3.0.pt-br.html + Gab %s + Gab é um software livre e de código aberto. Ele é licenciado sob a versão 3 da Licença Pública Geral GNU. Leia a licença aqui: https://www.gnu.org/licenses/gpl-3.0.pt-br.html Site do projeto:\n - https://tusky.app + https://gab.com Reporte bugs e solicite funcionalidades: -\n https://github.com/tuskyapp/Tusky/issues - Perfil do Tusky +\n https://github.com/johanw666/Gab/issues + Perfil do Gab Compartilhar conteúdo do toot Compartilhar link do toot Imagens @@ -276,7 +276,7 @@ %1$s mudou-se para: Dar boost para o mesmo público Desfazer boost - O Tusky contém código e recursos dos seguintes projetos de código aberto: + O Gab contém código e recursos dos seguintes projetos de código aberto: Licenciado sob a licença Apache (cópia abaixo) Metadados do perfil Adicionar @@ -439,7 +439,7 @@ Salvos Salvar Salvos - Desenvolvido por Tusky + Desenvolvido por Gab Salvo Selecionar lista Lista diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index 7e1012da19..6044c39b88 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -279,15 +279,15 @@ %1$s, %2$s e %3$s Perfil Privado Sobre - Tusky %s - A correr o Tusky + Gab %s + A correr o Gab Atualizar - Tusky é um software livre e de código aberto, licenciado com a versão 3 da GNU General Public License. Pode ler a licença aqui: https://www.gnu.org/licenses/gpl-3.0.pt-br.html + Gab é um software livre e de código aberto, licenciado com a versão 3 da GNU General Public License. Pode ler a licença aqui: https://www.gnu.org/licenses/gpl-3.0.pt-br.html Página do projeto: -\n https://tusky.app +\n https://gab.com Reporte de erros e pedidos de funcionalidades: -\n https://github.com/tuskyapp/Tusky/issues - Perfil do Tusky +\n https://github.com/johanw666/Gab/issues + Perfil do Gab Partilhar conteúdo do toot Partilhar hiperligação do toot Imagens @@ -358,7 +358,7 @@ Expandir/Contrair todos os toots Abrir toot É necessário reiniciar a aplicação - É necessário reiniciar o Tusky para aplicar as alterações + É necessário reiniciar o Gab para aplicar as alterações Reiniciar Pacote de emojis padrão do seu dispositivo Emojis padrão do Android 4.4 até ao 7.1 @@ -369,7 +369,7 @@ %1$s mudou-se para: Dar boost para o público inicial Desfazer boost - O Tusky contém código e recursos dos seguintes projetos de código aberto: + O Gab contém código e recursos dos seguintes projetos de código aberto: Licenciado sob a licença Apache (cópia abaixo) CC-BY 4.0 CC-BY-SA 4.0 @@ -542,9 +542,9 @@ Erro ao carregar os detalhes da conta Faz novamente login em todas as contas para ativar as notificações push. Criada em %1$s - Para ativar as notificações push através de UnifiedPush, o Tusky necessita de permissão para subscrever as notificações da tua instância Mastodon. Isto obriga a fazer login novamente, por forma a alterar o escopo das permissões fornecidas ao Tusky pelo OAuth. Usar a opção de novo login, aqui ou nas Configurações da Conta, preservará todos os teus rascunhos e cache locais. + Para ativar as notificações push através de UnifiedPush, o Gab necessita de permissão para subscrever as notificações da tua instância Mastodon. Isto obriga a fazer login novamente, por forma a alterar o escopo das permissões fornecidas ao Gab pelo OAuth. Usar a opção de novo login, aqui ou nas Configurações da Conta, preservará todos os teus rascunhos e cache locais. 1+ - Fizeste novo login na tua conta para dar permissão para a subscrição das notificações push no Tusky. Contudo, ainda tens outras contas sem esta permissão. Podes atribuir essa permissão fazendo novo login em cada uma delas e ativar o suporte para UnifiedPush. + Fizeste novo login na tua conta para dar permissão para a subscrição das notificações push no Gab. Contudo, ainda tens outras contas sem esta permissão. Podes atribuir essa permissão fazendo novo login em cada uma delas e ativar o suporte para UnifiedPush. Editar imagem Não foi possível editar a imagem. A guardar rascunho… diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 4b0a5db389..a3879223ca 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -228,15 +228,15 @@ Закрытый аккаунт О приложении - Tusky %s - Tusky — это свободное приложение с открытым исходным кодом. Выпускается по лицензии GNU General Public License Version 3. Вы можете прочитать текст лицензии здесь: https://www.gnu.org/licenses/gpl-3.0.ru.html + Gab %s + Gab — это свободное приложение с открытым исходным кодом. Выпускается по лицензии GNU General Public License Version 3. Вы можете прочитать текст лицензии здесь: https://www.gnu.org/licenses/gpl-3.0.ru.html Веб-сайт проекта:\n - https://tusky.app + https://gab.com Отчеты об ошибках и ваши пожелания: -\n https://github.com/tuskyapp/Tusky/issues - Профиль Tusky +\n https://github.com/johanw666/Gab/issues + Профиль Gab Поделиться содержанием гудка Поделиться ссылкой на гудок Изображения @@ -328,7 +328,7 @@ Раскрыть/свернуть все статусы Открыть гудок Необходимо перезапустить приложение - Вам нужно перезапустить Tusky для применения изменений + Вам нужно перезапустить Gab для применения изменений Позже Перезапустить Набор эмодзи по умолчанию @@ -339,7 +339,7 @@ %1$s переехал(а) на: Продвинуть для исходной аудитории Убрать продвижение - Tusky содержит код и ассеты из следующих приложений с открытым исходным кодом: + Gab содержит код и ассеты из следующих приложений с открытым исходным кодом: Используется лицензия Apache License (копия ниже) CC-BY 4.0 CC-BY-SA 4.0 @@ -460,7 +460,7 @@ Закладки Добавить в закладки Закладки - Работает на Tusky + Работает на Gab Добавлено в закладки Выбрать список Список diff --git a/app/src/main/res/values-sa/strings.xml b/app/src/main/res/values-sa/strings.xml index 7382d82fae..b68ac9e68d 100644 --- a/app/src/main/res/values-sa/strings.xml +++ b/app/src/main/res/values-sa/strings.xml @@ -235,9 +235,9 @@ दौत्यविषयो विभाज्यताम् टस्कीवर्यस्य व्यक्तिगतविवरणम् अशुद्धीनामावेदनं वैशिष्ट्यनिवेदनञ्च -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues प्रकल्पस्य जालसूत्रम् : -\n https://tusky.app +\n https://gab.com टस्कीत्यनावृतस्रोतो निःशुल्कतन्त्रांशः। GNU General Public License Version 3 इत्यनेनाऽनुज्ञापितः। अत्राऽनुज्ञापत्रं द्रष्टुं शक्यते:-https://www.gnu.org/licenses/gpl-3.0.en.html टस्कीत्यनेनाऽऽश्रितः टस्की %s diff --git a/app/src/main/res/values-si/strings.xml b/app/src/main/res/values-si/strings.xml index 14086536c5..61b39fc3dd 100644 --- a/app/src/main/res/values-si/strings.xml +++ b/app/src/main/res/values-si/strings.xml @@ -168,7 +168,7 @@ නිහඬ කරන්න ටුස්කි %s වියමන අඩවිය: -\n https://tusky.app +\n https://gab.com පිළිගන්න පැ. %d කින් මතවිමසුම diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml index 14ad779a4e..15dd461243 100644 --- a/app/src/main/res/values-sl/strings.xml +++ b/app/src/main/res/values-sl/strings.xml @@ -207,13 +207,13 @@ Zaklenjen račun O aplikaciji - Tusky %s - Tusky je prosta in odprtokodna programska oprema. Licencirana je pod licenco GNU General Public License različice 3. Licenco si lahko ogledate tukaj: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab %s + Gab je prosta in odprtokodna programska oprema. Licencirana je pod licenco GNU General Public License različice 3. Licenco si lahko ogledate tukaj: https://www.gnu.org/licenses/gpl-3.0.en.html Spletna stran projekta: -\nhttps://tusky.app +\nhttps://gab.com Poročila o napakah in želje za nove funkcije: -\nhttps://github.com/tuskyapp/Tusky/issues - Profil Tusky +\nhttps://github.com/johanw666/Gab/issues + Profil Gab Deli vsebino tuta Deli povezavo do tuta Slike @@ -280,7 +280,7 @@ Razširi/Strni vse statuse Odpri tut Potreben je ponovni zagon aplikacije - Če želite uveljaviti te spremembe, morate znova zagnati Tusky + Če želite uveljaviti te spremembe, morate znova zagnati Gab Kasneje Znova zaženi Privzeti komplet emotikonov vaše naprave @@ -291,7 +291,7 @@ %1$s se je prestavil/a na: Spodbudi izvirnemu občinstvu Prekini spodbudo - Tusky vsebuje kodo in sredstva iz naslednjih odprtokodnih projektov: + Gab vsebuje kodo in sredstva iz naslednjih odprtokodnih projektov: Licencirano pod licenco Apache (spodaj) CC-BY 4.0 CC-BY-SA 4.0 @@ -434,7 +434,7 @@ Ponastavi Napovej tut Napaka pri iskanju objave %s - Poganja ga Tusky + Poganja ga Gab %s spodbudil Ključniki Zahteve za Sledenje diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 3afc3bbfed..22b23c4e6f 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -221,21 +221,21 @@ Låst konto Om - Tusky %s - Tusky är fri programvara med öppen källkod. Det är licensierat under GNU General Public License version 3. Du kan läsa mer om licensen här: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab %s + Gab är fri programvara med öppen källkod. Det är licensierat under GNU General Public License version 3. Du kan läsa mer om licensen här: https://www.gnu.org/licenses/gpl-3.0.en.html - Tuskys webbsida:\n - https://tusky.app + Gabs webbsida:\n + https://gab.com Buggrapporter & funktionsförslag:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tuskys Profil + Gabs Profil Dela innehåll av toot Dela länk till toot Bilder @@ -305,7 +305,7 @@ Expandera/Dölj alla statusar Öppna toot Omstart av appen krävs - Du måste starta om Tusky för att tillämpa ändringarna + Du måste starta om Gab för att tillämpa ändringarna Senare Starta om Standard-emojis för din enhet @@ -316,7 +316,7 @@ %1$s har flyttat till: Knuffa till ursprunglig målgrupp Ta bort knuff - Tusky innehåller kod och tillgångar från följande öppen källkodsprojekt: + Gab innehåller kod och tillgångar från följande öppen källkodsprojekt: Licensierad under the Apache License (kopia nedanför) CC-BY 4.0 CC-BY-SA 4.0 @@ -451,7 +451,7 @@ Bokmärken Bokmärk Bokmärken - Drivs av Tusky + Drivs av Gab Bokmärkt Välj lista Lista @@ -515,11 +515,11 @@ Kunde inte avfölja #%s Radera denna konversation\? Alltid - För att använda pushnotiser via UnifiedPush behöver Tusky din tillåtelse att prenumerera på notiser på din Mastodon-server. Detta kräver att du loggar in igen för att ändra vilka OAuth-scopes Tusky har tillgång till. Genom använda alternativet logga in igen här eller i Kontoinställningarna behåller du alla dina lokala utkast och data i cache. + För att använda pushnotiser via UnifiedPush behöver Gab din tillåtelse att prenumerera på notiser på din Mastodon-server. Detta kräver att du loggar in igen för att ändra vilka OAuth-scopes Gab har tillgång till. Genom använda alternativet logga in igen här eller i Kontoinställningarna behåller du alla dina lokala utkast och data i cache. Tryck eller dra cirkeln för att välja fokuspunkten som alltid kommer synas i miniatyrbilder. Varaktighet Oändligt - Du har loggat in igen på ditt konto för att ge Tusky tillgång till push-prenumeration. Dock har du andra konton som inte har migrerats såhär ännu. Växla till dem och logga in igen för att aktivera stöd för UnifiedPush-notiser. + Du har loggat in igen på ditt konto för att ge Gab tillgång till push-prenumeration. Dock har du andra konton som inte har migrerats såhär ännu. Växla till dem och logga in igen för att aktivera stöd för UnifiedPush-notiser. Sluta prenumerera Inläggsspråk %s (🔗 %s) diff --git a/app/src/main/res/values-ta/strings.xml b/app/src/main/res/values-ta/strings.xml index 5d7c79fff0..2375cce452 100644 --- a/app/src/main/res/values-ta/strings.xml +++ b/app/src/main/res/values-ta/strings.xml @@ -175,8 +175,8 @@ கணக்கு மூடப்பட்டது பற்றி - Tusky(டஸ்கி) %s - Tusky ஒரு கட்டற்ற மற்றும் திறந்த மூல மென்பொருள். இதன் உரிமம் GNU General Public License(பொது உரிமம்) பதிப்பு 3 -ன் கீழ் உள்ளது. நீங்கள் உரிமம் பற்றி காண: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab(டஸ்கி) %s + Gab ஒரு கட்டற்ற மற்றும் திறந்த மூல மென்பொருள். இதன் உரிமம் GNU General Public License(பொது உரிமம்) பதிப்பு 3 -ன் கீழ் உள்ளது. நீங்கள் உரிமம் பற்றி காண: https://www.gnu.org/licenses/gpl-3.0.en.html திட்டத்தின் வலைத்தளம்:\n - https://tusky.app + https://gab.com பிழை அறிக்கைகள் & அம்ச கோரிக்கைகள்:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky-ன் கணக்கு + Gab-ன் கணக்கு Toot உள்ளடக்கத்தைப் பகிர் Toot இணைப்பைப் பகிர் படங்கள் @@ -247,7 +247,7 @@ %1$s கணக்கு நகர்த்தபட்டது இதற்க்கு: அசலான பார்வையாளர்களுக்கு மட்டும் மேலேற்று மேலேற்றத்தை தவிர் - Tusky கொண்டுள்ள நிரல் மற்றும் துணுக்குகள் பின்வரும் திறந்த மூல திட்டங்கள்: + Gab கொண்டுள்ள நிரல் மற்றும் துணுக்குகள் பின்வரும் திறந்த மூல திட்டங்கள்: Apache License (copy below)-ன் கீழ் உரிமமளிக்கப்பட்டுள்ளது சுயவிவர மேனிலை தரவு தகவலை இணைக்க diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml index f587d27999..34f46a0b54 100644 --- a/app/src/main/res/values-th/strings.xml +++ b/app/src/main/res/values-th/strings.xml @@ -96,7 +96,7 @@ CC-BY-SA 4.0 CC-BY 4.0 ภายใต้สัญญาอนุญาต Apache License (คัดลอกด้านล่าง) - Tusky มีโค้ดและสินทรัพย์จากโครงการโอเพนซอร์สต่อไปนี้: + Gab มีโค้ดและสินทรัพย์จากโครงการโอเพนซอร์สต่อไปนี้: ยกเลิกบูสต์ บูสต์โพสต์ต้นฉบับ %1$s ได้ย้ายไปที่ : @@ -108,7 +108,7 @@ ชุดเริ่มต้นในอุปกรณ์คุณ เริ่มใหม่ ภายหลัง - จำเป็นต้องเริ่ม Tusky ใหม่ เพื่อใช้การเปลี่ยนแปลงเหล่านี้ + จำเป็นต้องเริ่ม Gab ใหม่ เพื่อใช้การเปลี่ยนแปลงเหล่านี้ จำเป็นต้องเริ่มแอปใหม่ เปิด Toot ขยาย/ย่อทั้งหมด @@ -176,14 +176,14 @@ ภาพ แบ่งปันลิงก์ Toot แบ่งปันเนื้อหา Toot - บัญชีทางการของ Tusky + บัญชีทางการของ Gab รายงานช่องโหว่ และ ขอฟีเจอร์ (ภาษาอังกฤษ): -\nhttps://github.com/tuskyapp/Tusky/issues +\nhttps://github.com/johanw666/Gab/issues เว็บไซต์โปรเจกต์: -\nhttps://tusky.app - Tusky คือซอฟต์แวร์เสรีและโอเพนซอร์ส ภายใต้สัญญาอนุญาต GNU General Public License Version 3 ดูสัญญาที่ : https://www.gnu.org/licenses/gpl-3.0.ja.html - ขับเคลื่อนด้วย Tusky - Tusky %s +\nhttps://gab.com + Gab คือซอฟต์แวร์เสรีและโอเพนซอร์ส ภายใต้สัญญาอนุญาต GNU General Public License Version 3 ดูสัญญาที่ : https://www.gnu.org/licenses/gpl-3.0.ja.html + ขับเคลื่อนด้วย Gab + Gab %s บัญชีไม่สาธารณะ การโต้ตอบใหม่จำนวน %d diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 3607696226..af5e7b27ea 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -204,8 +204,8 @@ Kitli Hesap Hakkında - Tusky %s - Tusky özgür ve açık kaynak bir yazılımdır. GNU Genel Kamu Lisansı sürüm 3 altında lisanslanmıştır. Lisansı buradan görüntüleyebilirsiniz: https://www.gnu.org/licenses/gpl-3.0.en.html + Gab %s + Gab özgür ve açık kaynak bir yazılımdır. GNU Genel Kamu Lisansı sürüm 3 altında lisanslanmıştır. Lisansı buradan görüntüleyebilirsiniz: https://www.gnu.org/licenses/gpl-3.0.en.html Projenin internet sitesi: -\n https://tusky.app +\n https://gab.com & özellik istekleri hata raporları: -\n https://github.com/tuskyapp/Tusky/issues - Tusky\'nin Profili +\n https://github.com/johanw666/Gab/issues + Gab\'nin Profili İletinin içeriğini paylaş İletinin adresini paylaş Görseller @@ -265,7 +265,7 @@ Tüm durumları Genişlet/Küçült Durumu aç Uygulamayı yeniden başlatmanız lazım - Bu değişiklikleri uygulamak için Tusky\'yi yeniden başlatmanız gerekecek + Bu değişiklikleri uygulamak için Gab\'yi yeniden başlatmanız gerekecek Sonra Yeniden başlat Cihazınızın varsayılan ifade paketi @@ -274,7 +274,7 @@ İndirme başarısız %1$s buraya taşındı: Yükseltmeyi geri çek - Tusky aşağıdakı açık kaynaklı projelerden kod ve materyal içeriyor: + Gab aşağıdakı açık kaynaklı projelerden kod ve materyal içeriyor: Apache Lisansı altında lisanslanmıştır (kopya aşağıda) CC-BY 4.0 CC-BY-SA 4.0 @@ -413,7 +413,7 @@ Sıfırla Bu durumu silip yeniden düzenlemek istiyor musunuz\? Botlar için işaret göster - Tusky tarafından desteklenmektedir + Gab tarafından desteklenmektedir Yerimine eklendi Liste seç Liste diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index 41f27aa1cb..a387091b96 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -268,7 +268,7 @@ Бот Перезапустити Пізніше - Вам потрібно буде перезапустити Tusky, щоб застосувати ці зміни + Вам потрібно буде перезапустити Gab, щоб застосувати ці зміни Необхідно перезапустити застосунок Відкрити допис Розгорнути/згорнути всі дописи @@ -323,14 +323,14 @@ Зображення Поділитися посиланням на допис Поділитися вмістом допису - Профіль Tusky + Профіль Gab Звіти про вади та запити функцій: -\n https://github.com/tuskyapp/Tusky/issues +\n https://github.com/johanw666/Gab/issues Вебсайт проєкту: -\n https://tusky.app - Tusky — вільне та відкрите програмне забезпечення. Ліцензовано загальною громадською ліцензією GNU версії 3, ви можете переглянути ліцензію тут: https://www.gnu.org/licenses/gpl-3.0.en.html - Створено Tusky - Tusky %s +\n https://gab.com + Gab — вільне та відкрите програмне забезпечення. Ліцензовано загальною громадською ліцензією GNU версії 3, ви можете переглянути ліцензію тут: https://www.gnu.org/licenses/gpl-3.0.en.html + Створено Gab + Gab %s Заблокований обліковий запис %d нова взаємодія @@ -523,7 +523,7 @@ додати дані Метадані профілю Ліцензовано ліцензією Apache (копія знизу) - Tusky містить код та засоби з таких проєктів з відкритим кодом: + Gab містить код та засоби з таких проєктів з відкритим кодом: Відкликати просування Просунути початковій аудиторії %1$s переміщено до: @@ -557,8 +557,8 @@ Подробиці Увійдіть повторно, щоб отримувати push-сповіщення Увійдіть повторно до всіх облікових записів, щоб увімкнути підтримку push-сповіщень. - Щоб використовувати push-сповіщення через UnifiedPush, Tusky потребує дозволу стежити за сповіщеннями на вашому сервері Mastodon. Це вимагає повторного входу, щоб змінити області OAuth, надані Tusky. Використання параметра повторного входу тут або в налаштуваннях облікового запису збереже всі ваші локальні чернетки та кеш. - Ви повторно увійшли до свого поточного облікового запису, щоб надати дозвіл на стеження Tusky. Однак у вас все ще є інші облікові записи, які не мігрували таким чином. Перейдіть до них і повторно увійдіть до них по одному, щоб забезпечити підтримку UnifiedPush сповіщень. + Щоб використовувати push-сповіщення через UnifiedPush, Gab потребує дозволу стежити за сповіщеннями на вашому сервері Mastodon. Це вимагає повторного входу, щоб змінити області OAuth, надані Gab. Використання параметра повторного входу тут або в налаштуваннях облікового запису збереже всі ваші локальні чернетки та кеш. + Ви повторно увійшли до свого поточного облікового запису, щоб надати дозвіл на стеження Gab. Однак у вас все ще є інші облікові записи, які не мігрували таким чином. Перейдіть до них і повторно увійдіть до них по одному, щоб забезпечити підтримку UnifiedPush сповіщень. Приєднується %1$s Редагувати зображення 1+ diff --git a/app/src/main/res/values-vi/strings.xml b/app/src/main/res/values-vi/strings.xml index 88b707a7b4..f46d417a75 100644 --- a/app/src/main/res/values-vi/strings.xml +++ b/app/src/main/res/values-vi/strings.xml @@ -270,12 +270,12 @@ Đăng lại Thông báo về lượt yêu cầu theo dõi Báo lỗi và đề xuất tính năng -\nhttps://github.com/tuskyapp/Tusky/issues +\nhttps://github.com/johanw666/Gab/issues Trang chủ -\nhttps://tusky.app - Tusky là phần mềm mã nguồn mở, được phân phối với giấy phép GNU General Public License Version 3. Bạn có thể tham khảo thêm tại: https://www.gnu.org/licenses/gpl-3.0.en.html - Powered by Tusky - Tusky %s +\nhttps://gab.com + Gab là phần mềm mã nguồn mở, được phân phối với giấy phép GNU General Public License Version 3. Bạn có thể tham khảo thêm tại: https://www.gnu.org/licenses/gpl-3.0.en.html + Powered by Gab + Gab %s Tài khoản bị khóa Thông báo khi một cuộc bình chọn kết thúc Bình chọn @@ -307,7 +307,7 @@ Hình ảnh URL tút Nội dung tút - Trang hồ sơ Tusky + Trang hồ sơ Gab Xác nhận trước khi đăng lại Hiện xem trước link Mastodon giới hạn tối thiểu 5 phút. @@ -407,7 +407,7 @@ CC-BY-SA 4.0 CC-BY 4.0 Giấy phép Apache (xem bên dưới) - Tusky có sử dụng mã nguồn từ những dự án mã nguồn mở sau: + Gab có sử dụng mã nguồn từ những dự án mã nguồn mở sau: Hủy đăng lại Đăng lại công khai %1$s đã chuyển sang: @@ -419,7 +419,7 @@ Sử dụng emoji mặc định của thiết bị Khởi động lại Để sau - Bạn cần khởi động lại Tusky để áp dụng các thiết lập + Bạn cần khởi động lại Gab để áp dụng các thiết lập Yêu cầu khởi động lại ứng dụng Đọc tút Mở rộng/Thu gọn toàn bộ tút @@ -519,8 +519,8 @@ Chi tiết Tham gia vào %1$s Đăng nhập lại tất cả tài khoản để kích hoạt thông báo đẩy. - Bạn đã đăng nhập lại vào tài khoản hiện tại của mình để cấp quyền thông báo đẩy cho Tusky. Tuy nhiên, bạn vẫn có các tài khoản khác chưa kích hoạt thông báo đẩy theo cách này. Chuyển sang chúng và đăng nhập từng cái một để cho phép hỗ trợ thông báo UnifiedPush. - Để sử dụng thông báo đẩy qua UnifiedPush, Tusky cần có quyền đăng ký thông báo trên máy chủ Mastodon của bạn. Bạn hãy thoát ra rồi đăng nhập lại để thay đổi phạm vi OAuth được cấp cho Tusky. Sử dụng đăng nhập lại ở đây hoặc trong cài đặt Tài khoản sẽ bảo toàn tất cả các tút nháp và bộ nhớ đệm trên điện thoại của bạn. + Bạn đã đăng nhập lại vào tài khoản hiện tại của mình để cấp quyền thông báo đẩy cho Gab. Tuy nhiên, bạn vẫn có các tài khoản khác chưa kích hoạt thông báo đẩy theo cách này. Chuyển sang chúng và đăng nhập từng cái một để cho phép hỗ trợ thông báo UnifiedPush. + Để sử dụng thông báo đẩy qua UnifiedPush, Gab cần có quyền đăng ký thông báo trên máy chủ Mastodon của bạn. Bạn hãy thoát ra rồi đăng nhập lại để thay đổi phạm vi OAuth được cấp cho Gab. Sử dụng đăng nhập lại ở đây hoặc trong cài đặt Tài khoản sẽ bảo toàn tất cả các tút nháp và bộ nhớ đệm trên điện thoại của bạn. 1+ Sửa ảnh Hình ảnh này không thể sửa. diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index 7a3f39f8ce..489e419e1b 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -12,8 +12,8 @@ 嘟文太长了! 无法上传此类型的文件。 此文件无法打开。 - 需要授予 Tusky 读取媒体文件的权限。 - 需要授予 Tusky 存储媒体的权限。 + 需要授予 Gab 读取媒体文件的权限。 + 需要授予 Gab 存储媒体的权限。 无法在一篇嘟文中同时插入视频和图片。 上传失败。 嘟文发送时发生出错。 @@ -143,7 +143,7 @@ 正在连接… 请输入你帐号所在的 Mastodon 站点的域名,比如 mastodon.social,icosahedron.website,social.tchncs.de,等等 。 \n -\n还没有 Mastodon 帐号?你也可以输入想注册的 Mastodon 站点的域名,然后在该服务器创建新的帐号并授权 Tusky 登入。 +\n还没有 Mastodon 帐号?你也可以输入想注册的 Mastodon 站点的域名,然后在该服务器创建新的帐号并授权 Gab 登入。 \n \n在 Mastodon 里,你的账号信息储存在某一特定实例当中,但 Mastodon 可使跨站互动和站内互动一样简单。 \n @@ -225,9 +225,9 @@ %d 个新互动 锁嘟用户 - 关于 Tusky - Tusky %s - Tusky 是基于 GNU General Public License Version 3 许可证开源的自由软件。完整的许可证协议:https://www.gnu.org/licenses/gpl-3.0.en.html + 关于 Gab + Gab %s + Gab 是基于 GNU General Public License Version 3 许可证开源的自由软件。完整的许可证协议:https://www.gnu.org/licenses/gpl-3.0.en.html 项目地址:\n - https://tusky.app + https://gab.com 问题反馈:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky 官方帐号 + Gab 官方帐号 分享嘟文内容 分享嘟文链接 图片 @@ -310,7 +310,7 @@ 展开/折叠所有嘟文 打开嘟文 需要重启应用 - 你需要重启 Tusky 才能生效 + 你需要重启 Gab 才能生效 稍后 立即重启 系统内置的表情符号 @@ -322,7 +322,7 @@ %1$s 已迁移到: 转嘟(可见者不变) 取消转嘟 - Tusky 使用了以下开源项目的源码: + Gab 使用了以下开源项目的源码: 以 Apache License 授权(详见下方) CC-BY 4.0 CC-BY-SA 4.0 @@ -408,7 +408,7 @@ %s 已取消隐藏 隐藏来自该域名的所有嘟文 动画GIF头像 - 由Tusky提供支持 + 由Gab提供支持 始终扩展有内容警告的嘟文 整个单词 如果关键字或缩写只有字母或数字,则只有在匹配整个单词时才会应用 @@ -536,10 +536,10 @@ 重新登陆以启用通知推送 不理会 详情 - 你已重新登录当前账户,向 Tusky 授予推送订阅权限。但是,你仍然有其他没有以这种方式迁移的账户。切换到它们,逐个重新登录,以启用 UnifiedPush 通知支持。 + 你已重新登录当前账户,向 Gab 授予推送订阅权限。但是,你仍然有其他没有以这种方式迁移的账户。切换到它们,逐个重新登录,以启用 UnifiedPush 通知支持。 加入于%1$s 重新登录所有账户来启用推送通知支持。 - 为了通过 UnifiedPush 使用推送通知,Tusky 需要订阅你 Mastodon 服务器通知的权限。这需要重新登录来更改授予 Tusky 的 OAuth 作用域。使用此处或账户首选项中“重新登录”选项将保留你所有的本地草稿和缓存。 + 为了通过 UnifiedPush 使用推送通知,Gab 需要订阅你 Mastodon 服务器通知的权限。这需要重新登录来更改授予 Gab 的 OAuth 作用域。使用此处或账户首选项中“重新登录”选项将保留你所有的本地草稿和缓存。 1+ 编辑图片 无法编辑图片。 diff --git a/app/src/main/res/values-zh-rHK/strings.xml b/app/src/main/res/values-zh-rHK/strings.xml index 180842d2f2..2f99ca30dc 100644 --- a/app/src/main/res/values-zh-rHK/strings.xml +++ b/app/src/main/res/values-zh-rHK/strings.xml @@ -12,8 +12,8 @@ 嘟文太長了! 無法上傳此類型的檔案。 此檔案無法開啟。 - 需要授予 Tusky 讀取媒體檔案的權限。 - 需要授予 Tusky 寫入儲存空間的權限。 + 需要授予 Gab 讀取媒體檔案的權限。 + 需要授予 Gab 寫入儲存空間的權限。 無法在嘟文中同時插入影片和圖片。 媒體檔案上傳失敗。 嘟文發送時出錯。 @@ -225,8 +225,8 @@ %d 個新互動 鎖嘟用戶 - 關於 Tusky - Tusky 是基於 GNU General Public License Version 3 許可證開源的自由軟體完整的許可證協議:https://www.gnu.org/licenses/gpl-3.0.en.html + 關於 Gab + Gab 是基於 GNU General Public License Version 3 許可證開源的自由軟體完整的許可證協議:https://www.gnu.org/licenses/gpl-3.0.en.html 專案網站:\n - https://tusky.app + https://gab.com 問題回報:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky 官方帳號 + Gab 官方帳號 分享嘟文內容 分享嘟文連結 照片 @@ -308,7 +308,7 @@ 展開/摺疊所有嘟文 開啟嘟文 需要重啟應用程式 - 你需要重啟 Tusky 才能生效 + 你需要重啟 Gab 才能生效 稍後 立即重啟 系統預設的表情符號包 @@ -320,7 +320,7 @@ %1$s 已遷移到: 轉嘟(可見者不變) 取消轉嘟 - Tusky 使用了以下開源專案的原始碼: + Gab 使用了以下開源專案的原始碼: 以 Apache License 授權(詳見下方) CC-BY 4.0 CC-BY-SA 4.0 @@ -497,8 +497,8 @@ 總是顯示被標注為內容警告的嘟文 附件 錄音 - 由 Tusky 提供 - Tusky %s + 由 Gab 提供 + Gab %s 當你關注的人發布新嘟文時通知 新嘟文 關注請求的通知 diff --git a/app/src/main/res/values-zh-rMO/strings.xml b/app/src/main/res/values-zh-rMO/strings.xml index 878c4d1bdb..cd3c1e03f8 100644 --- a/app/src/main/res/values-zh-rMO/strings.xml +++ b/app/src/main/res/values-zh-rMO/strings.xml @@ -12,8 +12,8 @@ 嘟文太長了! 無法上傳此類型的檔案 此檔案無法開啟 - 需要授予 Tusky 讀取媒體檔案的權限 - 需要授予 Tusky 寫入儲存空間的權限 + 需要授予 Gab 讀取媒體檔案的權限 + 需要授予 Gab 寫入儲存空間的權限 無法在嘟文中同時插入影片和圖片 媒體檔案上傳失敗 嘟文發送時出錯 @@ -219,8 +219,8 @@ %d 個新互動 鎖嘟用戶 - 關於 Tusky - Tusky 是基於 GNU General Public License Version 3 許可證開源的自由軟體完整的許可證協議:https://www.gnu.org/licenses/gpl-3.0.en.html + 關於 Gab + Gab 是基於 GNU General Public License Version 3 許可證開源的自由軟體完整的許可證協議:https://www.gnu.org/licenses/gpl-3.0.en.html 專案網站:\n - https://tusky.app + https://gab.com 問題回報:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky 官方帳號 + Gab 官方帳號 分享嘟文內容 分享嘟文連結 照片 @@ -302,7 +302,7 @@ 展開/摺疊所有嘟文 開啟嘟文 需要重啟應用程式 - 你需要重啟 Tusky 才能生效 + 你需要重啟 Gab 才能生效 稍後 立即重啟 系統預設的表情符號包 @@ -314,7 +314,7 @@ %1$s 已遷移到: 轉嘟(可見者不變) 取消轉嘟 - Tusky 使用了以下開源專案的原始碼: + Gab 使用了以下開源專案的原始碼: 以 Apache License 授權(詳見下方) CC-BY 4.0 CC-BY-SA 4.0 diff --git a/app/src/main/res/values-zh-rSG/strings.xml b/app/src/main/res/values-zh-rSG/strings.xml index 7a3bfe3bec..fde7515d10 100644 --- a/app/src/main/res/values-zh-rSG/strings.xml +++ b/app/src/main/res/values-zh-rSG/strings.xml @@ -12,8 +12,8 @@ 嘟文太长了! 无法上传此类型的文件 此文件无法打开 - 需要授予 Tusky 读取媒体文件的权限 - 需要授予 Tusky 写入存储空间的权限 + 需要授予 Gab 读取媒体文件的权限 + 需要授予 Gab 写入存储空间的权限 无法在嘟文中同时插入视频和图片 媒体文件上传失败 嘟文发送时出错 @@ -142,7 +142,7 @@ 需要帮助? 正在连接… 请输入你帐号所在的 Mastodon 站点的域名,比如 pawoo.net,acg.mn,wxw.moe,等等 。 - \n\n还没有 Mastodon 帐号?你也可以输入想注册的 Mastodon 站点的域名,然后在该服务器创建新的帐号并授权 Tusky 登入。 + \n\n还没有 Mastodon 帐号?你也可以输入想注册的 Mastodon 站点的域名,然后在该服务器创建新的帐号并授权 Gab 登入。 \n\n在 Mastodon 里,跨站互动和站内互动一样简单。可以前往 https://joinmastodon.org 了解更多信息。 正在结束上传… @@ -222,9 +222,9 @@ %d 个新互动 锁嘟用户 - 关于 Tusky - Tusky %s - Tusky 是基于 GNU General Public License Version 3 许可证开源的自由软件。完整的许可证协议:https://www.gnu.org/licenses/gpl-3.0.en.html + 关于 Gab + Gab %s + Gab 是基于 GNU General Public License Version 3 许可证开源的自由软件。完整的许可证协议:https://www.gnu.org/licenses/gpl-3.0.en.html 项目地址:\n - https://tusky.app + https://gab.com 问题反馈:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky 官方帐号 + Gab 官方帐号 分享嘟文内容 分享嘟文链接 照片 @@ -306,7 +306,7 @@ 展开/折叠所有嘟文 打开嘟文 需要重启应用 - 你需要重启 Tusky 才能生效 + 你需要重启 Gab 才能生效 稍后 立即重启 系统内置的表情符号 @@ -318,7 +318,7 @@ %1$s 已迁移到: 转嘟(可见者不变) 取消转嘟 - Tusky 使用了以下开源项目的源码: + Gab 使用了以下开源项目的源码: 以 Apache License 授权(详见下方) CC-BY 4.0 CC-BY-SA 4.0 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 9e1a631852..98ae9fce86 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -12,8 +12,8 @@ 嘟文太長了! 無法上傳此類型的檔案。 此檔案無法開啟。 - 需要授予 Tusky 讀取媒體檔案的權限。 - 需要授予 Tusky 寫入儲存空間的權限。 + 需要授予 Gab 讀取媒體檔案的權限。 + 需要授予 Gab 寫入儲存空間的權限。 無法在嘟文中同時插入影片和圖片。 媒體檔案上傳失敗。 嘟文發送時出錯。 @@ -225,8 +225,8 @@ %d 個新互動 鎖嘟用戶 - 關於 Tusky - Tusky 是基於 GNU General Public License Version 3 許可證開源的自由軟體完整的許可證協議:https://www.gnu.org/licenses/gpl-3.0.en.html + 關於 Gab + Gab 是基於 GNU General Public License Version 3 許可證開源的自由軟體完整的許可證協議:https://www.gnu.org/licenses/gpl-3.0.en.html 專案網站:\n - https://tusky.app + https://gab.com 問題回報:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky 官方帳號 + Gab 官方帳號 分享嘟文內容 分享嘟文連結 照片 @@ -309,7 +309,7 @@ 展開/摺疊所有嘟文 開啟嘟文 需要重啟應用程式 - 你需要重啟 Tusky 才能生效 + 你需要重啟 Gab 才能生效 稍後 立即重啟 系統預設的表情符號包 @@ -321,7 +321,7 @@ %1$s 已遷移到: 轉嘟(可見者不變) 取消轉嘟 - Tusky 使用了以下開源專案的原始碼: + Gab 使用了以下開源專案的原始碼: 以 Apache License 授權(詳見下方) CC-BY 4.0 CC-BY-SA 4.0 @@ -412,7 +412,7 @@ 你確定要封鎖 %s 域名嗎?您將不會在任何聯邦時間軸或通知中看到該域名中的內容,且來自該域名的關注者將被移除。 隱藏整個域名 GIF 動畫大頭貼 - Tusky %s + Gab %s 整個單詞 如果關鍵字或短語僅為字母或數字,則只有在匹配整個單詞時才會應用 Google 正在使用的 Emoji 符號集 @@ -506,7 +506,7 @@ 被加入書籤 我的書籤 書籤 - 由 Tusky 提供 + 由 Gab 提供 尋找嘟文時發生錯誤 %s 重設 排程嘟文 @@ -571,8 +571,8 @@ 詳情 我互動過的嘟文被編輯了 14 天 - 為了透過 UnifiedPush使用推播功能,Tusky 需要獲得訂閱您 Mastodon 服務器上的通知之權限。這會需要重新登入才能更改授予 Tusky 的 OAuth 範疇。在此頁面或帳戶設定頁面中使用重新登入選項將會保留您所有的本機草稿和快取。 - 您已重新登入當前帳號並授予 Tusky 推送訂閱的權限。 然而,您仍擁有其他帳號未以此種方式遷移。 請切換到該帳號,並且逐一重新登入,以啟用 UnifiedPush 的通知支援。 + 為了透過 UnifiedPush使用推播功能,Gab 需要獲得訂閱您 Mastodon 服務器上的通知之權限。這會需要重新登入才能更改授予 Gab 的 OAuth 範疇。在此頁面或帳戶設定頁面中使用重新登入選項將會保留您所有的本機草稿和快取。 + 您已重新登入當前帳號並授予 Gab 推送訂閱的權限。 然而,您仍擁有其他帳號未以此種方式遷移。 請切換到該帳號,並且逐一重新登入,以啟用 UnifiedPush 的通知支援。 加載賬戶詳情失敗 %s 已註冊 %s 編輯了他們的嘟文 diff --git a/app/src/main/res/values/donottranslate.xml b/app/src/main/res/values/donottranslate.xml index ef0fab09b4..a4e6b5c514 100644 --- a/app/src/main/res/values/donottranslate.xml +++ b/app/src/main/res/values/donottranslate.xml @@ -1,10 +1,10 @@ - https://tusky.app + https://github.com/johanw666/Gab %1$s %2$s oauth2redirect - com.keylesspalace.tusky.PREFERENCES + com.gabai.gabby.PREFERENCES \@ # @@ -156,12 +156,10 @@ - gab.com - gab.ai - spinster.xyz + - https://www.youtube.com/watch?v=dQw4w9WgXcQ + https://gab.com/ diff --git a/app/src/main/res/values/ic_launcher_background.xml b/app/src/main/res/values/ic_launcher_background.xml new file mode 100644 index 0000000000..2a55860c8b --- /dev/null +++ b/app/src/main/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #3DDC84 + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index e62c6f164a..11bcd5a7df 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -329,9 +329,9 @@ Locked Account About - Tusky %s - Powered by Tusky - Tusky is free and open-source software. + Gab %s + Powered by Gab + Gab is free and open-source software. It is licensed under the GNU General Public License Version 3. You can view the license here: https://www.gnu.org/licenses/gpl-3.0.en.html Project website:\n - https://tusky.app + https://gab.com Bug reports & feature requests:\n - https://github.com/tuskyapp/Tusky/issues + https://github.com/johanw666/Gab/issues - Tusky\'s Profile + Gab\'s Profile Share content of post Share link to post @@ -437,7 +437,7 @@ Expand/Collapse all posts Open post App restart required - You\'ll need to restart Tusky in order to apply these changes + You\'ll need to restart Gab in order to apply these changes Later Restart Your device\'s default emoji set @@ -453,7 +453,7 @@ Boost to original audience Unboost - Tusky contains code and assets from the following open source projects: + Gab contains code and assets from the following open source projects: Licensed under the Apache License (copy below) CC-BY 4.0 CC-BY-SA 4.0 @@ -668,8 +668,8 @@ Saving draft… Re-login all accounts to enable push notification support. - In order to use push notifications via UnifiedPush, Tusky needs permission to subscribe to notifications on your Mastodon server. This requires a re-login to change the OAuth scopes granted to Tusky. Using the re-login option here or in Account Preferences will preserve all of your local drafts and cache. - You have re-logged into your current account to grant push subscription permission to Tusky. However, you still have other accounts that have not been migrated this way. Switch to them and re-login one by one in order to enable UnifiedPush notifications support. + In order to use push notifications via UnifiedPush, Gab needs permission to subscribe to notifications on your Mastodon server. This requires a re-login to change the OAuth scopes granted to Gab. Using the re-login option here or in Account Preferences will preserve all of your local drafts and cache. + You have re-logged into your current account to grant push subscription permission to Gab. However, you still have other accounts that have not been migrated this way. Switch to them and re-login one by one in order to enable UnifiedPush notifications support. %s (🔗 %s) Delete this scheduled post? diff --git a/instance-build.gradle b/instance-build.gradle index ca95d6b1ec..c4b8d95745 100644 --- a/instance-build.gradle +++ b/instance-build.gradle @@ -1,19 +1,19 @@ /** Edit this file to create a Tusky build that is customized for your Fediverse instance. -Note: Publishing a custom build on Google Play may violate the Google Play developer policy (Repetitive Content) +Note: Publishing a custom build on Google Play may violate the Google Play developer policy (Repetetive Content) */ // The app name -ext.APP_NAME = "Tusky" +ext.APP_NAME = "Gab" // The application id. Must be unique, e.g. based on your domain -ext.APP_ID = "com.keylesspalace.tusky" +ext.APP_ID = "com.gabai.gabby" // url of a custom app logo. Recommended size at least 600x600. Keep empty to use the Tusky elephant friend. ext.CUSTOM_LOGO_URL = "" // e.g. mastodon.social. Keep empty to not suggest any instance on the signup screen -ext.CUSTOM_INSTANCE = "" +ext.CUSTOM_INSTANCE = "gab.com" // link to your support account. Will be linked on the about page when not empty. -ext.SUPPORT_ACCOUNT_URL = "https://mastodon.social/@Tusky" \ No newline at end of file +ext.SUPPORT_ACCOUNT_URL = "" \ No newline at end of file