Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Nov 11, 2015
1 parent 906d815 commit 69b7ebc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions etc/translations/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@
<string name="use_current_location">Use current location</string>
<string name="filter">Filter</string>
<string name="remove_filter">Remove filter</string>
<string name="filter_old_reminders">Hide old reminders</string>
<string name="remove_filter_old_reminders">Show old reminders</string>
<string name="filter_archived">Hide archived notes</string>
<string name="remove_filter_archived">Show archived notes</string>
<string name="permission_external_storage">Permission to write on external storage is needed to allow backups on public folders</string>
<string name="permission_audio_recording">Permission to use microphone is needed to record audio notes</string>
<string name="permission_coarse_location">Permission to access to location is needed to add position informations to your notes</string>
Expand Down Expand Up @@ -226,6 +230,8 @@
<string name="settings_screen_backup">Backup</string>
<string name="settings_screen_notifications">Notifications</string>
<string name="settings_enable_vibration">Vibration</string>
<string name="settings_notification_enable_boot_persistence">Enable notifications persistence</string>
<string name="settings_notification_enable_boot_persistence_summary">Allow the app to access notifications to make they survive to reboots</string>
<string name="settings_screen_navigation">Navigation</string>
<string name="settings_changelog">Changelog</string>
<string name="settings_enable_editor_links">Links recognition</string>
Expand Down
8 changes: 4 additions & 4 deletions omniNotes/src/main/res/menu/menu_list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,28 +30,28 @@
android:id="@+id/menu_filter"
android:icon="@drawable/ic_filter_white_24dp"
android:orderInCategory="150"
android:title="@string/filter"
android:title="@string/filter_old_reminders"
android:visible="false"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/menu_filter_remove"
android:icon="@drawable/ic_filter_remove_white_24dp"
android:orderInCategory="150"
android:title="@string/remove_filter"
android:title="@string/remove_filter_old_reminders"
android:visible="false"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/menu_filter_category"
android:icon="@drawable/ic_filter_white_24dp"
android:orderInCategory="150"
android:title="@string/filter"
android:title="@string/filter_archived"
android:visible="false"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/menu_filter_category_remove"
android:icon="@drawable/ic_filter_remove_white_24dp"
android:orderInCategory="150"
android:title="@string/remove_filter"
android:title="@string/remove_filter_archived"
android:visible="false"
app:showAsAction="ifRoom"/>
<item
Expand Down
4 changes: 4 additions & 0 deletions omniNotes/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,10 @@
<string name="use_current_location">Use current location</string>
<string name="filter">Filter</string>
<string name="remove_filter">Remove filter</string>
<string name="filter_old_reminders">Hide old reminders</string>
<string name="remove_filter_old_reminders">Show old reminders</string>
<string name="filter_archived">Hide archived notes</string>
<string name="remove_filter_archived">Show archived notes</string>
<string name="permission_external_storage">Permission to write on external storage is needed to allow backups on public folders</string>
<string name="permission_audio_recording">Permission to use microphone is needed to record audio notes</string>
<string name="permission_coarse_location">Permission to access to location is needed to add position informations to your notes</string>
Expand Down

0 comments on commit 69b7ebc

Please sign in to comment.