[gnome-games] lightsoff: Fix invalid UTF-8 encoding in copyright line of about dlg
- From: Jeremy Bicha <jbicha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games] lightsoff: Fix invalid UTF-8 encoding in copyright line of about dlg
- Date: Sun, 5 Feb 2012 15:22:15 +0000 (UTC)
commit 3c377773c2deadfdea735afb477ca1bc15187314
Author: Jeremy Bicha <jbicha ubuntu com>
Date: Sun Feb 5 10:21:41 2012 -0500
lightsoff: Fix invalid UTF-8 encoding in copyright line of about dlg
Gtk-WARNING **: Failed to set text from markup due to error parsing
markup: Error on line 1 char 55: Invalid UTF-8 encoded text in name â
not valid 'Copyright \xa9 2009 Tim Horton'
lightsoff/src/lightsoff.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/lightsoff/src/lightsoff.vala b/lightsoff/src/lightsoff.vala
index 835252f..fd8f588 100644
--- a/lightsoff/src/lightsoff.vala
+++ b/lightsoff/src/lightsoff.vala
@@ -135,7 +135,7 @@ public class LightsOff : Gtk.Application
"version", Config.VERSION,
"comments",
_("Turn off all the lights\n\nLights Off is a part of GNOME Games."),
- "copyright", "Copyright \xa9 2009 Tim Horton",
+ "copyright", "Copyright  2009 Tim Horton",
"license", GnomeGamesSupport.get_license (_("Lights Off")),
"wrap-license", true,
"authors", authors,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]