diff --git a/apps/slidingtext/custom.html b/apps/slidingtext/custom.html
index 5023d9a3d..b2863ebf3 100644
--- a/apps/slidingtext/custom.html
+++ b/apps/slidingtext/custom.html
@@ -4,7 +4,7 @@
- Please select watch languages
+ Please select watch languages (Max 4, only the first 4 selected will be loaded)
@@ -25,6 +25,7 @@
{name:"French",shortname:"fr"},
{name:"Japanese",shortname:"jp"},
{name:"Spanish",shortname:"es"}
+ {name:"German",shortname:"de"}
];
var selected_languages = ["en","es","jp"];
try{
@@ -51,7 +52,7 @@
for (var i=0; i' + hourOfDay + ' hours text->' + hours)
+ // Deal with the special times first
+ if(mins == 0){
+ var hours = germanHoursToText(hourOfDay);
+ return [hours,"UHR", "","",""];
+ } else if(mins == 30){
+ var hours = germanHoursToText(hourOfDay+1);
+ return ["", "", "HALB","", hours];
+ } else if(mins == 15){
+ var hours = germanHoursToText(hourOfDay);
+ return ["", "", "VIERTEL", "NACH",hours];
+ } else if(mins == 45) {
+ var hours = germanHoursToText(hourOfDay+1);
+ return ["", "", "VIERTEL", "VOR",hours];
+ } else {
+ var mins_txt = germanMinsToText(mins);
+ return [hours, "UHR", mins_txt[0],mins_txt[1]];
+ }
+ }
+}
+
+module.exports = GermanDateFormatter;
\ No newline at end of file