280 pluginAPIFiles = self.pluginManager.getPluginApiFiles(self.__currentApiLanguage) |
280 pluginAPIFiles = self.pluginManager.getPluginApiFiles(self.__currentApiLanguage) |
281 pluginAPIFilesDict = { |
281 pluginAPIFilesDict = { |
282 pathlib.Path(f).name: pathlib.Path(f) for f in pluginAPIFiles |
282 pathlib.Path(f).name: pathlib.Path(f) for f in pluginAPIFiles |
283 } |
283 } |
284 dlg = EricListSelectionDialog( |
284 dlg = EricListSelectionDialog( |
285 sorted(pluginAPIFilesDict.keys()), |
285 sorted(pluginAPIFilesDict), |
286 title=self.tr("Add from Plugin APIs"), |
286 title=self.tr("Add from Plugin APIs"), |
287 message=self.tr("Select from the list of API files installed by plugins"), |
287 message=self.tr("Select from the list of API files installed by plugins"), |
288 checkBoxSelection=True, |
288 checkBoxSelection=True, |
289 parent=self, |
289 parent=self, |
290 ) |
290 ) |