2013-02-18 14:23:18 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-02-07 21:45:10 +04:00
|
|
|
<!--
|
|
|
|
ownCloud Android client application
|
|
|
|
|
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
2014-04-02 13:19:08 +04:00
|
|
|
Copyright (C) 2012-2013 ownCloud Inc.
|
2013-02-07 21:45:10 +04:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
2013-04-17 14:26:13 +04:00
|
|
|
it under the terms of the GNU General Public License version 2,
|
|
|
|
as published by the Free Software Foundation.
|
2013-02-07 21:45:10 +04:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2014-02-05 03:04:42 +04:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
|
|
|
|
<item
|
2014-03-18 01:14:07 +04:00
|
|
|
android:id="@+id/action_upload"
|
|
|
|
android:icon="@drawable/ic_action_upload"
|
2014-02-05 03:04:42 +04:00
|
|
|
android:orderInCategory="2"
|
2014-04-03 12:08:57 +04:00
|
|
|
android:showAsAction="always"
|
2014-03-18 01:14:07 +04:00
|
|
|
android:title="@string/actionbar_upload"/>
|
2014-02-05 03:04:42 +04:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_create_dir"
|
|
|
|
android:icon="@drawable/ic_action_create_dir"
|
|
|
|
android:orderInCategory="2"
|
2014-04-03 12:08:57 +04:00
|
|
|
android:showAsAction="always"
|
2014-02-05 03:04:42 +04:00
|
|
|
android:title="@string/actionbar_mkdir"/>
|
|
|
|
<item
|
2014-03-18 01:14:07 +04:00
|
|
|
android:id="@+id/action_sync_account"
|
|
|
|
android:icon="@drawable/ic_action_refresh"
|
2014-02-05 03:04:42 +04:00
|
|
|
android:orderInCategory="2"
|
2014-04-03 12:08:57 +04:00
|
|
|
android:showAsAction="never"
|
2014-03-18 01:14:07 +04:00
|
|
|
android:title="@string/actionbar_sync"/>
|
2014-02-05 03:04:42 +04:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_settings"
|
2014-03-18 01:14:07 +04:00
|
|
|
android:icon="@drawable/ic_action_settings"
|
2014-02-05 03:04:42 +04:00
|
|
|
android:orderInCategory="2"
|
2014-04-03 12:08:57 +04:00
|
|
|
android:showAsAction="never"
|
2014-02-05 03:04:42 +04:00
|
|
|
android:title="@string/actionbar_settings"/>
|
2014-09-04 11:06:14 +04:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_logger"
|
|
|
|
android:icon="@drawable/ic_action_settings"
|
|
|
|
android:orderInCategory="2"
|
|
|
|
android:showAsAction="never"
|
|
|
|
android:title="@string/actionbar_logger"/>
|
2014-10-09 19:26:02 +04:00
|
|
|
<item
|
2014-09-14 17:51:09 +04:00
|
|
|
android:id="@+id/action_sort"
|
2014-10-23 20:05:28 +04:00
|
|
|
android:icon="@android:drawable/ic_menu_sort_alphabetically"
|
2014-09-14 17:51:09 +04:00
|
|
|
android:orderInCategory="2"
|
|
|
|
android:showAsAction="never"
|
|
|
|
android:title="@string/actionbar_sort"/>
|
2014-02-05 03:04:42 +04:00
|
|
|
|
2014-04-02 13:19:08 +04:00
|
|
|
<!-- <item android:id="@+id/search" android:title="@string/actionbar_search" android:icon="@drawable/ic_action_search"></item> -->
|
|
|
|
|
2014-02-05 03:04:42 +04:00
|
|
|
</menu>
|