Internationalization -- conversion of strings from bitcoin core
[novacoin.git] / README.rst
1 Bitcoin-qt: Qt4 based GUI replacement for Bitcoin
2 =================================================
3
4 **Warning** **Warning** **Warning**
5
6 Pre-alpha stuff! I'm using this client myself on the production network, and I haven't noticed any glitches, but remember: always backup your wallet! Testing on the testnet is recommended.
7
8 This has been implemented:
9
10 - qmake / QtCreator project (.pro)
11
12 - All dialogs (main GUI, address book, send coins) and menus
13
14 - Taskbar icon/menu
15
16 - GUI only functionality (copy to clipboard, select address, address/transaction filter proxys)
17
18 - Bitcoin core is made compatible with Qt4
19
20 - Send coins dialog: address and input validation
21
22 - Address book and transactions views and models
23
24 - Options dialog
25
26 - Sending coins (including ask for fee when needed)
27
28 - Show error messages from core
29
30 - Show details dialog for transactions (on double click)
31
32 This has to be done:
33
34 - Integrate with main bitcoin tree
35
36 - Start at system start
37
38 - Internationalization (convert WX language files)
39
40 - Build on Windows
41
42 Build instructions
43 ===================
44
45 First, make sure that the required packages for Qt4 development of your
46 distribution are installed, for Debian and Ubuntu these are:
47
48 ::
49
50     apt-get install qt4-qmake libqt4-dev
51
52 then execute the following:
53
54 ::
55
56     qmake
57     make
58
59 Alternatively, install Qt Creator and open the `bitcoin-qt.pro` file.
60
61 An executable named `bitcoin-qt` will be built.
62