mirror of
https://github.com/syncthing/syncthing-android.git
synced 2025-01-07 10:42:07 +00:00
Publish listings on GPlay (#338)
* Update build.gradle * Remove unsupported translations * Update publish-release.sh * Update APK version to 1.0.1.7 * build.gradle: errorOnSizeLimit = false * publish_release.sh: Add gradlew publishListingRelease * Imported string translations * Updated gplay translation: de_DE * Add unsupported translations to .gitignore
This commit is contained in:
parent
5c22110af6
commit
9933294ac5
46 changed files with 82 additions and 137 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -47,3 +47,9 @@ ext/
|
|||
|
||||
# push-to-device after build marker file
|
||||
\#enable_push_to_device
|
||||
|
||||
# Unsupported translations
|
||||
app/src/main/play/el-EL
|
||||
app/src/main/play/en
|
||||
app/src/main/play/nb
|
||||
app/src/main/play/nn
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[![License: MPLv2](https://img.shields.io/badge/License-MPLv2-blue.svg)](https://opensource.org/licenses/MPL-2.0)
|
||||
<a href="https://github.com/Catfriend1/syncthing-android/releases" alt="GitHub release"><img src="https://img.shields.io/github/release/Catfriend1/syncthing-android/all.svg" /></a>
|
||||
<a href="https://f-droid.org/de/packages/com.github.catfriend1.syncthingandroid" alt="F-Droid release"><img src="https://img.shields.io/f-droid/v/com.github.catfriend1.syncthingandroid.svg" /></a>
|
||||
<a href="https://play.google.com/store/apps/details?id=com.github.catfriend1.syncthingandroid" alt="G-Play release"><img src="https://img.shields.io/badge/g--play-1.0.1.5-blue.svg" /></a>
|
||||
<a href="https://play.google.com/store/apps/details?id=com.github.catfriend1.syncthingandroid" alt="G-Play release"><img src="https://img.shields.io/badge/g--play-1.0.1.7-blue.svg" /></a>
|
||||
<a href="https://liberapay.com/~1534877" alt="LiberaPay"><img src="https://img.shields.io/liberapay/patrons/Syncthing-Fork.svg?style=social" /></a>
|
||||
<a href="https://www.somsubhra.com/github-release-stats/?username=Catfriend1&repository=syncthing-android" alt="GitHub Stats"><img src="https://img.shields.io/github/downloads/Catfriend1/syncthing-android/total.svg" /></a>
|
||||
|
||||
|
|
|
@ -37,8 +37,8 @@ android {
|
|||
applicationId "com.github.catfriend1.syncthingandroid"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 26
|
||||
versionCode 1000105
|
||||
versionName "1.0.1.5"
|
||||
versionCode 1000107
|
||||
versionName "1.0.1.7"
|
||||
testApplicationId 'com.github.catfriend1.syncthingandroid.test'
|
||||
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
|
||||
playAccountConfig = playAccountConfigs.defaultAccountConfig
|
||||
|
@ -80,6 +80,7 @@ android {
|
|||
|
||||
play {
|
||||
jsonFile = file(System.getenv("SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE") ?: 'keys.json')
|
||||
errorOnSizeLimit = false
|
||||
uploadImages = false
|
||||
track = 'beta'
|
||||
}
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
This is a fork of the Syncthing-Android wrapper for Syncthing that brings major enhancements like:
|
||||
* Individual sync conditions can be applied per device and per folder
|
||||
* Recent changes UI, click to open files.
|
||||
* "Battery eater" problem is fixed.
|
||||
* Android 8 and 9 support.
|
||||
Dies ist ein Fork des Syncthing-Android Wrappers für Syncthing, der die folgenden, größeren Verbesserungen mitbringt:
|
||||
* Sync-Bedingungen können pro Gerät und pro Ordner individuell angewandt werden.
|
||||
* GUI zeigt letzte Änderungen; Klicke zum Öffnen von Dateien.
|
||||
* Das "Batteriefresser"-Problem wurde gelöst.
|
||||
* Unterstützung für Android 8 und 9
|
||||
|
||||
Syncthing-Fork for Android is a wrapper for Syncthing that provides an Android UI instead of Syncthing's built-in Web UI. Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||
Syncthing-Fork für Android ist ein Wrapper für Syncthing, der eine Android Bedienoberfläche anstelle der Syncthing-eigenen Weboberfläche anbietet. Syncthing ersetzt die proprietären Synchronisierungs- und Cloud-Dienste, mit etwas Offenem, Vertrauenswürdigen und Dezentralem. Deine Daten sind deine Daten und Du allein entscheidest, wo sie gespeichert werden, ob sie mit Dritten geteilt und wie sie über das Netz übertragen werden.
|
||||
|
||||
Goals of the fork:
|
||||
* Develop and try out enhancements together with the community.
|
||||
* Release the wrapper more frequently to identify and fix bugs caused by changes in the syncthing submodule
|
||||
* Make enhancements configurable in the UI, users should be able to turn them on and off
|
||||
Ziele des Forks:
|
||||
* Gemeinsam mit der Community Verbesserungen entwickeln und ausprobieren.
|
||||
* Der Wrapper erscheint häufiger, um Bugs zu erkennen und zu beheben, die aufgrund von Änderung im Syncthing-Modul auftreten.
|
||||
* Verbesserungen in der Benutzeroberfläche einstellbar machen, damit Benutzer in der Lage sind, diese an- und abzuschalten.
|
||||
|
||||
Comparison between upstream and fork at the time of writing this:
|
||||
* Both contain the syncthing binary built from the official source at GitHub:syncthing/syncthing
|
||||
* Syncing functionality and reliability depends on the syncthing binary submodule version.
|
||||
* Fork gets along with upstream and sometimes they pick up my improvements.
|
||||
* Strategy and release frequency is different
|
||||
* Only the wrapper containing the Android UI is addressed by the fork.
|
||||
Upstream und Fork im Vergleich zum Zeitpunkt des Schreibens:
|
||||
* Beide enthalten das Syncthing-Binärmodul, dass aus dem offiziellen Quellcode von GitHub:syncthing/syncthing gebaut wurde
|
||||
* Synchronisations-Funktionalität und -Zuverlässigkeit hängt von der Version des Syncthing-Binärmoduls ab.
|
||||
* Der Fork arrangiert sich mit dem Upstream und manchmal nimmt er unsere Verbesserungen auf.
|
||||
* Strategie und Releasehäufigkeit unterscheidet sich
|
||||
* Der Fork kümmert sich nur um den Wrapper, welcher die Android Bedienoberfläche enthält.
|
||||
|
||||
Website: https://github.com/Catfriend1/syncthing-android
|
||||
Webseite: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Quellcode: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Vorgänge: https://github.com/Catfriend1/syncthing-android/issues
|
||||
|
||||
Translation: https://www.transifex.com/projects/p/syncthing-android-1
|
||||
Übersetzung: https://www.transifex.com/projects/p/syncthing-android-1
|
|
@ -1,27 +0,0 @@
|
|||
This is a fork of the Syncthing-Android wrapper for Syncthing that brings major enhancements like:
|
||||
* Individual sync conditions can be applied per device and per folder
|
||||
* Recent changes UI, click to open files.
|
||||
* "Battery eater" problem is fixed.
|
||||
* Android 8 and 9 support.
|
||||
|
||||
Syncthing-Fork for Android is a wrapper for Syncthing that provides an Android UI instead of Syncthing's built-in Web UI. Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||
|
||||
Goals of the fork:
|
||||
* Develop and try out enhancements together with the community.
|
||||
* Release the wrapper more frequently to identify and fix bugs caused by changes in the syncthing submodule
|
||||
* Make enhancements configurable in the UI, users should be able to turn them on and off
|
||||
|
||||
Comparison between upstream and fork at the time of writing this:
|
||||
* Both contain the syncthing binary built from the official source at GitHub:syncthing/syncthing
|
||||
* Syncing functionality and reliability depends on the syncthing binary submodule version.
|
||||
* Fork gets along with upstream and sometimes they pick up my improvements.
|
||||
* Strategy and release frequency is different
|
||||
* Only the wrapper containing the Android UI is addressed by the fork.
|
||||
|
||||
Website: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Source code: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Issues: https://github.com/Catfriend1/syncthing-android/issues
|
||||
|
||||
Translation: https://www.transifex.com/projects/p/syncthing-android-1
|
|
@ -1 +0,0 @@
|
|||
Wrapper for Syncthing - Open and decentralized file synchronization
|
|
@ -1 +0,0 @@
|
|||
Syncthing-Fork
|
|
@ -1,27 +0,0 @@
|
|||
This is a fork of the Syncthing-Android wrapper for Syncthing that brings major enhancements like:
|
||||
* Individual sync conditions can be applied per device and per folder
|
||||
* Recent changes UI, click to open files.
|
||||
* "Battery eater" problem is fixed.
|
||||
* Android 8 and 9 support.
|
||||
|
||||
Syncthing-Fork for Android is a wrapper for Syncthing that provides an Android UI instead of Syncthing's built-in Web UI. Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||
|
||||
Goals of the fork:
|
||||
* Develop and try out enhancements together with the community.
|
||||
* Release the wrapper more frequently to identify and fix bugs caused by changes in the syncthing submodule
|
||||
* Make enhancements configurable in the UI, users should be able to turn them on and off
|
||||
|
||||
Comparison between upstream and fork at the time of writing this:
|
||||
* Both contain the syncthing binary built from the official source at GitHub:syncthing/syncthing
|
||||
* Syncing functionality and reliability depends on the syncthing binary submodule version.
|
||||
* Fork gets along with upstream and sometimes they pick up my improvements.
|
||||
* Strategy and release frequency is different
|
||||
* Only the wrapper containing the Android UI is addressed by the fork.
|
||||
|
||||
Website: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Source code: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Issues: https://github.com/Catfriend1/syncthing-android/issues
|
||||
|
||||
Translation: https://www.transifex.com/projects/p/syncthing-android-1
|
|
@ -1 +0,0 @@
|
|||
Wrapper for Syncthing - Open and decentralized file synchronization
|
|
@ -1 +0,0 @@
|
|||
Syncthing-Fork
|
|
@ -1,27 +0,0 @@
|
|||
This is a fork of the Syncthing-Android wrapper for Syncthing that brings major enhancements like:
|
||||
* Individual sync conditions can be applied per device and per folder
|
||||
* Recent changes UI, click to open files.
|
||||
* "Battery eater" problem is fixed.
|
||||
* Android 8 and 9 support.
|
||||
|
||||
Syncthing-Fork for Android is a wrapper for Syncthing that provides an Android UI instead of Syncthing's built-in Web UI. Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||
|
||||
Goals of the fork:
|
||||
* Develop and try out enhancements together with the community.
|
||||
* Release the wrapper more frequently to identify and fix bugs caused by changes in the syncthing submodule
|
||||
* Make enhancements configurable in the UI, users should be able to turn them on and off
|
||||
|
||||
Comparison between upstream and fork at the time of writing this:
|
||||
* Both contain the syncthing binary built from the official source at GitHub:syncthing/syncthing
|
||||
* Syncing functionality and reliability depends on the syncthing binary submodule version.
|
||||
* Fork gets along with upstream and sometimes they pick up my improvements.
|
||||
* Strategy and release frequency is different
|
||||
* Only the wrapper containing the Android UI is addressed by the fork.
|
||||
|
||||
Website: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Source code: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Issues: https://github.com/Catfriend1/syncthing-android/issues
|
||||
|
||||
Translation: https://www.transifex.com/projects/p/syncthing-android-1
|
|
@ -1 +0,0 @@
|
|||
Wrapper for Syncthing - Open and decentralized file synchronization
|
|
@ -1 +0,0 @@
|
|||
Syncthing-Fork
|
|
@ -1,27 +0,0 @@
|
|||
This is a fork of the Syncthing-Android wrapper for Syncthing that brings major enhancements like:
|
||||
* Individual sync conditions can be applied per device and per folder
|
||||
* Recent changes UI, click to open files.
|
||||
* "Battery eater" problem is fixed.
|
||||
* Android 8 and 9 support.
|
||||
|
||||
Syncthing-Fork for Android is a wrapper for Syncthing that provides an Android UI instead of Syncthing's built-in Web UI. Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||
|
||||
Goals of the fork:
|
||||
* Develop and try out enhancements together with the community.
|
||||
* Release the wrapper more frequently to identify and fix bugs caused by changes in the syncthing submodule
|
||||
* Make enhancements configurable in the UI, users should be able to turn them on and off
|
||||
|
||||
Comparison between upstream and fork at the time of writing this:
|
||||
* Both contain the syncthing binary built from the official source at GitHub:syncthing/syncthing
|
||||
* Syncing functionality and reliability depends on the syncthing binary submodule version.
|
||||
* Fork gets along with upstream and sometimes they pick up my improvements.
|
||||
* Strategy and release frequency is different
|
||||
* Only the wrapper containing the Android UI is addressed by the fork.
|
||||
|
||||
Website: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Source code: https://github.com/Catfriend1/syncthing-android
|
||||
|
||||
Issues: https://github.com/Catfriend1/syncthing-android/issues
|
||||
|
||||
Translation: https://www.transifex.com/projects/p/syncthing-android-1
|
|
@ -1 +0,0 @@
|
|||
Wrapper for Syncthing - Open and decentralized file synchronization
|
|
@ -1 +0,0 @@
|
|||
Syncthing-Fork
|
|
@ -208,7 +208,9 @@
|
|||
|
||||
<string name="category_run_conditions">Условия на работа</string>
|
||||
<string name="category_behaviour">Поведение</string>
|
||||
|
||||
<string name="category_syncthing_options">Настройки на Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Експериментални</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -314,7 +314,9 @@
|
|||
|
||||
<string name="category_run_conditions">Condicions d\'execució</string>
|
||||
<string name="category_behaviour">Comportament</string>
|
||||
|
||||
<string name="category_syncthing_options">Opcions del Syncthing</string>
|
||||
|
||||
<string name="category_backup">Importa i Exporta</string>
|
||||
<string name="category_experimental">Experimental</string>
|
||||
|
||||
|
|
|
@ -220,7 +220,9 @@
|
|||
|
||||
<string name="category_run_conditions">Podmínky spuštění</string>
|
||||
<string name="category_behaviour">Chování</string>
|
||||
|
||||
<string name="category_syncthing_options">Nastavení Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Experimentální</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -216,7 +216,9 @@
|
|||
|
||||
<string name="category_run_conditions">Kør betingelser</string>
|
||||
<string name="category_behaviour">Adfærd</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing Muligheder</string>
|
||||
|
||||
<string name="category_experimental">Eksperimentalt</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -216,7 +216,9 @@
|
|||
|
||||
<string name="category_run_conditions">Συνθήκες εκτέλεσης</string>
|
||||
<string name="category_behaviour">Συμπεριφορά</string>
|
||||
|
||||
<string name="category_syncthing_options">Επιλογές Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Πειραματικά</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -197,6 +197,7 @@
|
|||
<string name="settings_title">Configuración</string>
|
||||
|
||||
<string name="category_syncthing_options">Opciones de Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Experimental</string>
|
||||
|
||||
<string name="sync_only_wifi_ssids_wifi_turn_on_wifi">Por favor encienda el WiFi para seleccionar redes.</string>
|
||||
|
|
|
@ -207,7 +207,9 @@
|
|||
|
||||
<string name="category_run_conditions">Condiciones de ejecución</string>
|
||||
<string name="category_behaviour">Comportamiento</string>
|
||||
|
||||
<string name="category_syncthing_options">Opciones de Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Experimental</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -220,7 +220,9 @@
|
|||
|
||||
<string name="category_run_conditions">Käyntiehdot</string>
|
||||
<string name="category_behaviour">Käyttäytyminen</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing asetukset</string>
|
||||
|
||||
<string name="category_experimental">Kokeellinen</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -236,7 +236,9 @@
|
|||
|
||||
<string name="category_run_conditions">Conditions d\'exécution</string>
|
||||
<string name="category_behaviour">Comportement</string>
|
||||
|
||||
<string name="category_syncthing_options">Options Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Expérimental</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -233,7 +233,9 @@ Az összesített statisztika nyilvánosan elérhető a https://data.syncthing.ne
|
|||
|
||||
<string name="category_run_conditions">Futás feltételei</string>
|
||||
<string name="category_behaviour">Viselkedés</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing opciók</string>
|
||||
|
||||
<string name="category_experimental">Kísérleti</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -210,7 +210,9 @@
|
|||
|
||||
<string name="category_run_conditions">Syarat Operasi</string>
|
||||
<string name="category_behaviour">Perilaku</string>
|
||||
|
||||
<string name="category_syncthing_options">Opsi Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Ujicoba</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -233,7 +233,9 @@
|
|||
|
||||
<string name="category_run_conditions">Condizioni di funzionamento</string>
|
||||
<string name="category_behaviour">Comportamento</string>
|
||||
|
||||
<string name="category_syncthing_options">Opzioni di Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Sperimentale</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -217,7 +217,9 @@
|
|||
|
||||
<string name="category_run_conditions">実行条件</string>
|
||||
<string name="category_behaviour">動作</string>
|
||||
|
||||
<string name="category_syncthing_options">同期オプション</string>
|
||||
|
||||
<string name="category_experimental">実験的</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -215,7 +215,9 @@
|
|||
|
||||
<string name="category_run_conditions">작동 상태</string>
|
||||
<string name="category_behaviour">동작</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing 옵션 </string>
|
||||
|
||||
<string name="category_experimental">실험적인 기능</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -200,6 +200,7 @@
|
|||
<string name="settings_title">Innstillinger</string>
|
||||
|
||||
<string name="category_syncthing_options">Valg for Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Eksperimentelt</string>
|
||||
|
||||
<string name="sync_only_wifi_ssids_wifi_turn_on_wifi">Vennligst skru på WiFi for å velge nettverk.</string>
|
||||
|
|
|
@ -258,7 +258,9 @@ Als je problemen tegenkomt, meld ze dan via GitHub.</string>
|
|||
|
||||
<string name="category_run_conditions">Uitvoervoorwaarden</string>
|
||||
<string name="category_behaviour">Gedrag</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing-opties</string>
|
||||
|
||||
<string name="category_experimental">Experimenteel</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -200,6 +200,7 @@
|
|||
<string name="settings_title">Innstillingar</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing-innstillingar</string>
|
||||
|
||||
<string name="category_experimental">Eksperiment</string>
|
||||
|
||||
<string name="sync_only_wifi_ssids_wifi_turn_on_wifi">Skru på WiFi for å velje nettverk.</string>
|
||||
|
|
|
@ -220,7 +220,9 @@
|
|||
|
||||
<string name="category_run_conditions">Warunki działania</string>
|
||||
<string name="category_behaviour">Zachowanie</string>
|
||||
|
||||
<string name="category_syncthing_options">Ustawienia Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Eksperymentalne</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -233,7 +233,9 @@
|
|||
|
||||
<string name="category_run_conditions">Condições de execução</string>
|
||||
<string name="category_behaviour">Comportamento</string>
|
||||
|
||||
<string name="category_syncthing_options">Opções do Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Configurações experimentais</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -210,7 +210,9 @@
|
|||
|
||||
<string name="category_run_conditions">Condições de execução</string>
|
||||
<string name="category_behaviour">Comportamento</string>
|
||||
|
||||
<string name="category_syncthing_options">Opções do Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Experimental</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -251,7 +251,9 @@
|
|||
|
||||
<string name="category_run_conditions">Condiții de rulare</string>
|
||||
<string name="category_behaviour">Comportament</string>
|
||||
|
||||
<string name="category_syncthing_options">Opțiuni Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Experimental</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -316,7 +316,9 @@
|
|||
|
||||
<string name="category_run_conditions">Условия выполнения</string>
|
||||
<string name="category_behaviour">Поведение</string>
|
||||
|
||||
<string name="category_syncthing_options">Настройки устройства</string>
|
||||
|
||||
<string name="category_backup">Импорт и экспорт</string>
|
||||
<string name="category_debug">Отладка</string>
|
||||
<string name="category_experimental">Экспериментальное</string>
|
||||
|
|
|
@ -184,6 +184,7 @@
|
|||
<string name="settings_title">Nastavenia</string>
|
||||
|
||||
<string name="category_syncthing_options">Nastavenia Syncthing</string>
|
||||
|
||||
<string name="use_root_title">Spúšťať Syncthing s root oprávneniami</string>
|
||||
|
||||
<string name="device_name">Názov Zariadenia</string>
|
||||
|
|
|
@ -305,7 +305,9 @@
|
|||
|
||||
<string name="category_run_conditions">Körvillkor</string>
|
||||
<string name="category_behaviour">Beteende</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing alternativ</string>
|
||||
|
||||
<string name="category_backup">Import och export</string>
|
||||
<string name="category_debug">Felsök</string>
|
||||
<string name="category_experimental">Experimentell</string>
|
||||
|
|
|
@ -206,7 +206,9 @@
|
|||
|
||||
<string name="category_run_conditions">Çalışma Koşulları</string>
|
||||
<string name="category_behaviour">Davranış</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing Seçenekleri</string>
|
||||
|
||||
<string name="category_experimental">Deneysel</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -172,6 +172,7 @@
|
|||
|
||||
<string name="category_run_conditions">Умови запуску</string>
|
||||
<string name="category_syncthing_options">Опції Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Експериментальне</string>
|
||||
|
||||
<!-- Preference screen - Run conditions -->
|
||||
|
|
|
@ -197,6 +197,7 @@
|
|||
<string name="settings_title">Cài đặt</string>
|
||||
|
||||
<string name="category_syncthing_options">Tuỳ chọn Syncthing</string>
|
||||
|
||||
<string name="category_experimental">Thực nghiệm</string>
|
||||
|
||||
<string name="sync_only_wifi_ssids_wifi_turn_on_wifi">Hãy bật WiFi để lựa chọn mạng.</string>
|
||||
|
|
|
@ -293,7 +293,9 @@
|
|||
|
||||
<string name="category_run_conditions">运行条件</string>
|
||||
<string name="category_behaviour">行为</string>
|
||||
|
||||
<string name="category_syncthing_options">同步设置</string>
|
||||
|
||||
<string name="category_backup">导入与导出</string>
|
||||
<string name="category_debug">调试</string>
|
||||
<string name="category_experimental">实验性</string>
|
||||
|
|
|
@ -215,7 +215,9 @@
|
|||
|
||||
<string name="category_run_conditions">執行條件</string>
|
||||
<string name="category_behaviour">行為</string>
|
||||
|
||||
<string name="category_syncthing_options">Syncthing 選項</string>
|
||||
|
||||
<string name="category_debug">除錯</string>
|
||||
<string name="category_experimental">實驗性</string>
|
||||
|
||||
|
|
|
@ -29,7 +29,9 @@ read -s -p "Enter signing password: " password
|
|||
SIGNING_PASSWORD=${password} ./gradlew assembleRelease
|
||||
|
||||
# Upload apk and listing to Google Play
|
||||
./gradlew deleteUnsupportedPlayTranslations
|
||||
SIGNING_PASSWORD=${password} ./gradlew publishRelease
|
||||
./gradlew publishListingRelease
|
||||
|
||||
echo "
|
||||
|
||||
|
|
Loading…
Reference in a new issue