20100212
[gdash.git] / src / about.c
blobb9ea6d8a4445fffad2a04f55e6fa73bea5feba08
1 /*
2 * Copyright (c) 2007, 2008, 2009, Czirkos Zoltan <cirix@fw.hu>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <glib.h>
18 #include <glib/gi18n.h>
19 #include "config.h"
21 const char *gd_about_license=
22 "Copyright (c) 2007, 2008, 2009, Czirkos Zoltan <cirix@fw.hu>"
23 "\n"
24 "Permission to use, copy, modify, and/or distribute this software for any "
25 "purpose with or without fee is hereby granted, provided that the above "
26 "copyright notice and this permission notice appear in all copies."
27 "\n"
28 "THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES "
29 "WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF "
30 "MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR "
31 "ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES "
32 "WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN "
33 "ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF "
34 "OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.";
37 const char *gd_about_artists[]={ "CWS", NULL };
38 const char *gd_about_authors[]={ "Czirkos Zoltan <cirix@fw.hu>",
39 "Scale2x: Andrea Mazzoleni",
40 #ifdef USE_SDL
41 "SDL: Sam Lantinga <slouken@libsdl.org>",
42 "SDL_gfx rotozoom: A. Schiffler",
43 "SDL png saver: Philip D. Bober <wildfire1138@mchsi.com>",
44 #endif
45 NULL };
46 const char *gd_about_documenters[]={ "About original engine: LogicDeLuxe", "Playing hints: Sendy", NULL };
47 const char *gd_about_comments=N_("Classic game similar to Emerald Mines.\nCollect diamonds and find exit!");
48 const char *gd_about_translator_credits=N_("translator-credits");
49 const char *gd_about_website="http://jutas.eet.bme.hu/~cirix/gdash";