Changeset 8949


Ignore:
Timestamp:
02/06/08 15:50:18 (5 years ago)
Author:
BrainSlayer
Message:

more translation stuff

Location:
src/router/kromo/dd-wrt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/router/kromo/dd-wrt/AnchorFree.asp

    r8912 r8949  
    1515        if (F.af_address.value.length==0) 
    1616            { 
    17             alert("a valid address field must be provided if this hotspot should be published on the wifi hotspot map!"); 
     17            alert(anchorfree.validaddr); 
    1818            return false; 
    1919            } 
    2020        if (F.af_city.value.length == 0 && F.af_zip.value.length == 0) 
    2121            { 
    22             alert("a valid city or zip/postal code must be provided if this hotspot should be published on the wifi hotspot map!"); 
     22            alert(anchorfree.validcity); 
    2323            return false; 
    2424            } 
     
    2626    if (F.af_category.value == 0) 
    2727        { 
    28         alert("please select a advertising category for your hotspot"); 
     28        alert(anchorfree.validcat); 
    2929        return false; 
    3030        } 
    3131    if (F.af_country.value == "null") 
    3232        { 
    33         alert("please select a country for your hotspot"); 
     33        alert(anchorfree.validcountry); 
    3434        return false; 
    3535        } 
    3636    if (F._af_agree.checked == false) 
    3737        { 
    38         alert("You must agree to the terms & conditions!"); 
     38        alert(anchorfree.validterms); 
    3939        return false;    
    4040        }else 
  • src/router/kromo/dd-wrt/lang_pack/english.js

    r8926 r8949  
    715715anchorfree.agreement="Terms and Conditions"; 
    716716anchorfree.agree="I ACCEPT AND AGREE"; 
     717anchorfree.validaddr="a valid address field must be provided if this hotspot should be published on the wifi hotspot map!"; 
     718anchorfree.validcity="a valid city or zip/postal code must be provided if this hotspot should be published on the wifi hotspot map!"; 
     719anchorfree.validcat="please select a advertising category for your hotspot"; 
     720anchorfree.validcountry="please select a country for your hotspot"; 
     721anchorfree.validterms="You must agree to the terms & conditions!"; 
    717722 
    718723var hanchorfree = new Object(); 
  • src/router/kromo/dd-wrt/lang_pack/german.js

    r8926 r8949  
    658658anchorfree.address_2="Addresse 2"; 
    659659anchorfree.city="Stadt"; 
    660 anchorfree.zip="Postleihzahl"; 
     660anchorfree.zip="Postleitzahl"; 
    661661anchorfree.state="Bundesland"; 
    662662anchorfree.country="Land"; 
     
    665665anchorfree.serviceid="Service ID"; 
    666666anchorfree.servicestatus="Service Status"; 
     667anchorfree.agreement="Nutzungsbestimmungen"; 
     668anchorfree.agree="Einverstanden"; 
     669anchorfree.validaddr="Um den Hotspot korrekt auf der Karte anzeigen zu können, muß eine gültige Addresse angegeben werden!"; 
     670anchorfree.validcity="Um den Hotspot korrekt auf der Karte anzeigen zu können, muß eine gültige Stadt oder Postleitzahl angegeben werden!"; 
     671anchorfree.validcat="Bitte wählen Sie eine Kategorie für ihren Hotspot aus!"; 
     672anchorfree.validcountry="Bitte geben Sie ihr Land an"; 
     673anchorfree.validterms="Sie müssen den Nutzungsbestimmungen zustimmen!"; 
     674 
     675 
    667676 
    668677hanchorfree.right1="Tritt dem AnchorFree Hotspot Werbenetzwerk bei"; 
Note: See TracChangeset for help on using the changeset viewer.