From 901a425a4f6fa58dde00a9a24de01209dc3b8dbf Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Tue, 9 May 2017 11:59:23 +0200 Subject: [PATCH] Fix update-pot so that it can handle UTF-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It crashed on non-ascii characters before, for example the "®" character. --- po/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/po/Makefile b/po/Makefile index 8c6000ba..83c89419 100644 --- a/po/Makefile +++ b/po/Makefile @@ -23,6 +23,7 @@ update-pot: --package-version="$(VERSION)" \ --msgid-bugs-address="novnc@googlegroups.com" \ --add-comments=TRANSLATORS: \ + --from-code=UTF-8 \ --sort-by-file \ ../app/*.js \ ../core/*.js \