2014-12-11 18:28:54 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
~ Copyright (C) 2014 Vlad Mihalachi
|
|
|
|
~
|
2018-06-23 03:47:51 -05:00
|
|
|
~ This file is part of Text Editor 8000.
|
2014-12-11 18:28:54 +01:00
|
|
|
~
|
2018-06-23 03:47:51 -05:00
|
|
|
~ Text Editor 8000 is free software: you can redistribute it and/or modify
|
2014-12-11 18:28:54 +01:00
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ (at your option) any later version.
|
|
|
|
~
|
2018-06-23 03:47:51 -05:00
|
|
|
~ Text Editor 8000 is distributed in the hope that it will be useful,
|
2014-12-11 18:28:54 +01:00
|
|
|
~ 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/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item
|
2015-03-14 13:11:56 +01:00
|
|
|
android:id="@id/im_save"
|
2014-12-11 18:28:54 +01:00
|
|
|
app:showAsAction="ifRoom"
|
2015-03-14 13:11:56 +01:00
|
|
|
android:icon="@drawable/ic_action_save"
|
|
|
|
android:title="@string/salva">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@id/im_save_normaly"
|
|
|
|
app:showAsAction="ifRoom"
|
2014-12-11 18:28:54 +01:00
|
|
|
android:title="@string/salva"/>
|
2015-03-14 13:11:56 +01:00
|
|
|
<item
|
|
|
|
android:id="@id/im_save_as"
|
|
|
|
app:showAsAction="ifRoom"
|
|
|
|
android:title="@string/save_as"/>
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2014-12-11 18:28:54 +01:00
|
|
|
<item
|
|
|
|
android:id="@id/im_undo"
|
|
|
|
app:showAsAction="ifRoom"
|
|
|
|
android:icon="@drawable/ic_action_undo"
|
|
|
|
android:title="@string/testo_indietro"
|
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@id/im_redo"
|
|
|
|
app:showAsAction="ifRoom"
|
|
|
|
android:icon="@drawable/ic_action_redo"
|
|
|
|
android:title="@string/testo_rifai"
|
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@id/im_search"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/find"
|
|
|
|
/>
|
2015-03-23 15:31:39 +01:00
|
|
|
<item
|
|
|
|
android:id="@id/im_rename"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/rinomina"
|
|
|
|
/>
|
2014-12-11 18:28:54 +01:00
|
|
|
<item
|
|
|
|
android:id="@id/im_goto_line"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/goto_line"
|
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@id/im_view_it_on_browser"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/view_it_on_the_web"
|
|
|
|
/>
|
2015-03-15 18:45:18 +01:00
|
|
|
<item
|
|
|
|
android:id="@id/im_view_markdown"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/view_markdown_result"
|
|
|
|
/>
|
2014-12-11 18:28:54 +01:00
|
|
|
<item
|
|
|
|
android:id="@id/im_share"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/share"
|
|
|
|
app:actionProviderClass="android.support.v7.widget.ShareActionProvider"
|
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@id/im_info"
|
|
|
|
app:showAsAction="never"
|
|
|
|
android:title="@string/info"
|
|
|
|
/>
|
|
|
|
</menu>
|