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
|
<interface>
<object class="GigglePlugin" id="plugin">
<property name="description" translatable="yes">Terminal window</property>
<child>
<object class="GtkActionGroup" id="GigglePlugin-Terminal">
<child>
<object class="GtkAction" id="ShowTerminalView">
<property name="label" translatable="yes">Create _Terminal</property>
<property name="tooltip" translatable="yes">Create new tab in git terminal</property>
<property name="icon-name">gnome-terminal</property>
<property name="icon-name">gnome-terminal</property>
</object>
<accelerator key="T" modifiers="GDK_CONTROL_MASK | GDK_SHIFT_MASK"/>
</child>
</object>
</child>
<ui>
<menubar name="MainMenubar">
<menu action="ViewMenu">
<separator/>
<menuitem action="ShowTerminalView" />
</menu>
</menubar>
</ui>
</object>
</interface>
|