updated version and fixed bugs in the NL translation

This commit is contained in:
Manuel Friedli 2014-11-24 12:40:17 +01:00
parent 8ce86f4d4c
commit 4e902cb6a1
6 changed files with 12 additions and 8 deletions

View file

@ -48,13 +48,13 @@
"10,11,12,13,14": [tien, over1],
"15,16,17,18,19": [kwart, over2],
"20,21,22,23,24": [tien, voor1, half],
"25,26,27,28,29": [vjif, voor1, half],
"25,26,27,28,29": [vijf, voor1, half],
"30,31,32,33,34": half,
"35,36,37,38,39": [vijf, over1, half],
"40,41,42,43,44": [tien, over1, half],
"45,46,47,48,49": [kwart, voor2],
"50,51,52,53,54": [tien, voor1],
"55,56,57,58,59": [vjif, voor1]
"55,56,57,58,59": [vijf, voor1]
},
"hours": {
"0,12": {10: [1, 2, 3, 4, 5, 6]},
@ -72,7 +72,7 @@
},
"getHour": function(date) {
var hour = date.getHours();
if (date.getMinutes >= 20) {
if (date.getMinutes() >= 20) {
return (hour + 1) % 24;
}
return hour;