1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is part of Wike (com.github.hugolabe.Wike)
SPDX-FileCopyrightText: 2021-25 Hugo Olabera
SPDX-License-Identifier: GPL-3.0-or-later
-->
<!-- Article menu -->
<interface>
<menu id="article_menu">
<!-- Buttons section -->
<section>
<attribute name="display-hint">horizontal-buttons</attribute>
<item>
<attribute name="label" translatable="yes">Print</attribute>
<attribute name="verb-icon">printer-symbolic</attribute>
<attribute name="action">win.print-page</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Search Text</attribute>
<attribute name="verb-icon">system-search-symbolic</attribute>
<attribute name="action">win.search-text</attribute>
</item>
</section>
<!-- Go to section -->
<section>
<item>
<attribute name="label" translatable="yes">Main Page</attribute>
<attribute name="action">win.main-page</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Random Article</attribute>
<attribute name="action">win.random-article</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Open Wikipedia Link</attribute>
<attribute name="action">win.open-link</attribute>
</item>
</section>
<!-- Share section -->
<section>
<item>
<attribute name="label" translatable="yes">Open in Browser</attribute>
<attribute name="action">win.open-browser</attribute>
</item>
<item>
<attribute name="label" translatable="yes">Copy Link to Clipboard</attribute>
<attribute name="action">win.copy-link</attribute>
</item>
</section>
</menu>
</interface>
|