Fix translations for Calamares.

ubuntu/focal
Simon Quigley 7 years ago
parent 849bbb6a26
commit 1a88110770

@ -2,11 +2,14 @@
#SUBDIRS := #SUBDIRS :=
all: install all:
# Desktop file
install: (cd lubuntu/po/ && make)
make -C lubuntu/po/; \
find lubuntu/ -type f -iname "*.in" | xargs rm -f
chmod +x lubuntu/*.desktop chmod +x lubuntu/*.desktop
# Slideshow
(cd lubuntu/branding/lubuntu/lang/ && make)
# Get rid of the unnecessary files
find lubuntu/ -type f -iname "*.in" | xargs rm -f
find lubuntu/ -type f -iname "Makefile" | xargs rm -f
# vim:ts=4 # vim:ts=4

6
debian/changelog vendored

@ -1,3 +1,9 @@
calamares-settings-ubuntu (6) UNRELEASED; urgency=medium
* Fix translations for Calamares.
-- Simon Quigley <tsimonq2@ubuntu.com> Wed, 11 Jul 2018 00:10:24 -0500
calamares-settings-ubuntu (5) cosmic; urgency=medium calamares-settings-ubuntu (5) cosmic; urgency=medium
* Add translations support for the desktop file and the installer slideshow. * Add translations support for the desktop file and the installer slideshow.

2
debian/control vendored

@ -3,7 +3,7 @@ Section: devel
Priority: optional Priority: optional
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com> Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
Uploaders: Simon Quigley <tsimonq2@ubuntu.com> Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
Build-Depends: debhelper (>= 11), intltool Build-Depends: debhelper (>= 11), intltool, qttools5-dev-tools
Standards-Version: 4.1.4 Standards-Version: 4.1.4
Homepage: https://code.launchpad.net/ubuntu-calamares-settings Homepage: https://code.launchpad.net/ubuntu-calamares-settings
Vcs-Git: https://git.launchpad.net/ubuntu-calamares-settings Vcs-Git: https://git.launchpad.net/ubuntu-calamares-settings

4
debian/rules vendored

@ -2,7 +2,3 @@
%: %:
dh $@ dh $@
override_dh_auto_build:
$(MAKE)
dh_auto_build

@ -0,0 +1,11 @@
#!/usr/bin/make -f
LANGUAGES := ar ca de es eu gl be da el et fr pl
all:
for i in $(LANGUAGES); do \
/usr/lib/qt5/bin/lrelease "calamares-lubuntu_$$i.ts"; \
rm calamares-lubuntu_$$i.ts; \
done
# vim:ts=4
Loading…
Cancel
Save