mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 22:03:27 -07:00
- Added Japanese translation
This commit is contained in:
parent
90bc79d4e1
commit
8b3c4f8143
8 changed files with 2267 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
- BUGFIX: Window can now stay maximized on exit
|
||||
- BUGFIX: Use PKGCONFIG again for configuring libtorrent
|
||||
- BUGFIX: Allow to compile with libtorrent v0.11
|
||||
- I18N: Added Japanese translation
|
||||
|
||||
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1
|
||||
- BUGFIX: A lot of fixes in configure file
|
||||
|
|
BIN
src/Icons/flags/japan.png
Normal file
BIN
src/Icons/flags/japan.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 324 B |
|
@ -42,6 +42,7 @@
|
|||
<file>Icons/flags/romania.png</file>
|
||||
<file>Icons/flags/bulgaria.png</file>
|
||||
<file>Icons/flags/greece.png</file>
|
||||
<file>Icons/flags/japan.png</file>
|
||||
<file>Icons/skin/properties.png</file>
|
||||
<file>Icons/skin/play_all.png</file>
|
||||
<file>Icons/skin/remove.png</file>
|
||||
|
|
|
@ -23,5 +23,6 @@
|
|||
<file>lang/qbittorrent_fi.qm</file>
|
||||
<file>lang/qbittorrent_zh_HK.qm</file>
|
||||
<file>lang/qbittorrent_da.qm</file>
|
||||
<file>lang/qbittorrent_ja.qm</file>
|
||||
</qresource>
|
||||
</RCC>
|
BIN
src/lang/qbittorrent_ja.qm
Normal file
BIN
src/lang/qbittorrent_ja.qm
Normal file
Binary file not shown.
2260
src/lang/qbittorrent_ja.ts
Normal file
2260
src/lang/qbittorrent_ja.ts
Normal file
File diff suppressed because it is too large
Load diff
|
@ -86,6 +86,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
|
|||
locales << "uk_UA";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/russia.png"))), QString::fromUtf8("Русский"));
|
||||
locales << "ru_RU";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/japan.png"))), QString::fromUtf8("Japanese"));
|
||||
locales << "ja_JP";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/china.png"))), QString::fromUtf8("中文 (简体)"));
|
||||
locales << "zh_CN";
|
||||
combo_i18n->addItem((QIcon(QString::fromUtf8(":/Icons/flags/china_hong_kong.png"))), QString::fromUtf8("中文 (繁體)"));
|
||||
|
|
|
@ -104,7 +104,8 @@ TRANSLATIONS = $$LANG_PATH/qbittorrent_fr.ts \
|
|||
$$LANG_PATH/qbittorrent_pt.ts \
|
||||
$$LANG_PATH/qbittorrent_nb.ts \
|
||||
$$LANG_PATH/qbittorrent_fi.ts \
|
||||
$$LANG_PATH/qbittorrent_da.ts
|
||||
$$LANG_PATH/qbittorrent_da.ts \
|
||||
$$LANG_PATH/qbittorrent_ja.ts
|
||||
|
||||
# Source code
|
||||
HEADERS += GUI.h misc.h options_imp.h about_imp.h \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue