aboutsummaryrefslogtreecommitdiff
path: root/share/qt/extract_strings_qt.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused Python importspracticalswift2017-01-131-1/+0
|
* [copyright] add MIT License copyright header to remaining Python filesisle29832016-09-111-0/+3
|
* Use portable #! in python scripts (/usr/bin/env)Matthew King2016-06-261-1/+1
|
* Correct small typo in extract_strings_qt.pyMitchell Cash2016-05-241-2/+2
|
* build: python 3 compatibilityWladimir J. van der Laan2016-03-291-2/+7
| | | | | | | | | | | | | | | Ubuntu 16.04 "xenial xerus" does not come with Python 2.x by default. It is possible to install a python-2.7 package, but this has its own problem: no `python` or `python2` symlink (see #7717). This fixes the following scripts to work with python 3: - `make check` (bctest,py, bitcoin-util-test.py) - `make translate` (extract_strings_qt.py) - `make symbols-check` (symbol-check.py) - `make security-check` (security-check.py) Explicitly call the python commands using $(PYTHON) instead of relying on the interpreter line at the top of the scripts.
* Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhereLuke Dashjr2016-01-191-0/+2
|
* Set copyright holders displayed in notices separately from the package nameLuke Dashjr2015-12-221-0/+1
| | | | This helps avoid accidental removal of upstream copyright names
* Unify package name to as few places as possible without major changesLuke Dashjr2015-12-141-0/+1
|
* qt: Pick translation messages only from necessary filesWladimir J. van der Laan2014-07-071-2/+3
| | | | | | Utility libraries (common, util) as well as extra tools shouldn't be parsed for translation messages, only the server and wallet part qualify here.
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-2/+5
| | | | | | | | | Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
* fix extract_strings_qt.pyPhilip Kaufmann2013-09-191-1/+1
| | | | - a recent pull changed xgettext to gettext, this is reverted here
* autotools: teach extract_strings_qt.py to respect the XGETTEXT env variableCory Fields2013-09-141-1/+3
|
* Update bitcoinstrings from core and English source translation fileWladimir J. van der Laan2012-06-131-1/+3
| | | | | | | | This is necessary as any strings have changed since last time. Also the python script used to extract bitcoinstrings.cpp, extract_strings_qt.py now sorts the strings before generating the output file. This results in more deterministic output and thus smaller diffs.
* fix warnings: unused variable 'XX' [-Wunused-variable]Wladimir J. van der Laan2012-04-151-3/+9
|
* Update translations for bitcoin coreWladimir J. van der Laan2012-04-141-0/+64
- Move scripts/qt to share/qt, to clean up toplevel directories - Update english ts file which is used to source messages for Transifex - In extract_strings_qt.py use a glob *.h *.cpp, this is safe now that the Wx UI files are removed