it worked with me well, i hope you too
Hello
I have found Great solution to enable Translating with _e() AND __() in admin area using Qtranslate X
add this code to one of your plugins pages, or just small new plugin for this function if you donot have one
/*================ QTRANS X ADMIN FILTERS TO ENABLE __ && _E=========*/
function myqtranxf_add_admin_filters(){
if(is_admin()){
// Hooks (execution time critical filters)
add_filter(‘gettext’, ‘qtranxf_gettext’,0);
add_filter(‘gettext_with_context’, ‘qtranxf_gettext_with_context’,0);
add_filter(‘ngettext’, ‘qtranxf_ngettext’,0);
}
}
myqtranxf_add_admin_filters();
thanks very much, it works with me although i have the latest wordpress version 3.6.1