Themabewertung:
  • 2 Bewertung(en) - 3 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5

HTC Animated Weather ins Deutsche übersetzen

[quote='oldster' pid='1724534' dateline='1368363901']
Hi ich habe meine PerPageHtml Version mal wieder Überarbeitet Smiley

Läuft auf dem iPhone 4/5 und hat jetzt UniAW 6 bekommen. Schaut Euch einfach mal das Video an. Wer es haben möchte, kurze PN an mic

Hallo oldster ich habe mir das HTC animated Weather widget Version 1.4 auf mein iPhone 5s installiert und die Dateien Widget.html und translation.js umgeschrieben so das alles ins Deutsche übersetzt wurde nach eine update auf Version 1.5 läuft die Übersetzung nicht mehr wenn ich bei der Datei Widget.html die ZeLangTranslate = English in LangTranslate = German" verändere funktioniert weder die Übersetzung noch die Animation.
Hier sind meine Veränderten Dateien:
Widget.html :

<html>
<head><title>HTC</title>
<!--Moddified by Ludacrisvp Version iOS 7 Released 1-24-14 -->
<style>

SPAN#clock
{
font-family: Helvetica;
font-weight: bold;
color: #d1d1d1;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);
font-size: 26px;
}

SPAN#ampm
{
font-family: Helvetica;
font-weight: bold;
color: #d1d1d1;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);
font-size: 15px;
display:none;
}

TD#dateString
{
font-family: Helvetica;
font-weight: bold;
color: #d1d1d1;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);
font-size: 11px;
text-align:center;
}

TABLE#CalendarTable
{
font-family: Helvetica;
font-weight: bold;
color: #d1d1d1;
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.7);
font-size: 11px;
text-align:center;
margin-top:-17px;
}

SPAN#calendar
{
font-family: Helvetica;
font-weight: bold;
color: #d1d1d1;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.7);
font-size: 14px;
position:absolute;
top:137px;
text-align:right;
width:300px;
}
</style>

<script type="text/javascript">
//var locale = 2487084 // Yahoo WOEID Weather code
//var isCelsius = false
//var useRealFeel = false
//var updateInterval = 30
//var showForecast = true
//var showWeatherAni = true
var showBackground = true
//var displayClock = true

</script>

<base href="Private/"/>
<script type="text/javascript">

var this_weekday_name_array = new Array("So","Mo","Di","Mi","Do","Fr","Sa")
var this_month_name_array = new Array("Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez")
var this_date_timestamp = new Date()
var this_weekday = this_date_timestamp.getDay()
var this_date = this_date_timestamp.getDate()
var this_month = this_date_timestamp.getMonth()
var this_year = this_date_timestamp.getYear()
if (this_year < 1000)
this_year+= 1900;
if (this_year==101)
this_year=2001;
var this_date_string = this_weekday_name_array[this_weekday] + " " + this_date + " " + this_month_name_array[this_month]//concat long date string

function init ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("clock").appendChild ( timeDisplay );
}

function updateClock ( )
{
//var TwentyFourHourClock = false
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );

// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;

if (TwentyFourHourClock == false){

var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM"
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
currentHours = ( currentHours == 0 ) ? 12 : currentHours;

if (timeOfDay == "PM"){
document.getElementById("ampm").src="pm.png"
}else{
document.getElementById("ampm").src="am.png"
}}
// Compose the string for display
var currentTimeString = currentHours + ":" + currentMinutes;

// Update the time display
currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours;

document.getElementById("hr1").src="Digits/"+currentHours.charAt(0)+".png";
document.getElementById("hr2").src="Digits/"+currentHours.charAt(1)+".png";
document.getElementById("min1").src="Digits/"+currentMinutes.charAt(0)+".png";
document.getElementById("min2").src="Digits/"+currentMinutes.charAt(1)+".png";
}

function init2 ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("ampm").appendChild ( timeDisplay );
}

function amPm ( )
{
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );

// Choose either "AM" or "PM" as appropriate
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";

// Convert the hours component to 12-hour format if needed
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

// Convert an hours component of "0" to "12"
currentHours = ( currentHours == 0 ) ? 12 : currentHours;

// Compose the string for display
var currentTimeString = timeOfDay;

// Update the time display
document.getElementById("ampm").firstChild.nodeValue = currentTimeString;
}

function init3 ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("calendar").appendChild ( timeDisplay );
}

function daysInMonth(iMonth, iYear)
{
return 32 - new Date(iYear, iMonth, 32).getDate();
}

function zeroPad(num,count)
{
var numZeropad = num + '';
while(numZeropad.length < count) {
numZeropad = "0" + numZeropad;
}
return numZeropad;
}

function calendarDate ( )
{
var this_weekday_name_array = new Array("So","Mo","Di","Mi","Do","Fr","Sa")
var this_month_name_array = new Array("Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez") //predefine month names

var this_date_timestamp = new Date()
var this_weekday = this_date_timestamp.getDay()
var this_date = this_date_timestamp.getDate()
var this_month = this_date_timestamp.getMonth()

Current_Month = this_month
document.getElementById("calendar").firstChild.nodeValue = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date
}
</script>
<script type="text/javascript" src="translation.js"></script>

