Change 'show completed' to 'hide completed'

This commit is contained in:
2016-08-05 19:37:47 -04:00
parent 3ad3cf54ec
commit 8655437f3e
4 changed files with 18 additions and 18 deletions

View File

@@ -35,16 +35,16 @@
app:showAsAction="ifRoom">
<menu>
<item
android:id="@+id/actionShowArchived"
android:id="@+id/actionHideArchived"
android:checkable="true"
android:enabled="true"
android:title="@string/show_archived"/>
android:title="@string/hide_archived"/>
<item
android:id="@+id/actionShowCompleted"
android:id="@+id/actionHideCompleted"
android:checkable="true"
android:enabled="true"
android:title="@string/show_completed"/>
android:title="@string/hide_completed"/>
</menu>
</item>

View File

@@ -94,7 +94,6 @@
<string name="links">Links</string>
<string name="behavior">Behavior</string>
<string name="name">Name</string>
<string name="show_archived">Show archived</string>
<string name="settings">Settings</string>
<string name="snooze_interval">Snooze interval</string>
@@ -182,5 +181,6 @@
<string name="reminder_sound">Reminder sound</string>
<string name="none">None</string>
<string name="filter">Filter</string>
<string name="show_completed">Show completed</string>
<string name="hide_completed">Hide completed</string>
<string name="hide_archived">Hide archived</string>
</resources>