Ignore:
Timestamp:
10/30/07 23:17:27 (17 years ago)
Author:
wmerlotto
Message:

Continuação da internacionalização do Expresso. Mais frases retiradas e mais aquivos de linguagem traduzidos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/contactcenter/js/cc.js

    r75 r88  
    14021402                 
    14031403        if(Element('cc_conn_type_1').checked) { 
    1404                 cc_conn_type_sel[0] = new Option('Novo Email...','-1');  
    1405                 cc_conn_type_sel[1] = new Option('Principal','Principal'); 
    1406                 cc_conn_type_sel[2] = new Option('Alternativo','Alternativo');   
     1404            cc_conn_type_sel[0] = new Option(get_lang('New E-Mail...'),'-1');    
     1405            cc_conn_type_sel[1] = new Option(get_lang('Main'),get_lang('Main')); 
     1406            cc_conn_type_sel[2] = new Option(get_lang('Alternative'),get_lang('Alternative'));   
     1407 
    14071408                connID = 1; 
    14081409                selected_index = cc_email_default.options.selectedIndex; 
     
    14101411                        cc_email_default.options[i--] = null; 
    14111412                } 
    1412                  
    1413                 cc_email_default.options[0] = new Option('Selecionar Email...','-1'); 
    1414  
     1413 
     1414                cc_email_default.options[0] = new Option(get_lang('Select E-Mail'),'-1');                
    14151415                cc_phone_default.style.display = 'none'; 
    14161416                cc_email_default.style.display = '';                     
     
    14181418        } 
    14191419        else if(Element('cc_conn_type_2').checked) { 
    1420                 cc_conn_type_sel[0] = new Option('Novo Telefone...','-1');       
    1421                 cc_conn_type_sel[1] = new Option('Residencial','Residencial'); 
    1422                 cc_conn_type_sel[2] = new Option('Celular','Celular');   
    1423                 cc_conn_type_sel[3] = new Option('Comercial','Comercial'); 
    1424                 cc_conn_type_sel[4] = new Option('Fax','Fax'); 
    1425                 cc_conn_type_sel[5] = new Option('Pager','Pager'); 
     1420            cc_conn_type_sel[0] = new Option(get_lang('New Telephone'),'-1');    
     1421            cc_conn_type_sel[1] = new Option(get_lang('Home'),get_lang('Home')); 
     1422            cc_conn_type_sel[2] = new Option(get_lang('Cellphone'),get_lang('Cellphone'));       
     1423            cc_conn_type_sel[3] = new Option(get_lang('Work'),get_lang('Comercial')); 
     1424            cc_conn_type_sel[4] = new Option(get_lang('Fax'),get_lang('Fax')); 
     1425            cc_conn_type_sel[5] = new Option(get_lang('Pager'),get_lang('Pager')); 
     1426 
    14261427                connID = 2; 
    14271428                selected_index = cc_phone_default.options.selectedIndex; 
     
    14301431                } 
    14311432 
    1432                 cc_phone_default.options[0] = new Option('Selecionar Telefone...','-1'); 
     1433                cc_phone_default.options[0] = new Option(get_lang('Select the telephone'),'-1'); 
    14331434                cc_email_default.style.display = 'none'; 
    14341435                cc_phone_default.style.display = ''; 
Note: See TracChangeset for help on using the changeset viewer.