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
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
2020-05-05UI translations addon: make some heavy processing parallel.Bastien Montagne
Fairly straghtforward, once the data from the i18n utils module are pickleable... ;) Gives nice improvements in global speed of i18n update process.
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2018-12-22UI Translate: add operator & button to cleanup branches.Bastien Montagne
2018-12-21Rename user_preferences -> preferencesCampbell Barton
2018-11-11UI Translate: update to 2.8Ines Almeida
Make operator properties into variable annotations. Cleanup includes and descriptions. PEP-8 compliance pass.
2017-11-08ui_translate: make it resilient to ASAN errors at exit.Bastien Montagne
We do want to catch actual errors from message extraction process, but not dummy ASAN complaining about memleaks!
2017-03-19UITranslation: remove usage of register_module.Bastien Montagne
2015-06-13translations addon: forgot to bump versions in previous commit.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
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-04-19Some cleanups and fixes, and use new "progressbar" api for main translation ↵Bastien Montagne
operators (which can be rather long), thanks Gaia! :)
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
2013-04-09Add base for addons' i18n tools. WARNING: nearly nothing is functionnal yet!Bastien Montagne
Also a few minor edits (and add a version number to this addon!)...
2013-02-24Big i18n tools update, II/II.Bastien Montagne
Now everything should be done with ui_translate addon (which is also now fully functional again, in theory ;) ). Notes: * Everything is still a bit raw and sometimes hackish. * Not every feature implemented yet. * A bunch of cleanup is still needed. * Doc needs to be updated too!
2013-02-17Mark ui_translate as broken for this release, new code is nearly ready, but ↵Bastien Montagne
it's too late for such huge changes now.
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-07-29style cleanupCampbell Barton
2012-07-10Another fix (use po file name as "langauge" dir for mo one, instead of ↵Bastien Montagne
language code...).
2012-07-10Fix for dummy mistake (if a message was not yet translated, it would not ↵Bastien Montagne
appear in popup! stupid!)
2012-07-09UI translation from inside Blender UI: second part.Bastien Montagne
This is the py addon to use for embeded Blender ui translation. It can edit various UI elements' messages and tips, save the changes to the relevant po, "compile" a new mo placed into user's datafiles dir, and erase that same files (to get back "official" translations). Notes: * Still work in progress. Most likely some remaning bugs (even though it works quite well for me)... * All UI elements in Blender aren't translatable this way (e.g. panel labels just don't react to right mouse clicks currently...) * RTL languages won't work as well as others, still have to implement some kind of revert-RTL process... * Having a nicer way than editing user_settings.py in modules/bl_i18n_utils to set up needed parameters is mandatory! Will try to use some kind of user preferences in user's config dir. And a whole doc to write! :/