<script type="text/javascript">
var MiniIcons =
[
"tstorm3", //0 tornado
"tstorm3", //1 tropical storm
"tstorm3", //2 hurricane
"tstorm3", //3 severe thunderstorms
"tstorm3", //4 thunderstorms
"sleet", //5 mixed rain and snow
"sleet", //6 mixed rain and sleet
"sleet", //7 mixed snow and sleet
"sleet", //8 freezing drizzle
"light_rain", //9 drizzle
"sleet", //10 freezing rain
"shower3", //11 showers
"shower3", //12 showers
"snow1", //13 snow flurries
"snow2", //14 light snow showers
"snow4", //15 blowing snow
"snow4", //16 snow
"hail", //17 hail
"sleet", //18 sleet
"mist", //19 dust
"fog", //20 foggy
"fog", //21 haze
"fog", //22 smoky
"windy", //23 blustery
"windy", //24 windy
"windy", //25 cold
"overcast", //26 cloudy
"cloudy4_night", //27 mostly cloudy (night)
"cloudy4", //28 mostly cloudy (day)
"cloudy1_night", //29 partly cloudy (night)
"cloudy1", //30 partly cloudy (day)
"sunny_night", //31 clear (night)
"sunny", //32 sunny
"fair_night", //33 fair (night)
"fair", //34 fair (day)
"hail", //35 mixed rain and hail
"hot", //36 hot
"tstorm1", //37 isolated thunderstorms
"tstorm2", //38 scattered thunderstorms
"tstorm2", //39 scattered thunderstorms
"shower1", //40 scattered showers
"snow5", //41 heavy snow
"snow3", //42 scattered snow showers
"snow5", //43 heavy snow
"cloudy1", //44 partly cloudy
"tstorm3", //45 thundershowers
"snow2", //46 snow showers
"tstorm1", //47 isolated thundershowers
"dunno", //3200 not available
]

function constructError (string)
{
return {error:true, errorString:string};
}

function findChild (element, nodeName)
{
var child;
for (child = element.firstChild; child != null; child = child.nextSibling)
{
if (child.nodeName == nodeName)
return child;
}
return null;
}


function fetchWeatherData (callback, zip) {
if (isCelsius == false){
varUnit = 'f'
}else{
varUnit = 'c'
}

url="http://weather.yahooapis.com/forecastrss"
var xml_request = new XMLHttpRequest();
xml_request.onload = function(e) {xml_loaded(e, xml_request, callback);}
xml_request.overrideMimeType("text/xml");
xml_request.open("GET", url+'?w='+zip+'&u='+varUnit);
xml_request.setRequestHeader("Cache-Control", "no-cache");
xml_request.send(null);
return xml_request;
}

function xml_loaded (event, request, callback)
{
if (request.responseXML)
{
var obj = {error:false, errorString:null};
var effectiveRoot = findChild(findChild(request.responseXML, "rss"), "channel");
obj.city = findChild(effectiveRoot, "yweather:location").getAttribute("city");
obj.realFeel = findChild(effectiveRoot, "yweather:wind").getAttribute("chill");//Only accounts for windChill
conditionTag = findChild(findChild(effectiveRoot, "item"), "yweather:condition");
obj.temp = conditionTag.getAttribute("temp");
obj.icon = conditionTag.getAttribute("code");
obj.description = conditionTag.getAttribute("text");
obj.sunset = request.responseXML.getElementsByTagName("astronomy")[0].getAttribute("sunset");
obj.sunset = obj.sunset.split(' ')[0]
obj.sunsethr = obj.sunset.split(':')[0]*1+12
obj.sunsetmin = obj.sunset.split(':')[1]

obj.Today = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("day");
obj.TodayHi = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("high");
obj.TodayLo = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("low");
obj.TodayCode = request.responseXML.getElementsByTagName("forecast")[0].getAttribute("code");

obj.Day1 = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("day");
obj.Day1Hi = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("high");
obj.Day1Lo = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("low");
obj.Day1Code = request.responseXML.getElementsByTagName("forecast")[1].getAttribute("code");

obj.Day2 = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("day");
obj.Day2Hi = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("high");
obj.Day2Lo = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("low");
obj.Day2Code = request.responseXML.getElementsByTagName("forecast")[2].getAttribute("code");

obj.Day3 = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("day");
obj.Day3Hi = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("high");
obj.Day3Lo = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("low");
obj.Day3Code = request.responseXML.getElementsByTagName("forecast")[3].getAttribute("code");

obj.Day4 = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("day");
obj.Day4Hi = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("high");
obj.Day4Lo = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("low");
obj.Day4Code = request.responseXML.getElementsByTagName("forecast")[4].getAttribute("code");

forecastTag = findChild(findChild(effectiveRoot, "item"), "yweather:forecast");
callback (obj);
}
else{
callback ({error:true, errorString:"XML request failed. no responseXML"});
}
}

function validateWeatherLocation (location, callback)
{
var obj = {error:false, errorString:null, cities: new Array};
obj.cities[0] = {zip: location}; //Not very clever, are we?
callback (obj);
}var LangTranslate = German // or English
var stylesheet = 'myopiaAlt'
var iconSet = "HTC"
var iconExt = ".png" //'.png'|.'gif' etc.
</script>

<script type="text/javascript">
var postal;

if(iconSet == null || iconSet == 'null'){
var iconSet = stylesheet;
}

var headID = document.getElementsByTagName("head")[0];
var styleNode = document.createElement('link');
styleNode.type = 'text/css';
styleNode.rel = 'stylesheet';
styleNode.href = 'Stylesheets/'+stylesheet+'.css';
headID.appendChild(styleNode);

var scriptNode = document.createElement('script');
scriptNode.type = 'text/javascript';
scriptNode.src = 'Sources/'+source+'.js';
headID.appendChild(scriptNode);

function onLoad(){
//document.getElementById("weatherIcon").src="IconSets/"+iconSet+"/"+"dunno"+iconExt;
validateWeatherLocation(escape(locale).replace(/^%u/g, "%"), setPostal)
setInterval('fetchWeatherData(dealWithWeather,postal)', 1000*60*updateInterval);
}

