cbd68bb
diff -uNr pioneers-15.3-orig/ChangeLog pioneers-15.3/ChangeLog
cbd68bb
--- pioneers-15.3-orig/ChangeLog	2014-10-26 09:49:02.000000000 -0400
cbd68bb
+++ pioneers-15.3/ChangeLog	2014-10-27 11:31:18.120313996 -0400
cbd68bb
@@ -5149,7 +5149,7 @@
5d7b376
 
5d7b376
 2001-03-09  Matt Waggoner  <matt@waggoner.com>
5d7b376
 
5d7b376
-	* One of the official rule variants for Settlers of Catan is
5d7b376
+	* One of the official rule variants is
5d7b376
 	to disallow rolling a 7 on the first two rounds.  This has been
5d7b376
 	added as a feature of gnocatan, as well as an additional variant:
5d7b376
 	always reroll 7s.  These are accessed from the console server
cbd68bb
diff -uNr pioneers-15.3-orig/client/gtk/gui.c pioneers-15.3/client/gtk/gui.c
cbd68bb
--- pioneers-15.3-orig/client/gtk/gui.c	2014-04-12 07:06:19.000000000 -0400
cbd68bb
+++ pioneers-15.3/client/gtk/gui.c	2014-10-27 11:31:18.121313977 -0400
cbd68bb
@@ -55,14 +55,12 @@
5d7b376
 	TRADE_PAGE,		/* trading interface */
5d7b376
 	QUOTE_PAGE,		/* submit quotes page */
5d7b376
 	LEGEND_PAGE,		/* legend */
5d7b376
-	SPLASH_PAGE		/* splash screen */
5d7b376
 };
5d7b376
 
5d7b376
 static GtkWidget *map_notebook;	/* map area panel */
5d7b376
 static GtkWidget *trade_page;	/* trade page in map area */
5d7b376
 static GtkWidget *quote_page;	/* quote page in map area */
5d7b376
 static GtkWidget *legend_page;	/* legend page in map area */
5d7b376
-static GtkWidget *splash_page;	/* splash page in map area */
5d7b376
 
5d7b376
 static GtkWidget *develop_notebook;	/* development card area panel */
5d7b376
 
cbd68bb
@@ -85,8 +83,6 @@
5d7b376
 
5d7b376
 static GList *rules_callback_list = NULL;
5d7b376
 
5d7b376
-#define PIONEERS_PIXMAP_SPLASH "pioneers/splash.png"
5d7b376
-
5d7b376
 static const gchar *pioneers_pixmaps[] = {
5d7b376
 	PIONEERS_PIXMAP_DICE,
5d7b376
 	PIONEERS_PIXMAP_TRADE,
cbd68bb
@@ -648,50 +644,6 @@
5d7b376
 		gtk_widget_hide(legend_page);
5d7b376
 }
5d7b376
 
