function wddxSerializer_serializeValue(obj) { var bSuccess = true; var val; if (obj == null) { this.write(""); } else if (typeof(val = obj.valueOf()) == "string") { this.serializeString(val); } else if (typeof(val = obj.valueOf()) == "number") { if ( typeof(obj.getTimezoneOffset) == "function" && typeof(obj.toGMTString) == "function") { this.write("" + (obj.getYear() < 1000 ? 1900+obj.getYear() : obj.getYear()) + "-" + (obj.getMonth() + 1) + "-" + obj.getDate() + "T" + obj.getHours() + ":" + obj.getMinutes() + ":" + obj.getSeconds()); if (this.useTimezoneInfo) { this.write(this.timezoneString); } this.write(""); } else { this.write("" + val + ""); } } else if (typeof(val = obj.valueOf()) == "boolean") { this.write(""); } else if (typeof(obj) == "object") { if (typeof(obj.wddxSerialize) == "function") { bSuccess = obj.wddxSerialize(this); } else if ( typeof(obj.join) == "function" && typeof(obj.reverse) == "function" && typeof(obj.sort) == "function" && typeof(obj.length) == "number") { this.write(""); for (var i = 0; bSuccess && i < obj.length; ++i) { bSuccess = this.serializeValue(obj[i]); } this.write(""); } else { if (typeof(obj.wddxSerializationType) == 'string') { this.write('') } else { this.write(""); } for (var prop in obj) { if (prop != 'wddxSerializationType') { bSuccess = this.serializeVariable(prop, obj[prop]); if (! bSuccess) { break; } } } this.write(""); } } else { bSuccess = false; } return bSuccess; } function wddxSerializer_serializeAttr(s) { for (var i = 0; i < s.length; ++i) { this.write(this.at[s.charAt(i)]); } } function wddxSerializer_serializeAttrOld(s) { this.write(s); } function wddxSerializer_serializeString(s) { this.write(""); for (var i = 0; i < s.length; ++i) { this.write(this.et[s.charAt(i)]); } this.write(""); } function wddxSerializer_serializeStringOld(s) { this.write(""); if (pos != -1) { startPos = 0; while (pos != -1) { this.write(s.substring(startPos, pos) + "]]>]]>", startPos); } else { pos = -1; } } this.write(s.substring(startPos, s.length)); } else { this.write(s); } this.write("]]>"); } function wddxSerializer_serializeVariable(name, obj) { var bSuccess = true; if (typeof(obj) != "function") { this.write(""); bSuccess = this.serializeValue(obj); this.write(""); } return bSuccess; } function wddxSerializer_write(str) { this.wddxPacket += str; } function wddxSerializer_serialize(rootObj) { this.wddxPacket = ""; this.write("
"); var bSuccess = this.serializeValue(rootObj); this.write(""); if (bSuccess) { return this.wddxPacket; } else { return null; } } function WddxSerializer() { if (navigator.appVersion != "" && navigator.appVersion.indexOf("MSIE 3.") == -1) { var et = new Array(); var n2c = new Array(); var c2n = new Array(); var at = new Array(); for (var i = 0; i < 256; ++i) { var d1 = Math.floor(i/64); var d2 = Math.floor((i%64)/8); var d3 = i%8; var c = eval("\"\\" + d1.toString(10) + d2.toString(10) + d3.toString(10) + "\""); n2c[i] = c; c2n[c] = i; if (i < 32 && i != 9 && i != 10 && i != 13) { var hex = i.toString(16); if (hex.length == 1) { hex = "0" + hex; } et[n2c[i]] = ""; at[n2c[i]] = ""; } else if (i < 128) { et[n2c[i]] = n2c[i]; at[n2c[i]] = n2c[i]; } else { et[n2c[i]] = "&#x" + i.toString(16) + ";"; at[n2c[i]] = "&#x" + i.toString(16) + ";"; } } et["<"] = "<"; et[">"] = ">"; et["&"] = "&"; at["<"] = "<"; at[">"] = ">"; at["&"] = "&"; at["'"] = "'"; at["\""] = """; this.n2c = n2c; this.c2n = c2n; this.et = et; this.at = at; this.serializeString = wddxSerializer_serializeString; this.serializeAttr = wddxSerializer_serializeAttr; } else { this.serializeString = wddxSerializer_serializeStringOld; this.serializeAttr = wddxSerializer_serializeAttrOld; } var tzOffset = (new Date()).getTimezoneOffset(); if (tzOffset >= 0) { this.timezoneString = '-'; } else { this.timezoneString = '+'; } this.timezoneString += Math.floor(Math.abs(tzOffset) / 60) + ":" + (Math.abs(tzOffset) % 60); this.preserveVarCase = false; this.useTimezoneInfo = true; this.serialize = wddxSerializer_serialize; this.serializeValue = wddxSerializer_serializeValue; this.serializeVariable = wddxSerializer_serializeVariable; this.write = wddxSerializer_write; } function wddxRecordset_isColumn(name) { return (typeof(this[name]) == "object" && name.indexOf("_private_") == -1); } function wddxRecordset_getRowCount() { var nRowCount = 0; for (var col in this) { if (this.isColumn(col)) { nRowCount = this[col].length; break; } } return nRowCount; } function wddxRecordset_addColumn(name) { var nLen = this.getRowCount(); var colValue = new Array(nLen); for (var i = 0; i < nLen; ++i) { colValue[i] = null; } this[this.preserveFieldCase ? name : name.toLowerCase()] = colValue; } function wddxRecordset_addRows(n) { for (var col in this) { if (this.isColumn(col)) { var nLen = this[col].length; for (var i = nLen; i < nLen + n; ++i) { this[col][i] = null; } } } } function wddxRecordset_getField(row, col) { return this[this.preserveFieldCase ? col : col.toLowerCase()][row]; } function wddxRecordset_setField(row, col, value) { this[this.preserveFieldCase ? col : col.toLowerCase()][row] = value; } function wddxRecordset_wddxSerialize(serializer) { var colNamesList = ""; var colNames = new Array(); var i = 0; for (var col in this) { if (this.isColumn(col)) { colNames[i++] = col; if (colNamesList.length > 0) { colNamesList += ","; } colNamesList += col; } } var nRows = this.getRowCount(); serializer.write(""); var bSuccess = true; for (i = 0; bSuccess && i < colNames.length; i++) { var name = colNames[i]; serializer.write(""); for (var row = 0; bSuccess && row < nRows; row++) { bSuccess = serializer.serializeValue(this[name][row]); } serializer.write(""); } serializer.write(""); return bSuccess; } function wddxRecordset_dump(escapeStrings) { var nRows = this.getRowCount(); var colNames = new Array(); var i = 0; for (var col in this) { if (typeof(this[col]) == "object") { colNames[i++] = col; } } var o = ""; for (i = 0; i < colNames.length; ++i) { o += ""; } o += ""; for (var row = 0; row < nRows; ++row) { o += ""; for (i = 0; i < colNames.length; ++i) { var elem = this.getField(row, colNames[i]); if (escapeStrings && typeof(elem) == "string") { var str = ""; for (var j = 0; j < elem.length; ++j) { var ch = elem.charAt(j); if (ch == '<') { str += "<"; } else if (ch == '>') { str += ">"; } else if (ch == '&') { str += "&"; } else { str += ch; } } o += (""); } else { o += (""); } } o += ""; } o += "
RowNumber" + colNames[i] + "
" + row + "" + str + "" + elem + "
"; return o; } function WddxRecordset() { this.preserveFieldCase = false; if (typeof(wddxRecordsetExtensions) == "object") { for (var prop in wddxRecordsetExtensions) { this[prop] = wddxRecordsetExtensions[prop] } } this.getRowCount = wddxRecordset_getRowCount; this.addColumn = wddxRecordset_addColumn; this.addRows = wddxRecordset_addRows; this.isColumn = wddxRecordset_isColumn; this.getField = wddxRecordset_getField; this.setField = wddxRecordset_setField; this.wddxSerialize = wddxRecordset_wddxSerialize; this.dump = wddxRecordset_dump; if (WddxRecordset.arguments.length > 0) { if (typeof(val = WddxRecordset.arguments[0].valueOf()) == "boolean") { this.preserveFieldCase = WddxRecordset.arguments[0]; } else { var cols = WddxRecordset.arguments[0]; var nLen = 0; if (WddxRecordset.arguments.length > 1) { if (typeof(val = WddxRecordset.arguments[1].valueOf()) == "boolean") { this.preserveFieldCase = WddxRecordset.arguments[1]; } else { nLen = WddxRecordset.arguments[1]; if (WddxRecordset.arguments.length > 2) { this.preserveFieldCase = WddxRecordset.arguments[2]; } } } for (var i = 0; i < cols.length; ++i) { var colValue = new Array(nLen); for (var j = 0; j < nLen; ++j) { colValue[j] = null; } this[this.preserveFieldCase ? cols[i] : cols[i].toLowerCase()] = colValue; } } } } function registerWddxRecordsetExtension(name, func) { if (typeof(name) == "string" && typeof(func) == "function") { if (typeof(wddxRecordsetExtensions) != "object") { wddxRecordsetExtensions = new Object(); } wddxRecordsetExtensions[name] = func; } } function wddxBinary_wddxSerialize(serializer) { serializer.write( "" + this.data + ""); return true; } function WddxBinary(data, encoding) { this.data = data != null ? data : ""; this.encoding = encoding != null ? encoding : "base64"; this.wddxSerialize = wddxBinary_wddxSerialize; } var request = {}; request["lang"] = "de"; request["language_id"] = "1"; var application = {}; application.translations = new Object(); application.translations["de"] = new Object(); application.translations["de"]["newsletter"] = new Object(); application.translations["de"]["newsletter"]["txt_nicht_richtig_dargestellt"] = "Sollte diese Nachricht nicht richtig dargestellt werden, klicken Sie bitte hier."; application.translations["de"]["newsletter"]["txt_email_notfound"] = "Ihre Email Adresse wurde in der Datenbank nicht gefunden.

- Zur Anmeldung"; application.translations["de"]["newsletter"]["txt_abmeldelink2"] = "Wenn Sie den Newsletter nicht mehr erhalten wollen, klicken Sie bitte hier."; application.translations["de"]["newsletter"]["txt_error_interests"] = "kein Interessensbereich gewählt"; application.translations["de"]["newsletter"]["btn_abmelden"] = "Abmelden"; application.translations["de"]["newsletter"]["txt_herr"] = "Herr"; application.translations["de"]["newsletter"]["btn_bestellen"] = "Bestellen"; application.translations["de"]["newsletter"]["txt_newsletter_bestellen"] = "Bestellen Sie unseren kostenlosen Newsletter!"; application.translations["de"]["newsletter"]["txt_error_gruppe"] = "Bitte wählen Sie eine Gruppe aus."; application.translations["de"]["newsletter"]["txt_error_email"] = "keine oder ungültige Email-Adresse"; application.translations["de"]["newsletter"]["btn_absenden"] = "Absenden"; application.translations["de"]["newsletter"]["txt_error_anrede"] = "Anrede fehlt"; application.translations["de"]["newsletter"]["email_sender"] = "newsletter@parkoffice.at"; application.translations["de"]["newsletter"]["txt_komplet_abmelden"] = "Klicken Sie auf \"abmelden\" um sich von unserem Newsletter endgültig abzumelden."; application.translations["de"]["newsletter"]["txt_newsletter_header"] = "parkoffice Newsletter"; application.translations["de"]["newsletter"]["txt_email"] = "Email"; application.translations["de"]["newsletter"]["txt_gruppen_auswahl"] = "Bitte wählen Sie eine Gruppe aus"; application.translations["de"]["newsletter"]["txt_change_interests"] = "Sie können Ihre Einstellungen hier ändern: Tätigen Sie bitte Ihre neue Wahl, und klicken Sie auf „absenden“."; application.translations["de"]["newsletter"]["txt_error_name"] = "Name fehlt"; application.translations["de"]["newsletter"]["txt_confirmed"] = "

Vielen Dank, Ihre Anmeldung war erfolgreich!

Wir werden Ihnen nun regelmäßig viele nützliche Informationen und Tipps zukommen lassen.

"; application.translations["de"]["newsletter"]["txt_firma"] = "Firma"; application.translations["de"]["newsletter"]["footer_copyright"] = "Copyright © 2010 e|motion management GmbH "; application.translations["de"]["newsletter"]["txt_error_header"] = "Bei Ihrer Anmeldung sind folgende Fehler aufgetreten:"; application.translations["de"]["newsletter"]["txt_email_doubleopt_subject"] = "parkoffice Newsletter Aktivierung"; application.translations["de"]["newsletter"]["txt_email_doubleopt"] = "

Ihre Emailadresse (|email|) wurde für den parkoffice Newsletter eingetragen!

Aus Spam-Schutzgründen und um ungewollte Abonnements zu verhindern, müssen Sie den Registrierungsvorgang bestätigen, bevor der nächste Newsletter auch an Sie versendet wird. Dazu klicken Sie bitte folgenden Link an:

|confirm_link|


Sollte der Link nicht funktionieren, kopieren Sie die ganze Zeile mit der http-Adresse bitte in Ihr Browserfenster und rufen sie auf.

Falls Ihre Email-Adresse unberechtigt eingetragen wurde oder Sie den Newsletter doch nicht erhalten möchten, ignorieren Sie diese Nachricht. Wird der obige Link nicht angeklickt, wird das Abonnement nicht gestartet.

"; application.translations["de"]["newsletter"]["txt_ecg"] = "Ja, ich möchte zukünftig bis auf Widerruf den Newsletter erhalten, auch wenn ich auf der Liste nach §7 ECG stehe."; application.translations["de"]["newsletter"]["txt_name"] = "Name"; application.translations["de"]["newsletter"]["txt_error_egc"] = "Bestellbedingungen wurden nicht akzeptiert"; application.translations["de"]["newsletter"]["txt_newsletter_abmeldung"] = "Newsletter Abmeldung"; application.translations["de"]["newsletter"]["txt_interessen_auswaehlen"] = "Interessensbereich wählen"; application.translations["de"]["newsletter"]["txt_newsletter_anmeldung"] = "Newsletter Anmeldung"; application.translations["de"]["newsletter"]["txt_pers_anrede_frau"] = "Sehr geehrte Frau"; application.translations["de"]["newsletter"]["txt_error_angemeldet"] = "Sie sind schon für den Newsletter angemeldet. Falls Sie Ihre Einstellungen ändern möchten, benutzen Sie bitte den entsprechenden Link im Newsletter."; application.translations["de"]["newsletter"]["txt_doubleopt"] = "

Vielen Dank für Ihre Anmeldung!

Um sicherzustellen dass die angegebene Emailadresse korrekt ist, wurde eine Mail an Ihre Email Adresse geschickt. Um die Anmeldung abzuschließen, klicken Sie bitte noch auf den Bestätigungs-Link in dieser Mail.

"; application.translations["de"]["newsletter"]["txt_abgemeldet"] = "

Ihre Abmeldung war erfolgreich.

"; application.translations["de"]["newsletter"]["txt_abmeldelink"] = "Wenn Sie Ihre persönlichen Einstellungen ändern oder den Newsletter nicht mehr erhalten wollen, klicken Sie bitte hier."; application.translations["de"]["newsletter"]["txt_pers_anrede_firma"] = "Sehr geehrte Damen und Herren"; application.translations["de"]["newsletter"]["txt_pers_anrede_herr"] = "Sehr geehrter Herr"; application.translations["de"]["newsletter"]["txt_daten"] = "Ihre Daten"; application.translations["de"]["newsletter"]["txt_frau"] = "Frau"; application.translations["de"]["newsletter"]["txt_changed"] = "Ihe Einstellungen wurden gespeichert."; application.translations["de"]["google_map"] = new Object(); application.translations["de"]["google_map"]["from_here"] = "Von hier"; application.translations["de"]["google_map"]["city"] = "Ort"; application.translations["de"]["google_map"]["zipcode"] = "PLZ"; application.translations["de"]["google_map"]["find"] = "Finden"; application.translations["de"]["google_map"]["to_here"] = "Hier her"; application.translations["de"]["google_map"]["calculate"] = "Berechnen"; application.translations["de"]["google_map"]["get_direction"] = "Route berechnen"; application.translations["de"]["google_map"]["street"] = "Straße"; application.translations["de"]["google_map"]["start_address"] = "Startadresse"; application.translations["de"]["google_map"]["end_address"] = "Zieladresse"; application.translations["de"]["various"] = new Object(); application.translations["de"]["various"]["edit"] = "Bearbeiten"; application.translations["de"]["various"]["unpublish"] = "Zurückziehen"; application.translations["de"]["various"]["blog_confirm_delete"] = "Soll der Blogeintrag wirklich gelöscht werden?"; application.translations["de"]["various"]["paging_info"] = "Seite {current} von {total}"; application.translations["de"]["various"]["date_location"] = "Datum &amp; Uhrzeit"; application.translations["de"]["various"]["delete"] = "Löschen"; application.translations["de"]["various"]["close_help"] = "Hilfe ausblenden"; application.translations["de"]["various"]["publish"] = "Veröffentlichen"; application.translations["de"]["various"]["appointment_delete"] = "Soll der Termin wirklich gelöscht werden?"; application.translations["de"]["various"]["ad_confirm_delete"] = "Soll das Inserat wirklich gelöscht werden?"; application.translations["de"]["various"]["blog_confirm_publish"] = "Soll der Blogeintrag wirklich veröffentlicht werden?"; application.translations["de"]["various"]["preview"] = "Vorschau"; application.translations["de"]["various"]["close_help_info"] = "Klicken Sie auf den i-Button (rechts oben), um die Hilfe wieder einzublenden."; application.translations["de"]["various"]["video_confirm_delete"] = "Soll das Video wirklich gelöscht werden?"; application.translations["de"]["various"]["edit_entry"] = "Eintrag bearbeiten"; application.translations["de"]["various"]["activity"] = "Veranstaltung"; application.translations["de"]["various"]["paging_back"] = "zurück"; application.translations["de"]["various"]["paging_no_entries"] = "Keine Einträge vorhanden."; application.translations["de"]["various"]["paging_next"] = "weiter"; application.translations["de"]["various"]["go_to_portfolio"] = "Zum Portfolio"; application.translations["de"]["various"]["video_confirm_publish"] = "Soll das Video wirklich veröffentlicht werden?"; application.translations["de"]["various"]["portfolio_confirm_publish"] = "Soll das Portfolio wirklich veröffentlicht werden?"; application.translations["de"]["various"]["ad_confirm_publish"] = "Soll das Inserat wirklich veröffentlicht werden?"; application.translations["de"]["various"]["portfolio_confirm_delete"] = "Soll das Portfolio wirklich gelöscht werden?"; application.translations["de"]["various"]["check_input"] = "Bitte füllen Sie alle Pflichtfelder aus und überprüfen Sie Ihre Eingaben"; application.translations["de"]["various"]["appointment_publish"] = "Soll der Termin wirklich veröffentlicht werden?"; application.translations["de"]["various"]["go_to_blog_entry"] = "Zum Blogbeitrag"; application.translations["de"]["various"]["closed"] = "Gesperrt!"; application.translations["de"]["various"]["latest_posts"] = "Letzte Einträge"; application.translations["de"]["video"] = new Object(); application.translations["de"]["video"]["youtube_import_own_video"] = "Eigenes YouTube Video importieren"; application.translations["de"]["video"]["new_video"] = "Neues Video"; application.translations["de"]["video"]["category_description_intern"] = "

Diese Kategorie wird in der Mediathek auf der Webseite verwendet.

"; application.translations["de"]["video"]["youtube_video_not_available"] = "

Ihr Video wird in Kürze verfügbar sein. Bitte haben Sie noch etwas Geduld.

\r\n

 

\r\n

Sollte das Video nach mehreren Stunden noch nicht verfügbar sein, ist möglicherweise ein Fehler in der Bearbeitung aufgetreten oder das Video wurde von Ihnen oder YouTube entfernt.

\r\n

 

\r\n

Sollte dies der Fall sein, so versuchen Sie bitte einen erneuten Upload.

"; application.translations["de"]["video"]["youtube_sync_video"] = "

Eintrag laufend anhand der YouTube Video Daten aktualisieren.

"; application.translations["de"]["video"]["delete_video"] = "

Wollen Sie dieses Video wirklich entfernen?

"; application.translations["de"]["video"]["no_video"] = "

Es wurde noch kein Video erfasst.

"; application.translations["de"]["video"]["youtube_update_video_on_platform"] = "

Videodaten auch auf YouTube updaten.

"; application.translations["de"]["video"]["category_description_extern"] = "

Diese Kategorie wird für eine externe Plattform (z. B. YouTube) benötigt.

"; application.translations["de"]["video"]["youtube_video_rejected"] = "

Ihr Video wurde leider abgelehnt.

\r\n

 

\r\n

Der häufigste Ablehnungsgrund ist ein doppelt hochgeladenes Video.

\r\n

 

\r\n

Nähere Informationen finden Sie in der YouTube Hilfe.

\r\n

 

"; application.translations["de"]["video"]["youtube_video_upload_information"] = "

Das Video wird hochgeladen...

\r\n

 

\r\n

Bitte haben Sie einen Augenblick Geduld.

\r\n

 

\r\n

Nachdem das Video hochgeladen wurde benötigt YouTube noch ein wenig Zeit um das Video bereitzustellen.

"; application.translations["de"]["video"]["please_choose"] = "Bitte wählen..."; application.translations["de"]["video"]["video_id_or_link"] = "Video ID oder Link"; application.translations["de"]["video"]["youtube_video_available_nown"] = "

Das aktuelle YouTube Video ist verfügbar.

"; application.translations["de"]["video"]["update_existing_video"] = "Bestehenden Eintrag updaten"; application.translations["de"]["video"]["delete_video_on_platform"] = "

Video auch auf externer Plattform löschen (z. B. YouTube)

"; application.translations["de"]["video"]["youtube_video_available"] = "

Ihr aktuelles Video wurde Ihrem YouTube Account erfolgreich hinzugefügt und ist verfügbar.

"; application.translations["de"]["video"]["youtube_import_other_video"] = "Beliebiges YouTube Video importieren"; application.translations["de"]["video"]["youtube_video_update_information"] = "

Die Daten werden upgedated...

\r\n

 

\r\n

Bitte haben Sie einen Augenblick Geduld.

"; application.translations["de"]["video"]["youtube_update_data_error"] = "Die Videodaten konnten nicht übernommen werden."; application.translations["de"]["video"]["video"] = "Video"; application.translations["de"]["video"]["current_status"] = "Aktueller Status"; application.translations["de"]["tournament"] = new Object(); application.translations["de"]["tournament"]["clock"] = "Uhr"; application.translations["de"]["tournament"]["not_any_1"] = "keines"; application.translations["de"]["tournament"]["not_any_2"] = "keine"; application.translations["de"]["tournament"]["date"] = "Datum"; application.translations["de"]["tournament"]["time"] = "Zeit"; application.translations["de"]["tournament"]["and"] = "und"; application.translations["de"]["tournament"]["no_games_played_yet"] = "Es wurden noch keine Spiele ausgetragen"; application.translations["de"]["tournament"]["points"] = "Punkte"; application.translations["de"]["tournament"]["teams"] = "Mannschaften"; application.translations["de"]["tournament"]["sc_draw"] = "U"; application.translations["de"]["tournament"]["teams_in"] = "Mannschaften -"; application.translations["de"]["tournament"]["match_table"] = "Spieltabelle"; application.translations["de"]["tournament"]["standings"] = "Platzierung"; application.translations["de"]["tournament"]["tba"] = "tba"; application.translations["de"]["tournament"]["search_team"] = "Mannschaft suchen"; application.translations["de"]["tournament"]["date_1"] = "Spieltermine"; application.translations["de"]["tournament"]["scorer"] = "Torschütze"; application.translations["de"]["tournament"]["team_tavern"] = "Stammtischgasthaus"; application.translations["de"]["tournament"]["group"] = "Gruppe"; application.translations["de"]["tournament"]["result"] = "Ergebnis"; application.translations["de"]["tournament"]["match_table_disqualified_note"] = "Mannschaft wurde disqualifiziert."; application.translations["de"]["tournament"]["team_website"] = "Teamwebsite"; application.translations["de"]["tournament"]["location"] = "Spielort"; application.translations["de"]["tournament"]["first_place"] = "Erstplatzierter"; application.translations["de"]["tournament"]["match_table_first_note"] = "Die erste Mannschaft steigt ins Finale auf."; application.translations["de"]["tournament"]["match_table_groups"] = "Übersichtstabelle"; application.translations["de"]["tournament"]["show_team_detail"] = "Termine & Ergebnisse anzeigen"; application.translations["de"]["tournament"]["team_name"] = "Mannschaftsname"; application.translations["de"]["tournament"]["location_1"] = "Ort"; application.translations["de"]["tournament"]["team"] = "Mannschaft"; application.translations["de"]["tournament"]["sc_lost"] = "N"; application.translations["de"]["tournament"]["matches_played_in_location"] = "Folgende Spiele werden hier ausgetragen"; application.translations["de"]["tournament"]["dates_and_results"] = "Termine / Ergebnisse"; application.translations["de"]["tournament"]["goals"] = "Tore"; application.translations["de"]["tournament"]["hide_team_detail"] = "Termine & Ergebnisse verbergen"; application.translations["de"]["tournament"]["sc_win"] = "S"; application.translations["de"]["tournament"]["scorers_list_10"] = "Torschützenliste (Besten 10)"; application.translations["de"]["tournament"]["matches"] = "Spiele"; application.translations["de"]["main"] = new Object(); application.translations["de"]["main"]["tournament_small_content_title"] = "Das Kleinfeldturnier für alle Hobbymannschaften"; application.translations["de"]["main"]["search_results_found"] = "Es wurden ## Datensätze gefunden."; application.translations["de"]["main"]["btn_next"] = "Vorwärts"; application.translations["de"]["main"]["txt_plz"] = "PLZ"; application.translations["de"]["main"]["open_gallery"] = "Galerie öffnen"; application.translations["de"]["main"]["tournament_big"] = "Großfeldturnier"; application.translations["de"]["main"]["to_tournament"] = "zum"; application.translations["de"]["main"]["btn_selection"] = "Auswahl"; application.translations["de"]["main"]["txt_openimage"] = "Bild öffnen"; application.translations["de"]["main"]["back_to_overview"] = "zurück zur Übersicht"; application.translations["de"]["main"]["tournament_small"] = "Kleinfeldturnier"; application.translations["de"]["main"]["btn_gallery"] = "Bildgalerie öffnen"; application.translations["de"]["main"]["search_hint_1"] = "Stichwörter sorgfältig wählen"; application.translations["de"]["main"]["txt_bemerkung"] = "Bemerkung"; application.translations["de"]["main"]["more_about"] = "mehr dazu"; application.translations["de"]["main"]["copyright_start"] = "© Copyright"; application.translations["de"]["main"]["btn_send"] = "Abschicken"; application.translations["de"]["main"]["news"] = "News"; application.translations["de"]["main"]["txt_strasse"] = "Strasse"; application.translations["de"]["main"]["txt_produkt"] = "Produkt"; application.translations["de"]["main"]["btn_more2"] = "Mehr"; application.translations["de"]["main"]["all_news"] = "alle News"; application.translations["de"]["main"]["btn_close_window"] = "Fenster schließen"; application.translations["de"]["main"]["btn_close"] = "Schließen"; application.translations["de"]["main"]["activate_javascript"] = "Javascript ist nicht aktiviert! Bitte aktiviern Sie Javascript in Ihren Browsereinstellungen."; application.translations["de"]["main"]["search_results_label"] = "Suchergebnisse"; application.translations["de"]["main"]["txt_download3"] = "Dateigröße:"; application.translations["de"]["main"]["btn_prev"] = "Rückwärts"; application.translations["de"]["main"]["search_text_search_label"] = "Textsuche"; application.translations["de"]["main"]["copyright"] = "

Copyright © {year} e|motion management GmbH / Site created by parkside

"; application.translations["de"]["main"]["sponsors"] = "Sponsoren"; application.translations["de"]["main"]["txt_search1"] = "Suche"; application.translations["de"]["main"]["txt_search2"] = "Suchen"; application.translations["de"]["main"]["txt_no_search_results"] = "Ihre Abfrage lieferte keine Suchergebnisse. Bitte treffen Sie eine andere Wahl."; application.translations["de"]["main"]["txt_email"] = "E-Mail"; application.translations["de"]["main"]["txt_kommentar"] = "Kommentar"; application.translations["de"]["main"]["btn_start_download"] = "Download Starten"; application.translations["de"]["main"]["txt_telefon"] = "Telefon"; application.translations["de"]["main"]["alert_search1"] = "Es wurden keine mit Ihrer Suchanfrage übereinstimmenden Ergebnisse gefunden!"; application.translations["de"]["main"]["alert_search2"] = "

Die folgenden Hinweise sollten Ihnen helfen, bessere Suchergebnisse zu erzielen.

  • Suchbegriffe müssen mindestens 3 Zeichen lang sein.
  • Stichwörter sorgfältig wählen.
  • Sie sollten bei Ihrer Suche möglichst präzise Angaben machen.
"; application.translations["de"]["main"]["btn_detail"] = "Detailansicht"; application.translations["de"]["main"]["txt_nachname"] = "Nachname"; application.translations["de"]["main"]["txt_searchresult"] = "Suchergebnisse für \"##\""; application.translations["de"]["main"]["search_not_found"] = "Es wurden keine mit Ihrer Suchanfrage übereinstimmenden Ergebnisse gefunden!"; application.translations["de"]["main"]["search_further_hits"] = "+ Weitere ## Treffer in"; application.translations["de"]["main"]["btn_show"] = "Anzeigen"; application.translations["de"]["main"]["txt_privat"] = "Privatperson"; application.translations["de"]["main"]["txt_searchitem"] = "Suchbegriff"; application.translations["de"]["main"]["txt_firma"] = "Firma"; application.translations["de"]["main"]["btn_more1"] = "Mehr darüber"; application.translations["de"]["main"]["txt_saveimage"] = "Bild speichern"; application.translations["de"]["main"]["txt_vorname"] = "Vorname"; application.translations["de"]["main"]["download_type"] = "Typ"; application.translations["de"]["main"]["txt_gallery1"] = "Bild ## von ##"; application.translations["de"]["main"]["search_product_label"] = "Produkt"; application.translations["de"]["main"]["no_flash_link"] = "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW"; application.translations["de"]["main"]["tournament_big_content_title"] = "Das Großfeldturnier für alle Hobbymanschaften"; application.translations["de"]["main"]["txt_download1"] = "Titel des Downloads:"; application.translations["de"]["main"]["txt_land"] = "Land"; application.translations["de"]["main"]["search_hint_2"] = "Sie sollten bei Ihrer Suche möglichst präzise Angaben machen."; application.translations["de"]["main"]["btn_back"] = "Zurück"; application.translations["de"]["main"]["txt_download2"] = "Dateiformat:"; application.translations["de"]["main"]["btn_read_more"] = "Weiterlesen"; application.translations["de"]["main"]["btn_top"] = "zum Seitenanfang"; application.translations["de"]["main"]["btn_thumbs"] = "Thumbnails"; application.translations["de"]["main"]["btn_closeimage"] = "Zum Schließen ins Bild klicken"; application.translations["de"]["main"]["title"] = "parkoffice"; application.translations["de"]["main"]["search_cms_pages"] = "Allgemeine Seiten"; application.translations["de"]["main"]["btn_go"] = "Los"; application.translations["de"]["main"]["flash_warning_msg"] = "Für die vollständige Funktionalität der Website installieren Sie bitte den aktuellen Flashplayer! Klicken Sie den folgenden Link um diesen kostenlos zu installieren!"; application.translations["de"]["main"]["paging_entra_amount_selector"] = "Einträge pro Seite"; application.translations["de"]["main"]["search_hints"] = "Die folgenden Hinweise sollten Ihnen helfen, bessere Suchergebnisse zu erzielen."; application.translations["de"]["main"]["txt_details"] = "Details"; application.translations["de"]["main"]["txt_pflichtfelder"] = "Bitte geben Sie alle mit * gekennzeichneten Felder ein."; application.translations["de"]["main"]["search_results_found_singular"] = "Es wurde 1 Datensatz gefunden."; application.translations["de"]["main"]["txt_detail"] = "Detail"; application.translations["de"]["main"]["txt_ort"] = "Ort"; application.translations["de"]["main"]["share"] = "Weitersagen"; application.translations["de"]["main"]["search_all_items_label"] = "Alle"; var url = new Object();