function setPostal(obj){
if (obj.error == false){
if(obj.cities.length > 0){
postal = escape(obj.cities[0].zip).replace(/^%u/g, "%")
fetchWeatherData(dealWithWeather,postal);
}else{
document.getElementById("city").innerText="Not Found";
}
}else{
document.getElementById("city").innerText=obj.errorString;
}
}

function dealWithWeather(obj){

if (obj.error == false){
document.getElementById("city").innerText=obj.city.substring(0,13);

if (LangTranslate == English)
{
document.getElementById("desc").innerText=obj.description; //+" ("+obj.icon+")";
}
else
{
document.getElementById("desc").innerText = LangTranslate[obj.icon*1]; }
if(useRealFeel == true){
tempValue = obj.realFeel;
}else{
tempValue = obj.temp;
}
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
if(obj.sunsethr < currentHours){
obj.TOD = "Tonight"
}
else if(obj.sunsethr < currentHours)
{
obj.TOD = "Tonight"
}
else if(currentHours < 2)
{
obj.TOD = "Tonight"
}
else
{
obj.TOD = "Today"
}

if (isCelsius == true) {
document.getElementById("temp").innerHTML=tempValue+ "° C";
} else {
document.getElementById("temp").innerHTML=tempValue+ "° F";
}
document.getElementById("weatherIcon").src="IconSets/"+iconSet+"/"+obj.icon+iconExt;

if (showBackground == false){
document.getElementById("mainbk").src="IconSets/mnidhk"+"/"+obj.icon+iconExt;
}

if (showForecast == true){
document.getElementById("Today").innerHTML=ForecastDayNames(obj.TOD);
document.getElementById("TodayIcon").src="IconSets/"+iconSet+"/"+obj.TodayCode+'_small'+iconExt;
document.getElementById("TodayHiLo").innerHTML=obj.TodayHi+ "° / <font color=#a8a8a8>"+obj.TodayLo+ "°</font>";

document.getElementById("Day1").innerHTML=ForecastDayNames(obj.Day1);
document.getElementById("Day1Icon").src="IconSets/"+iconSet+"/"+obj.Day1Code+'_small'+iconExt;
document.getElementById("Day1HiLo").innerHTML=obj.Day1Hi+ "° / <font color=#a8a8a8>"+obj.Day1Lo+ "°</font>";

document.getElementById("Day2").innerHTML=ForecastDayNames(obj.Day2);
document.getElementById("Day2Icon").src="IconSets/"+iconSet+"/"+obj.Day2Code+'_small'+iconExt;
document.getElementById("Day2HiLo").innerHTML=obj.Day2Hi+ "° / <font color=#a8a8a8>"+obj.Day2Lo+ "°</font>";

document.getElementById("Day3").innerHTML=ForecastDayNames(obj.Day3);
document.getElementById("Day3Icon").src="IconSets/"+iconSet+"/"+obj.Day3Code+'_small'+iconExt;
document.getElementById("Day3HiLo").innerHTML=obj.Day3Hi+ "° / <font color=#a8a8a8>"+obj.Day3Lo+ "°</font>";

document.getElementById("Day4").innerHTML=ForecastDayNames(obj.Day4);
document.getElementById("Day4Icon").src="IconSets/"+iconSet+"/"+obj.Day4Code+'_small'+iconExt;
document.getElementById("Day4HiLo").innerHTML=obj.Day4Hi+ "° / <font color=#a8a8a8>"+obj.Day4Lo+ "°</font>";
}

var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );

// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;

// Choose either "AM" or "PM" as appropriate
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";

// Convert the hours component to 12-hour format if needed
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;

// Convert an hours component of "0" to "12"
currentHours = ( currentHours == 0 ) ? 12 : currentHours;

// Compose the string for display
var currentTimeString = currentHours + ":" + currentMinutes;

var Conditions = ["thunderstorm",
"rain",
"rain",
"thunderstorm",
"thunderstorm",
"sleet",
"sleet",
"sleet",
"sleet",
"showers_cloud",
"sleet",
"showers_cloud",
"showers_cloud",
"snow",
"snow",
"snow",
"snow",
"hail",
"sleet",
"fog",
"fog",
"Haze",
"fog",
"wind",
"wind",
"frost",
"cloud",
"partlymoon",
"partlysunny",
"partlymoon",
"partlysunny",
"moon",
"sun",
"partlymoon",
"partlysunny",
"sleet",
"sun",
"thunderstorm",
"thunderstorm",
"thunderstorm",
"thunderstorm",
"snow",
"snow",
"snow",
"cloud",
"thunderstorm",
"snow",
"thunderstorm",
"blank"];
if (showWeatherAni == true){
document.getElementById("animationFrame").src="Animations/"+Conditions[obj.icon]+".html";
}
}
}
</script>
</head>

<body onLoad="onLoad()"style="margin: 0">
<div id="weatherFrame">
<iframe id="animationFrame" name="animation" src="Animations/blank.html" width="320" height="568" scrolling="no" frameborder="0" marginwidth="0" marginheight="0" allowtransparency="true"></iframe>
</div>
<script type="text/javascript">
if (displayClock == true){
document.write("<img src=\"bg.png\" style=\"position: absolute; z-index:-3;top:0; left: 0px;\" height=\"186\" width=\"320\">");
document.write("<img src=\"\" id=\"ampm\" style=\"position: absolute; z-index:-3;top:110; left: 40px;\" width=\"20\">");
document.write("<table border=0 style=\"position: absolute; z-index:-1;top:22; left: 37px;\"><tr><td><img src=\"\" width=\"49\" height=\"80\" border=0 id=\"hr1\"></td><td><img src=\"\" width=\"49\" height=\"80\" border=0 id=\"hr2\"></td>\
<td width=30></td>\
<td><img src=\"\" width=\"49\" height=\"80\" border=0 id=\"min1\"></td><td><img src=\"\" width=\"49\" height=\"80\" border=0 id=\"min2\"></td>\
</tr>\
</table>")
}else{
document.write("<img src=\"day.png\" style=\"position: absolute; z-index:-3;top:130; left: 0px;\" width=\"320\">");
}

