├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── deploy-apk.yml │ └── stale.yml ├── .gitignore ├── .idea ├── .gitignore ├── AndroidProjectSystem.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── kotlinc.xml ├── migrations.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── debug │ └── res │ │ ├── values-af │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ji │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ └── strings.xml │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── muellerma │ │ └── stopwatch │ │ ├── StopwatchApp.kt │ │ ├── StopwatchService.kt │ │ └── StopwatchTile.kt │ └── res │ ├── drawable │ ├── baseline_timer_24.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-af │ └── strings.xml │ ├── values-ar │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ji │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh │ └── strings.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── crowdin.yml ├── fastlane └── metadata │ └── android │ ├── af-ZA │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ar-SA │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ca-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── cs-CZ │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── da-DK │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── de-DE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── el-GR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ └── 7.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ └── 1.png │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fa-IR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fi-FI │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── he-IL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hu-HU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── id-ID │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── it-IT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ja-JP │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ko-KR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nb-NO │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pl-PL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ro-RO │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sr-SP │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sv-SE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── tr-TR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── uk-UA │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── vi-VN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── yi-DE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.github/workflows/deploy-apk.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-af/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ji/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ji/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-nb/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/muellerma/stopwatch/StopwatchApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/java/com/github/muellerma/stopwatch/StopwatchApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/muellerma/stopwatch/StopwatchService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/java/com/github/muellerma/stopwatch/StopwatchService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/muellerma/stopwatch/StopwatchTile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/java/com/github/muellerma/stopwatch/StopwatchTile.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_timer_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/drawable/baseline_timer_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-af/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ji/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ji/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-nb/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/crowdin.yml -------------------------------------------------------------------------------- /fastlane/metadata/android/af-ZA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/af-ZA/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/af-ZA/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/af-ZA/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ar-SA/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/short_description.txt: -------------------------------------------------------------------------------- 1 | ساعة توقف كمربع سريع -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/title.txt: -------------------------------------------------------------------------------- 1 | ساعة توقف -------------------------------------------------------------------------------- /fastlane/metadata/android/ca-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ca-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/ca-ES/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/cs-CZ/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopky jako rychlé dlaždice -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Stopky -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/da-DK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopur som hurtig flise -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/title.txt: -------------------------------------------------------------------------------- 1 | Stopur -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Stoppuhr als Schnellkachel -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Stoppuhr -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/el-GR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/el-GR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Χρονόμετρο -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Initial release -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Update translations 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- 1 | Update translations 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | Prepare for Android 14 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- 1 | Fix issues on Android 14 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- 1 | Fix issues on Android 14 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/7.txt: -------------------------------------------------------------------------------- 1 | Fix tile 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/es-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Cronómetro como azulejo rápido -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Cronómetro -------------------------------------------------------------------------------- /fastlane/metadata/android/fa-IR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/fa-IR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fa-IR/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/fa-IR/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/fi-FI/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- 1 | Sekuntikello niin nopeasti laatta -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Sekuntikello -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | Chronomètre comme tuile rapide -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Chronomètre -------------------------------------------------------------------------------- /fastlane/metadata/android/he-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/he-IL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/he-IL/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/he-IL/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/hu-HU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/id-ID/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/id-ID/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id-ID/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/id-ID/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/it-IT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | Cronometro come piastrella veloce -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Cronometro -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ja-JP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ja-JP/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | ストップウォッチ -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ko-KR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/nb-NO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/short_description.txt: -------------------------------------------------------------------------------- 1 | Stoppeklokke som rask flis -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/title.txt: -------------------------------------------------------------------------------- 1 | Stoppeklokke -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/nl-NL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch als snelle tegel -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/pl-PL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Stoper jako szybki kafelek -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Stoper -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Cronômetro como bloco rápido -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Cronômetro -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/pt-PT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Cronômetro como bloco rápido -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Cronômetro -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ro-RO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/short_description.txt: -------------------------------------------------------------------------------- 1 | Cronometru ca dală rapidă -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/title.txt: -------------------------------------------------------------------------------- 1 | Cronometru -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- 1 | Таймер как быстрая плитка -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Таймер -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-SP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/sr-SP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-SP/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-SP/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/sv-SE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Stoppur som snabb ruta -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Stoppur -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/tr-TR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Hızlı kutucuk olarak kronometre -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Kronometre -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/uk-UA/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/short_description.txt: -------------------------------------------------------------------------------- 1 | Секундомір з швидкою плиткою -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/title.txt: -------------------------------------------------------------------------------- 1 | Секундомір -------------------------------------------------------------------------------- /fastlane/metadata/android/vi-VN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/vi-VN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/vi-VN/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/vi-VN/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/yi-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/yi-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/yi-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/yi-DE/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 作为快速磁贴手表 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 秒表 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | Stopwatch as quick tile -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | Stopwatch -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mueller-ma/Stopwatch/HEAD/settings.gradle --------------------------------------------------------------------------------