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.
2021-06-08Update for changes in the Python API using keyword only argumentsCampbell Barton
2021-01-08Translations: Use ASAN_OPTIONS from environment too.Ankit Meel
Don't overwrite environment variables that may contain options like suppression files, symboliser etc. It's similar to rBa181b156399a13fa429159112e30c8005d5e8a59 but exhaustive. For `blender` repo, see the equivalent in D9815. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D9816
2020-12-04UI Translate: switch to using utils code to list/match translation files.Bastien Montagne
2020-12-04UI Translate: Fix potential division by zero.Bastien Montagne
2020-10-19Fix (unreported) missing cleanup of commented messages in ui translate tool.Bastien Montagne
For some reason never noticed that mistake until now.
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-24Fix/cleanup typos and such in UI messages.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-12-21Rename user_preferences -> preferencesCampbell Barton
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-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
2017-03-19Cleanup: identity for None comparisonCampbell Barton
2016-06-01CLeanup: 'addon' -> 'add-on' in UI messages.Bastien Montagne
2015-06-13translations addon: forgot to bump versions in previous commit.Bastien Montagne
2015-06-13Translations addon: add update of git repo together with svn trunk.Bastien Montagne
2015-06-03UI i18n: update for fixed args handling in extracting script.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-04Fix strange unicode-related issue from rBA049a5a86edcf...Bastien Montagne
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-08-06Minor style cleanup.Bastien Montagne
2013-07-23Fix minor UI bug (Select/deselect behaving as Invert button).Bastien Montagne
2013-04-21Cache the addons' list (also fixes issue with edited strings).Bastien Montagne
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-15We need no more that hack!Bastien Montagne
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-03-19Small changes/additions to i18n tools.Bastien Montagne
2013-03-19Some renaming/cleanup in i18n tools.Bastien Montagne
2013-02-27Various small enhancements/fixes.Bastien Montagne
Most notable difference from now on will be that all py is handled from current blender's resource dirs, no more from source dir. Better for consistency, and avoid e.g. cycles' addon to be checked twice...
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-09-27pep8 cleanupCampbell Barton
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 another dummy mistake (was preventing RNA label to show up the first ↵Bastien Montagne
time, because of context overwriting...)
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! :/