Clarified the label for the reminder feature. It's been misunderstood =(

pull/14/head
Tim Su 16 years ago
parent f1e6f5a480
commit f0da8949ab

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid"
android:versionCode="11"
android:versionCode="13"
android:versionName="1.7.5">
<uses-permission android:name="android.permission.VIBRATE"/>

@ -99,7 +99,7 @@
<string name="elapsedDuration_label">Time Already Spent on Task</string>
<string name="importance_label">How Important is it?</string>
<string name="tags_label">Tags:</string>
<string name="notification_label">Reminders</string>
<string name="notification_label">Remind Me At Least</string>
<string name="notification_prefix">Every</string>
<string name="definiteDueDate_label">Absolute Deadline</string>
<string name="preferredDueDate_label">Goal Deadline</string>

@ -87,6 +87,9 @@ public class Notifications extends BroadcastReceiver {
if(task.isTaskCompleted())
return false;
if(task.getNotificationIntervalSeconds() > 0)
return false;
return true;
}

Loading…
Cancel
Save