diff --git a/data/Makefile.am b/data/Makefile.am
index 494eb53..49e790c 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -1,6 +1,6 @@
account_data_DATA = \
- account-menu.glade\
+ account-menu.xml\
account.xml \
users.glade \
email.glade
diff --git a/data/account.xml b/data/account.xml
index c3df325..11a8c3b 100644
--- a/data/account.xml
+++ b/data/account.xml
@@ -1,18 +1,18 @@
+
Accounts
-
- _Accounts
-
+ icon="x-office-address-book">
+ Users
+
+ icon="mail-mark-unread">
+ E-Mail
+
diff --git a/data/email.glade b/data/email.glade
index eca3850..2f5ea67 100644
--- a/data/email.glade
+++ b/data/email.glade
@@ -1,7 +1,7 @@
-
+
@@ -94,7 +97,7 @@
True
False
alias
- VN_HANDLER_SHOW_SAVE | VN_HANDLER_SHOW_REMOVE | VN_HANDLER_SHOW_ADD
+ VN_HANDLER_SHOW_REFRESH | VN_HANDLER_SHOW_SAVE | VN_HANDLER_SHOW_REMOVE | VN_HANDLER_SHOW_ADD
False
@@ -132,9 +135,12 @@
autosize
Children
- model-alias
child
True
+ model-alias
+
+
+
diff --git a/data/users.glade b/data/users.glade
index 95c28eb..d813a58 100644
--- a/data/users.glade
+++ b/data/users.glade
@@ -1,7 +1,7 @@
-
+
diff --git a/debian/changelog b/debian/changelog
index 65bc968..e13492a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-hedera-account (1.0-5) UNRELEASED; urgency=low
+hedera-account (1.0-6) UNRELEASED; urgency=low
* Initial Release.
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 3e803a3..e23b32c 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -2,7 +2,7 @@
src/account.vala
[type: gettext/glade]data/account.xml
-data/account-menu.glade
+[type: gettext/glade]data/account-menu.xml
src/users.vala
data/users.glade
diff --git a/src/account.vala b/src/account.vala
index 890ae97..f21e8e9 100644
--- a/src/account.vala
+++ b/src/account.vala
@@ -20,11 +20,29 @@ public class Vn.Management : Vn.Mod
{
public Management ()
{
-
}
// Main routine of the Management Module.
public override void activate ()
{
}
+
+ // Actions
+
+ const GLib.ActionEntry[] actions =
+ {
+ {"open-form", open_form}
+ ,{"test-set-action", test_set_action}
+ };
+
+ void open_form (GLib.SimpleAction a, GLib.Variant? p)
+ {}
+
+ void test_set_action (GLib.SimpleAction a, GLib.Variant? p)
+ {}
+
+ public override unowned GLib.ActionEntry[] get_actions ()
+ {
+ return actions;
+ }
}