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