Avoid using "one" and "two" as translation keys
This commit is contained in:
parent
69ff048ae1
commit
91c30d3a8c
2 changed files with 11 additions and 14 deletions
|
@ -61,10 +61,7 @@ function OSRMEngine() {
|
|||
'arrive': 14
|
||||
};
|
||||
var numToWord = function(num) {
|
||||
if(num > 10) {
|
||||
num = 11;
|
||||
}
|
||||
return ["zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "gt_ten"][num];
|
||||
return ["first", "second", "third", "fourth", "fifth", "sixth", "seventh", "eighth", "ninth", "tenth"][num-1];
|
||||
};
|
||||
var transformed_steps = input_steps.map(function(step, idx) {
|
||||
var maneuver_id;
|
||||
|
|
|
@ -2386,16 +2386,16 @@ en:
|
|||
unnamed: "unnamed road"
|
||||
courtesy: "Directions courtesy of %{link}"
|
||||
exit_counts:
|
||||
one: "1st"
|
||||
two: "2nd"
|
||||
three: "3rd"
|
||||
four: "4th"
|
||||
five: "5th"
|
||||
six: "6th"
|
||||
seven: "7th"
|
||||
eight: "8th"
|
||||
nine: "9th"
|
||||
ten: "10th"
|
||||
first: "1st"
|
||||
second: "2nd"
|
||||
third: "3rd"
|
||||
fourth: "4th"
|
||||
fifth: "5th"
|
||||
sixth: "6th"
|
||||
seventh: "7th"
|
||||
eighth: "8th"
|
||||
ninth: "9th"
|
||||
tenth: "10th"
|
||||
time: "Time"
|
||||
query:
|
||||
node: Node
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue