Changeset 12485

Show
Ignore:
Timestamp:
09/05/11 03:04:55 (2 years ago)
Author:
mbrevda
Message:

re #5351 - hebrew translation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/assets/css/mainstyle-rtl.css

    r12479 r12485  
    1919  direction:rtl;writing-mode: tb-rl; 
    2020} 
     21.help span, a.info span{ 
     22  right:60px; 
     23} 
  • freepbx/trunk/amp_conf/htdocs/admin/assets/js/script.legacy.js

    r12479 r12485  
    695695  }) 
    696696  $(".help").live('mouseenter', function(){ 
    697     var pos = $(this).offset(); 
    698       var left = (200 - pos.left)+"px"; 
    699     //left = left > 0 ? left : 0; 
    700     $(this).find("span").css("left",left).stop(true, true).delay(500).animate({opacity: "show"}, 750); 
    701   }).live('mouseleave', function(){ 
    702     $(this).find("span").stop(true, true).animate({opacity: "hide"}, "fast"); 
     697      side = fpbx.conf.text_dir == 'lrt' ? 'left' : 'right'; 
     698      var pos = $(this).offset(); 
     699        var offset = (200 - pos.side)+"px"; 
     700      //left = left > 0 ? left : 0; 
     701      $(this).find("span") 
     702          .css(side, offset) 
     703          .stop(true, true) 
     704          .delay(500) 
     705          .animate({opacity: "show"}, 750); 
     706    }).live('mouseleave', function(){ 
     707      $(this).find("span") 
     708          .stop(true, true) 
     709          .animate({opacity: "hide"}, "fast"); 
    703710  }); 
    704711 
  • freepbx/trunk/amp_conf/htdocs/admin/i18n/he_IL/LC_MESSAGES/amp.po

    r12482 r12485  
    11631163 
    11641164msgid "Inbound Routes" 
    1165 msgstr "נתיבים נכנסות
     1165msgstr "נתיבים נכנסים
    11661166 
    11671167msgid "Zap Channel DIDs" 
     
    11691169 
    11701170msgid "Outbound Routes" 
    1171 msgstr "נתיבים יו׊את
     1171msgstr "נתיבים יושאים
    11721172 
    11731173msgid "Trunks" 
  • freepbx/trunk/amp_conf/htdocs/admin/views/footer.php

    r12450 r12485  
    5353$fpbx['conf']['DEVELRELOAD']  = $amp_conf["DEVELRELOAD"]? 'true' : 'false'; 
    5454$fpbx['conf']['reload_needed']  = $reload_needed; 
     55$fpbx['conf']['text_dir']   = isset($_COOKIE['lang']) && in_array($_COOKIE['lang'], array('he_IL')) 
     56                  ? 'rtl' : 'ltr'; 
    5557$fpbx['msg']['framework']['reload_unidentified_error'] = _(" error(s) occurred, you should view the notification log on the dashboard or main screen to check for more details."); 
    5658$fpbx['msg']['framework']['close'] = _("Close");