diff options
author | Alan Fitton <ajf@eth0.org.uk> | 2012-09-15 10:24:08 +0100 |
---|---|---|
committer | Alan Fitton <ajf@eth0.org.uk> | 2012-09-15 10:24:08 +0100 |
commit | a716305b39d058147ccb93690a411a7d05b1abee (patch) | |
tree | c3e0f1fff0a4500883e4c05f4776ff2ff75a73f1 /src | |
parent | 443b30ab07f545127df4c1012fcd6534241a2fe1 (diff) |
slightly less padding and use the old no hostname set string, as I don't want to break the translation on the first thing a new user sees.
Diffstat (limited to 'src')
-rw-r--r-- | src/trg-main-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trg-main-window.c b/src/trg-main-window.c index c1fed1d..6f1a608 100644 --- a/src/trg-main-window.c +++ b/src/trg-main-window.c @@ -597,7 +597,7 @@ void connect_cb(GtkWidget * w, gpointer data) switch (populate_result) { case TRG_NO_HOSTNAME_SET: - msg = _("No host specified. Set it in the preferences dialog."); + msg = _("No hostname set"); break; default: msg = _("Unknown error getting settings"); @@ -2704,7 +2704,7 @@ static GObject *trg_main_window_constructor(GType type, g_signal_connect(priv->torrentTreeView, "row-activated", G_CALLBACK(torrent_tv_onRowActivated), self); - outerVbox = trg_vbox_new(FALSE, 6); + outerVbox = trg_vbox_new(FALSE, 2); /* Create a GtkAlignment to hold the outerVbox making possible * some padding. */ |