Fixing warnings

pull/699/head
Alex Baker 6 years ago
parent d30a948ac5
commit f601e42f4c

@ -4,11 +4,15 @@
<inspection_tool class="ControlFlowStatementWithoutBraces" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="Convert2streamapi" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
<inspection_tool class="DoubleBraceInitialization" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="Finalize" enabled="true" level="WARNING" enabled_by_default="true">
<option name="ignoreTrivialFinalizers" value="true" />
</inspection_tool>
<inspection_tool class="Guava" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="LoggerInitializedWithForeignClass" enabled="false" level="WARNING" enabled_by_default="false">
<option name="loggerClassName" value="org.apache.log4j.Logger,org.slf4j.LoggerFactory,org.apache.commons.logging.LogFactory,java.util.logging.Logger" />
<option name="loggerFactoryMethodName" value="getLogger,getLogger,getLog,getLogger" />
<inspection_tool class="MissingOverrideAnnotation" enabled="true" level="WARNING" enabled_by_default="true">
<option name="ignoreObjectMethods" value="true" />
<option name="ignoreAnonymousClassMethods" value="false" />
</inspection_tool>
<inspection_tool class="OverridableMethodCallDuringObjectConstruction" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
<option name="processCode" value="true" />
<option name="processLiterals" value="true" />
@ -18,5 +22,6 @@
<inspection_tool class="SuspiciousIndentAfterControlStatement" enabled="true" level="WARNING" enabled_by_default="true" />
<inspection_tool class="TryFinallyCanBeTryWithResources" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="TryWithIdenticalCatches" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="UnnecessarySuperQualifier" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>

