Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2022-01-05Cleanup: fix typos in source codeBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
2021-08-16Translation update: Fix after recent changes to Blender init code.Bastien Montagne
Recent changes broke calling an operator from python too early during init process, including during first draw calls. So now moved most of `UI_OT_i18n_updatetranslation_svn_init_settings` logic into a static method that can be called directly in this specific case. Also improved situation where init fails, by showing the reset/init settings operator in the UI still.
2020-12-04UI Translate: switch to using utils code to list/match translation files.Bastien Montagne
2018-12-24Fix/cleanup some UI messages (typos, final points...).Bastien Montagne
2018-12-22UI Translate: add operator & button to cleanup branches.Bastien Montagne
2018-11-14UI Translate: fix missing named parameter in some label funcs.Bastien Montagne
2018-11-11UI Translate: update to 2.8Ines Almeida
Make operator properties into variable annotations. Cleanup includes and descriptions. PEP-8 compliance pass.
2017-03-19UITranslation: remove usage of register_module.Bastien Montagne
2017-03-19Cleanup: identity for None comparisonCampbell Barton
2016-06-01CLeanup: 'addon' -> 'add-on' in UI messages.Bastien Montagne
2015-06-13Translations addon: add update of git repo together with svn trunk.Bastien Montagne
2015-04-10Cleanup: imports (formatting)Campbell Barton
2015-01-22Fix: replaced Python module "imp" with "implib"Sybren A. Stvel
Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016
2013-08-06Minor style cleanup.Bastien Montagne
2013-07-23Fix minor UI bug (Select/deselect behaving as Invert button).Bastien Montagne
2013-04-18UI translation: now addons' authors have all needed tools to manage their ↵Bastien Montagne
own translations. * Update: update (or create) an addon's translation data (as some py code). * Export PO: export an addon's translation data in a set of pot/po's files. * Import PO: import a set of po's files to update an addon's translations. Note: current i18n doc on wiki is completely outdated, I will try to fix this in following days.
2013-04-12More fixes for addon i18n messages management.Bastien Montagne