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 411 -
(show annotations)
(download)
(as text)
Sat May 29 13:54:43 2010 UTC (14 years, 9 months ago) by amb
File MIME type: application/xml
File size: 4942 byte(s)
Sat May 29 13:54:43 2010 UTC (14 years, 9 months ago) by amb
File MIME type: application/xml
File size: 4942 byte(s)
Translate the names given to unnamed roads (the highway type).
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | |
3 | <!-- ============================================================ |
4 | $Header: /home/amb/CVS/routino/xml/routino-translations.xml,v 1.3 2010-05-29 13:54:43 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" xsi:noNamespaceSchemaLocation="routino-translations.xsd"> |
19 | |
20 | <language lang="en"> |
21 | |
22 | <!-- Copyright of the data being routed, not of this file --> |
23 | <copyright> |
24 | <creator string="Creator" text="Routino - http://www.gedanken.org.uk/mapping/routino/" /> |
25 | <source string="Source" text="Based on OpenStreetMap data from http://www.openstreetmap.org/" /> |
26 | <license string="License" text="http://creativecommons.org/licenses/by-sa/2.0/" /> |
27 | </copyright> |
28 | |
29 | <!-- Turn directions, 0 = ahead, -2 = left, +/-4 = behind, +2 = right --> |
30 | <turn direction="-4" string="Very sharp left" /> |
31 | <turn direction="-3" string="Sharp left" /> |
32 | <turn direction="-2" string="Left" /> |
33 | <turn direction="-1" string="Slight left" /> |
34 | <turn direction="0" string="Straight on" /> |
35 | <turn direction="1" string="Slight right" /> |
36 | <turn direction="2" string="Right" /> |
37 | <turn direction="3" string="Sharp right" /> |
38 | <turn direction="4" string="Very sharp right" /> |
39 | |
40 | <!-- Heading directions, 0 = North, -2 = West, +/-4 = South, +2 = East --> |
41 | <heading direction="-4" string="South" /> |
42 | <heading direction="-3" string="South-West" /> |
43 | <heading direction="-2" string="West" /> |
44 | <heading direction="-1" string="North-West" /> |
45 | <heading direction="0" string="North" /> |
46 | <heading direction="1" string="North-East" /> |
47 | <heading direction="2" string="East" /> |
48 | <heading direction="3" string="South-East" /> |
49 | <heading direction="4" string="South" /> |
50 | |
51 | <!-- Highway names --> |
52 | <highway type="motorway" string="motorway" /> |
53 | <highway type="trunk" string="trunk road" /> |
54 | <highway type="primary" string="primary road" /> |
55 | <highway type="secondary" string="secondary road" /> |
56 | <highway type="tertiary" string="tertiary road" /> |
57 | <highway type="unclassified" string="unclassified road" /> |
58 | <highway type="residential" string="residential road" /> |
59 | <highway type="service" string="service road" /> |
60 | <highway type="track" string="track" /> |
61 | <highway type="cycleway" string="cycleway" /> |
62 | <highway type="path" string="path" /> |
63 | <highway type="steps" string="steps" /> |
64 | |
65 | <!-- The type of route --> |
66 | <route type="shortest" string="Shortest" /> <!-- For the description and route name --> |
67 | <route type="quickest" string="Quickest" /> <!-- For the description and route name --> |
68 | |
69 | <!-- HTML output --> |
70 | <output-html> |
71 | <waypoint type="waypoint" string="Waypoint" /> <!-- For the chosen waypoints --> |
72 | <waypoint type="junction" string="Junction" /> <!-- For the interesting junctions --> |
73 | |
74 | <title text="%s Route" /> <!-- %s = [shortest|quickest] --> |
75 | |
76 | <start string="Start" text="At %s, head %s" /> <!-- 1st %s = [waypoint|junction], 2nd %s = [heading] --> |
77 | <node string="At" text="%s, go %s heading %s" /> <!-- 1st %s = [waypoint|junction], 2nd %s = [turn], 3rd %s = [heading] --> |
78 | <segment string="Follow" text="%s for %.3f km, %.1f min" /> <!-- 1st %s = street name --> |
79 | <stop string="Stop" text="At %s" /> <!-- 1st %s = [waypoint|junction] --> |
80 | <total string="Total" text="%.1f km, %.0f minutes" /> |
81 | </output-html> |
82 | |
83 | <!-- GPX output --> |
84 | <output-gpx> |
85 | <waypoint type="start" string="START" /> <!-- For the first route waypoint --> |
86 | <waypoint type="inter" string="INTER" /> <!-- For the intermediate route waypoints --> |
87 | <waypoint type="trip" string="TRIP" /> <!-- For the other route points --> |
88 | <waypoint type="finish" string="FINISH"/> <!-- For the last route waypoint --> |
89 | |
90 | <desc text="%s route between 'start' and 'finish' waypoints" /> <!-- %s = [shortest|quickest] --> |
91 | <name text="%s route" /> <!-- %s = [shortest|quickest] --> |
92 | <step text="%s on '%s' for %.3f km, %.1f min" /> <!-- 1st %s = [turn], 2nd %s = street name --> |
93 | <final text="Total Journey %.1f km, %.0f minutes" /> |
94 | </output-gpx> |
95 | |
96 | </language> |
97 | |
98 | </routino-translations> |
Properties
Name | Value |
---|---|
cvs:description | Routino translations. |