@ -80,7 +80,7 @@ android {
}
task checkstyle(type: Checkstyle) {
source fileTree('src/main/java')
source fileTree('src')
include '**/*.java'
exclude '**/gen/**'
@ -113,69 +113,69 @@ final ROOM_VERSION = '1.0.0'
final TESTING_SUPPORT_VERSION = '1.0.0'
dependencies {
compile project(':ical4android')
compile project(':dav4android')
implementation project(':ical4android')
implementation project(':dav4android')
annotationProcessor "com.google.dagger:dagger-compiler:${DAGGER_VERSION}"
compile "com.google.dagger:dagger:${DAGGER_VERSION}"
implementation "com.google.dagger:dagger:${DAGGER_VERSION}"
compile "android.arch.persistence.room:rxjava2:${ROOM_VERSION}"
implementation "android.arch.persistence.room:rxjava2:${ROOM_VERSION}"
annotationProcessor "android.arch.persistence.room:compiler:${ROOM_VERSION}"
compile "io.reactivex.rxjava2:rxandroid:2.0.1"
compile "android.arch.paging:runtime:1.0.0-alpha5"
implementation "io.reactivex.rxjava2:rxandroid:2.0.1"
implementation "android.arch.paging:runtime:1.0.0-alpha5"
annotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}"
compile "com.jakewharton:butterknife:${BUTTERKNIFE_VERSION}"
implementation "com.jakewharton:butterknife:${BUTTERKNIFE_VERSION}"
debugCompile ("com.facebook.stetho:stetho:${STETHO_VERSION}") {
debugImplementation ("com.facebook.stetho:stetho:${STETHO_VERSION}") {
exclude group: 'com.google.code.findbugs', module: 'jsr305'
}
debugCompile "com.facebook.stetho:stetho-timber:${STETHO_VERSION}@aar"
debugImplementation "com.facebook.stetho:stetho-timber:${STETHO_VERSION}@aar"
//noinspection GradleDependency
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4'
debugCompile 'com.android.support:multidex:1.0.2'
compile 'com.squareup.okhttp3:okhttp:3.9.1'
compile 'com.google.code.gson:gson:2.8.2'
compile 'com.github.rey5137:material:1.2.4'
compile 'com.nononsenseapps:filepicker:4.1.0'
compile "com.android.support:design:${SUPPORT_VERSION}"
compile "com.android.support:support-annotations:${SUPPORT_VERSION}"
compile "com.android.support:support-v13:${SUPPORT_VERSION}"
compile "com.android.support:cardview-v7:${SUPPORT_VERSION}"
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.jakewharton.timber:timber:4.5.1'
compile 'com.jakewharton.threetenabp:threetenabp:1.0.5'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'
debugImplementation 'com.android.support:multidex:1.0.2'
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.github.rey5137:material:1.2.4'
implementation 'com.nononsenseapps:filepicker:4.1.0'
implementation "com.android.support:design:${SUPPORT_VERSION}"
implementation "com.android.support:support-annotations:${SUPPORT_VERSION}"
implementation "com.android.support:support-v13:${SUPPORT_VERSION}"
implementation "com.android.support:cardview-v7:${SUPPORT_VERSION}"
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.jakewharton.timber:timber:4.5.1'
implementation 'com.jakewharton.threetenabp:threetenabp:1.0.5'
//noinspection GradleDependency
compile 'com.google.guava:guava:20.0'
compile 'com.jakewharton:process-phoenix:2.0.0'
compile 'com.google.android.apps.dashclock:dashclock-api:2.0.0'
compile 'com.twofortyfouram:android-plugin-api-for-locale:1.0.2'
compile ('com.rubiconproject.oss:jchronic:0.2.6') {
implementation 'com.google.guava:guava:20.0'
implementation 'com.jakewharton:process-phoenix:2.0.0'
implementation 'com.google.android.apps.dashclock:dashclock-api:2.0.0'
implementation 'com.twofortyfouram:android-plugin-api-for-locale:1.0.2'
implementation ('com.rubiconproject.oss:jchronic:0.2.6') {
transitive = false
}
compile ('org.scala-saddle:google-rfc-2445:20110304') {
implementation ('org.scala-saddle:google-rfc-2445:20110304') {
transitive = false
}
compile ('com.wdullaer:materialdatetimepicker:3.2.3') {
implementation ('com.wdullaer:materialdatetimepicker:3.2.3') {
exclude group: 'com.android.support', module: 'support-v4'
}
compile "me.leolin:ShortcutBadger:1.1.18@aar"
compile 'com.google.apis:google-api-services-tasks:v1-rev47-1.22.0'
compile 'com.google.api-client:google-api-client-android:1.22.0'
implementation "me.leolin:ShortcutBadger:1.1.18@aar"
implementation 'com.google.apis:google-api-services-tasks:v1-rev47-1.22.0'
implementation 'com.google.api-client:google-api-client-android:1.22.0'
googleplayCompile "com.google.android.gms:play-services-location:${GPS_VERSION}"
googleplayCompile "com.google.android.gms:play-services-analytics:${GPS_VERSION}"
googleplayCompile "com.google.android.gms:play-services-auth:${GPS_VERSION}"
googleplayCompile "com.google.android.gms:play-services-places:${GPS_VERSION}"
googleplayImplementation "com.google.android.gms:play-services-location:${GPS_VERSION}"
googleplayImplementation "com.google.android.gms:play-services-analytics:${GPS_VERSION}"
googleplayImplementation "com.google.android.gms:play-services-auth:${GPS_VERSION}"
googleplayImplementation "com.google.android.gms:play-services-places:${GPS_VERSION}"
amazonCompile "com.google.android.gms:play-services-analytics:${GPS_VERSION}"
amazonImplementation "com.google.android.gms:play-services-analytics:${GPS_VERSION}"
androidTestAnnotationProcessor "com.google.dagger:dagger-compiler:${DAGGER_VERSION}"
androidTestAnnotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}"
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
androidTestCompile 'com.natpryce:make-it-easy:4.0.1'
androidTestCompile "com.android.support.test:runner:${TESTING_SUPPORT_VERSION}"
androidTestCompile "com.android.support.test:rules:${TESTING_SUPPORT_VERSION}"
androidTestCompile "com.android.support:support-annotations:${SUPPORT_VERSION}"
androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2'
androidTestImplementation 'com.natpryce:make-it-easy:4.0.1'
androidTestImplementation "com.android.support.test:runner:${TESTING_SUPPORT_VERSION}"
androidTestImplementation "com.android.support.test:rules:${TESTING_SUPPORT_VERSION}"
androidTestImplementation "com.android.support:support-annotations:${SUPPORT_VERSION}"
}

@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<lint>
<issue id="InconsistentArrays" severity="error"/>
<issue id="MissingTranslation" severity="ignore"/>
<issue id="VectorRaster" severity="ignore" />
<issue id="MissingQuantity" severity="ignore"/>
<issue id="ImpliedQuantity" severity="ignore"/>

@ -79,7 +79,7 @@ def clean(path)
f.puts "<!-- ******** http://www.getlocalization.com/tasks_android ******** -->"
f.puts "<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->"
f.puts "<!-- ************************************************************** -->"
f.puts "<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->"
f.puts "<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->"
f.print tail.join("\n")
end
end

@ -156,7 +156,7 @@
<!-- Activity for selecting Android shortcut -->
<activity
android:name=".widget.ShortcutConfigActivity"
android:theme="@style/TranslucentDialog">
android:theme="@style/TranslucentDialog"
android:label="@string/FSA_label">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
@ -193,14 +193,13 @@
android:label="@string/miscellaneous"
android:theme="@style/Tasks" />
<!-- Activity that configures widget -->
<!--suppress AndroidLintExportedPreferenceActivity -->
<activity
android:name=".widget.WidgetConfigActivity"
android:taskAffinity=""
android:label="@string/widget_settings"
android:excludeFromRecents="true"
android:theme="@style/Tasks" >
android:theme="@style/Tasks"
android:exported="false" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
@ -353,7 +352,8 @@
<activity
android:name="com.todoroo.astrid.reminders.ReminderPreferences"
android:label="@string/notifications"
android:theme="@style/Tasks">
android:theme="@style/Tasks"
android:exported="false" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -470,10 +470,10 @@
android:value=".dashclock.DashClockSettings" />
</service>
<!--suppress AndroidLintExportedPreferenceActivity -->
<activity android:name=".dashclock.DashClockSettings"
android:label="@string/app_name"
android:exported="true" />
<activity
android:exported="true"
android:label="@string/app_name"
android:name=".dashclock.DashClockSettings"/>
<!-- Tasker/Locale -->

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M7.5,18C4.46,18 2,15.54 2,12.5S4.46,7 7.5,7H18c2.21,0 4,1.79 4,4s-1.79,4 -4,4H9.5C8.12,15 7,13.88 7,12.5S8.12,10 9.5,10H17v1.5H9.5c-0.55,0 -1,0.45 -1,1s0.45,1 1,1H18c1.38,0 2.5,-1.12 2.5,-2.5S19.38,8.5 18,8.5H7.5c-2.21,0 -4,1.79 -4,4s1.79,4 4,4H17V18H7.5z"/>
</vector>

@ -2,7 +2,7 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
<path android:fillColor="#FF000000" android:pathData="M9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zm5,13.59L15.59,17 12,13.41 8.41,17 7,15.59 10.59,12 7,8.41 8.41,7 12,10.59 15.59,7 17,8.41 13.41,12 17,15.59z"/>
</vector>

@ -1,5 +1,7 @@
<vector android:autoMirrored="true" android:height="24dp"
<vector xmlns:tools="http://schemas.android.com/tools"
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
</vector>

@ -1,5 +1,7 @@
<vector android:autoMirrored="true" android:height="24dp"
<vector xmlns:tools="http://schemas.android.com/tools"
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M19.35,10.04C18.67,6.59 15.64,4 12,4c-1.48,0 -2.85,0.43 -4.01,1.17l1.46,1.46C10.21,6.23 11.08,6 12,6c3.04,0 5.5,2.46 5.5,5.5v0.5H19c1.66,0 3,1.34 3,3 0,1.13 -0.64,2.11 -1.56,2.62l1.45,1.45C23.16,18.16 24,16.68 24,15c0,-2.64 -2.05,-4.78 -4.65,-4.96zM3,5.27l2.75,2.74C2.56,8.15 0,10.77 0,14c0,3.31 2.69,6 6,6h11.73l2,2L21,20.73 4.27,4 3,5.27zM7.73,10l8,8H6c-2.21,0 -4,-1.79 -4,-4s1.79,-4 4,-4h1.73z"/>
</vector>

@ -1,5 +1,7 @@
<vector android:autoMirrored="true" android:height="24dp"
<vector xmlns:tools="http://schemas.android.com/tools"
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V7H6v12zM19,4h-3.5l-1,-1h-5l-1,1H5v2h14V4z"/>
</vector>

@ -1,5 +1,7 @@
<vector android:autoMirrored="true" android:height="24dp"
<vector xmlns:tools="http://schemas.android.com/tools"
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4v2z"/>
</vector>

@ -1,5 +1,7 @@
<vector android:autoMirrored="true" android:height="24dp"
<vector xmlns:tools="http://schemas.android.com/tools"
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M20,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM20,8l-8,5 -8,-5L4,6l8,5 8,-5v2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M17,12h-5v5h5v-5zM16,1v2H8V1H6v2H5c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2h-1V1h-2zm3,18H5V8h14v11z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M17,10H7v2h10v-2zm2,-7h-1V1h-2v2H8V1H6v2H5c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2zm0,16H5V8h14v11zm-5,-5H7v2h7v-2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M10,18h4v-2h-4v2zM3,6v2h18V6H3zm3,7h12v-2H6v2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M14.4,6L14,4H5v17h2v-7h5.6l0.4,2h7V6z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zm1,17h-2v-2h2v2zm2.07,-7.75l-0.9,0.92C13.45,12.9 13,13.5 13,15h-2v-0.5c0,-1.1 0.45,-2.1 1.17,-2.83l1.24,-1.26c0.37,-0.36 0.59,-0.86 0.59,-1.41 0,-1.1 -0.9,-2 -2,-2s-2,0.9 -2,2H8c0,-2.21 1.79,-4 4,-4s4,1.79 4,4c0,0.88 -0.36,1.68 -0.93,2.25z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillAlpha=".9" android:fillColor="#FF000000" android:pathData="M13,3c-4.97,0 -9,4.03 -9,9H1l3.89,3.89 0.07,0.14L9,12H6c0,-3.87 3.13,-7 7,-7s7,3.13 7,7 -3.13,7 -7,7c-1.93,0 -3.68,-0.79 -4.94,-2.06l-1.42,1.42C8.27,19.99 10.51,21 13,21c4.97,0 9,-4.03 9,-9s-4.03,-9 -9,-9zm-1,5v5l4.28,2.54 0.72,-1.21 -3.5,-2.08V8H12z"/>
</vector>

@ -2,6 +2,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M19,3L4.99,3c-1.11,0 -1.98,0.89 -1.98,2L3,19c0,1.1 0.88,2 1.99,2L19,21c1.1,0 2,-0.9 2,-2L21,5c0,-1.11 -0.9,-2 -2,-2zM19,15h-4c0,1.66 -1.35,3 -3,3s-3,-1.34 -3,-3L4.99,15L4.99,5L19,5v10z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M17.63,5.84C17.27,5.33 16.67,5 16,5L5,5.01C3.9,5.01 3,5.9 3,7v10c0,1.1 0.9,1.99 2,1.99L16,19c0.67,0 1.27,-0.33 1.63,-0.84L22,12l-4.37,-6.16z"/>
</vector>

@ -2,6 +2,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M3,18h18v-2H3v2zm0,-5h18v-2H3v2zm0,-7v2h18V6H3z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,14c1.66,0 2.99,-1.34 2.99,-3L15,5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6c0,1.66 1.34,3 3,3zm5.3,-3c0,3 -2.54,5.1 -5.3,5.1S6.7,14 6.7,11H5c0,3.41 2.72,6.23 6,6.72V21h2v-3.28c3.28,-0.48 6,-3.3 6,-6.72h-1.7z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M11.5,22c1.1,0 2,-0.9 2,-2h-4c0,1.1 0.9,2 2,2zm6.5,-6v-5.5c0,-3.07 -2.13,-5.64 -5,-6.32V3.5c0,-0.83 -0.67,-1.5 -1.5,-1.5S10,2.67 10,3.5v0.68c-2.87,0.68 -5,3.25 -5,6.32V16l-2,2v1h17v-1l-2,-2z"/>
</vector>

@ -2,6 +2,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M6,19h4V5H6v14zm8,-14v14h4V5h-4z"/>
</vector>

@ -2,6 +2,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M8,5v14l11,-7z"/>
</vector>

@ -1,5 +1,7 @@
<vector android:autoMirrored="true" android:height="24dp"
<vector xmlns:tools="http://schemas.android.com/tools"
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM11,19.93c-3.95,-0.49 -7,-3.85 -7,-7.93 0,-0.62 0.08,-1.21 0.21,-1.79L9,15v1c0,1.1 0.9,2 2,2v1.93zM17.9,17.39c-0.26,-0.81 -1,-1.39 -1.9,-1.39h-1v-3c0,-0.55 -0.45,-1 -1,-1L8,12v-2h2c0.55,0 1,-0.45 1,-1L11,7h2c1.1,0 2,-0.9 2,-2v-0.41c2.93,1.19 5,4.06 5,7.41 0,2.08 -0.8,3.97 -2.1,5.39z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M7,7h10v3l4,-4 -4,-4v3H5v6h2V7zm10,10H7v-3l-4,4 4,4v-3h12v-6h-2v4z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M17,3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V7l-4,-4zm-5,16c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zm3,-10H5V5h10v4z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillAlpha=".9" android:fillColor="#FF000000" android:pathData="M11.99,2C6.47,2 2,6.48 2,12s4.47,10 9.99,10C17.52,22 22,17.52 22,12S17.52,2 11.99,2zM12,20c-4.42,0 -8,-3.58 -8,-8s3.58,-8 8,-8 8,3.58 8,8 -3.58,8 -8,8zM12.5,7H11v6l5.25,3.15 0.75,-1.23 -4.5,-2.67z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M15.5,14h-0.79l-0.28,-0.27C15.41,12.59 16,11.11 16,9.5 16,5.91 13.09,3 9.5,3S3,5.91 3,9.5 5.91,16 9.5,16c1.61,0 3.09,-0.59 4.23,-1.57l0.27,0.28v0.79l5,4.99L20.49,19l-4.99,-5zm-6,0C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5 14,7.01 14,9.5 11.99,14 9.5,14z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98s-0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.12,-0.22 -0.39,-0.3 -0.61,-0.22l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4c-0.25,0 -0.46,0.18 -0.49,0.42l-0.38,2.65c-0.61,0.25 -1.17,0.59 -1.69,0.98l-2.49,-1c-0.23,-0.09 -0.49,0 -0.61,0.22l-2,3.46c-0.13,0.22 -0.07,0.49 0.12,0.64l2.11,1.65c-0.04,0.32 -0.07,0.65 -0.07,0.98s0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.12,0.22 0.39,0.3 0.61,0.22l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65c0.03,0.24 0.24,0.42 0.49,0.42h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.23,0.09 0.49,0 0.61,-0.22l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64l-2.11,-1.65zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5 3.5,1.57 3.5,3.5 -1.57,3.5 -3.5,3.5z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M3,18h6v-2H3v2zM3,6v2h18V6H3zm0,7h12v-2H3v2z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M15,1H9v2h6V1zm-4,13h2V8h-2v6zm8.03,-6.61l1.42,-1.42c-0.43,-0.51 -0.9,-0.99 -1.41,-1.41l-1.42,1.42C16.07,4.74 14.12,4 12,4c-4.97,0 -9,4.03 -9,9s4.02,9 9,9 9,-4.03 9,-9c0,-2.12 -0.74,-4.07 -1.97,-5.61zM12,20c-3.87,0 -7,-3.13 -7,-7s3.13,-7 7,-7 7,3.13 7,7 -3.13,7 -7,7z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M19,3h-1V1h-2v2H8V1H6v2H5c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2V5c0,-1.1 -0.9,-2 -2,-2zm0,16H5V8h14v11zM7,10h5v5H7z"/>
</vector>

@ -3,6 +3,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zm4.31,-0.78l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"/>
</vector>

@ -2,6 +2,6 @@
android:autoMirrored="true" android:height="24dp"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android"
tools:ignore="UnusedAttribute">
tools:ignore="UnusedAttribute,VectorRaster">
<path android:fillColor="#FF000000" android:pathData="M12.65,10C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H17v4h4v-4h2v-4H12.65zM7,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
</vector>

@ -12,7 +12,8 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<LinearLayout
android:id="@+id/weekGroup"
@ -40,6 +41,7 @@
<LinearLayout
android:id="@+id/weekGroup2"
tools:ignore="InconsistentLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="SSD_sort_drag">Manuele rangskiking met subtake</string>
<string name="SSD_sort_auto">Slim sorteer</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">مسح الصورة</string>
<string name="TVA_add_comment">إضافة تعليق ...</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Изчисти Картинка</string>
<string name="TVA_add_comment">Добави коментар...</string>
@ -419,7 +419,6 @@
<string name="theme_dark">Тъмна</string>
<string name="theme_wallpaper">Тапет</string>
<string name="theme_day_night">Ден/Нощ</string>
<string name="default_value">По подразбиране</string>
<string name="master_sync_warning">Автоматичната синхронизация в момента е деактивирана от Android</string>
<string name="settings_general">Общи</string>
<string name="language">Език</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Neteja la selecció d\'imatge</string>
<string name="TVA_add_comment">Afegiu un comentari...</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Odebrat obrázek</string>
<string name="TVA_add_comment">Přidej comment...</string>
@ -293,7 +293,6 @@
<string name="theme_dark">Tmavý</string>
<string name="theme_wallpaper">Tapeta</string>
<string name="theme_day_night">Den/Noc</string>
<string name="default_value">Výchozí</string>
<string name="master_sync_warning">Automatická synchronizace je právě zakázána Androidem</string>
<string name="settings_general">Všeobecný</string>
<string name="language">Jazyk</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Ryd markering</string>
<string name="TVA_add_comment">Tilføj en kommentar</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Bild entfernen</string>
<string name="TVA_add_comment">Kommentar hinzufügen …</string>
@ -407,7 +407,6 @@
<string name="theme_dark">Dunkel</string>
<string name="theme_wallpaper">Hintergrundbild</string>
<string name="theme_day_night">Tag/Nacht</string>
<string name="default_value">Standard</string>
<string name="master_sync_warning">Automatische Syncronisation ist aktuell im System deaktiviert</string>
<string name="settings_general">Allgemein</string>
<string name="language">Sprache</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Καθαρή εικόνα</string>
<string name="TVA_add_comment">Προσθήκη σχόλιου...</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Borrar imagen</string>
<string name="TVA_add_comment">Añadir un comentario...</string>
@ -414,7 +414,6 @@
<string name="theme_dark">Oscuro</string>
<string name="theme_wallpaper">Fondo de pantalla</string>
<string name="theme_day_night">Día/Noche</string>
<string name="default_value">Predeterminado</string>
<string name="master_sync_warning">La sincronización automática está actualmente deshabilitada por Android</string>
<string name="language">Idioma</string>
<string name="restart_required">Debe reiniciar Tasks para que los cambios tengan efecto</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">پاک کردن عکس</string>
<string name="TVA_add_comment">اضافه کردن نظر</string>
@ -271,7 +271,6 @@
<string name="theme_grey">خاکستری</string>
<string name="theme_light">روشن</string>
<string name="theme_dark">تیره</string>
<string name="default_value">پیش فرض</string>
<string name="master_sync_warning">درحال‌حاضر هماهنگ‌سازی خودکار توسط اندروید غیرفعال است</string>
<string name="settings_general">عمومی</string>
<string name="language">زبان</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Tyhjennä kuva</string>
<string name="TVA_add_comment">Lisää kommentti...</string>
@ -420,7 +420,6 @@
<string name="theme_dark">Tumma</string>
<string name="theme_wallpaper">Taustakuva</string>
<string name="theme_day_night">Päivä/Yö</string>
<string name="default_value">Oletus</string>
<string name="master_sync_warning">Android on estänyt automaattisen synkronoinnin</string>
<string name="settings_general">Yleinen</string>
<string name="language">Kieli</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Supprimer l\'image</string>
<string name="TVA_add_comment">Ajouter un commentaire</string>
@ -398,7 +398,6 @@
<string name="theme_dark">Noir</string>
<string name="theme_wallpaper">Fond d\'écran</string>
<string name="theme_day_night">Jour/Nuit</string>
<string name="default_value">Par défaut</string>
<string name="master_sync_warning">La synchronisation automatique est actuellement déactivé par Android</string>
<string name="settings_general">Général</string>
<string name="language">Langage</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Borrar imagen</string>
<string name="TVA_add_comment">Añadir un comentario...</string>
@ -342,7 +342,6 @@
<string name="theme_dark">Oscuro</string>
<string name="theme_wallpaper">Fondo de pantalla</string>
<string name="theme_day_night">Día/Noche</string>
<string name="default_value">Predeterminado</string>
<string name="master_sync_warning">La sincronización automática está actualmente deshabilitada por Android</string>
<string name="settings_general">Xeneral</string>
<string name="language">Idioma</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Kép törlése</string>
<string name="TVA_add_comment">Hozzászólás írása...</string>
@ -419,7 +419,6 @@
<string name="theme_dark">Sötét</string>
<string name="theme_wallpaper">Háttérkép</string>
<string name="theme_day_night">Nappal/Éjszaka</string>
<string name="default_value">Alapértelmezett</string>
<string name="master_sync_warning">Az Android pillanatnyilag letiltotta az automatikus szinkronizálást.</string>
<string name="settings_general">Általános</string>
<string name="language">Nyelv</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Deseleziona Immagine</string>
<string name="TVA_add_comment">Aggiungi un commento...</string>
@ -416,7 +416,6 @@
<string name="theme_dark">Scuro</string>
<string name="theme_wallpaper">Sfondo</string>
<string name="theme_day_night">Giorno/Notte</string>
<string name="default_value">Predefinito</string>
<string name="master_sync_warning">La sincronizzazione automatica è disabilitata da Android</string>
<string name="settings_general">Generale</string>
<string name="language">Lingua</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">הסר תמונה</string>
<string name="TVA_add_comment">הוסף הערה</string>
@ -343,7 +343,6 @@
<string name="theme_dark">כהה</string>
<string name="theme_wallpaper">תמונת רקע</string>
<string name="theme_day_night">יום / לילה</string>
<string name="default_value">ברירת מחדל</string>
<string name="master_sync_warning">סנכרון אוטומטי כרגע מושבת ע\"י Android</string>
<string name="settings_general">כללי</string>
<string name="language">שפה</string>
@ -372,4 +371,4 @@
<string name="date_and_time">תאריך וושעה</string>
<string name="start_of_week">תחילת השבוע</string>
<string name="use_native_datetime_pickers">השתמש בממשק תאריך ושעה של המערכת</string>
</resources>
</resources>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">写真を削除</string>
<string name="TVA_add_comment">コメントする</string>
@ -417,7 +417,6 @@
<string name="theme_dark">ダーク</string>
<string name="theme_wallpaper">壁紙</string>
<string name="theme_day_night">デイナイト</string>
<string name="default_value">デフォルト</string>
<string name="master_sync_warning">自動同期は、現在 Android によって無効にされています</string>
<string name="settings_general">全般</string>
<string name="language">言語</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">사진 제거하기</string>
<string name="TVA_add_comment">댓글 쓰기...</string>
@ -421,7 +421,6 @@
<string name="theme_dark">어둡게</string>
<string name="theme_wallpaper">바탕화면</string>
<string name="theme_day_night">주간/야간</string>
<string name="default_value">기본값</string>
<string name="master_sync_warning">현재 자동 동기화는 안드로이드에 의해 사용이 불가합니다. </string>
<string name="settings_general">일반</string>
<string name="language">언어</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Išvalyti paveiksliuką</string>
<string name="TVA_add_comment">Pridėti komentarą...</string>
@ -415,7 +415,6 @@
<string name="theme_dark">Tamsi</string>
<string name="theme_wallpaper">Fono vaizdas</string>
<string name="theme_day_night">Diena/Naktis</string>
<string name="default_value">Numatytasis</string>
<string name="master_sync_warning">Automatinis sinchronizavimas šiuo metu yra išjungtas Android sistemos</string>
<string name="settings_general">Pagrindiniai</string>
<string name="language">Kalba</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="backup_BPr_header">Sikkerhetskopier</string>
<string name="backup_BAc_import">Importer oppgaver</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Verwijder Foto</string>
<string name="TVA_add_comment">Voeg een opmerking toe</string>
@ -408,7 +408,6 @@
<string name="theme_dark">Donker</string>
<string name="theme_wallpaper">Achtergrond</string>
<string name="theme_day_night">Dag/Nacht</string>
<string name="default_value">Standaard</string>
<string name="master_sync_warning">Automatische synchronisatie is momenteel uitgezet door Android</string>
<string name="settings_general">Globaal</string>
<string name="language">Taal</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Usuń obrazek</string>
<string name="TVA_add_comment">Dodaj komentarz...</string>
@ -394,7 +394,6 @@
<string name="theme_dark">Ciemny</string>
<string name="theme_wallpaper">Tapeta</string>
<string name="theme_day_night">Dzień/noc</string>
<string name="default_value">Domyślny</string>
<string name="master_sync_warning">Automatyczna synchronizacja jest obecnie wyłączona przez Androida</string>
<string name="settings_general">Podstawowe</string>
<string name="language">Język</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Limpar imagem</string>
<string name="TVA_add_comment">Comentar...</string>
@ -335,7 +335,6 @@
<string name="theme_dark">Escuro</string>
<string name="theme_wallpaper">Plano de fundo</string>
<string name="theme_day_night">Dia/Noite</string>
<string name="default_value">Padrão</string>
<string name="master_sync_warning">Sincronização automática está atualmente desabilitada pelo Android</string>
<string name="settings_general">Geral</string>
<string name="language">Idioma</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Limpar imagem</string>
<string name="TVA_add_comment">Adicionar um comentário...</string>
@ -405,7 +405,6 @@
<string name="theme_dark">Escuro</string>
<string name="theme_wallpaper">Fundo</string>
<string name="theme_day_night">Dia/Noite</string>
<string name="default_value">Padrão</string>
<string name="master_sync_warning">A sincronização automática está atualmente desabilitada pelo Android</string>
<string name="settings_general">Geral</string>
<string name="language">Linguagem</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="TEA_title_hint">Numele taskului</string>
<string name="TEA_control_importance">Prioritate</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Убрать изображение</string>
<string name="TVA_add_comment">Добавить комментарий...</string>
@ -417,7 +417,6 @@
<string name="theme_dark">Тёмная</string>
<string name="theme_wallpaper">Как обои</string>
<string name="theme_day_night">День / ночь</string>
<string name="default_value">По умолчанию</string>
<string name="master_sync_warning">Автосинхронизация в Android выключена</string>
<string name="settings_general">Общие</string>
<string name="language">Язык</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Odstrániť obrázok</string>
<string name="TVA_add_comment">Pridať poznámku...</string>
@ -416,7 +416,6 @@
<string name="theme_dark">Tmavá</string>
<string name="theme_wallpaper">Tapeta</string>
<string name="theme_day_night">Deň/Noc</string>
<string name="default_value">Predvolené</string>
<string name="master_sync_warning">Automatická synchronizácia je pozastavená Androidom </string>
<string name="settings_general">Všeobecný</string>
<string name="language">Jazyk</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Zbriši fotografijo</string>
<string name="TVA_add_comment">Dodaj komentar...</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="SSD_sort_drag">Ručni poredak sa podzadacima</string>
<string name="SSD_sort_auto">Pametno sortiranje</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Rensa bild</string>
<string name="TVA_add_comment">Lägg till en kommentar...</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">ล้างภาพ</string>
<string name="backup_BPr_header">สำรองข้อมูล</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Resmi sil</string>
<string name="TVA_add_comment">Yorum Gir</string>
@ -421,7 +421,6 @@
<string name="theme_dark">Koyu</string>
<string name="theme_wallpaper">Duvar kağıdı</string>
<string name="theme_day_night">Gündüz/Gece</string>
<string name="default_value">Öntanımlı</string>
<string name="master_sync_warning">Kendiliğinden eşzamanlama şu anda Android tarafından devre dışı bırakıldı</string>
<string name="settings_general">Genel</string>
<string name="language">Dil</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">Очистити картинку</string>
<string name="TVA_add_comment">Додати коментар...</string>
@ -344,7 +344,6 @@
<string name="theme_dark">Темний</string>
<string name="theme_wallpaper">Шпалери</string>
<string name="theme_day_night">День/Ніч</string>
<string name="default_value">Типово</string>
<string name="master_sync_warning">Автоматична синхронізація наразі недоступна в Android</string>
<string name="settings_general">Загальні</string>
<string name="language">Мова</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">取消选择</string>
<string name="TVA_add_comment">添加注释...</string>
@ -416,7 +416,6 @@
<string name="theme_dark">暗色</string>
<string name="theme_wallpaper">壁纸</string>
<string name="theme_day_night">日/夜</string>
<string name="default_value">默认</string>
<string name="master_sync_warning">自动同步目前被Android禁用</string>
<string name="settings_general">一般</string>
<string name="language">语言</string>

@ -4,7 +4,7 @@
<!-- ******** http://www.getlocalization.com/tasks_android ******** -->
<!-- ******************* DO NOT MODIFY MANUALLY ******************* -->
<!-- ************************************************************** -->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes-->
<!--suppress AndroidLintTypographyEllipsis,AndroidLintTypographyDashes,AndroidLintTypos-->
<resources>
<string name="actfm_picture_clear">清除圖片</string>
<string name="TVA_add_comment">添加評論</string>
@ -230,7 +230,6 @@
<string name="color">色彩</string>
<string name="accent">強調色</string>
<string name="themes">其他主題</string>
<string name="default_value">預設</string>
<string name="master_sync_warning">自動同步功能目前在 Android 上是無效的。</string>
<string name="settings_general">一般</string>
<string name="language">語言</string>

@ -53,14 +53,6 @@
<item>@string/ring_nonstop</item>
</string-array>
<string-array name="themes">
<item>@string/theme_light</item>
<item>@string/theme_black</item>
<item>@string/theme_dark</item>
<item>@string/theme_wallpaper</item>
<item>@string/theme_day_night</item>
</string-array>
<string-array name="colors">
<item>@string/theme_blue_grey</item>
<item>@string/theme_dark_grey</item>

@ -6,8 +6,6 @@
-->
<resources>
<drawable name="transparent_drawable">@android:color/transparent</drawable>
<color name="red_500">#f44336</color>
<color name="red_700">#d32f2f</color>
<color name="red_a400">#ff1744</color>

@ -11,7 +11,6 @@
<dimen name="task_edit_double_padding_top_bottom">18dp</dimen>
<dimen name="task_edit_drawable_padding_top_bottom">17dp</dimen>
<dimen name="task_edit_text_size">16sp</dimen>
<dimen name="settings_text_size">18sp</dimen>
<item name="tag_characters" format="float" type="dimen">12</item>

@ -805,7 +805,6 @@ File %1$s contained %2$s.\n\n
<string name="theme_dark">Dark</string>
<string name="theme_wallpaper">Wallpaper</string>
<string name="theme_day_night">Day/Night</string>
<string name="default_value">Default</string>
<string name="master_sync_warning">Automatic synchronization is currently disabled by Android</string>
<string name="settings_general">General</string>
@ -843,7 +842,6 @@ File %1$s contained %2$s.\n\n
<string name="password">Password</string>
<string name="url">URL</string>
<string name="error_adding_account">Error adding account</string>
<string name="error_renaming_account">Error renaming account</string>
<string name="error_deleting_account">Error deleting account</string>
<string name="account_settings">Account settings</string>
<string name="notification_channel_settings">Manage notifications</string>

Loading…
Cancel
Save