Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/xml/routino-translations.xml
Parent Directory
|
Revision Log
Revision 426 -
(show annotations)
(download)
(as text)
Sat Jun 26 19:26:47 2010 UTC (14 years, 9 months ago) by amb
File MIME type: application/xml
File size: 4971 byte(s)
Sat Jun 26 19:26:47 2010 UTC (14 years, 9 months ago) by amb
File MIME type: application/xml
File size: 4971 byte(s)
Changed URLs to http://www.routino.org/
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | |
3 | <!-- ============================================================ |
4 | $Header: /home/amb/CVS/routino/xml/routino-translations.xml,v 1.4 2010-06-26 19:26:47 amb Exp $ |
5 | |
6 | An XML format file containing Routino output translations. |
7 | |
8 | Part of the Routino routing software. |
9 | ============================================================ |
10 | This file Copyright 2010 Andrew M. Bishop |
11 | |
12 | This program is free software: you can redistribute it and/or modify |
13 | it under the terms of the GNU Affero General Public License as published by |
14 | the Free Software Foundation, either version 3 of the License, or |
15 | (at your option) any later version. |
16 | ============================================================ --> |
17 | |
18 | <routino-translations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
19 | xsi:noNamespaceSchemaLocation="http://www.routino.org/xml/routino-translations.xsd"> |
20 | |
21 | <language lang="en"> |
22 | |
23 | <!-- Copyright of the data being routed, not of this file --> |
24 | <copyright> |
25 | <creator string="Creator" text="Routino - http://www.routino.org/" /> |
26 | <source string="Source" text="Based on OpenStreetMap data from http://www.openstreetmap.org/" /> |
27 | <license string="License" text="http://creativecommons.org/licenses/by-sa/2.0/" /> |
28 | </copyright> |
29 | |
30 | <!-- Turn directions, 0 = ahead, -2 = left, +/-4 = behind, +2 = right --> |
31 | <turn direction="-4" string="Very sharp left" /> |
32 | <turn direction="-3" string="Sharp left" /> |
33 | <turn direction="-2" string="Left" /> |
34 | <turn direction="-1" string="Slight left" /> |
35 | <turn direction="0" string="Straight on" /> |
36 | <turn direction="1" string="Slight right" /> |
37 | <turn direction="2" string="Right" /> |
38 | <turn direction="3" string="Sharp right" /> |
39 | <turn direction="4" string="Very sharp right" /> |
40 | |
41 | <!-- Heading directions, 0 = North, -2 = West, +/-4 = South, +2 = East --> |
42 | <heading direction="-4" string="South" /> |
43 | <heading direction="-3" string="South-West" /> |
44 | <heading direction="-2" string="West" /> |
45 | <heading direction="-1" string="North-West" /> |
46 | <heading direction="0" string="North" /> |
47 | <heading direction="1" string="North-East" /> |
48 | <heading direction="2" string="East" /> |
49 | <heading direction="3" string="South-East" /> |
50 | <heading direction="4" string="South" /> |
51 | |
52 | <!-- Highway names --> |
53 | <highway type="motorway" string="motorway" /> |
54 | <highway type="trunk" string="trunk road" /> |
55 | <highway type="primary" string="primary road" /> |
56 | <highway type="secondary" string="secondary road" /> |
57 | <highway type="tertiary" string="tertiary road" /> |
58 | <highway type="unclassified" string="unclassified road" /> |
59 | <highway type="residential" string="residential road" /> |
60 | <highway type="service" string="service road" /> |
61 | <highway type="track" string="track" /> |
62 | <highway type="cycleway" string="cycleway" /> |
63 | <highway type="path" string="path" /> |
64 | <highway type="steps" string="steps" /> |
65 | |
66 | <!-- The type of route --> |
67 | <route type="shortest" string="Shortest" /> <!-- For the description and route name --> |
68 | <route type="quickest" string="Quickest" /> <!-- For the description and route name --> |
69 | |
70 | <!-- HTML output --> |
71 | <output-html> |
72 | <waypoint type="waypoint" string="Waypoint" /> <!-- For the chosen waypoints --> |
73 | <waypoint type="junction" string="Junction" /> <!-- For the interesting junctions --> |
74 | |
75 | <title text="%s Route" /> <!-- %s = [shortest|quickest] --> |
76 | |
77 | <start string="Start" text="At %s, head %s" /> <!-- 1st %s = [waypoint|junction], 2nd %s = [heading] --> |
78 | <node string="At" text="%s, go %s heading %s" /> <!-- 1st %s = [waypoint|junction], 2nd %s = [turn], 3rd %s = [heading] --> |
79 | <segment string="Follow" text="%s for %.3f km, %.1f min" /> <!-- 1st %s = street name --> |
80 | <stop string="Stop" text="At %s" /> <!-- 1st %s = [waypoint|junction] --> |
81 | <total string="Total" text="%.1f km, %.0f minutes" /> |
82 | </output-html> |
83 | |
84 | <!-- GPX output --> |
85 | <output-gpx> |
86 | <waypoint type="start" string="START" /> <!-- For the first route waypoint --> |
87 | <waypoint type="inter" string="INTER" /> <!-- For the intermediate route waypoints --> |
88 | <waypoint type="trip" string="TRIP" /> <!-- For the other route points --> |
89 | <waypoint type="finish" string="FINISH"/> <!-- For the last route waypoint --> |
90 | |
91 | <desc text="%s route between 'start' and 'finish' waypoints" /> <!-- %s = [shortest|quickest] --> |
92 | <name text="%s route" /> <!-- %s = [shortest|quickest] --> |
93 | <step text="%s on '%s' for %.3f km, %.1f min" /> <!-- 1st %s = [turn], 2nd %s = street name --> |
94 | <final text="Total Journey %.1f km, %.0f minutes" /> |
95 | </output-gpx> |
96 | |
97 | </language> |
98 | |
99 | </routino-translations> |
Properties
Name | Value |
---|---|
cvs:description | Routino translations. |