Changeset 12485
- Timestamp:
- 09/05/11 03:04:55 (2 years ago)
- Files:
-
- freepbx/trunk/amp_conf/htdocs/admin/assets/css/mainstyle-rtl.css (modified) (1 diff)
- freepbx/trunk/amp_conf/htdocs/admin/assets/js/script.legacy.js (modified) (1 diff)
- freepbx/trunk/amp_conf/htdocs/admin/i18n/he_IL/LC_MESSAGES/amp.po (modified) (2 diffs)
- freepbx/trunk/amp_conf/htdocs/admin/views/footer.php (modified) (1 diff)
- modules/branches/2.10/announcement/i18n/he_IL/LC_MESSAGES/announcement.mo (added)
- modules/branches/2.10/announcement/i18n/he_IL/LC_MESSAGES/announcement.po (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/assets/css/mainstyle-rtl.css
r12479 r12485 19 19 direction:rtl;writing-mode: tb-rl; 20 20 } 21 .help span, a.info span{ 22 right:60px; 23 } freepbx/trunk/amp_conf/htdocs/admin/assets/js/script.legacy.js
r12479 r12485 695 695 }) 696 696 $(".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"); 703 710 }); 704 711 freepbx/trunk/amp_conf/htdocs/admin/i18n/he_IL/LC_MESSAGES/amp.po
r12482 r12485 1163 1163 1164 1164 msgid "Inbound Routes" 1165 msgstr "× ×ª×××× × ×× ×¡× ×ª"1165 msgstr "× ×ª×××× × ×× ×¡××" 1166 1166 1167 1167 msgid "Zap Channel DIDs" … … 1169 1169 1170 1170 msgid "Outbound Routes" 1171 msgstr "× ×ª×××× ××׊×× ª"1171 msgstr "× ×ª×××× ××׊×××" 1172 1172 1173 1173 msgid "Trunks" freepbx/trunk/amp_conf/htdocs/admin/views/footer.php
r12450 r12485 53 53 $fpbx['conf']['DEVELRELOAD'] = $amp_conf["DEVELRELOAD"]? 'true' : 'false'; 54 54 $fpbx['conf']['reload_needed'] = $reload_needed; 55 $fpbx['conf']['text_dir'] = isset($_COOKIE['lang']) && in_array($_COOKIE['lang'], array('he_IL')) 56 ? 'rtl' : 'ltr'; 55 57 $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."); 56 58 $fpbx['msg']['framework']['close'] = _("Close");
