1 // ----------------------------------------------------------------------------
2 //
3 //	htmlstrings.cxx
4 //
5 // Copyright (C) 2008
6 //		Dave Freese, W1HKJ
7 //
8 // This file is part of fldigi.
9 //
10 // Fldigi is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Fldigi is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with fldigi.  If not, see <http://www.gnu.org/licenses/>.
22 // ----------------------------------------------------------------------------
23 
24 #include <config.h>
25 
26 #include "dialogs/guide.cxx"
27 
28 const char* szAbout =
29 "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n\
30 <html>\n\
31 <head>\n\
32   <title>About</title>\n\
33 </head>\n\
34 <BODY BGCOLOR=FFFFCO TEXT=101010>\n\
35 <font size=\"0\" face=\"Verdana, Arial, Helvetica\">\n\
36 <CENTER>\n\
37 <H3><I>Fldigi " PACKAGE_VERSION "</I></H3>\n\
38 <br>\n\
39 Fast and Light DIGItal modem program\n\
40 </CENTER>\n\
41 <P>\n\
42 Copyright \251 2008-2014\n\
43 <P>\n\
44 Distributed under the GNU General Public License version 3 or later.<br>\n\
45 This is free software: you are free to change and redistribute it.<br>\n\
46 There is NO WARRANTY, to the extent permitted by law.\n\
47 <H4>Programmers:</H4>\n\
48 <pre>\
49 Dave Freese        W1HKJ\n\
50 Stelios Bounanos   M0GLD\n\
51 Rem\355 Chateauneu    F4ECW\n\
52 John Douyere       VK2ETA\n\
53 Stefan Fendt       DL1SMF\n\
54 Leigh Klotz        WA5ZNU\n\
55 John Phelps        KL4YFD\n\
56 Andrej Lajovic     S57LN\n\
57 Rik van Riel       AB1KW\n\
58 Robert Stiles      KK5VD\n\
59 </pre>\
60 <H4>Beginners' Guide:</H4>\n\
61 <pre>\
62 Murray Greenman      ZL1BPU<br>\n\
63 </pre>\
64 <H4>Localization:</H4>\n\
65 <pre>\
66 Espa\361ol     Spanish      Pavel Milanes Costa CO7WT\n\
67                          Christian W. Correa HK4QWC\n\
68 Deutsch     German       Marc Richter        DF2MR\n\
69 Fran\347ais    French       Bernard Seront      F4GAR\n\
70 Italiano    Italian      Emanuale Repetto    IZ1UKX\n\
71 Język       Polish       Roman Bagiński      SP4JEU\n\
72 Nederlands  Dutch        Peter van der Post  PA1POS\n\
73 Pусский     Russian      Alexandr Kalugin    RX9CDR\n\
74 Ελληνικά    Greek        Haris Andrianos     SV1GRB\n\
75 </pre>\
76 </body>\n\
77 </html>\n\
78 ";
79 
80