</script>
<span id="calendar" align=right>
<script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script>
</span>
<script type="text/javascript">
if (displayClock == true){
document.write("<span id=\"clock\">");
document.write("<script language=\"JavaScript\">updateClock(); setInterval('updateClock()', 1000 )");
document.write("<\/script></span");
document.write("<span id=\"ampm\"> </span>");
}
</script>
<div id="WeatherContainer">
<div id="TextContainer">
<img id="weatherIcon" src="" height=108 width=114 style="position:absolute; top:90px;left:103px;z-index:1;">
<a id="city"></a><a id="desc"></a><a id="temp"></a>

<script type="text/javascript">
if (showForecast == true & displayClock == true){
document.write("<img src=\"forecast-bg.png\" style=\"position: absolute; z-index:-1;top:200; left: 0px;\" width=\"320\">");
document.write("<table cellpadding=0 cellspacing=0 style=\"position:absolute; top:185px; left:20px;z-index:1\" width=\"280\" align=center>\
<tr>\
<td align=center><img id=\"TodayIcon\" height=50 src=\"\"/></td>\
<td align=center><img id=\"Day1Icon\" height=50 src=\"\"/></td>\
<td align=center><img id=\"Day2Icon\" height=50 src=\"\"/></td>\
<td align=center><img id=\"Day3Icon\" height=50 src=\"\"/></td>\
<td align=center><img id=\"Day4Icon\" height=50 src=\"\"/></td>\
</tr>\
</table>\
<table cellpadding=0 cellspacing=0 style=\"position:absolute; top:225px; left:20px\" width=\"280\" align=center>\
<tr>\
<td align=center><a id=\"TodayHiLo\"></a></td>\
<td align=center><a id=\"Day1HiLo\"></a></td>\
<td align=center><a id=\"Day2HiLo\"></a></td>\
<td align=center><a id=\"Day3HiLo\"></a></td>\
<td align=center><a id=\"Day4HiLo\"></a></td>\
</tr>\
<tr>\
<td align=center><a id=\"Today\"></a></td>\
<td align=center><a id=\"Day1\"></a></td>\
<td align=center><a id=\"Day2\"></a></td>\
<td align=center><a id=\"Day3\"></a></td>\
<td align=center><a id=\"Day4\"></a></td>\
</tr>\
</table>");
}
else if (showForecast == true & displayClock == false){
document.write("<img src=\"forecast-bg.png\" style=\"position: absolute; z-index:-1;top:35; left: 0px;\" width=\"320\">");
document.write("<table cellpadding=0 cellspacing=0 style=\"position:absolute; top:15px; left:20px;z-index:1\" width=\"280\" align=center>\
<tr>\
<td align=center><img id=\"TodayIcon\" height=52 src=\"\"/></td>\
<td align=center><img id=\"Day1Icon\" height=52 src=\"\"/></td>\
<td align=center><img id=\"Day2Icon\" height=52 src=\"\"/></td>\
<td align=center><img id=\"Day3Icon\" height=52 src=\"\"/></td>\
<td align=center><img id=\"Day4Icon\" height=52 src=\"\"/></td>\
</tr>\
</table>\
<table cellpadding=0 cellspacing=0 style=\"position:absolute; top:57px; left:20px\" width=\"280\" align=center>\
<tr>\
<td align=center><a id=\"TodayHiLo\"></a></td>\
<td align=center><a id=\"Day1HiLo\"></a></td>\
<td align=center><a id=\"Day2HiLo\"></a></td>\
<td align=center><a id=\"Day3HiLo\"></a></td>\
<td align=center><a id=\"Day4HiLo\"></a></td>\
</tr>\
<tr>\
<td align=center><a id=\"Today\"></a></td>\
<td align=center><a id=\"Day1\"></a></td>\
<td align=center><a id=\"Day2\"></a></td>\
<td align=center><a id=\"Day3\"></a></td>\
<td align=center><a id=\"Day4\"></a></td>\
</tr>\
</table>");
}
</script>
<a id="time" style="position:absolute; top:80px; width:299px;z-index:-1;font-size:8px;display:none;"></a>
</div>
</div>
</body>
</html>

und translation.js:

function ForecastDayNames(day){

switch (day)
{
//Use these to translate if necessary. Change the second values, leave the first alone.
case "Mon": { return "Montag" }
case "Tue": { return "Dienstag" }
case "Wed": { return "Mittwoch" }
case "Thu": { return "Donnerstag" }
case "Fri": { return "Freitag" }
case "Sat": { return "Samstag" }
case "Sun": { return "Sonntag" }
case "Today": { return "Heute" }
case "Tonight": { return "heute Nacht" }
}

}

