[Xfce4-commits] <postler:master> Right-align and use colons in account setup labels
Christian Dywan
noreply at xfce.org
Sun Dec 19 04:10:03 CET 2010
Updating branch refs/heads/master
to 9be37e4509d5c5767041274c7a1fc8800cd47e7b (commit)
from 17a74ef89ffacd7660bd14f52eb7833eff266328 (commit)
commit 9be37e4509d5c5767041274c7a1fc8800cd47e7b
Author: Christian Dywan <christian at twotoasts.de>
Date: Sun Dec 19 04:09:46 2010 +0100
Right-align and use colons in account setup labels
postler/postler-accountsetup.vala | 18 +++++++++---------
postler/postler-bureau.vala | 2 +-
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/postler/postler-accountsetup.vala b/postler/postler-accountsetup.vala
index d936823..4ecc048 100644
--- a/postler/postler-accountsetup.vala
+++ b/postler/postler-accountsetup.vala
@@ -43,17 +43,17 @@ public class Postler.AccountWidget : Gtk.VBox {
realname = new Gtk.Entry ();
realname.text = info.realname ?? "";
- add_label_entry (_("Full Name"), realname);
+ add_label_entry (_("Full Name:"), realname);
address = new Gtk.Entry ();
address.text = info.address ?? "";
- add_label_entry (_("Electronic Mail Address"), address);
+ add_label_entry (_("Email Address:"), address);
password = new Gtk.Entry ();
password.visibility = false;
password.text = info.password ?? "";
- add_label_entry (_("Password"), password);
+ add_label_entry (_("Password:"), password);
organization = new Gtk.Entry ();
organization.text = info.organization ?? "";
- add_label_entry (_("Organization"), organization);
+ add_label_entry (_("Organization:"), organization);
var expander = new Gtk.Expander (_("Advanced"));
content_area.pack_start (expander, false, false, 4);
@@ -62,16 +62,16 @@ public class Postler.AccountWidget : Gtk.VBox {
receiver = new Gtk.Entry ();
receiver.text = info.receive ?? "";
- add_label_entry (_("Receiving Server"), receiver, true);
+ add_label_entry (_("Receiving Server:"), receiver, true);
username = new Gtk.Entry ();
username.text = info.username ?? "";
- add_label_entry (_("Username"), username, true);
+ add_label_entry (_("Username:"), username, true);
prefix = new Gtk.Entry ();
prefix.text = info.prefix ?? "";
- add_label_entry (_("Prefix"), prefix, true);
+ add_label_entry (_("Prefix:"), prefix, true);
sender = new Gtk.Entry ();
sender.text = info.send ?? "";
- add_label_entry (_("Sending Server"), sender, true);
+ add_label_entry (_("Sending Server:"), sender, true);
content_area.show_all ();
pack_end (content_area, true, true, 0);
}
@@ -83,7 +83,7 @@ public class Postler.AccountWidget : Gtk.VBox {
else
content_area.pack_start (hbox, false, false, 4);
var label = new Gtk.Label.with_mnemonic (text);
- label.xalign = 0;
+ label.xalign = 1.0f;
sizegroup.add_widget (label);
hbox.pack_start (label, false, false, 4);
entry.activate.connect ((entry) => {
diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index af1df51..b630474 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -622,7 +622,7 @@ public class Postler.Bureau : Gtk.Window {
.printf (_("Set up your account.")));
welcome.pack_start (label, true, false, 4);
label = new Gtk.Label (
- _("Postler needs some basic information to get your mail."));
+ _("Postler needs some basic information to get your mail.") + "\n");
label.sensitive = false;
welcome.pack_start (label, true, false, 4);
var welcome_box = new Gtk.HBox (false, 0);
More information about the Xfce4-commits
mailing list