Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.8 KiB
68 lines
2.8 KiB
12 years ago
|
TRANSLATORS:
|
||
|
|
||
12 years ago
|
1. Use an editor that has NSIS syntax highlighting(eg Notepad++/Geany). This will
|
||
12 years ago
|
make your life easier.
|
||
|
2. Open the relevant .nsi file that exists in the folder named
|
||
|
"installer-translations"
|
||
|
3. Lines starting with ";" are considered comments. These include the
|
||
|
english message to help you with the translation.
|
||
|
4. Edit only the part inside the quotation marks(""). Unless you know
|
||
|
what you are doing.
|
||
12 years ago
|
5. Save the files with utf8 encoding and BOM.
|
||
|
6. Submit your changes: 1) as a pull request to the official git repo or
|
||
12 years ago
|
2) open an issue to the bugtracker and attach them or 3) via email or
|
||
|
4)the same way you provide the tranlations for qbt itself
|
||
|
|
||
|
PACKAGERS:
|
||
|
|
||
12 years ago
|
You will need NSIS and upx to make the installer. You need a unicode version of NSIS.
|
||
|
I tested with NSIS 3.0a0.
|
||
12 years ago
|
|
||
12 years ago
|
1. Open the options.nsi file in an editor and change line that contains
|
||
|
"!define PROG_VERSION "3.0.3"" to the version of qbittorrent you just built.
|
||
12 years ago
|
2. Extract the plugins found in the folder "nsis plugins" into your
|
||
|
NSIS's unicode Plugin directory(usually C:\Program Files\NSIS\Plugins\x86-unicode).
|
||
10 years ago
|
Only the *.dll files are needed. Don't use the .dll from UAC.zip, use the one from "UAC Unicode.zip".
|
||
|
NOTE: To build the unicode version of UAC with MSVC2008 you need:
|
||
|
a) the sources from UAC.zip
|
||
|
b) apply the util.cpp.diff from "UAC Unicode.zip" to util.cpp
|
||
|
c) in a msvc command prompt issue: cl.exe /O1s /GS- /GR- /EHs-c- /Zl /LD /DUNICODE RunAs.cpp uac.cpp util.cpp /link kernel32.lib user32.lib shell32.lib advapi32.lib ole32.lib /DLL /MANIFEST:NO /OUT:uac.dll
|
||
12 years ago
|
3. The script you need to compile is "qbittorrent.nsi". It includes all other necessary scripts.
|
||
|
4. The script expects the following file tree:
|
||
12 years ago
|
|
||
|
The installer script expects the following file tree:
|
||
|
|
||
|
Root:
|
||
12 years ago
|
installer-translations
|
||
|
afrikaans.nsi
|
||
|
....
|
||
|
(all the .nsi files found here in every source release)
|
||
|
welsh.nsi
|
||
12 years ago
|
translations
|
||
|
qt_ar.qm
|
||
12 years ago
|
...
|
||
10 years ago
|
(all the .qm files found in dist/qt-translations in every source release)
|
||
12 years ago
|
qt_zh_TW.qm
|
||
12 years ago
|
installer.nsi
|
||
12 years ago
|
license.txt
|
||
12 years ago
|
options.nsi
|
||
12 years ago
|
qbittorrent.exe
|
||
|
qbittorrent.nsi
|
||
|
qt.conf
|
||
12 years ago
|
translations.nsi
|
||
|
uninstaller.nsi
|
||
|
|
||
|
|
||
|
5. "license.txt" is a text file that contains the text rendered
|
||
10 years ago
|
from src\gui\gpl.html or the text contained in COPYING
|
||
12 years ago
|
6. "qbittorrent.exe" is the compiled binary file.
|
||
12 years ago
|
|
||
12 years ago
|
SCRIPT HACKERS:
|
||
12 years ago
|
|
||
12 years ago
|
If you add any new LangString variable to the scripts you NEED to provide
|
||
|
"translations" of it to all the .nsi files inside "installer-translations.
|
||
|
You can always leave the english string but you have to use all the LANG_<lang name>
|
||
|
for the given variable. Otherwise, if the user chooses a language that you
|
||
10 years ago
|
haven't provided a LANG_<lang name> for your variable then your string will be empty.
|
||
12 years ago
|
Don't worry though, NSIS throws warnings for this when compiling the scripts.
|