diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-13 08:45:26 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-14 08:46:16 +0200 |
commit | 3fddc8effca227707773b5655c4cae4acb8396a6 (patch) | |
tree | 27e25d70af6de0e7a38a919b8865edee347ba4c8 /share/qt/make_windows_icon.py | |
parent | c3c203ccd9ce9ee958cdf090b2cdf038554c038d (diff) |
Update translations for bitcoin core
- 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
Diffstat (limited to 'share/qt/make_windows_icon.py')
-rwxr-xr-x | share/qt/make_windows_icon.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/share/qt/make_windows_icon.py b/share/qt/make_windows_icon.py new file mode 100755 index 0000000000..bf607b1c62 --- /dev/null +++ b/share/qt/make_windows_icon.py @@ -0,0 +1,9 @@ +#!/bin/bash +# create multiresolution windows icon +ICON_SRC=../../src/qt/res/icons/bitcoin.png +ICON_DST=../../src/qt/res/icons/bitcoin.ico +convert ${ICON_SRC} -resize 16x16 bitcoin-16.png +convert ${ICON_SRC} -resize 32x32 bitcoin-32.png +convert ${ICON_SRC} -resize 48x48 bitcoin-48.png +convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST} + |