summaryrefslogtreecommitdiff
path: root/app/src/main/res/menu/activity_main_drawer.xml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-02-21 16:32:08 -0300
committerTorsten Grote <t@grobox.de>2020-02-21 16:32:08 -0300
commit5f57c48b526f7f297e307851135fc52a5ea23ab3 (patch)
treeb54e02fdd8cd27553897f079e09dda3e4a9ed1c6 /app/src/main/res/menu/activity_main_drawer.xml
parent9b07cda04a02f5e8f685feb505db251006fd45fd (diff)
downloadwallet-android-5f57c48b526f7f297e307851135fc52a5ea23ab3.tar.gz
wallet-android-5f57c48b526f7f297e307851135fc52a5ea23ab3.tar.bz2
wallet-android-5f57c48b526f7f297e307851135fc52a5ea23ab3.zip
Fix lint and make all strings translatable
Diffstat (limited to 'app/src/main/res/menu/activity_main_drawer.xml')
-rw-r--r--app/src/main/res/menu/activity_main_drawer.xml13
1 files changed, 6 insertions, 7 deletions
diff --git a/app/src/main/res/menu/activity_main_drawer.xml b/app/src/main/res/menu/activity_main_drawer.xml
index 9b31ba0..f06f0ab 100644
--- a/app/src/main/res/menu/activity_main_drawer.xml
+++ b/app/src/main/res/menu/activity_main_drawer.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
+<?xml version="1.0" encoding="utf-8"?><!--
~ This file is part of GNU Taler
~ (C) 2020 Taler Systems S.A.
~
@@ -16,22 +15,22 @@
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- tools:showIn="navigation_view">
+ xmlns:tools="http://schemas.android.com/tools"
+ tools:showIn="navigation_view">
<group android:checkableBehavior="single">
<item
android:id="@+id/nav_home"
android:icon="@drawable/ic_home_black_24dp"
- android:title="Home"/>
+ android:title="@string/menu_home" />
<item
android:id="@+id/nav_history"
android:icon="@drawable/ic_history_black_24dp"
- android:title="History"/>
+ android:title="@string/menu_history" />
<item
android:id="@+id/nav_settings"
android:icon="@drawable/ic_menu_manage"
- android:title="Settings"/>
+ android:title="@string/menu_settings" />
</group>
</menu>