var German =
[
'Tornado', //0 tornado
'Tropensturm', //1 tropical storm
'Hurrikan', //2 hurricane
'schwere Gewitter', //3 severe thunderstorms
'Gewitter', //4 thunderstorms
'Schneeregen', //5 mixed rain and snow
'Graupel-Regen', //6 mixed rain and sleet
'Graupel-Schnee', //7 mixed snow and sleet
'gefrierender Regen', //8 freezing drizzle
'Nieselregen', //9 drizzle
'gefrierender Regen', //10 freezing rain
'Regen', //11 showers
'Regen', //12 showers
'Schnee&Eis', //13 snow flurries
'leichter Schneefall', //14 light snow showers
'Schneesturm', //15 blowing snow
'Schnee', //16 snow
'Hagel', //17 hail
'Schneeregen', //18 sleet
'Nebel', //19 dust
'nebelig', //20 foggy
'dunstig', //21 haze
'nebelig', //22 smoky
'Wind/Sturm', //23 blustery
'Wind/Sturm', //24 windy
'Wind/Sturm', //25 cold
'bewölkt', //26 cloudy
'bewölkt', //27 mostly cloudy (night)
'bewölkt', //28 mostly cloudy (day)
'teils bewölkt', //29 partly cloudy (night)
'teils bewölkt', //30 partly cloudy (day)
'klare Nacht', //31 clear (night)
'sonnig', //32 sunny
'klare Nacht', //33 fair (night)
'klar', //34 fair (day)
'Hagel', //35 mixed rain and hail
'sonnig', //36 hot
'teils Gewitter', //37 isolated thunderstorms
'teils Gewitter', //38 scattered thunderstorms
'teils Gewitter', //39 scattered thunderstorms
'teils Regen', //40 scattered showers
'starker Schneefall', //41 heavy snow
'teils Schneefall', //42 scattered snow showers
'starker Schneefall', //43 heavy snow
'leicht bewölkt', //44 partly cloudy
'Gewitter/Regen', //45 thundershowers
'Schneefall', //46 snow showers
'vereinzelte Gewitter', //47 isolated thundershowers
'dunno', //3200 not available
]

var English = "English" //Leave Alone

mit diesen Dateien hatte die Übersetzung in der Version 1.4 super funktioniert.
Zitieren