5d7b376
-void gui_show_splash_page(gboolean show, GtkWidget * chat_widget)
5d7b376
-{
5d7b376
-	static GtkWidget *widget = NULL;
5d7b376
-	if (chat_widget != NULL)
5d7b376
-		widget = chat_widget;
5d7b376
-	g_assert(widget != NULL);
5d7b376
-
5d7b376
-	chat_set_grab_focus_on_update(TRUE);
5d7b376
-	if (show) {
5d7b376
-		gtk_widget_show(splash_page);
5d7b376
-		gtk_notebook_set_current_page(GTK_NOTEBOOK(map_notebook),
5d7b376
-					      SPLASH_PAGE);
5d7b376
-		gtk_widget_hide(widget);
5d7b376
-	} else {
5d7b376
-		gtk_widget_hide(splash_page);
5d7b376
-		gtk_notebook_set_current_page(GTK_NOTEBOOK(map_notebook),
5d7b376
-					      MAP_PAGE);
5d7b376
-		gtk_widget_show(widget);
5d7b376
-	}
5d7b376
-}
5d7b376
-
5d7b376
-static GtkWidget *splash_build_page(void)
5d7b376
-{
5d7b376
-	GtkWidget *pm;
5d7b376
-	GtkWidget *viewport;
5d7b376
-	gchar *filename;
5d7b376
-
5d7b376
-	filename = g_build_filename(DATADIR, "pixmaps", "pioneers",
5d7b376
-				    "splash.png", NULL);
5d7b376
-	pm = gtk_image_new_from_file(filename);
5d7b376
-	g_free(filename);
5d7b376
-
5d7b376
-	/* The viewport avoids that the pixmap is drawn up into the tab area if
5d7b376
-	 * it's too large for the space provided. */
5d7b376
-	viewport = gtk_viewport_new(NULL, NULL);
5d7b376
-	gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport),
5d7b376
-				     GTK_SHADOW_NONE);
5d7b376
-	gtk_widget_show(viewport);
5d7b376
-	gtk_widget_set_size_request(pm, 1, 1);
5d7b376
-	gtk_widget_show(pm);
5d7b376
-	gtk_container_add(GTK_CONTAINER(viewport), pm);
5d7b376
-	return viewport;
5d7b376
-}
5d7b376
-
5d7b376
 static GtkWidget *build_map_panel(void)
5d7b376
 {
5d7b376
 	GtkWidget *lbl;
cbd68bb
@@ -743,13 +695,6 @@
5d7b376
 		gui_show_legend_page(FALSE);
5d7b376
 	theme_register_callback(G_CALLBACK(gui_theme_changed));
5d7b376
 
5d7b376
-	/* Tab page name, shown for the splash screen */
5d7b376
-	lbl = gtk_label_new(_("Welcome to Pioneers"));
5d7b376
-	gtk_widget_show(lbl);
5d7b376
-	splash_page = splash_build_page();
5d7b376
-	gtk_notebook_insert_page(GTK_NOTEBOOK(map_notebook),
5d7b376
-				 splash_page, lbl, SPLASH_PAGE);
5d7b376
-
5d7b376
 	return map_notebook;
5d7b376
 }
5d7b376
 
cbd68bb
@@ -892,7 +837,6 @@
5d7b376
 	gtk_paned_pack1(GTK_PANED(vpaned), build_map_panel(), TRUE, TRUE);
5d7b376
 
cbd68bb
 	chat_panel = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
5d7b376
-	gui_show_splash_page(TRUE, chat_panel);
5d7b376
 
5d7b376
 	panel = chat_build_panel();
5d7b376
 	frontend_gui_register(panel, GUI_DISCONNECT, NULL);
cbd68bb
diff -uNr pioneers-15.3-orig/client/gtk/offline.c pioneers-15.3/client/gtk/offline.c
cbd68bb
--- pioneers-15.3-orig/client/gtk/offline.c	2014-02-09 10:45:50.000000000 -0500
cbd68bb
+++ pioneers-15.3/client/gtk/offline.c	2014-10-27 11:32:18.931142821 -0400
cbd68bb
@@ -93,7 +93,6 @@
cbd68bb
 				   && !connectable);
cbd68bb
 		break;
cbd68bb
 	case GUI_CONNECT_TRY:
cbd68bb
-		gui_show_splash_page(FALSE, NULL);
cbd68bb
 		gui_set_net_status(_("Connecting"));
cbd68bb
 
cbd68bb
 		connectable = FALSE;
cbd68bb
diff -uNr pioneers-15.3-orig/client/help/C/pioneers-C.omf pioneers-15.3/client/help/C/pioneers-C.omf
cbd68bb
--- pioneers-15.3-orig/client/help/C/pioneers-C.omf	2005-06-30 02:46:06.000000000 -0400
cbd68bb
+++ pioneers-15.3/client/help/C/pioneers-C.omf	2014-10-27 11:31:18.121313977 -0400
5d7b376
@@ -17,8 +17,8 @@
5d7b376
     <version identifier="1.0" date="2003-10-07" description="Updated to full OMF format"/>
5d7b376
     <subject category="GNOME|Games"/>
5d7b376
     <description>
5d7b376
-      Pioneers is an Internet playable implementation of
5d7b376
-	  the Settlers of Catan board game.
cbd68bb
+      Pioneers is a computerized version of a well known strategy
cbd68bb
+      board game. The goal of the game is to colonize an island.
5d7b376
     </description>
5d7b376
     <type>
5d7b376
      user's guide
cbd68bb
diff -uNr pioneers-15.3-orig/client/help/C/pioneers.xml pioneers-15.3/client/help/C/pioneers.xml
cbd68bb
--- pioneers-15.3-orig/client/help/C/pioneers.xml	2014-05-20 16:57:22.000000000 -0400
cbd68bb
+++ pioneers-15.3/client/help/C/pioneers.xml	2014-10-27 11:31:18.121313977 -0400
cbd68bb
@@ -31,9 +31,10 @@
cbd68bb
       <simplesect id="Authors">
cbd68bb
         <title>Authors and History</title>
cbd68bb
         <para>
5d7b376
-        Pioneers is a GNOME game based upon the board game Settlers of Catan
5d7b376
-        created by Mayfair Games. Pioneers was originally authored by Dave
5d7b376
-        Cole in the spring and summer of 1999, under the name Gnocatan.
cbd68bb
+	  Pioneers is a computerized version of a well known strategy
cbd68bb
+	  board game. The goal of the game is to colonize an
cbd68bb
+	  island. The players play the first colonists hence the name
cbd68bb
+	  pioneers.
cbd68bb
 	Dave wanted to be able to
5d7b376
         play the game without having to travel, so he developed a computer
5d7b376
         implementation of the game. The Pioneers project stalled in the late
cbd68bb
@@ -52,9 +53,6 @@
5d7b376
 	on the user interface.
5d7b376
       </para>
cbd68bb
         <para>
5d7b376
-        In June 2005 the project was renamed from Gnocatan to Pioneers.
5d7b376
-      </para>
cbd68bb
-        <para>
5d7b376
         To be continued...
5d7b376
       </para>
cbd68bb
       </simplesect>
cbd68bb
diff -uNr pioneers-15.3-orig/common/gtk/aboutbox.c pioneers-15.3/common/gtk/aboutbox.c
cbd68bb
--- pioneers-15.3-orig/common/gtk/aboutbox.c	2011-11-07 17:00:35.000000000 -0500
cbd68bb
+++ pioneers-15.3/common/gtk/aboutbox.c	2014-10-27 11:31:18.121313977 -0400
5d7b376
@@ -37,10 +37,9 @@
5d7b376
 
5d7b376
 void aboutbox_display(const gchar * title, const gchar ** authors)
5d7b376
 {
5d7b376
-	GtkWidget *splash = NULL, *view = NULL;
5d7b376
+	GtkWidget *view = NULL;
5d7b376
 	GtkTextBuffer *buffer = NULL;
5d7b376
 	GtkTextIter iter;
5d7b376
-	gchar *imagefile = NULL;
5d7b376
 	gint i;
5d7b376
 
5d7b376
 	if (about != NULL) {
5d7b376
@@ -58,23 +57,11 @@
5d7b376
 	g_signal_connect(G_OBJECT(about), "destroy",
5d7b376
 			 G_CALLBACK(gtk_widget_destroyed), &about);
5d7b376
 
5d7b376
-	imagefile = g_build_filename(DATADIR, "pixmaps", "pioneers",
5d7b376
-				     "splash.png", NULL);
5d7b376
-	splash = gtk_image_new_from_file(imagefile);
5d7b376
-	g_free(imagefile);
5d7b376
-
5d7b376
-	gtk_box_pack_start(GTK_BOX
5d7b376
-			   (gtk_dialog_get_content_area
5d7b376
-			    (GTK_DIALOG(about))), splash, FALSE, FALSE, 0);
5d7b376
-
5d7b376
 	buffer = gtk_text_buffer_new(NULL);
5d7b376
 	gtk_text_buffer_get_start_iter(buffer, &iter);
5d7b376
 	gtk_text_buffer_create_tag(buffer, "bold",
5d7b376
 				   "weight", PANGO_WEIGHT_BOLD, NULL);
5d7b376
 
5d7b376
-	gtk_text_buffer_insert(buffer, &iter,
5d7b376
-			       _("Pioneers is based upon the excellent\n"
5d7b376
-				 "Settlers of Catan board game.\n"), -1);
5d7b376
 	gtk_text_buffer_insert_with_tags_by_name(buffer, &iter,
5d7b376
 						 _("Version:"), -1,
5d7b376
 						 "bold", NULL);
cbd68bb
diff -uNr pioneers-15.3-orig/docs/pioneers.6 pioneers-15.3/docs/pioneers.6
cbd68bb
--- pioneers-15.3-orig/docs/pioneers.6	2013-02-24 17:35:29.000000000 -0500
cbd68bb
+++ pioneers-15.3/docs/pioneers.6	2014-10-27 11:31:18.122313957 -0400
5d7b376
@@ -1,6 +1,6 @@
cbd68bb
 .TH pioneers 6 "Februari 24, 2013" "pioneers"
5d7b376
 .SH NAME
5d7b376
-pioneers \- network implementation of Settlers of Catan
5d7b376
+pioneers \- Turnbased board strategy game (colonize an island)
5d7b376
 
5d7b376
 .SH SYNOPSIS
5d7b376
 .B pioneers
5d7b376
@@ -18,8 +18,9 @@
5d7b376
 command.
5d7b376
 .PP
5d7b376
 .B Pioneers
5d7b376
-is an implementation of the popular, award-winning "Settlers of Catan"
5d7b376
-board game for the GNOME desktop environment.  It uses a client/server
5d7b376
+is a computerized version of a well known strategy board game. The
5d7b376
+goal of the game is to colonize an island. The players play the first
5d7b376
+colonists hence the name pioneers. It uses a client/server
5d7b376
 model for networked play of between two and eight players.  You will
5d7b376
 need to connect to a machine running either \fBpioneers-server-gtk\fP
5d7b376
 or \fBpioneers-server-console\fP to play.  An AI client, \fBpioneersai\fP,
cbd68bb
diff -uNr pioneers-15.3-orig/docs/pioneersai.6 pioneers-15.3/docs/pioneersai.6
cbd68bb
--- pioneers-15.3-orig/docs/pioneersai.6	2014-05-20 16:57:22.000000000 -0400
cbd68bb
+++ pioneers-15.3/docs/pioneersai.6	2014-10-27 11:31:18.122313957 -0400
5d7b376
@@ -25,8 +25,9 @@
5d7b376
 command.
5d7b376
 .PP
5d7b376
 .B Pioneers
5d7b376
-is an emulation of the Settlers of Catan board game which can
5d7b376
-be played over the internet. This is a computer player
5d7b376
+is a computerized version of a well known strategy board game. The
5d7b376
+goal of the game is to colonize an island. The players play the first
5d7b376
+colonists hence the name pioneers. This is an AI player
5d7b376
 implementation that can take part in Pioneers games.
5d7b376
 
5d7b376
 .SH OPTIONS
cbd68bb
diff -uNr pioneers-15.3-orig/docs/pioneers-metaserver.6 pioneers-15.3/docs/pioneers-metaserver.6
cbd68bb
--- pioneers-15.3-orig/docs/pioneers-metaserver.6	2013-09-03 02:30:23.000000000 -0400
cbd68bb
+++ pioneers-15.3/docs/pioneers-metaserver.6	2014-10-27 11:31:18.122313957 -0400
5d7b376
@@ -8,8 +8,10 @@
5d7b376
 
5d7b376
 .SH DESCRIPTION
5d7b376
 .B Pioneers
5d7b376
-is an implementation of the popular, award-winning "Settlers of Catan"
5d7b376
-board game.  It uses a client/server model for networked play. This program
5d7b376
+is a computerized version of a well known strategy board game. The
5d7b376
+goal of the game is to colonize an island. The players play the first
cbd68bb
+colonists hence the name pioneers. It uses a client/server model for
cbd68bb
+networked play. This program
5d7b376
 provides a piece of network infrastructure that helps match pioneers clients to
5d7b376
 pioneers servers. Casual players of pioneers probably do not need to run this
5d7b376
 program.
cbd68bb
diff -uNr pioneers-15.3-orig/docs/pioneers-server-console.6 pioneers-15.3/docs/pioneers-server-console.6
cbd68bb
--- pioneers-15.3-orig/docs/pioneers-server-console.6	2013-02-24 17:35:29.000000000 -0500
cbd68bb
+++ pioneers-15.3/docs/pioneers-server-console.6	2014-10-27 11:31:18.122313957 -0400
5d7b376
@@ -12,8 +12,9 @@
5d7b376
 command.
5d7b376
 .PP
5d7b376
 .B Pioneers
5d7b376
-is an implementation of the popular, award-winning "Settlers of Catan"
5d7b376
-board game for the GNOME desktop environment.  It uses a client/server
5d7b376
+is a computerized version of a well known strategy board game. The
5d7b376
+goal of the game is to colonize an island. The players play the first
5d7b376
+colonists hence the name pioneers. It uses a client/server
5d7b376
 model for networked play of between two and eight players.  This program
5d7b376
 provides a console-only server that \fBpioneers\fP clients can connect
5d7b376
 to.
cbd68bb
diff -uNr pioneers-15.3-orig/docs/pioneers-server-gtk.6 pioneers-15.3/docs/pioneers-server-gtk.6
cbd68bb
--- pioneers-15.3-orig/docs/pioneers-server-gtk.6	2013-02-24 17:35:29.000000000 -0500
cbd68bb
+++ pioneers-15.3/docs/pioneers-server-gtk.6	2014-10-27 11:31:18.122313957 -0400
5d7b376
@@ -12,8 +12,9 @@
5d7b376
 command.
5d7b376
 .PP
5d7b376
 .B Pioneers
5d7b376
-is an implementation of the popular, award-winning "Settlers of Catan"
5d7b376
-board game for the GNOME desktop environment.  It uses a client/server
5d7b376
+is a computerized version of a well known strategy board game. The
5d7b376
+goal of the game is to colonize an island. The players play the first
5d7b376
+colonists hence the name pioneers. It uses a client/server
5d7b376
 model for networked play of between two and eight players.  This program
5d7b376
 provides a GUI-configurable stand-alone server which you connect to
5d7b376
 from 
cbd68bb
diff -uNr pioneers-15.3-orig/po/af.po pioneers-15.3/po/af.po
cbd68bb
--- pioneers-15.3-orig/po/af.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/af.po	2014-10-27 11:31:18.123313938 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
 # Petri Jooste <petri.jooste@gmail.com>, 2006, 2013.
cbd68bb
 # Petri Jooste <Petri.Jooste@nwu.ac.za>, 2006.
cbd68bb
@@ -2529,14 +2529,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Geen spel beskikbaar\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioniers is gebaseer op die uitstekende\n"
cbd68bb
-"bordspel Settlers of Catan.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Weergawe:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/ca.po pioneers-15.3/po/ca.po
cbd68bb
--- pioneers-15.3-orig/po/ca.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/ca.po	2014-10-27 11:31:18.124313919 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
 #
cbd68bb
 # Copyright (C) Jaume Badiella <myotis@drac.com>, 2013
cbd68bb
@@ -2530,14 +2530,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "No hi ha partides disponibles.\n"
cbd68bb
 
cbd68bb
-#: ../common/gtk/aboutbox.c:76
cbd68bb
-msgid ""
cbd68bb
-"Pioneers is based upon the excellent\n"
cbd68bb
-"Settlers of Catan board game.\n"
cbd68bb
-msgstr ""
cbd68bb
-"Pioneers està basat en l'excel·lent\n"
cbd68bb
-"joc de taulell 'Els Colons de Catan'.\n"
cbd68bb
-
cbd68bb
 #: ../common/gtk/aboutbox.c:79
cbd68bb
 msgid "Version:"
cbd68bb
 msgstr "Versió:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/cs.po pioneers-15.3/po/cs.po
cbd68bb
--- pioneers-15.3-orig/po/cs.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/cs.po	2014-10-27 11:31:18.124313919 -0400
cbd68bb
@@ -3,7 +3,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 0.12.3\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2010-03-28 01:29+0000\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:29-0400\n"
cbd68bb
 "Last-Translator: Ladislav Dobias <Unknown>\n"
cbd68bb
 "Language-Team: \n"
cbd68bb
 "Language: cs\n"
cbd68bb
@@ -2528,14 +2528,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Promiňte, dostupno je pouze %s.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers je založeno na skvělé\n"
5d7b376
-"deskové hře Osadníci z Katanu.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Verze:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/da.po pioneers-15.3/po/da.po
cbd68bb
--- pioneers-15.3-orig/po/da.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/da.po	2014-10-27 11:31:18.125313900 -0400
cbd68bb
@@ -8,7 +8,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 0.11.3\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2008-04-29 09:36+0000\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:26-0400\n"
cbd68bb
 "Last-Translator: carson\n"
cbd68bb
 "Language-Team: Danish <da@li.org>\n"
cbd68bb
 "Language: da\n"
cbd68bb
@@ -2536,14 +2536,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Beklager, %s tilgængelig.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers er baseret på det fantastiske\n"
5d7b376
-"Settlers og Catan brædtspil.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Version:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/de.po pioneers-15.3/po/de.po
cbd68bb
--- pioneers-15.3-orig/po/de.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/de.po	2014-10-27 11:31:18.126313880 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # Copyright (C) 1999-2001 Dave Cole
cbd68bb
 # Copyright (C) 2000-2002 Andy Heroff
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
@@ -2537,14 +2537,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Keine Spiele verfügbar\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers basiert auf dem exzellenten\n"
5d7b376
-"Brettspiel 'Die Siedler von Catan'.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Version:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/en_GB.po pioneers-15.3/po/en_GB.po
cbd68bb
--- pioneers-15.3-orig/po/en_GB.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/en_GB.po	2014-10-27 11:31:18.126313880 -0400
cbd68bb
@@ -9,7 +9,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 15.3\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2013-09-08 17:12+0100\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:26-0400\n"
cbd68bb
 "Last-Translator: Roland Clobus <rclobus@rclobus.nl>\n"
cbd68bb
 "Language-Team: English (United Kingdom) <en_GB@li.org>\n"
cbd68bb
 "Language: en_GB\n"
cbd68bb
@@ -2528,14 +2528,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "No games available\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Version:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/es.po pioneers-15.3/po/es.po
cbd68bb
--- pioneers-15.3-orig/po/es.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/es.po	2014-10-27 11:31:18.127313861 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # Copyright (C) 1999-2001 Dave Cole
cbd68bb
 # Copyright (C) 2000-2002 Andy Heroff
cbd68bb
 # Copyright (C) 2006 Marco Antonio Giraldo <m.a.giraldo@rug.nl>
cbd68bb
@@ -2536,14 +2536,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Lo siento, %s disponible.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers está basado en el excelente\n"
5d7b376
-"juego de mesa 'Los fundadores de Catán'.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Versión:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/fr.po pioneers-15.3/po/fr.po
cbd68bb
--- pioneers-15.3-orig/po/fr.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/fr.po	2014-10-27 11:31:18.128313842 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # Copyright (C) 1999-2001 Dave Cole
cbd68bb
 # Copyright (C) 2000-2002 Andy Heroff
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
@@ -2541,14 +2541,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Aucune partie disponible\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers est basé sur l'excellent\n"
5d7b376
-"jeu de plateau 'Les colons de Catane'.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Version :"
cbd68bb
diff -uNr pioneers-15.3-orig/po/gl.po pioneers-15.3/po/gl.po
cbd68bb
--- pioneers-15.3-orig/po/gl.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/gl.po	2014-10-27 11:31:18.129313823 -0400
cbd68bb
@@ -8,7 +8,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 0.12.3\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2010-04-05 08:14+0000\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:27-0400\n"
cbd68bb
 "Last-Translator: Indalecio Freiría Santos <ifreiria@gmail.com>\n"
cbd68bb
 "Language-Team: Galician <gl@li.org>\n"
cbd68bb
 "Language: gl\n"
cbd68bb
@@ -2537,14 +2537,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Sintoo, %s dispoñíbel.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneiros está baseado no excelente\n"
5d7b376
-"xogo de mesa «Os fundadores de Catan».\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Versión:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/hu.po pioneers-15.3/po/hu.po
cbd68bb
--- pioneers-15.3-orig/po/hu.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/hu.po	2014-10-27 11:31:18.129313823 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # Copyright (C) 1999-2001 Dave Cole
cbd68bb
 # Copyright (C) 2000-2002 Andy Heroff
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
@@ -2542,14 +2542,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Bocs, %s használható.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"A Pioneers a kíváló táblajáték a\n"
5d7b376
-"Catan telepesei alapján készült.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Verzió:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/it.po pioneers-15.3/po/it.po
cbd68bb
--- pioneers-15.3-orig/po/it.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/it.po	2014-10-27 11:31:18.130313803 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # Copyright (C) 1999-2001 Dave Cole
cbd68bb
 # Copyright (C) 2000-2002 Andy Heroff
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
@@ -2532,14 +2532,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Nessuna partita disponibile\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers è basato sull'eccellente gioco\n"
5d7b376
-"I Coloni di Catan.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Versione:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/ja.po pioneers-15.3/po/ja.po
cbd68bb
--- pioneers-15.3-orig/po/ja.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/ja.po	2014-10-27 11:31:18.130313803 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # Copyright (C) 1999-2001 Dave Cole
cbd68bb
 # Copyright (C) 2000-2002 Andy Heroff
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
@@ -2524,14 +2524,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "利用可能なゲームがない\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
cbd68bb
-"Pioneers は「カタンの開拓者たち」という\n"
cbd68bb
-"すばらしいボードゲームが元になっています。\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
cbd68bb
 msgstr "バージョン:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/nl.po pioneers-15.3/po/nl.po
cbd68bb
--- pioneers-15.3-orig/po/nl.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/nl.po	2014-10-27 11:31:18.131313784 -0400
cbd68bb
@@ -9,7 +9,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 15.3\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2013-09-08 18:00+0100\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:26-0400\n"
cbd68bb
 "Last-Translator: Roland Clobus <rclobus@rclobus.nl>\n"
cbd68bb
 "Language-Team: Bas Wijnen <shevek@fmf.nl> Roland Clobus 
cbd68bb
 "nl>\n"
cbd68bb
@@ -2531,14 +2531,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Geen spellen beschikbaar\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioniers is gebaseerd op\n"
5d7b376
-"het bordspel \"De kolonisten van Catan\".\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Versie:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/pt.po pioneers-15.3/po/pt.po
cbd68bb
--- pioneers-15.3-orig/po/pt.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/pt.po	2014-10-27 11:31:18.132313765 -0400
cbd68bb
@@ -1,4 +1,4 @@
cbd68bb
-# Pioneers - Settlers of Catan for GNOME.
cbd68bb
+# Pioneers - Turnbased board strategy game (colonize an island)
cbd68bb
 # This file is distributed under the same license as the pioneers package.
cbd68bb
 # Filipe Roque, 2007-2012
cbd68bb
 #
cbd68bb
@@ -2532,14 +2532,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Desculpa, %s disponível.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers é baseado no excelente\n"
5d7b376
-"jogo de tabuleiro 'Os Descobridores de Catan'.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Versão:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/sv.po pioneers-15.3/po/sv.po
cbd68bb
--- pioneers-15.3-orig/po/sv.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/sv.po	2014-10-27 11:31:18.132313765 -0400
cbd68bb
@@ -9,7 +9,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 0.12.3\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2011-10-30 15:06+0100\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:26-0400\n"
cbd68bb
 "Last-Translator: Daniel Nylander <yeager@ubuntu.com>\n"
cbd68bb
 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
cbd68bb
 "Language: sv\n"
cbd68bb
@@ -2534,14 +2534,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "Tyvärr, %s tillgänglig.\n"
5d7b376
 
5d7b376
-#: ../common/gtk/aboutbox.c:76
5d7b376
-msgid ""
5d7b376
-"Pioneers is based upon the excellent\n"
5d7b376
-"Settlers of Catan board game.\n"
5d7b376
-msgstr ""
5d7b376
-"Pioneers är baserad på det utmärkta\n"
5d7b376
-"brädspelet Settlers of Catan.\n"
5d7b376
-
5d7b376
 #: ../common/gtk/aboutbox.c:79
5d7b376
 msgid "Version:"
5d7b376
 msgstr "Version:"
cbd68bb
diff -uNr pioneers-15.3-orig/po/zh_CN.po pioneers-15.3/po/zh_CN.po
cbd68bb
--- pioneers-15.3-orig/po/zh_CN.po	2014-10-26 10:05:37.000000000 -0400
cbd68bb
+++ pioneers-15.3/po/zh_CN.po	2014-10-27 11:31:18.133313746 -0400
cbd68bb
@@ -8,7 +8,7 @@
cbd68bb
 "Project-Id-Version: Pioneers 15.1\n"
cbd68bb
 "Report-Msgid-Bugs-To: \n"
cbd68bb
 "POT-Creation-Date: 2014-10-26 15:04+0100\n"
cbd68bb
-"PO-Revision-Date: 2012-01-12 13:22+0800\n"
cbd68bb
+"PO-Revision-Date: 2014-10-27 11:24-0400\n"
cbd68bb
 "Last-Translator: Gerald <gera2ld@163.com>\n"
cbd68bb
 "Language-Team: Chinese (Simplified) <gera2ld@163.com>\n"
cbd68bb
 "Language: zh_CN\n"
cbd68bb
@@ -2512,14 +2512,6 @@
cbd68bb
 msgid "No games available\n"
cbd68bb
 msgstr "没有可以选择的游戏\n"
cbd68bb
 
cbd68bb
-#: ../common/gtk/aboutbox.c:76
cbd68bb
-msgid ""
cbd68bb
-"Pioneers is based upon the excellent\n"
cbd68bb
-"Settlers of Catan board game.\n"
cbd68bb
-msgstr ""
cbd68bb
-"Pioneers 是在优秀的桌游卡坦岛(Settlers of Catan)\n"
cbd68bb
-"的基础上建立起来的。\n"
cbd68bb
-
cbd68bb
 #: ../common/gtk/aboutbox.c:79
cbd68bb
 msgid "Version:"
cbd68bb
 msgstr "版本:"
cbd68bb
diff -uNr pioneers-15.3-orig/README pioneers-15.3/README
cbd68bb
--- pioneers-15.3-orig/README	2007-08-05 09:14:39.000000000 -0400
cbd68bb
+++ pioneers-15.3/README	2014-10-27 11:31:18.133313746 -0400
5d7b376
@@ -1,8 +1,8 @@
5d7b376
 Pioneers
5d7b376
 
5d7b376
-Pioneers is an Internet playable implementation of the Settlers of
5d7b376
-Catan board game.  The aim is to remain as faithful to the board game
5d7b376
-as is possible.
cbd68bb
+Pioneers is a computerized version of a well known strategy board
cbd68bb
+game. The goal of the game is to colonize an island. The players play
cbd68bb
+the first colonists hence the name pioneers.
5d7b376
 
5d7b376
 Playing the Game
5d7b376
 ================