Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Annotation of /trunk/xml/routino-translations.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 378 - (hide annotations) (download) (as text)
Sat Apr 24 15:49:37 2010 UTC (14 years, 11 months ago) by amb
File MIME type: application/xml
File size: 4261 byte(s)
Added translations for the HTML output.

1 amb 370 <?xml version="1.0" encoding="utf-8"?>
2    
3     <!-- ============================================================
4 amb 378 $Header: /home/amb/CVS/routino/xml/routino-translations.xml,v 1.2 2010-04-24 15:49:37 amb Exp $
5 amb 370
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 amb 378 <!-- Copyright of the data being routed, not of this file, the ':' is important. -->
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 amb 370 <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 amb 378 <!-- Heading directions, 0 = North, -2 = West, +/-4 = South, +2 = East -->
41 amb 370 <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 amb 378 <!-- The type of route -->
52     <route type="shortest" string="Shortest" /> <!-- For the description and route name -->
53     <route type="quickest" string="Quickest" /> <!-- For the description and route name -->
54    
55     <!-- HTML output -->
56     <output-html>
57     <waypoint type="waypoint" string="Waypoint" /> <!-- For the chosen waypoints -->
58     <waypoint type="junction" string="Junction" /> <!-- For the interesting junctions -->
59    
60     <title text="%s Route" /> <!-- %s = [shortest|quickest] -->
61    
62     <start string="Start" text="At %s, head %s" /> <!-- 1st %s = [waypoint|junction], 2nd %s = [heading] -->
63     <node string="At" text="%s, go %s heading %s" /> <!-- 1st %s = [waypoint|junction], 2nd %s = [turn], 3rd %s = [heading] -->
64     <segment string="Follow" text="%s for %.3f km, %.1f min" /> <!-- 1st %s = street name -->
65     <stop string="Stop" text="At %s" /> <!-- 1st %s = [waypoint|junction] -->
66     <total string="Total" text="%.1f km, %.0f minutes" />
67     </output-html>
68    
69     <!-- GPX output -->
70 amb 370 <output-gpx>
71     <waypoint type="start" string="START" /> <!-- For the first route waypoint -->
72     <waypoint type="inter" string="INTER" /> <!-- For the intermediate route waypoints -->
73     <waypoint type="trip" string="TRIP" /> <!-- For the other route points -->
74     <waypoint type="finish" string="FINISH"/> <!-- For the last route waypoint -->
75    
76 amb 378 <desc text="%s route between 'start' and 'finish' waypoints" /> <!-- %s = [shortest|quickest] -->
77     <name text="%s route" /> <!-- %s = [shortest|quickest] -->
78     <step text="%s on '%s' for %.3f km, %.1f min" /> <!-- 1st %s = [turn], 2nd %s = street name -->
79     <final text="Total Journey %.1f km, %.0f minutes" />
80 amb 370 </output-gpx>
81    
82     </language>
83    
84     </routino-translations>

Properties

Name Value
cvs:description Routino translations.