Nachrichten in diesem Thema
HTC Animated Weather ins Deutsche übersetzen - von vorobjev - 10.02.2011, 17:26
RE: HTC Animated Weather ins Deutsche übersetzen - von Xachos - 17.04.2011, 01:53
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 30.04.2011, 14:15
RE: HTC Animated Weather ins Deutsche übersetzen - von Denon - 30.04.2011, 14:39
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 30.04.2011, 14:55
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 30.04.2011, 20:55
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 01.05.2011, 08:36
RE: HTC Animated Weather ins Deutsche übersetzen - von stre - 30.06.2011, 13:02
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 19.06.2012, 18:09
RE: HTC Animated Weather ins Deutsche übersetzen - von camino113 - 01.05.2011, 17:18
RE: HTC Animated Weather ins Deutsche übersetzen - von djgeestyle - 01.05.2011, 18:06
RE: HTC Animated Weather ins Deutsche übersetzen - von shutdownify - 01.05.2011, 18:37
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 01.05.2011, 20:08
RE: HTC Animated Weather ins Deutsche übersetzen - von Bundeskanzler - 25.05.2011, 16:10
RE: HTC Animated Weather ins Deutsche übersetzen - von camino113 - 02.05.2011, 08:37
RE: HTC Animated Weather ins Deutsche übersetzen - von medel - 02.05.2011, 09:10
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 02.05.2011, 09:23
RE: HTC Animated Weather ins Deutsche übersetzen - von M1cha86 - 04.05.2011, 15:49
RE: HTC Animated Weather ins Deutsche übersetzen - von Baron - 04.05.2011, 20:10
RE: HTC Animated Weather ins Deutsche übersetzen - von Cydia7 - 23.05.2011, 04:08
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 26.05.2011, 08:37
RE: HTC Animated Weather ins Deutsche übersetzen - von RioRange - 04.06.2011, 11:11
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 05.06.2011, 22:50
RE: HTC Animated Weather ins Deutsche übersetzen - von Daniel25 - 11.06.2011, 15:09
RE: HTC Animated Weather ins Deutsche übersetzen - von Exuled - 18.06.2011, 16:47
RE: HTC Animated Weather ins Deutsche übersetzen - von spacecowboy.21 - 13.07.2011, 19:18
RE: HTC Animated Weather ins Deutsche übersetzen - von Simon2k2 - 18.07.2011, 14:36
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 18.07.2011, 16:58
RE: HTC Animated Weather ins Deutsche übersetzen - von Sladder - 15.06.2012, 18:30
RE: HTC Animated Weather ins Deutsche übersetzen - von franz - 19.07.2011, 09:12
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 25.07.2011, 10:50
RE: HTC Animated Weather ins Deutsche übersetzen - von trebor1306 - 06.08.2011, 10:24
RE: HTC Animated Weather ins Deutsche übersetzen - von Sweepy - 27.10.2011, 15:47
RE: HTC Animated Weather ins Deutsche übersetzen - von BoehserFrank - 21.11.2011, 16:33
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 21.11.2011, 17:44
RE: HTC Animated Weather ins Deutsche übersetzen - von BoehserFrank - 21.11.2011, 18:52
RE: HTC Animated Weather ins Deutsche übersetzen - von Skorpionking74 - 11.01.2012, 01:20
RE: HTC Animated Weather ins Deutsche übersetzen - von Sladder - 06.02.2012, 18:09
RE: HTC Animated Weather ins Deutsche übersetzen - von BoehserFrank - 22.11.2011, 10:16
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 22.11.2011, 16:28
RE: HTC Animated Weather ins Deutsche übersetzen - von Hitchhiker1981 - 22.11.2011, 16:38
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 22.11.2011, 16:51
RE: HTC Animated Weather ins Deutsche übersetzen - von BoehserFrank - 22.11.2011, 17:02
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 22.11.2011, 17:48
RE: HTC Animated Weather ins Deutsche übersetzen - von BoehserFrank - 22.11.2011, 18:44
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 22.11.2011, 19:01
RE: HTC Animated Weather ins Deutsche übersetzen - von BoehserFrank - 22.11.2011, 21:01
RE: HTC Animated Weather ins Deutsche übersetzen - von hanspeter159 - 06.01.2012, 13:57
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 06.01.2012, 14:08
RE: HTC Animated Weather ins Deutsche übersetzen - von hanspeter159 - 06.01.2012, 15:45
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 06.01.2012, 17:37
RE: HTC Animated Weather ins Deutsche übersetzen - von hanspeter159 - 06.01.2012, 18:25
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 06.01.2012, 21:03
RE: HTC Animated Weather ins Deutsche übersetzen - von hanspeter159 - 07.01.2012, 04:33
HTC Animated Weather ins Deutsche übersetzen - von oldster - 07.01.2012, 08:14
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 07.01.2012, 17:56
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 07.01.2012, 18:07
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 07.01.2012, 21:26
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 07.01.2012, 21:37
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 07.01.2012, 21:45
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 07.01.2012, 22:06
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 07.01.2012, 22:25
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 07.01.2012, 22:34
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 07.01.2012, 22:36
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 08.01.2012, 09:01
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 09.01.2012, 07:55
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 09.01.2012, 10:15
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 09.01.2012, 19:35
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 09.01.2012, 20:43
RE: HTC Animated Weather ins Deutsche übersetzen - von chillone - 09.01.2012, 21:03
RE: HTC Animated Weather ins Deutsche übersetzen - von DaFlo2812 - 10.01.2012, 08:20
RE: HTC Animated Weather ins Deutsche übersetzen - von Antares1900 - 15.01.2012, 13:30
RE: HTC Animated Weather ins Deutsche übersetzen - von ps1968 - 12.02.2012, 00:07
RE: HTC Animated Weather ins Deutsche übersetzen - von Rasputin007 - 13.02.2012, 16:45
RE: HTC Animated Weather ins Deutsche übersetzen - von isocko - 24.02.2012, 21:38
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 26.04.2012, 14:54
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 26.04.2012, 15:23
RE: HTC Animated Weather ins Deutsche übersetzen - von Rasputin007 - 27.04.2012, 01:45
RE: HTC Animated Weather ins Deutsche übersetzen - von papanoster - 13.05.2012, 14:16
RE: HTC Animated Weather ins Deutsche übersetzen - von gordond - 01.06.2012, 16:52
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 09.06.2012, 22:55
RE: HTC Animated Weather ins Deutsche übersetzen - von Fatih08 - 10.06.2012, 00:55
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 10.06.2012, 02:20
RE: HTC Animated Weather ins Deutsche übersetzen - von dertux - 12.06.2012, 09:55
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 19.06.2012, 19:12
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 19.06.2012, 19:30
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 19.06.2012, 19:34
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 19.06.2012, 19:35
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 19.06.2012, 19:44
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 19.06.2012, 19:58
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 19.06.2012, 20:13
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 19.06.2012, 20:41
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 20.06.2012, 16:22
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 20.06.2012, 19:08
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 20.06.2012, 19:33
RE: HTC Animated Weather ins Deutsche übersetzen - von Risk - 20.06.2012, 19:38
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 21.06.2012, 15:08
RE: HTC Animated Weather ins Deutsche übersetzen - von witzichmann - 27.06.2012, 08:49
HTC Animated Weather ins Deutsche übersetzen - von oldster - 28.06.2012, 05:08
RE: HTC Animated Weather ins Deutsche übersetzen - von witzichmann - 28.06.2012, 12:58
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 28.06.2012, 13:56
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 09.07.2012, 13:29
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 04.07.2012, 00:18
RE: HTC Animated Weather ins Deutsche übersetzen - von Lindsay - 07.07.2012, 11:13
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 08.07.2012, 23:31
HTC Animated Weather ins Deutsche übersetzen - von oldster - 09.07.2012, 06:29
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 09.07.2012, 09:36
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 09.07.2012, 09:59
RE: HTC Animated Weather ins Deutsche übersetzen - von Lindsay - 09.07.2012, 10:03
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 09.07.2012, 10:30
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 09.07.2012, 10:48
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 09.07.2012, 10:56
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 09.07.2012, 11:01
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 09.07.2012, 11:10
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 09.07.2012, 12:44
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 09.07.2012, 12:48
RE: HTC Animated Weather ins Deutsche übersetzen - von Bertek - 09.07.2012, 12:55
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 09.07.2012, 14:22
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 09.07.2012, 14:39
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 10.07.2012, 00:46
RE: HTC Animated Weather ins Deutsche übersetzen - von Lindsay - 10.07.2012, 11:58
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 11.07.2012, 02:50
RE: HTC Animated Weather ins Deutsche übersetzen - von lobo0404 - 09.07.2012, 16:39
RE: HTC Animated Weather ins Deutsche übersetzen - von Lindsay - 09.07.2012, 16:57
RE: HTC Animated Weather ins Deutsche übersetzen - von Bertek - 10.07.2012, 01:32
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 10.07.2012, 01:38
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 10.07.2012, 12:04
RE: HTC Animated Weather ins Deutsche übersetzen - von Lindsay - 10.07.2012, 12:37
RE: HTC Animated Weather ins Deutsche übersetzen - von uk1337 - 21.07.2012, 13:13
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 21.07.2012, 13:26
RE: HTC Animated Weather ins Deutsche übersetzen - von uk1337 - 21.07.2012, 13:41
HTC Animated Weather ins Deutsche übersetzen - von rohorubo - 08.02.2013, 10:21
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 08.02.2013, 10:50
RE: HTC Animated Weather ins Deutsche übersetzen - von witzichmann - 09.02.2013, 02:30
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 10.02.2013, 18:06
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 10.02.2013, 21:14
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 11.02.2013, 01:26
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 11.02.2013, 03:06
HTC Animated Weather ins Deutsche übersetzen - von oldster - 11.02.2013, 07:37
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 11.02.2013, 08:22
HTC Animated Weather ins Deutsche übersetzen - von oldster - 11.02.2013, 09:20
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 11.02.2013, 09:31
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 11.02.2013, 15:43
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 11.02.2013, 16:11
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 11.02.2013, 16:38
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 11.02.2013, 16:52
RE: HTC Animated Weather ins Deutsche übersetzen - von SashMan - 11.02.2013, 20:36
RE: HTC Animated Weather ins Deutsche übersetzen - von SashMan - 11.02.2013, 21:53
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 11.02.2013, 22:04
RE: HTC Animated Weather ins Deutsche übersetzen - von SashMan - 12.02.2013, 15:14
RE: HTC Animated Weather ins Deutsche übersetzen - von DerCzomby - 11.02.2013, 22:38
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 12.02.2013, 15:22
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 12.02.2013, 15:42
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 12.02.2013, 16:54
RE: HTC Animated Weather ins Deutsche übersetzen - von SashMan - 12.02.2013, 15:47
HTC Animated Weather ins Deutsche übersetzen - von oldster - 12.02.2013, 17:34
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 12.02.2013, 19:10
HTC Animated Weather ins Deutsche übersetzen - von oldster - 12.02.2013, 20:47
RE: HTC Animated Weather ins Deutsche übersetzen - von Behrouz - 12.02.2013, 22:05
RE: HTC Animated Weather ins Deutsche übersetzen - von mofde2003 - 12.02.2013, 23:15
HTC Animated Weather ins Deutsche übersetzen - von Juniorqwert - 13.02.2013, 00:33
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 13.02.2013, 02:29
RE: HTC Animated Weather ins Deutsche übersetzen - von michel83 - 13.02.2013, 15:26
RE: HTC Animated Weather ins Deutsche übersetzen - von Wildsau - 13.02.2013, 21:47
RE: HTC Animated Weather ins Deutsche übersetzen - von michel83 - 14.02.2013, 00:31
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 14.02.2013, 00:57
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 16.02.2013, 20:26
RE: HTC Animated Weather ins Deutsche übersetzen - von woehrle - 24.02.2013, 21:20
HTC Animated Weather ins Deutsche übersetzen - von oldster - 24.02.2013, 23:15
RE: HTC Animated Weather ins Deutsche übersetzen - von woehrle - 26.02.2013, 16:45
RE: HTC Animated Weather ins Deutsche übersetzen - von Sequoia - 26.02.2013, 23:17
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 27.02.2013, 16:53
RE: HTC Animated Weather ins Deutsche übersetzen - von applepsycho - 27.02.2013, 20:35
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 27.02.2013, 17:07
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 27.02.2013, 17:45
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 27.02.2013, 17:48
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 27.02.2013, 18:53
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 27.02.2013, 19:11
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 27.02.2013, 21:10
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 27.02.2013, 21:49
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 28.02.2013, 14:12
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 28.02.2013, 14:14
HTC Animated Weather ins Deutsche übersetzen - von oldster - 28.02.2013, 14:40
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 28.02.2013, 17:27
RE: HTC Animated Weather ins Deutsche übersetzen - von kevins - 28.02.2013, 18:04
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 28.02.2013, 18:09
RE: HTC Animated Weather ins Deutsche übersetzen - von Sladder - 12.03.2013, 19:50
RE: HTC Animated Weather ins Deutsche übersetzen - von kevins - 28.02.2013, 19:58
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 28.02.2013, 23:15
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 28.02.2013, 23:22
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 28.02.2013, 23:47
HTC Animated Weather ins Deutsche übersetzen - von oldster - 01.03.2013, 07:32
RE: HTC Animated Weather ins Deutsche übersetzen - von kevins - 01.03.2013, 13:34
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 01.03.2013, 11:15
HTC Animated Weather ins Deutsche übersetzen - von oldster - 01.03.2013, 12:06
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 01.03.2013, 13:45
RE: HTC Animated Weather ins Deutsche übersetzen - von kevins - 01.03.2013, 16:39
RE: HTC Animated Weather ins Deutsche übersetzen - von kevins - 02.03.2013, 18:05
HTC Animated Weather ins Deutsche übersetzen - von oldster - 02.03.2013, 18:59
RE: HTC Animated Weather ins Deutsche übersetzen - von kevins - 02.03.2013, 22:48
RE: HTC Animated Weather ins Deutsche übersetzen - von KKunze1959 - 03.03.2013, 11:17
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 04.03.2013, 13:35
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 05.03.2013, 10:05
HTC Animated Weather ins Deutsche übersetzen - von oldster - 05.03.2013, 12:48
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 05.03.2013, 13:08
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 07.03.2013, 19:44
RE: HTC Animated Weather ins Deutsche übersetzen - von Gwai - 07.03.2013, 22:34
RE: HTC Animated Weather ins Deutsche übersetzen - von Crush207 - 10.03.2013, 13:31
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 10.03.2013, 22:19
RE: HTC Animated Weather ins Deutsche übersetzen - von bricassard - 19.03.2013, 20:44
RE: HTC Animated Weather ins Deutsche übersetzen - von bricassard - 19.03.2013, 20:52
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 22.03.2013, 13:36
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 22.03.2013, 18:19
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 22.03.2013, 18:49
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 22.03.2013, 21:31
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 22.03.2013, 23:40
RE: HTC Animated Weather ins Deutsche übersetzen - von *Leopard* - 23.03.2013, 01:01
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 23.03.2013, 03:47
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 23.03.2013, 08:34
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 23.03.2013, 13:47
HTC Animated Weather ins Deutsche übersetzen - von oldster - 23.03.2013, 14:13
RE: HTC Animated Weather ins Deutsche übersetzen - von barnyblack - 23.03.2013, 20:22
RE: HTC Animated Weather ins Deutsche übersetzen - von afoerster - 27.03.2013, 13:44
HTC Animated Weather ins Deutsche übersetzen - von oldster - 27.03.2013, 15:39
RE: HTC Animated Weather ins Deutsche übersetzen - von afoerster - 27.03.2013, 22:24
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 28.03.2013, 23:44
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 31.03.2013, 22:34
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 03.04.2013, 17:27
HTC Animated Weather ins Deutsche übersetzen - von Gwai - 03.04.2013, 18:23
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 03.04.2013, 19:02
RE: HTC Animated Weather ins Deutsche übersetzen - von Gwai - 03.04.2013, 19:26
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 03.04.2013, 19:47
RE: HTC Animated Weather ins Deutsche übersetzen - von Gwai - 03.04.2013, 20:04
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 03.04.2013, 20:27
RE: HTC Animated Weather ins Deutsche übersetzen - von Gwai - 03.04.2013, 20:43
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 04.04.2013, 16:43
HTC Animated Weather ins Deutsche übersetzen - von Gwai - 04.04.2013, 17:48
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 04.04.2013, 17:54
RE: HTC Animated Weather ins Deutsche übersetzen - von Frechdachs - 04.04.2013, 21:47
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 04.04.2013, 22:06
RE: HTC Animated Weather ins Deutsche übersetzen - von hgs61 - 05.04.2013, 20:21
RE: HTC Animated Weather ins Deutsche übersetzen - von Chester007 - 05.04.2013, 00:50
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 07.04.2013, 12:29
RE: HTC Animated Weather ins Deutsche übersetzen - von Raimund 88 - 24.04.2013, 20:28
AW: RE: HTC Animated Weather ins Deutsche übersetzen - von Gwai - 03.05.2013, 12:00
RE: HTC Animated Weather ins Deutsche übersetzen - von Ultrafield - 06.05.2013, 22:26
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 12.05.2013, 15:05
RE: HTC Animated Weather ins Deutsche übersetzen - von unal2 - 13.03.2014, 16:27
RE: HTC Animated Weather ins Deutsche übersetzen - von unal2 - 21.05.2013, 22:58
HTC Animated Weather ins Deutsche übersetzen - von oldster - 22.05.2013, 06:25
RE: HTC Animated Weather ins Deutsche übersetzen - von wardog256 - 22.05.2013, 08:39
HTC Animated Weather ins Deutsche übersetzen - von Gwai - 22.05.2013, 07:18
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 25.05.2013, 06:36
RE: HTC Animated Weather ins Deutsche übersetzen - von Lothar0711 - 26.05.2013, 23:46
RE: HTC Animated Weather ins Deutsche übersetzen - von Kusselin - 30.05.2013, 14:00
RE: HTC Animated Weather ins Deutsche übersetzen - von Hunkebunken - 30.05.2013, 20:43
RE: HTC Animated Weather ins Deutsche übersetzen - von Kusselin - 31.05.2013, 00:42
RE: HTC Animated Weather ins Deutsche übersetzen - von Kusselin - 31.05.2013, 11:58
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 31.05.2013, 12:43
RE: HTC Animated Weather ins Deutsche übersetzen - von Kusselin - 31.05.2013, 15:08
RE: HTC Animated Weather ins Deutsche übersetzen - von Kusselin - 02.06.2013, 14:22
RE: HTC Animated Weather ins Deutsche übersetzen - von Tycal - 07.01.2014, 00:13
RE: HTC Animated Weather ins Deutsche übersetzen - von iPhoneSyd - 13.05.2014, 19:10
RE: HTC Animated Weather ins Deutsche übersetzen - von Uhoffi - 13.05.2014, 21:24
RE: HTC Animated Weather ins Deutsche übersetzen - von iPhoneSyd - 14.05.2014, 15:56
RE: HTC Animated Weather ins Deutsche übersetzen - von iPhoneSyd - 14.05.2014, 20:34
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 17.12.2014, 23:50
RE: HTC Animated Weather ins Deutsche übersetzen - von oldster - 18.12.2014, 08:22
HTC Animated Weather ins Deutsche übersetzen - von Gwai - 18.12.2014, 10:06
RE: HTC Animated Weather ins Deutsche übersetzen - von Big Duke - 18.12.2014, 11:05
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 11:48
RE: HTC Animated Weather ins Deutsche übersetzen - von Big Duke - 18.12.2014, 12:45
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 13:25
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 14:22
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 18.12.2014, 14:40
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 16:51
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 18.12.2014, 18:18
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 14:49
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 18.12.2014, 15:28
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 15:35
RE: HTC Animated Weather ins Deutsche übersetzen - von Big Duke - 18.12.2014, 15:37
HTC Animated Weather ins Deutsche übersetzen - von Gwai - 18.12.2014, 17:27
RE: HTC Animated Weather ins Deutsche übersetzen - von Denner - 18.12.2014, 17:56
HTC Animated Weather ins Deutsche übersetzen - von Dr.xike - 18.12.2014, 18:06
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 18:20
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 18.12.2014, 18:53
HTC Animated Weather ins Deutsche übersetzen - von Gwai - 19.12.2014, 15:29
RE: HTC Animated Weather ins Deutsche übersetzen - von hell 7 - 20.12.2014, 10:54
RE: HTC Animated Weather ins Deutsche übersetzen - von Ladyhoney - 24.04.2016, 22:58

Möglicherweise verwandte Themen…
Thema / Verfasser Antworten Ansichten Letzter Beitrag



Benutzer, die gerade dieses Thema anschauen: