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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/po
AgeCommit message (Collapse)Author
2011-11-05remove dirs to make them external'sCampbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-21- remove release/bin/.blender/.bfont.ttf, we have ↵Campbell Barton
./release/datafiles/bfont.ttf already, and its not used anymore. - removed scons WITH_BF_FREETYPE
2011-10-21move fonts/ and locale/ dirs into release/datafiles, since blender wasn't ↵Campbell Barton
finding them in their current location and so to test international characters you had to 'make install'. updated scons/cmake/translation-scripts.
2011-10-15misc editsCampbell Barton
- cmake/windows was installing locale & font when internationalization was disabled, twice when enabled. - file selector was using the string size-1, where this isn't needed since string buttons expected this value to be the sizeof(), accounting for '\0'. - use const char for extension checking funcs. - minor pep8 edits
2011-10-11rna source files are not needed in POTFILE.in, and small fix on readmeXiao Xiangquan
2011-10-09Fix for update_msg.py, wasn’t filtering out prop names identical to prop ↵Bastien Montagne
identifiers (e.g. "float_array"...). Also updated french po & mo.
2011-10-07Added Macro and KeyingSetInfo to blacklisted msg classes. Also updated ↵Bastien Montagne
french po & mo.
2011-10-05filter RNA classes for translation (removes over 1300 lines from messages.txt)Campbell Barton
- omit operators tagged as INTERNAL - omit classes for internal use: Event, Context, Property, Function, Window.
2011-10-02- fix for keymap test operatorCampbell Barton
- cleanup pep8 warnings and unused py imports py pep8 cleanup
2011-09-30i18n: fixed mistage in message generator which lead to some messages ↵Sergey Sharybin
disappeared. Also, cleaned up po files from unused messages.
2011-09-30fix for crash generating messages.txt, I wasn't getting this crash because I ↵Campbell Barton
had 'WITH_PYTHON_SAFETY' enabled which was using different iterators (which dont crash), now there on by default. made headless and no-python configurations work again and added --factory-startup to doc building command.
2011-09-30po : adding note for windows translators/devs + remove backup function in ↵Dalai Felinto
update_po.py (no more tons of *.po~ in the folder)
2011-09-29remove the pot and messages file, they change too much with only minor ↵Campbell Barton
changes to the source and can be regenerated.
2011-09-29improvements to translation message generatorCampbell Barton
- for rna stringsinclude the path as comment, eg: #~ bpy.types.VertexGroup.name - skip strings like %dx%d or -X. - for strings extracted from python scripts include file:line reference as with C files. - have messages in order they appear in the file, files and classes sorted so it reads more logically. - extract these comments from the messages.txt file into the pot file.
2011-09-29making PO/POT/... update scripts py3.2 compatible + making it almost win ↵Dalai Felinto
compatible Adding from codecs import open + the encoding in update_pot.py so it works for python 3.2. Now it should be easier to replace the executable folders in the first lines of the file. It now also works if you are in the same folder as the .po files (i.e. os.path.dirname(__FILE__) is empty) It's still not working for me on Mingw because I need gettext 1.8 and so far I found only the 1.7 (in 1.7 msgmerge --lang is not supported)
2011-09-28i18n: wrote small instruction for translatorsSergey Sharybin
- Added po/README.txt file with translation instructions - If update_po and update_mo scripts now allows to provide list of languages which should be handled only, i.e. ./update_mo.py ru - Removed obsolete file from POTFILES.in
2011-09-27Fix for messages.txt generator -- KM_HIERARCHY was moved to other moduleSergey Sharybin
2011-09-21update_msg.py now extracts strings from UI files, eg:Campbell Barton
layout.prop("some_prop", text="Some Other Name") So the text argument can be listed for translation.
2011-09-21updates to rna message extractor, write utf8 files and use a set rather than ↵Campbell Barton
a dict
2011-09-21SVN maintenance.Guillermo S. Romero
2011-09-20move message.txt generator out of wm.py (which was loaded with blender ↵Campbell Barton
always), into it own py script which runs on its own, also added this to 'make translations' target.
2011-09-20- translation scripts now run with py3.xCampbell Barton
- added convenience make target 'make translations' - some MEM_malloc strings were not unique enough, expanded them.
2011-09-20i18n: fake_gettext is no longer needed for pythonSergey Sharybin
2011-09-15Fixing issues with i18n stuff:Sergey Sharybin
- Make gettext stuff draw-time. so switching between languages can happens without restart now. - Added option to translate visible interface (menus, buttons, labels) and tooltips. Now it's possible to have english UI and localized tooltips. - Clean-up sources, do not use gettext stuff for things which can be collected with RNA. - Fix issues with windows 64bit and ru_RU locale on my desktop (it was codepage issue). - Added operator "Get Messages" which generates new text block with with all strings collected from RNA. - Changed script for updating blender.pot so now it appends messages collected from rna to automatically gathered messages. To update .pot you have to re-generate messages.txt using "Get Messages" operator and then run update_pot script. - Clean up old translation stuff which wasn't used and most probably wouldn't be used. - Return back "International Fonts" option, so if it's disabled, no gettext lookups happens on draw. - Merged read_homefile function back. No need in splitting it. TODO: - Custom fonts and font size. Current font isn't nice at least for russian locale, it's difficult to read it. - Put references to messages.txt so gettext can merge translation when name/description of some property changes.
2011-09-09update language packsXiao Xiangquan
2011-08-22delete update_all.py, as it is no longer neededXiao Xiangquan
2011-08-18update property strings cover. 461 new itemsXiao Xiangquan
2011-08-16fix a small bug , and update language-packsXiao Xiangquan
2011-08-02finish handle for properties_XXX scriptsXiao Xiangquan
2011-07-29merge with trunk r38787Xiao Xiangquan
2011-07-25complete the language-select featureXiao Xiangquan
2011-07-22switch language in User Preference's System page. with some known switch ↵Xiao Xiangquan
failure bugs
2011-07-13complete space outliner, space node, space nla, etc.Xiao Xiangquan
2011-07-08finish user preference dlg's input handlesXiao Xiangquan
2011-07-023D view, graph editor, etc. doneXiao Xiangquan
2011-06-24right panel doneXiao Xiangquan
2011-06-20handle SpaceType and UserPref popupsXiao Xiangquan
2011-06-17handle View and Object menuXiao Xiangquan
2011-06-15translate left panelXiao Xiangquan
2011-06-10Add i18n support for C code, and most menu items can be translated, nowXiao Xiangquan
2011-06-01Enable the po&pot update system, simply with two python scripts.Xiao Xiangquan
2011-01-30remove nan-makefilesCampbell Barton
2010-07-26move directories:Campbell Barton
dlltool --> build_files/make/dlltool bin --> release/bin Since dlltool is only used make + mingw and ./bin is misleading because it would seem the blender binary would be copied there, but its just used for home directory files. updated scons/cmake/make
2009-09-16Make verification of committed .mo files optional.Guillermo S. Romero
2009-04-21Some Makefile changes still laying around.Guillermo S. Romero
2008-09-29Move Korean file from kr to ko also updated it to newer file.Kent Mein
Kent
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2008-03-10Fix for the Finnish po from GSR.Chris Want
2008-03-05== Makefiles ==Chris Want
Patch from GSR to correctly disable processing of po's when international support is disabled.