mirror of https://github.com/tasks/tasks
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.
46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<?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">
|
|
|
|
<!-- 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) -->
|
|
<item>Day(s)</item>
|
|
<item>Week(s)</item>
|
|
<item>Month(s)</item>
|
|
<item>Hour(s)</item>
|
|
</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">Repeats every %s</string>
|
|
|
|
<!-- task detail for repeat from completion date (%s -> interval) -->
|
|
<string name="repeat_detail_completion">Repeats %s after completion</string>
|
|
|
|
</resources>
|