Skip to content

Commit

Permalink
[plugin.py] Fix localisation of descriptions (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
Orlandoxx authored Aug 3, 2024
1 parent 6123ec3 commit dd2152c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AutoBouquetsMaker/src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def Plugins(**kwargs):
plist = []
if any([nimmanager.hasNimType(x) for x in ("DVB-S", "DVB-T", "DVB-C")]):
plist.append(PluginDescriptor(name="AutoBouquetsMakerSessionStart", where=[PluginDescriptor.WHERE_AUTOSTART, PluginDescriptor.WHERE_SESSIONSTART], fnc=Scheduleautostart, wakeupfnc=AutoBouquetsMakerWakeupTime, needsRestart=True))
plist.append(PluginDescriptor(name=_("AutoBouquetsMaker"), description="Scan and create bouquets.", where=PluginDescriptor.WHERE_MENU, fnc=AutoBouquetsMakerSetup, needsRestart=True))
plist.append(PluginDescriptor(name=_("AutoBouquetsMaker"), description=_("Scan and create bouquets."), where=PluginDescriptor.WHERE_MENU, fnc=AutoBouquetsMakerSetup, needsRestart=True))
if config.autobouquetsmaker.extensions.getValue():
plist.append(PluginDescriptor(name=_("AutoBouquetsMaker Scanner"), description="Scan and create bouquets.", where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=startscan, needsRestart=True))
plist.append(PluginDescriptor(name=_("AutoBouquetsMaker Scanner"), description=_("Scan and create bouquets."), where=PluginDescriptor.WHERE_EXTENSIONSMENU, fnc=startscan, needsRestart=True))
return plist

0 comments on commit dd2152c

Please sign in to comment.