Changeset View
Changeset View
Standalone View
Standalone View
ui_translate/update_addon.py
| Context not available. | |||||
| has_translation, _ = utils_i18n.I18n.check_py_module_has_translations(src, setts) | has_translation, _ = utils_i18n.I18n.check_py_module_has_translations(src, setts) | ||||
| name = mod_info["name"] | name = mod_info["name"] | ||||
| if has_translation: | if has_translation: | ||||
| name = name + " *" | name += " *" | ||||
| _cached_enum_addons.append((mod.__name__, name, mod_info["description"])) | _cached_enum_addons.append((mod.__name__, name, mod_info["description"])) | ||||
| _cached_enum_addons.sort(key=lambda i: i[1]) | _cached_enum_addons.sort(key=lambda i: i[1]) | ||||
| return _cached_enum_addons | return _cached_enum_addons | ||||
| Context not available. | |||||