Changeset 154

Show
Ignore:
Timestamp:
08/24/07 16:51:05 (17 months ago)
Author:
jonas
Message:

change lang to en

Location:
trunk
Files:
1 removed
7 modified

Legend:

Unmodified
Added
Removed
  • trunk/templates/domain_view.tpl

    r152 r154  
    11{if $if_superadmin == 1 or $if_admin == '1' and $access_domain eq 'true' } 
    2 {literal} 
     2 
     3 
    34<script type="text/javascript"> 
    4  function fade(name) { 
    5   if( document.getElementById(name + 't').style.display == "none" ) { 
     5 function fade(name) {ldelim} 
     6  if( document.getElementById(name + 't').style.display == "none" ) {ldelim} 
    67   document.getElementById(name + 't').style.display = "block"; 
    7    document.getElementById(name + 'l').innerHTML = "Ausblenden"; 
    8   } else { 
     8   document.getElementById(name + 'l').innerHTML = "{t}hide{/t}"; 
     9  {rdelim} else {ldelim} 
    910   document.getElementById(name + 't').style.display = "none"; 
    10    document.getElementById(name + 'l').innerHTML = "Einblenden"; 
    11   } 
    12  } 
     11   document.getElementById(name + 'l').innerHTML = "{t}show{/t}"; 
     12  {rdelim} 
     13 {rdelim} 
    1314</script> 
    14 {/literal} 
     15 
    1516<table border="0" class="domain_view"> 
    1617<tr> 
  • trunk/templates/sadmin_add.tpl

    r141 r154  
    22        <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
    33                <tr> 
    4                         <td>{$labels.username}:</td> 
     4                        <td>{t}username:{/t}</td> 
    55                        <td><input name="username" maxlength="8" value="{$sausername}"  type="text" /></td> 
    66                </tr> 
    77                <tr> 
    8                         <td>Name:</td> 
     8                        <td>{t}full name:{/t}</td> 
    99                        <td><input name="full_name" value="{$full_name}"  type="text" /></td> 
    1010                </tr> 
    1111                <tr> 
    12                         <td>{$labels.password}:</td> 
     12                        <td>{t}password:{/t}</td> 
    1313                        <td><input name="passwd"  value="" type="password" maxlength="{$max_passwd_len}" /></td>  
    1414                </tr> 
    1515                <tr> 
    16                         <td>{$labels.access}:</td> 
     16                        <td>{t}access:{/t}</td> 
    1717                        <td><select name="access">  
    18                                 <option value="1">{$labels.opt_yes}</option> 
    19                                 <option value="0">Nein</option> 
     18                                <option value="1">{t}yes{/t}</option> 
     19                                <option value="0">{t}no{/t}</option> 
    2020                        </select></td> 
    2121                </tr> 
    2222                <tr> 
    23                         <td>{$labels.sadmin_manager}:</td> 
     23                        <td>{t}superadmin manager:{/t}</td> 
    2424                        <td><select name="manager"> 
    25                                 <option value="0">Nein</option> 
    26                                 <option value="1">{$labels.opt_yes}</option> 
     25                                <option value="0">{t}no{/t}</option> 
     26                                <option value="1">{t}yes{/t}</option> 
    2727                                 
    2828                        </select></td> 
     
    3232                        </td> 
    3333                        <td> 
    34                                 <input type="submit" name="submit" value="{$labels.create}"  />  
     34                                <input type="submit" name="submit" value="{t}create{/t}"  />  
    3535                        </td> 
    3636                </tr> 
  • trunk/templates/sadmin_edit.tpl

    r141 r154  
    1818<table> 
    1919<tr> 
    20  <td>Benutzername: </td> 
     20 <td>{t}username:{/t}</td> 
    2121 <td>{$username}</td> 
    2222</tr> 
    2323<tr> 
    24  <td>Name: </td> 
     24 <td>{t}full name:{/t}</td> 
    2525 <td><input name="full_name" value="{$full_name}" type="text"/></td> 
    2626</tr> 
    2727<tr> 
    28  <td>Passwort:</td> 
     28 <td>{t}password:{/t}</td> 
    2929 <td><input name="passwd" value="" type="password" maxlength="{$max_passwd_len}" /></td> 
    3030</tr> 
    3131 
    3232<tr> 
    33  <td>Zugriff:</td> 
     33 <td>{t}access:{/t}</td> 
    3434 <td><select name="access"> 
    35      <option value="1">Ja</option> 
     35     <option value="1">{t}yes{/t}</option> 
    3636     {if $access eq '0'} 
    37      <option value="0" selected="selected">Nein</option> 
     37     <option value="0" selected="selected">{t}no{/t}</option> 
    3838     {else} 
    39      <option value="0">Nein</option> 
     39     <option value="0">{t}no{/t}</option> 
    4040     {/if} 
    4141     </select></td> 
     
    4343</tr> 
    4444<tr> 
    45  <td>Manager:</td> 
     45 <td>{t}superadmin manager:{/t}</td> 
    4646 <td><select name="manager"> 
    47      <option value="1">Ja</option> 
     47     <option value="1">{t}yes{/t}</option> 
    4848     {if $manager eq '0'} 
    49      <option value="0" selected="selected">Nein</option> 
     49     <option value="0" selected="selected">{t}no{/t}</option> 
    5050     {else} 
    51      <option value="0">Nein</option> 
     51     <option value="0">{t}no{/t}</option> 
    5252     {/if} 
    5353     </select></td> 
     
    5656 
    5757<tr> 
    58  <td colspan="2" style="text-align:center;"><input type="submit" name="submit" value="Speichern" /></td> 
     58 <td colspan="2" style="text-align:right;"><input type="submit" name="submit" value="{t}save{/t}" /></td> 
    5959</tr> 
    6060</table> 
  • trunk/templates/sadmin_options.tpl

    r141 r154  
    11<table border="0"> 
    22        <tr> 
    3                 <td style="width:140px;">Mailfiter:</td> 
     3                <td style="width:140px;">{t}mailfilter:{/t}</td> 
    44                <td><form id="sadmin_mf_rebuild" method="post"><input type="hidden" id="mf_rebuild" name="mf_rebuild" value="0"/> 
    5                 <input type="submit"  alt="#TB_inline?height=300&width=400&inlineId=myOnPageContent" title="Baue alle Mailfilter neu" class="thickbox" name="mf_rebuild_save" value="Baue alle Mailfilter neu"  /> 
     5                <input type="submit"  alt="#TB_inline?height=300&width=400&inlineId=myOnPageContent" title="{t}rebuild all mailfilters{/t}" class="thickbox" name="mf_rebuild_save" value="{t}rebuild all mailfilters{/t}"  /> 
    66                </form></td> 
    77        </tr> 
     
    1010 
    1111<div id="myOnPageContent" style="display:none"> 
    12 <span style="color:red;font-weight:bold;font-size:15pt;">- ACHTUNG -</span><br/> 
     12<span style="color:red;font-weight:bold;font-size:15pt;">{t}- Warning -{/t}</span><br/> 
    1313<br/> 
    14 <span style="font-weight:none;">Diese Funktion baut alle Mailfilter neu!<br/>Falls die <b>.mailfilter</b>-Dateien von Hand angepasst wurden, werden Sie hiermit gel&ouml;scht!</span> 
     14<span style="font-weight:none;">{t escape='off'}This function rebuilds all mailfilters!<br>If you changed some filters by hand, it will be deleted!{/t}</span> 
    1515<br/> 
    1616<p style="text-align:center"> 
    17 <a href="#" onClick="tb_remove();">Abbrechen</a> | 
    18 <a href="#" onclick="cpves_mf_rebuild_ok();">Ja, baue alle Mailfilter neu!</a> 
     17<a href="#" onClick="tb_remove();">{t}abort{/t}</a> | 
     18<a href="#" onclick="cpves_mf_rebuild_ok();">{t}Yes, rebuild all filters{/t}</a> 
    1919</p> 
    2020</div> 
  • trunk/templates/sadmin_passwd.tpl

    r141 r154  
    22        <table width="100%" border="0" cellspacing="0" cellpadding="0"> 
    33                <tr> 
    4                         <td>Benutzername:</td> 
     4                        <td>{t}username:{/t}</td> 
    55                        <td>{$username}</td> 
    66                </tr> 
    77                <tr> 
    8                         <td>Altes Passwort:</td> 
     8                        <td>{t}old password:{/t}</td> 
    99                        <td><input type="password" name="old_passwd"/></td> 
    1010                </tr> 
    1111                <tr> 
    12                         <td>Neues Passwort:</td> 
     12                        <td>{t}new password:{/t}</td> 
    1313                        <td><input name="new_passwd1" maxlength="{$max_passwd_len}" type="password" /></td> 
    1414                </tr> 
    1515                <tr> 
    16                         <td>Wiederholen:</td> 
     16                        <td>{t}repeat new password:{/t}</td> 
    1717                        <td><input name="new_passwd2" maxlength="{$max_passwd_len}" type="password" /></td> 
    1818                </tr> 
     
    2020                        <td> 
    2121                        </td> 
    22                         <td><input name="s_submit" value="&Auml;ndern" type="submit" /></td> 
     22                        <td><input name="s_submit" value="{t}change password{/t}" type="submit" /></td> 
    2323                </tr> 
    2424        </table> 
  • trunk/templates/sadmin_view.tpl

    r141 r154  
    11<table width="100%" border="0" cellspacing="0" cellpadding="0"> 
    22        <tr> 
    3                 <td><h3>Benutzername</h3></td> 
    4                 <td><h3>Name</h3></td> 
    5                 <td><h3>Aktivieren/Deaktivieren</h3></td> 
    6                 <td><h3>L&ouml;schen</h3></td> 
     3                <td><h3>{t}username{/t}</h3></td> 
     4                <td><h3>{t}full name{/t}</h3></td> 
     5                <td><h3>{t}activate/deactivate{/t}</h3></td> 
     6                <td><h3>{t}delete{/t}</h3></td> 
    77        </tr> 
    88        {section name=row loop=$table_data}  
  • trunk/templates/user_password.tpl

    r133 r154  
    33<table> 
    44<tr> 
    5  <td>E-Mailadresse:</td> 
     5 <td>{t}emailaddress{/t}</td> 
    66 <td>{$email}</td> 
    77</tr> 
    88<tr> 
    9  <td>Altes Passwort:</td> 
     9 <td>{t}old password:{/t}</td> 
    1010 <td><input type="password" name="old_passwd" /></td> 
    1111</tr> 
    1212<tr> 
    13  <td>Neues Passwort:</td> 
     13 <td>{t}new password:{/t}</td> 
    1414 <td><input name="new_passwd1" maxlength="{$max_passwd_len}" type="password" /></td> 
    1515</tr> 
    1616<tr> 
    17  <td>Wiederholen:</td> 
     17 <td>{t}repeat new password:{/t}</td> 
    1818 <td><input name="new_passwd2" maxlength="{$max_passwd_len}" type="password" /></td> 
    1919</tr> 
    2020<tr> 
    2121 <td colspan="2" style="text-align:center;"> 
    22  <input name="u_submit" value="&Auml;ndern" type="submit" /></td> 
     22 <input name="u_submit" value="{t}change password{/t}" type="submit" /></td> 
    2323</tr> 
    2424</table>