I noticed that when I open the plugin, the Arabic language disappears from EPG !
There are a couple of font references in the plugin.py
Python
def add_skin_font():
from enigma import addFont
font_path = PLUGIN_PATH + '/resolver/'
addFont(font_path + 'Questrial-Regular.ttf', 'cvfont', 100, 1)
addFont(font_path + 'lcd.ttf', 'Lcd', 100, 1)
The 1 at the end there actually means replacement font. That should actually be a zero. 0
You can try changing that, but I don't think that is causing you the issue though unless it is replacing your skins replacement font, Which on most images is ae_AlMateen.ttf (arabic)
LCD font is also used by a lot of images.
That should probably also be changed throughtout the plugin to another name and set to 0.







