You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/astrid/res/values/strings-repeat.xml

47 lines
1.6 KiB
XML

14 years ago
<?xml version="1.0" encoding="utf-8"?>
<!-- See the file "LICENSE" for the full license governing this code. -->
<resources xmlns:android="http://schemas.android.com/apk/res/android">
14 years ago
<!-- Resources for built-in repeat plug-in -->
<!-- repeating plugin name -->
<string name="repeat_plugin">Repeating Tasks</string>
<!-- repeating plugin description -->
<string name="repeat_plugin_desc">Allows tasks to repeat</string>
<!-- checkbox for turning on/off repeats -->
<string name="repeat_enabled">Repeats</string>
<!-- button for "every x" part of repeat (%d -> repeat value) -->
<string name="repeat_every">Every %d</string>
<!-- hint when opening repeat interval -->
<string name="repeat_interval_prompt">Repeat Interval</string>
<string-array name="repeat_interval">
<!-- repeat interval (days,weeks,months,hours,minutes) -->
14 years ago
<item>Day(s)</item>
<item>Week(s)</item>
<item>Month(s)</item>
<item>Hour(s)</item>
<item>Minute(s)</item>
14 years ago
</string-array>
<string-array name="repeat_type">
<!-- repeat type (date to repeat from) -->
<item>from due date</item>
<item>from completion date</item>
</string-array>
<!-- task detail weekly by day ($I -> interval, i.e. 1 week, $D -> days, i.e. Monday, Tuesday) -->
<string name="repeat_detail_byday">$I on $D</string>
<!-- task detail for repeat from due date (%s -> interval) -->
<string name="repeat_detail_duedate">Every %s</string>
<!-- task detail for repeat from completion date (%s -> interval) -->
<string name="repeat_detail_completion">%s after completion</string>
14 years ago
</resources>