Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Annotation of /trunk/src/translations.h
Parent Directory
|
Revision Log
Revision 375 -
(hide annotations)
(download)
(as text)
Sat Apr 24 12:42:57 2010 UTC (14 years, 11 months ago) by amb
File MIME type: text/x-chdr
File size: 1791 byte(s)
Sat Apr 24 12:42:57 2010 UTC (14 years, 11 months ago) by amb
File MIME type: text/x-chdr
File size: 1791 byte(s)
Add the copyright information into the translations.xml file instead of the separate copyright.txt file.
1 | amb | 361 | /*************************************** |
2 | amb | 375 | $Header: /home/amb/CVS/routino/src/translations.h,v 1.2 2010-04-24 12:42:38 amb Exp $ |
3 | amb | 361 | |
4 | Load the translations from a file and the functions for handling them. | ||
5 | |||
6 | Part of the Routino routing software. | ||
7 | ******************/ /****************** | ||
8 | This file Copyright 2010 Andrew M. Bishop | ||
9 | |||
10 | This program is free software: you can redistribute it and/or modify | ||
11 | it under the terms of the GNU Affero 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 | This program 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 Affero General Public License for more details. | ||
19 | |||
20 | You should have received a copy of the GNU Affero General Public License | ||
21 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
22 | ***************************************/ | ||
23 | |||
24 | |||
25 | #ifndef TRANSLATIONS_H | ||
26 | #define TRANSLATIONS_H /*+ To stop multiple inclusions. +*/ | ||
27 | |||
28 | /* Variable declations */ | ||
29 | |||
30 | amb | 375 | extern char *translate_copyright_creator[2]; |
31 | extern char *translate_copyright_source[2]; | ||
32 | extern char *translate_copyright_license[2]; | ||
33 | |||
34 | amb | 361 | extern char *translate_heading[9]; |
35 | extern char *translate_turn[9]; | ||
36 | |||
37 | extern char *translate_gpx_desc; | ||
38 | extern char *translate_gpx_name; | ||
39 | extern char *translate_gpx_step; | ||
40 | extern char *translate_gpx_final; | ||
41 | |||
42 | extern char *translate_gpx_shortest; | ||
43 | extern char *translate_gpx_quickest; | ||
44 | |||
45 | extern char *translate_gpx_start; | ||
46 | extern char *translate_gpx_inter; | ||
47 | extern char *translate_gpx_trip; | ||
48 | extern char *translate_gpx_finish; | ||
49 | |||
50 | /* Functions */ | ||
51 | |||
52 | int ParseXMLTranslations(const char *filename,const char *language); | ||
53 | |||
54 | #endif /* TRANSLATIONS_H */ |
Properties
Name | Value |
---|---|
cvs:description | Header file for translations. |