Skip to content

Commit 2045e4c

Browse files
committed
build: Use XLIFF file to provide more context to Transifex translators
Details: https://docs.transifex.com/formats/xliff
1 parent 585cbe2 commit 2045e4c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.tx/config

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ host = https://www.transifex.com
33

44
[bitcoin.qt-translation-021x]
55
file_filter = src/qt/locale/bitcoin_<lang>.ts
6-
source_file = src/qt/locale/bitcoin_en.ts
6+
source_file = src/qt/locale/bitcoin_en.xlf
77
source_lang = en

build-aux/m4/bitcoin_qt.m4

+5-1
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
225225
BITCOIN_QT_PATH_PROGS([RCC], [rcc-qt5 rcc5 rcc], $qt_bin_path)
226226
BITCOIN_QT_PATH_PROGS([LRELEASE], [lrelease-qt5 lrelease5 lrelease], $qt_bin_path)
227227
BITCOIN_QT_PATH_PROGS([LUPDATE], [lupdate-qt5 lupdate5 lupdate],$qt_bin_path, yes)
228+
BITCOIN_QT_PATH_PROGS([LCONVERT], [lconvert-qt5 lconvert5 lconvert], $qt_bin_path, yes)
228229
229230
MOC_DEFS='-DHAVE_CONFIG_H -I$(srcdir)'
230231
case $host in
@@ -258,7 +259,10 @@ AC_DEFUN([BITCOIN_QT_CONFIGURE],[
258259
AC_MSG_ERROR([libQtDBus not found. Install libQtDBus or remove --with-qtdbus.])
259260
fi
260261
if test "x$LUPDATE" = x; then
261-
AC_MSG_WARN([lupdate is required to update qt translations])
262+
AC_MSG_WARN([lupdate tool is required to update Qt translations.])
263+
fi
264+
if test "x$LCONVERT" = x; then
265+
AC_MSG_WARN([lconvert tool is required to update Qt translations.])
262266
fi
263267
],[
264268
bitcoin_enable_qt=no

src/Makefile.qt.include

+2
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,8 @@ $(srcdir)/qt/bitcoinstrings.cpp: FORCE
356356
translate: $(srcdir)/qt/bitcoinstrings.cpp $(QT_FORMS_UI) $(QT_FORMS_UI) $(BITCOIN_QT_BASE_CPP) qt/bitcoin.cpp $(BITCOIN_QT_WINDOWS_CPP) $(BITCOIN_QT_WALLET_CPP) $(BITCOIN_QT_H) $(BITCOIN_MM)
357357
@test -n $(LUPDATE) || echo "lupdate is required for updating translations"
358358
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(LUPDATE) $^ -locations relative -no-obsolete -ts $(srcdir)/qt/locale/bitcoin_en.ts
359+
@test -n $(LCONVERT) || echo "lconvert is required for updating translations"
360+
$(AM_V_GEN) QT_SELECT=$(QT_SELECT) $(LCONVERT) -o $(srcdir)/qt/locale/bitcoin_en.xlf -i $(srcdir)/qt/locale/bitcoin_en.ts
359361

360362
$(QT_QRC_LOCALE_CPP): $(QT_QRC_LOCALE) $(QT_QM)
361363
@test -f $(RCC)

0 commit comments

Comments
 (0)