Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-05-09 12:32:18 +0300
committerStefan Niedermann <info@niedermann.it>2020-05-09 12:32:18 +0300
commit06404d6e81a2dd1daded266784729a87a947aad0 (patch)
treedd3966882d448c6166f5f70f91618f747b520e9d /app/src/main/res/menu
parent3f857534e6e65eaab778ff81723a2b79bb0d112a (diff)
Actions for archived boards
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r--app/src/main/res/menu/archived_board_menu.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/menu/archived_board_menu.xml b/app/src/main/res/menu/archived_board_menu.xml
new file mode 100644
index 000000000..abcf1da83
--- /dev/null
+++ b/app/src/main/res/menu/archived_board_menu.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto">
+ <item
+ android:id="@+id/edit_board"
+ android:orderInCategory="10"
+ android:title="@string/edit_board"
+ app:showAsAction="never" />
+ <item
+ android:id="@+id/dearchive_board"
+ android:orderInCategory="20"
+ android:title="@string/action_board_dearchive"
+ app:showAsAction="never" />
+ <item
+ android:id="@+id/delete_board"
+ android:orderInCategory="30"
+ android:title="@string/delete_board"
+ app:showAsAction="never" />
+</menu>