[quadrapassel] Removed Colons from Strings
- From: Mario Wenzel <mariowenzel src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [quadrapassel] Removed Colons from Strings
- Date: Wed, 20 Nov 2013 19:53:39 +0000 (UTC)
commit f7bd00722243cb767a8f32675d5f3f8197b1fcd2
Author: Mario Wenzel <maweki gmail com>
Date: Wed Nov 20 20:53:24 2013 +0100
Removed Colons from Strings
As suggested by Allan Day in
https://bugzilla.gnome.org/show_bug.cgi?id=710618
src/quadrapassel.vala | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/quadrapassel.vala b/src/quadrapassel.vala
index 28202ff..1d9d801 100644
--- a/src/quadrapassel.vala
+++ b/src/quadrapassel.vala
@@ -174,7 +174,7 @@ public class Quadrapassel : Gtk.Application
vb2.show ();
hb.pack_end (vb2, true, false, 0);
- var preview_frame = new Gtk.Frame (_("Next:"));
+ var preview_frame = new Gtk.Frame (_("Next"));
preview_frame.set_label_align (0.5f, 1.0f);
preview = new Preview (preview_frame);
preview.theme = settings.get_string ("theme");
@@ -189,7 +189,7 @@ public class Quadrapassel : Gtk.Application
score_grid.show ();
vb2.pack_end (score_grid, true, false, 0);
- var label = new Gtk.Label (_("Score:"));
+ var label = new Gtk.Label (_("Score"));
label.set_alignment (0.5f, 0.5f);
label.set_size_request (120, -1); // should be at least as wide as the preview area
label.show ();
@@ -200,7 +200,7 @@ public class Quadrapassel : Gtk.Application
score_label.show ();
score_grid.attach (score_label, 0, 1, 1, 2);
- label = new Gtk.Label (_("Lines:"));
+ label = new Gtk.Label (_("Lines"));
label.set_alignment (0.5f, 0.5f);
label.show ();
score_grid.attach (label, 0, 4, 1, 1);
@@ -210,7 +210,7 @@ public class Quadrapassel : Gtk.Application
n_destroyed_label.show ();
score_grid.attach (n_destroyed_label, 0, 5, 1, 2);
- label = new Gtk.Label (_("Level:"));
+ label = new Gtk.Label (_("Level"));
label.set_alignment (0.5f, 0.5f);
label.show ();
score_grid.attach (label, 0, 8, 1, 1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]