From 762eee62c8d7be264c69e46d8480a2b96b1412be Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 20 Jun 2019 14:30:19 +0200
Subject: [PATCH 01/84] Use spacing for French punctuation
---
po/extra/fr.po | 6 +++---
po/fr.po | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/po/extra/fr.po b/po/extra/fr.po
index 65184a8..b7980a8 100644
--- a/po/extra/fr.po
+++ b/po/extra/fr.po
@@ -34,7 +34,7 @@ msgstr "Une application pour maison intelligente afin de contrôler vos objets c
#: data/com.github.manexim.home.appdata.xml.in:11
msgid "Supported devices:"
-msgstr "Appareils supportés:"
+msgstr "Appareils supportés :"
#: data/com.github.manexim.home.appdata.xml.in:13
msgid "LIFX"
@@ -58,7 +58,7 @@ msgstr "Affichage des informations du modèle et de l'appareil"
#: data/com.github.manexim.home.appdata.xml.in:31
msgid "Improved:"
-msgstr "Amélioration:"
+msgstr "Amélioration :"
#: data/com.github.manexim.home.appdata.xml.in:33
msgid "Save and load window settings"
@@ -66,7 +66,7 @@ msgstr "Enregistrement et rechargement des paramètres de la fenêtre"
#: data/com.github.manexim.home.appdata.xml.in:35
msgid "Fixed:"
-msgstr "Corrections:"
+msgstr "Corrections :"
#: data/com.github.manexim.home.appdata.xml.in:37
msgid "Remove mention of elementary OS in app description"
diff --git a/po/fr.po b/po/fr.po
index 28d3ea6..a6ac05a 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -51,11 +51,11 @@ msgstr ""
#: src/pages/LampPage.vala:63
msgid "ID: "
-msgstr "Identifiant: "
+msgstr "Identifiant : "
#: src/pages/LampPage.vala:64
msgid "Manufacturer: "
-msgstr "Fabricant: "
+msgstr "Fabricant : "
#: src/pages/LampPage.vala:65
msgid "Model: "
From e94c3865be097710d038c9f69cbc63d017cf525b Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 20 Jun 2019 15:34:29 +0200
Subject: [PATCH 02/84] Add util class for tracking a history
---
src/meson.build | 1 +
src/utils/History.vala | 70 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
create mode 100644 src/utils/History.vala
diff --git a/src/meson.build b/src/meson.build
index eb01786..3845bb8 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -15,6 +15,7 @@ sources = [
'services/Settings.vala',
'types/Power.vala',
'utils/Buffer.vala',
+ 'utils/History.vala',
'utils/Platform.vala',
'views/ThingsView.vala',
'views/WelcomeView.vala'
diff --git a/src/utils/History.vala b/src/utils/History.vala
new file mode 100644
index 0000000..84d19be
--- /dev/null
+++ b/src/utils/History.vala
@@ -0,0 +1,70 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class History {
+ private Gee.LinkedList list;
+ private int index = -1;
+
+ public History () {
+ list = new Gee.LinkedList ();
+ }
+
+ public bool is_homepage {
+ get {
+ return list.size <= 1;
+ }
+ }
+
+ public string current {
+ owned get {
+ return list.get (index);
+ }
+ }
+
+ public string previous {
+ owned get {
+ return list.get (index - 1);
+ }
+ }
+
+ public void add (string v) {
+ list.add (v);
+ index += 1;
+ }
+
+ public string pop () {
+ index -= 1;
+ return list.poll_tail ();
+ }
+
+ public void println () {
+ print ("History: ");
+ for (int i = 0; i < list.size; i++) {
+ print (list.get (i));
+
+ if (i < list.size - 1) {
+ print (" > ");
+ }
+ }
+
+ print ("\n");
+ }
+}
From 2db9581780c7f483e3fc63a8e4bee52fa20ed709 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 20 Jun 2019 15:34:52 +0200
Subject: [PATCH 03/84] Track history of views in main window
---
src/MainWindow.vala | 48 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index a84a73b..ee69d92 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -20,9 +20,17 @@
*/
public class MainWindow : Gtk.ApplicationWindow {
+ private static MainWindow? instance;
private Settings settings;
+ private Gtk.Stack stack;
+ private Gtk.Button return_button;
+ private History history;
public MainWindow (Gtk.Application application) {
+ instance = this;
+
+ history = new History ();
+
this.application = application;
settings = Settings.get_default ();
@@ -32,6 +40,13 @@ public class MainWindow : Gtk.ApplicationWindow {
headerbar.get_style_context ().add_class ("default-decoration");
headerbar.show_close_button = true;
+ return_button = new Gtk.Button ();
+ return_button.no_show_all = true;
+ return_button.valign = Gtk.Align.CENTER;
+ return_button.get_style_context ().add_class ("back-button");
+ return_button.clicked.connect (go_back);
+ headerbar.pack_start (return_button);
+
set_titlebar (headerbar);
title = Config.APP_NAME;
@@ -49,6 +64,7 @@ public class MainWindow : Gtk.ApplicationWindow {
var things_view = new ThingsView ();
stack.add_named (things_view, "things");
+ history.add (_("Overview"));
delete_event.connect (() => {
save_settings ();
@@ -57,6 +73,38 @@ public class MainWindow : Gtk.ApplicationWindow {
});
}
+ public static MainWindow get_default () {
+ return instance;
+ }
+
+ public void go_to_page (Gtk.Widget page, string name) {
+ stack.add_named (page, name);
+
+ return_button.label = history.current;
+ return_button.no_show_all = false;
+ return_button.visible = true;
+ history.add (name);
+ stack.set_visible_child_full (name, Gtk.StackTransitionType.SLIDE_RIGHT);
+ }
+
+ public void go_back () {
+ if (!history.is_homepage) {
+ var widget = stack.get_visible_child ();
+
+ stack.set_visible_child_full (history.previous, Gtk.StackTransitionType.SLIDE_LEFT);
+ stack.remove (widget);
+
+ history.pop ();
+ }
+
+ if (!history.is_homepage) {
+ return_button.label = history.previous;
+ } else {
+ return_button.no_show_all = true;
+ return_button.visible = false;
+ }
+ }
+
private void load_settings () {
if (settings.window_maximized) {
maximize ();
From 761851b27f92e4d0245e64009b0f4f8cae020fb4 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 20 Jun 2019 15:55:27 +0200
Subject: [PATCH 04/84] Delete unused translations
---
po/LINGUAS | 194 ----------------------------------------------
po/aa.po | 71 -----------------
po/ab.po | 71 -----------------
po/ae.po | 71 -----------------
po/af.po | 71 -----------------
po/ak.po | 71 -----------------
po/am.po | 71 -----------------
po/an.po | 71 -----------------
po/ar.po | 71 -----------------
po/as.po | 71 -----------------
po/ast.po | 71 -----------------
po/av.po | 71 -----------------
po/ay.po | 71 -----------------
po/az.po | 71 -----------------
po/ba.po | 71 -----------------
po/be.po | 73 -----------------
po/bg.po | 72 -----------------
po/bh.po | 71 -----------------
po/bi.po | 71 -----------------
po/bm.po | 71 -----------------
po/bn.po | 71 -----------------
po/bo.po | 71 -----------------
po/br.po | 71 -----------------
po/bs.po | 71 -----------------
po/ca.po | 71 -----------------
po/ce.po | 71 -----------------
po/ch.po | 71 -----------------
po/ckb.po | 71 -----------------
po/co.po | 71 -----------------
po/cr.po | 71 -----------------
po/cs.po | 72 -----------------
po/cu.po | 71 -----------------
po/cv.po | 71 -----------------
po/cy.po | 71 -----------------
po/da.po | 72 -----------------
po/de.po | 72 -----------------
po/dv.po | 71 -----------------
po/dz.po | 71 -----------------
po/ee.po | 71 -----------------
po/el.po | 72 -----------------
po/en_AU.po | 78 -------------------
po/en_CA.po | 78 -------------------
po/en_GB.po | 78 -------------------
po/eo.po | 72 -----------------
po/es.po | 72 -----------------
po/et.po | 72 -----------------
po/eu.po | 71 -----------------
po/extra/LINGUAS | 194 ----------------------------------------------
po/extra/aa.po | 92 ----------------------
po/extra/ab.po | 92 ----------------------
po/extra/ae.po | 92 ----------------------
po/extra/af.po | 92 ----------------------
po/extra/ak.po | 92 ----------------------
po/extra/am.po | 92 ----------------------
po/extra/an.po | 92 ----------------------
po/extra/ar.po | 92 ----------------------
po/extra/as.po | 92 ----------------------
po/extra/ast.po | 92 ----------------------
po/extra/av.po | 92 ----------------------
po/extra/ay.po | 92 ----------------------
po/extra/az.po | 92 ----------------------
po/extra/ba.po | 92 ----------------------
po/extra/be.po | 94 ----------------------
po/extra/bg.po | 93 ----------------------
po/extra/bh.po | 92 ----------------------
po/extra/bi.po | 92 ----------------------
po/extra/bm.po | 92 ----------------------
po/extra/bn.po | 92 ----------------------
po/extra/bo.po | 92 ----------------------
po/extra/br.po | 92 ----------------------
po/extra/bs.po | 92 ----------------------
po/extra/ca.po | 92 ----------------------
po/extra/ce.po | 92 ----------------------
po/extra/ch.po | 92 ----------------------
po/extra/ckb.po | 92 ----------------------
po/extra/co.po | 92 ----------------------
po/extra/cr.po | 92 ----------------------
po/extra/cs.po | 93 ----------------------
po/extra/cu.po | 92 ----------------------
po/extra/cv.po | 92 ----------------------
po/extra/cy.po | 92 ----------------------
po/extra/da.po | 93 ----------------------
po/extra/de.po | 93 ----------------------
po/extra/dv.po | 92 ----------------------
po/extra/dz.po | 92 ----------------------
po/extra/ee.po | 92 ----------------------
po/extra/el.po | 93 ----------------------
po/extra/en_AU.po | 93 ----------------------
po/extra/en_CA.po | 93 ----------------------
po/extra/en_GB.po | 93 ----------------------
po/extra/eo.po | 93 ----------------------
po/extra/es.po | 93 ----------------------
po/extra/et.po | 93 ----------------------
po/extra/eu.po | 92 ----------------------
po/extra/fa.po | 92 ----------------------
po/extra/ff.po | 92 ----------------------
po/extra/fi.po | 93 ----------------------
po/extra/fj.po | 92 ----------------------
po/extra/fo.po | 93 ----------------------
po/extra/fr_CA.po | 93 ----------------------
po/extra/fy.po | 92 ----------------------
po/extra/ga.po | 93 ----------------------
po/extra/gd.po | 92 ----------------------
po/extra/gl.po | 92 ----------------------
po/extra/gn.po | 92 ----------------------
po/extra/gu.po | 92 ----------------------
po/extra/gv.po | 92 ----------------------
po/extra/ha.po | 92 ----------------------
po/extra/he.po | 93 ----------------------
po/extra/hi.po | 92 ----------------------
po/extra/ho.po | 92 ----------------------
po/extra/hr.po | 94 ----------------------
po/extra/ht.po | 92 ----------------------
po/extra/hu.po | 93 ----------------------
po/extra/hy.po | 92 ----------------------
po/extra/hz.po | 92 ----------------------
po/extra/ia.po | 92 ----------------------
po/extra/id.po | 92 ----------------------
po/extra/ie.po | 92 ----------------------
po/extra/ig.po | 92 ----------------------
po/extra/ii.po | 92 ----------------------
po/extra/ik.po | 92 ----------------------
po/extra/io.po | 92 ----------------------
po/extra/is.po | 92 ----------------------
po/extra/it.po | 93 ----------------------
po/extra/iu.po | 92 ----------------------
po/extra/ja.po | 93 ----------------------
po/extra/jv.po | 92 ----------------------
po/extra/ka.po | 92 ----------------------
po/extra/kg.po | 92 ----------------------
po/extra/ki.po | 92 ----------------------
po/extra/kj.po | 92 ----------------------
po/extra/kk.po | 92 ----------------------
po/extra/kl.po | 92 ----------------------
po/extra/km.po | 92 ----------------------
po/extra/kn.po | 92 ----------------------
po/extra/ko.po | 93 ----------------------
po/extra/kr.po | 92 ----------------------
po/extra/ks.po | 92 ----------------------
po/extra/ku.po | 92 ----------------------
po/extra/kv.po | 92 ----------------------
po/extra/kw.po | 92 ----------------------
po/extra/ky.po | 92 ----------------------
po/extra/la.po | 92 ----------------------
po/extra/lb.po | 92 ----------------------
po/extra/lg.po | 92 ----------------------
po/extra/li.po | 92 ----------------------
po/extra/ln.po | 92 ----------------------
po/extra/lo.po | 92 ----------------------
po/extra/lt.po | 94 ----------------------
po/extra/lu.po | 92 ----------------------
po/extra/lv.po | 94 ----------------------
po/extra/mg.po | 92 ----------------------
po/extra/mh.po | 92 ----------------------
po/extra/mi.po | 92 ----------------------
po/extra/mk.po | 92 ----------------------
po/extra/ml.po | 92 ----------------------
po/extra/mn.po | 92 ----------------------
po/extra/mo.po | 92 ----------------------
po/extra/mr.po | 92 ----------------------
po/extra/ms.po | 92 ----------------------
po/extra/mt.po | 92 ----------------------
po/extra/my.po | 92 ----------------------
po/extra/na.po | 92 ----------------------
po/extra/nb.po | 93 ----------------------
po/extra/nd.po | 92 ----------------------
po/extra/ne.po | 92 ----------------------
po/extra/ng.po | 92 ----------------------
po/extra/nl.po | 93 ----------------------
po/extra/nn.po | 93 ----------------------
po/extra/no.po | 93 ----------------------
po/extra/nr.po | 92 ----------------------
po/extra/nv.po | 92 ----------------------
po/extra/ny.po | 92 ----------------------
po/extra/oc.po | 92 ----------------------
po/extra/oj.po | 92 ----------------------
po/extra/om.po | 92 ----------------------
po/extra/or.po | 92 ----------------------
po/extra/os.po | 92 ----------------------
po/extra/pa.po | 92 ----------------------
po/extra/pi.po | 92 ----------------------
po/extra/pl.po | 94 ----------------------
po/extra/ps.po | 92 ----------------------
po/extra/pt.po | 93 ----------------------
po/extra/pt_BR.po | 93 ----------------------
po/extra/qu.po | 92 ----------------------
po/extra/rm.po | 92 ----------------------
po/extra/rn.po | 92 ----------------------
po/extra/ro.po | 94 ----------------------
po/extra/rue.po | 92 ----------------------
po/extra/rw.po | 92 ----------------------
po/extra/sa.po | 92 ----------------------
po/extra/sc.po | 92 ----------------------
po/extra/sd.po | 92 ----------------------
po/extra/se.po | 92 ----------------------
po/extra/sg.po | 92 ----------------------
po/extra/si.po | 92 ----------------------
po/extra/sk.po | 93 ----------------------
po/extra/sl.po | 94 ----------------------
po/extra/sm.po | 92 ----------------------
po/extra/sma.po | 92 ----------------------
po/extra/sn.po | 92 ----------------------
po/extra/so.po | 92 ----------------------
po/extra/sq.po | 92 ----------------------
po/extra/sr.po | 94 ----------------------
po/extra/ss.po | 92 ----------------------
po/extra/st.po | 92 ----------------------
po/extra/su.po | 92 ----------------------
po/extra/sv.po | 93 ----------------------
po/extra/sw.po | 92 ----------------------
po/extra/ta.po | 92 ----------------------
po/extra/te.po | 92 ----------------------
po/extra/tg.po | 92 ----------------------
po/extra/th.po | 92 ----------------------
po/extra/ti.po | 92 ----------------------
po/extra/tk.po | 92 ----------------------
po/extra/tl.po | 92 ----------------------
po/extra/tn.po | 92 ----------------------
po/extra/to.po | 92 ----------------------
po/extra/tr.po | 93 ----------------------
po/extra/ts.po | 92 ----------------------
po/extra/tt.po | 92 ----------------------
po/extra/tw.po | 92 ----------------------
po/extra/ty.po | 92 ----------------------
po/extra/ug.po | 92 ----------------------
po/extra/uk.po | 94 ----------------------
po/extra/ur.po | 92 ----------------------
po/extra/uz.po | 92 ----------------------
po/extra/ve.po | 92 ----------------------
po/extra/vi.po | 93 ----------------------
po/extra/vo.po | 92 ----------------------
po/extra/wa.po | 92 ----------------------
po/extra/wo.po | 92 ----------------------
po/extra/xh.po | 92 ----------------------
po/extra/yi.po | 92 ----------------------
po/extra/yo.po | 92 ----------------------
po/extra/za.po | 92 ----------------------
po/extra/zh.po | 92 ----------------------
po/extra/zh_CN.po | 92 ----------------------
po/extra/zh_HK.po | 92 ----------------------
po/extra/zh_TW.po | 92 ----------------------
po/extra/zu.po | 92 ----------------------
po/fa.po | 71 -----------------
po/ff.po | 71 -----------------
po/fi.po | 72 -----------------
po/fj.po | 71 -----------------
po/fo.po | 72 -----------------
po/fr_CA.po | 72 -----------------
po/fy.po | 71 -----------------
po/ga.po | 72 -----------------
po/gd.po | 71 -----------------
po/gl.po | 71 -----------------
po/gn.po | 71 -----------------
po/gu.po | 71 -----------------
po/gv.po | 71 -----------------
po/ha.po | 71 -----------------
po/he.po | 72 -----------------
po/hi.po | 71 -----------------
po/ho.po | 71 -----------------
po/hr.po | 73 -----------------
po/ht.po | 71 -----------------
po/hu.po | 72 -----------------
po/hy.po | 71 -----------------
po/hz.po | 71 -----------------
po/ia.po | 71 -----------------
po/id.po | 71 -----------------
po/ie.po | 71 -----------------
po/ig.po | 71 -----------------
po/ii.po | 71 -----------------
po/ik.po | 71 -----------------
po/io.po | 71 -----------------
po/is.po | 71 -----------------
po/it.po | 72 -----------------
po/iu.po | 71 -----------------
po/ja.po | 72 -----------------
po/jv.po | 71 -----------------
po/ka.po | 71 -----------------
po/kg.po | 71 -----------------
po/ki.po | 71 -----------------
po/kj.po | 71 -----------------
po/kk.po | 71 -----------------
po/kl.po | 71 -----------------
po/km.po | 71 -----------------
po/kn.po | 71 -----------------
po/ko.po | 72 -----------------
po/kr.po | 71 -----------------
po/ks.po | 71 -----------------
po/ku.po | 71 -----------------
po/kv.po | 71 -----------------
po/kw.po | 71 -----------------
po/ky.po | 71 -----------------
po/la.po | 71 -----------------
po/lb.po | 71 -----------------
po/lg.po | 71 -----------------
po/li.po | 71 -----------------
po/ln.po | 71 -----------------
po/lo.po | 71 -----------------
po/lt.po | 73 -----------------
po/lu.po | 71 -----------------
po/lv.po | 73 -----------------
po/mg.po | 71 -----------------
po/mh.po | 71 -----------------
po/mi.po | 71 -----------------
po/mk.po | 71 -----------------
po/ml.po | 71 -----------------
po/mn.po | 71 -----------------
po/mo.po | 71 -----------------
po/mr.po | 71 -----------------
po/ms.po | 71 -----------------
po/mt.po | 71 -----------------
po/my.po | 71 -----------------
po/na.po | 71 -----------------
po/nb.po | 72 -----------------
po/nd.po | 71 -----------------
po/ne.po | 71 -----------------
po/ng.po | 71 -----------------
po/nl.po | 72 -----------------
po/nn.po | 72 -----------------
po/no.po | 72 -----------------
po/nr.po | 71 -----------------
po/nv.po | 71 -----------------
po/ny.po | 71 -----------------
po/oc.po | 71 -----------------
po/oj.po | 71 -----------------
po/om.po | 71 -----------------
po/or.po | 71 -----------------
po/os.po | 71 -----------------
po/pa.po | 71 -----------------
po/pi.po | 71 -----------------
po/pl.po | 73 -----------------
po/ps.po | 71 -----------------
po/pt.po | 72 -----------------
po/pt_BR.po | 72 -----------------
po/qu.po | 71 -----------------
po/rm.po | 71 -----------------
po/rn.po | 71 -----------------
po/ro.po | 73 -----------------
po/ru.po | 6 +-
po/rue.po | 71 -----------------
po/rw.po | 71 -----------------
po/sa.po | 71 -----------------
po/sc.po | 71 -----------------
po/sd.po | 71 -----------------
po/se.po | 71 -----------------
po/sg.po | 71 -----------------
po/si.po | 71 -----------------
po/sk.po | 72 -----------------
po/sl.po | 73 -----------------
po/sm.po | 71 -----------------
po/sma.po | 71 -----------------
po/sn.po | 71 -----------------
po/so.po | 71 -----------------
po/sq.po | 71 -----------------
po/sr.po | 73 -----------------
po/ss.po | 71 -----------------
po/st.po | 71 -----------------
po/su.po | 71 -----------------
po/sv.po | 72 -----------------
po/sw.po | 71 -----------------
po/ta.po | 71 -----------------
po/te.po | 71 -----------------
po/tg.po | 71 -----------------
po/th.po | 71 -----------------
po/ti.po | 71 -----------------
po/tk.po | 71 -----------------
po/tl.po | 71 -----------------
po/tn.po | 71 -----------------
po/to.po | 71 -----------------
po/tr.po | 72 -----------------
po/ts.po | 71 -----------------
po/tt.po | 71 -----------------
po/tw.po | 71 -----------------
po/ty.po | 71 -----------------
po/ug.po | 71 -----------------
po/uk.po | 73 -----------------
po/ur.po | 71 -----------------
po/uz.po | 71 -----------------
po/ve.po | 71 -----------------
po/vi.po | 72 -----------------
po/vo.po | 71 -----------------
po/wa.po | 71 -----------------
po/wo.po | 71 -----------------
po/xh.po | 71 -----------------
po/yi.po | 71 -----------------
po/yo.po | 71 -----------------
po/za.po | 71 -----------------
po/zh.po | 71 -----------------
po/zh_CN.po | 71 -----------------
po/zh_HK.po | 71 -----------------
po/zh_TW.po | 71 -----------------
po/zu.po | 71 -----------------
391 files changed, 5 insertions(+), 32125 deletions(-)
delete mode 100644 po/aa.po
delete mode 100644 po/ab.po
delete mode 100644 po/ae.po
delete mode 100644 po/af.po
delete mode 100644 po/ak.po
delete mode 100644 po/am.po
delete mode 100644 po/an.po
delete mode 100644 po/ar.po
delete mode 100644 po/as.po
delete mode 100644 po/ast.po
delete mode 100644 po/av.po
delete mode 100644 po/ay.po
delete mode 100644 po/az.po
delete mode 100644 po/ba.po
delete mode 100644 po/be.po
delete mode 100644 po/bg.po
delete mode 100644 po/bh.po
delete mode 100644 po/bi.po
delete mode 100644 po/bm.po
delete mode 100644 po/bn.po
delete mode 100644 po/bo.po
delete mode 100644 po/br.po
delete mode 100644 po/bs.po
delete mode 100644 po/ca.po
delete mode 100644 po/ce.po
delete mode 100644 po/ch.po
delete mode 100644 po/ckb.po
delete mode 100644 po/co.po
delete mode 100644 po/cr.po
delete mode 100644 po/cs.po
delete mode 100644 po/cu.po
delete mode 100644 po/cv.po
delete mode 100644 po/cy.po
delete mode 100644 po/da.po
delete mode 100644 po/de.po
delete mode 100644 po/dv.po
delete mode 100644 po/dz.po
delete mode 100644 po/ee.po
delete mode 100644 po/el.po
delete mode 100644 po/en_AU.po
delete mode 100644 po/en_CA.po
delete mode 100644 po/en_GB.po
delete mode 100644 po/eo.po
delete mode 100644 po/es.po
delete mode 100644 po/et.po
delete mode 100644 po/eu.po
delete mode 100644 po/extra/aa.po
delete mode 100644 po/extra/ab.po
delete mode 100644 po/extra/ae.po
delete mode 100644 po/extra/af.po
delete mode 100644 po/extra/ak.po
delete mode 100644 po/extra/am.po
delete mode 100644 po/extra/an.po
delete mode 100644 po/extra/ar.po
delete mode 100644 po/extra/as.po
delete mode 100644 po/extra/ast.po
delete mode 100644 po/extra/av.po
delete mode 100644 po/extra/ay.po
delete mode 100644 po/extra/az.po
delete mode 100644 po/extra/ba.po
delete mode 100644 po/extra/be.po
delete mode 100644 po/extra/bg.po
delete mode 100644 po/extra/bh.po
delete mode 100644 po/extra/bi.po
delete mode 100644 po/extra/bm.po
delete mode 100644 po/extra/bn.po
delete mode 100644 po/extra/bo.po
delete mode 100644 po/extra/br.po
delete mode 100644 po/extra/bs.po
delete mode 100644 po/extra/ca.po
delete mode 100644 po/extra/ce.po
delete mode 100644 po/extra/ch.po
delete mode 100644 po/extra/ckb.po
delete mode 100644 po/extra/co.po
delete mode 100644 po/extra/cr.po
delete mode 100644 po/extra/cs.po
delete mode 100644 po/extra/cu.po
delete mode 100644 po/extra/cv.po
delete mode 100644 po/extra/cy.po
delete mode 100644 po/extra/da.po
delete mode 100644 po/extra/de.po
delete mode 100644 po/extra/dv.po
delete mode 100644 po/extra/dz.po
delete mode 100644 po/extra/ee.po
delete mode 100644 po/extra/el.po
delete mode 100644 po/extra/en_AU.po
delete mode 100644 po/extra/en_CA.po
delete mode 100644 po/extra/en_GB.po
delete mode 100644 po/extra/eo.po
delete mode 100644 po/extra/es.po
delete mode 100644 po/extra/et.po
delete mode 100644 po/extra/eu.po
delete mode 100644 po/extra/fa.po
delete mode 100644 po/extra/ff.po
delete mode 100644 po/extra/fi.po
delete mode 100644 po/extra/fj.po
delete mode 100644 po/extra/fo.po
delete mode 100644 po/extra/fr_CA.po
delete mode 100644 po/extra/fy.po
delete mode 100644 po/extra/ga.po
delete mode 100644 po/extra/gd.po
delete mode 100644 po/extra/gl.po
delete mode 100644 po/extra/gn.po
delete mode 100644 po/extra/gu.po
delete mode 100644 po/extra/gv.po
delete mode 100644 po/extra/ha.po
delete mode 100644 po/extra/he.po
delete mode 100644 po/extra/hi.po
delete mode 100644 po/extra/ho.po
delete mode 100644 po/extra/hr.po
delete mode 100644 po/extra/ht.po
delete mode 100644 po/extra/hu.po
delete mode 100644 po/extra/hy.po
delete mode 100644 po/extra/hz.po
delete mode 100644 po/extra/ia.po
delete mode 100644 po/extra/id.po
delete mode 100644 po/extra/ie.po
delete mode 100644 po/extra/ig.po
delete mode 100644 po/extra/ii.po
delete mode 100644 po/extra/ik.po
delete mode 100644 po/extra/io.po
delete mode 100644 po/extra/is.po
delete mode 100644 po/extra/it.po
delete mode 100644 po/extra/iu.po
delete mode 100644 po/extra/ja.po
delete mode 100644 po/extra/jv.po
delete mode 100644 po/extra/ka.po
delete mode 100644 po/extra/kg.po
delete mode 100644 po/extra/ki.po
delete mode 100644 po/extra/kj.po
delete mode 100644 po/extra/kk.po
delete mode 100644 po/extra/kl.po
delete mode 100644 po/extra/km.po
delete mode 100644 po/extra/kn.po
delete mode 100644 po/extra/ko.po
delete mode 100644 po/extra/kr.po
delete mode 100644 po/extra/ks.po
delete mode 100644 po/extra/ku.po
delete mode 100644 po/extra/kv.po
delete mode 100644 po/extra/kw.po
delete mode 100644 po/extra/ky.po
delete mode 100644 po/extra/la.po
delete mode 100644 po/extra/lb.po
delete mode 100644 po/extra/lg.po
delete mode 100644 po/extra/li.po
delete mode 100644 po/extra/ln.po
delete mode 100644 po/extra/lo.po
delete mode 100644 po/extra/lt.po
delete mode 100644 po/extra/lu.po
delete mode 100644 po/extra/lv.po
delete mode 100644 po/extra/mg.po
delete mode 100644 po/extra/mh.po
delete mode 100644 po/extra/mi.po
delete mode 100644 po/extra/mk.po
delete mode 100644 po/extra/ml.po
delete mode 100644 po/extra/mn.po
delete mode 100644 po/extra/mo.po
delete mode 100644 po/extra/mr.po
delete mode 100644 po/extra/ms.po
delete mode 100644 po/extra/mt.po
delete mode 100644 po/extra/my.po
delete mode 100644 po/extra/na.po
delete mode 100644 po/extra/nb.po
delete mode 100644 po/extra/nd.po
delete mode 100644 po/extra/ne.po
delete mode 100644 po/extra/ng.po
delete mode 100644 po/extra/nl.po
delete mode 100644 po/extra/nn.po
delete mode 100644 po/extra/no.po
delete mode 100644 po/extra/nr.po
delete mode 100644 po/extra/nv.po
delete mode 100644 po/extra/ny.po
delete mode 100644 po/extra/oc.po
delete mode 100644 po/extra/oj.po
delete mode 100644 po/extra/om.po
delete mode 100644 po/extra/or.po
delete mode 100644 po/extra/os.po
delete mode 100644 po/extra/pa.po
delete mode 100644 po/extra/pi.po
delete mode 100644 po/extra/pl.po
delete mode 100644 po/extra/ps.po
delete mode 100644 po/extra/pt.po
delete mode 100644 po/extra/pt_BR.po
delete mode 100644 po/extra/qu.po
delete mode 100644 po/extra/rm.po
delete mode 100644 po/extra/rn.po
delete mode 100644 po/extra/ro.po
delete mode 100644 po/extra/rue.po
delete mode 100644 po/extra/rw.po
delete mode 100644 po/extra/sa.po
delete mode 100644 po/extra/sc.po
delete mode 100644 po/extra/sd.po
delete mode 100644 po/extra/se.po
delete mode 100644 po/extra/sg.po
delete mode 100644 po/extra/si.po
delete mode 100644 po/extra/sk.po
delete mode 100644 po/extra/sl.po
delete mode 100644 po/extra/sm.po
delete mode 100644 po/extra/sma.po
delete mode 100644 po/extra/sn.po
delete mode 100644 po/extra/so.po
delete mode 100644 po/extra/sq.po
delete mode 100644 po/extra/sr.po
delete mode 100644 po/extra/ss.po
delete mode 100644 po/extra/st.po
delete mode 100644 po/extra/su.po
delete mode 100644 po/extra/sv.po
delete mode 100644 po/extra/sw.po
delete mode 100644 po/extra/ta.po
delete mode 100644 po/extra/te.po
delete mode 100644 po/extra/tg.po
delete mode 100644 po/extra/th.po
delete mode 100644 po/extra/ti.po
delete mode 100644 po/extra/tk.po
delete mode 100644 po/extra/tl.po
delete mode 100644 po/extra/tn.po
delete mode 100644 po/extra/to.po
delete mode 100644 po/extra/tr.po
delete mode 100644 po/extra/ts.po
delete mode 100644 po/extra/tt.po
delete mode 100644 po/extra/tw.po
delete mode 100644 po/extra/ty.po
delete mode 100644 po/extra/ug.po
delete mode 100644 po/extra/uk.po
delete mode 100644 po/extra/ur.po
delete mode 100644 po/extra/uz.po
delete mode 100644 po/extra/ve.po
delete mode 100644 po/extra/vi.po
delete mode 100644 po/extra/vo.po
delete mode 100644 po/extra/wa.po
delete mode 100644 po/extra/wo.po
delete mode 100644 po/extra/xh.po
delete mode 100644 po/extra/yi.po
delete mode 100644 po/extra/yo.po
delete mode 100644 po/extra/za.po
delete mode 100644 po/extra/zh.po
delete mode 100644 po/extra/zh_CN.po
delete mode 100644 po/extra/zh_HK.po
delete mode 100644 po/extra/zh_TW.po
delete mode 100644 po/extra/zu.po
delete mode 100644 po/fa.po
delete mode 100644 po/ff.po
delete mode 100644 po/fi.po
delete mode 100644 po/fj.po
delete mode 100644 po/fo.po
delete mode 100644 po/fr_CA.po
delete mode 100644 po/fy.po
delete mode 100644 po/ga.po
delete mode 100644 po/gd.po
delete mode 100644 po/gl.po
delete mode 100644 po/gn.po
delete mode 100644 po/gu.po
delete mode 100644 po/gv.po
delete mode 100644 po/ha.po
delete mode 100644 po/he.po
delete mode 100644 po/hi.po
delete mode 100644 po/ho.po
delete mode 100644 po/hr.po
delete mode 100644 po/ht.po
delete mode 100644 po/hu.po
delete mode 100644 po/hy.po
delete mode 100644 po/hz.po
delete mode 100644 po/ia.po
delete mode 100644 po/id.po
delete mode 100644 po/ie.po
delete mode 100644 po/ig.po
delete mode 100644 po/ii.po
delete mode 100644 po/ik.po
delete mode 100644 po/io.po
delete mode 100644 po/is.po
delete mode 100644 po/it.po
delete mode 100644 po/iu.po
delete mode 100644 po/ja.po
delete mode 100644 po/jv.po
delete mode 100644 po/ka.po
delete mode 100644 po/kg.po
delete mode 100644 po/ki.po
delete mode 100644 po/kj.po
delete mode 100644 po/kk.po
delete mode 100644 po/kl.po
delete mode 100644 po/km.po
delete mode 100644 po/kn.po
delete mode 100644 po/ko.po
delete mode 100644 po/kr.po
delete mode 100644 po/ks.po
delete mode 100644 po/ku.po
delete mode 100644 po/kv.po
delete mode 100644 po/kw.po
delete mode 100644 po/ky.po
delete mode 100644 po/la.po
delete mode 100644 po/lb.po
delete mode 100644 po/lg.po
delete mode 100644 po/li.po
delete mode 100644 po/ln.po
delete mode 100644 po/lo.po
delete mode 100644 po/lt.po
delete mode 100644 po/lu.po
delete mode 100644 po/lv.po
delete mode 100644 po/mg.po
delete mode 100644 po/mh.po
delete mode 100644 po/mi.po
delete mode 100644 po/mk.po
delete mode 100644 po/ml.po
delete mode 100644 po/mn.po
delete mode 100644 po/mo.po
delete mode 100644 po/mr.po
delete mode 100644 po/ms.po
delete mode 100644 po/mt.po
delete mode 100644 po/my.po
delete mode 100644 po/na.po
delete mode 100644 po/nb.po
delete mode 100644 po/nd.po
delete mode 100644 po/ne.po
delete mode 100644 po/ng.po
delete mode 100644 po/nl.po
delete mode 100644 po/nn.po
delete mode 100644 po/no.po
delete mode 100644 po/nr.po
delete mode 100644 po/nv.po
delete mode 100644 po/ny.po
delete mode 100644 po/oc.po
delete mode 100644 po/oj.po
delete mode 100644 po/om.po
delete mode 100644 po/or.po
delete mode 100644 po/os.po
delete mode 100644 po/pa.po
delete mode 100644 po/pi.po
delete mode 100644 po/pl.po
delete mode 100644 po/ps.po
delete mode 100644 po/pt.po
delete mode 100644 po/pt_BR.po
delete mode 100644 po/qu.po
delete mode 100644 po/rm.po
delete mode 100644 po/rn.po
delete mode 100644 po/ro.po
delete mode 100644 po/rue.po
delete mode 100644 po/rw.po
delete mode 100644 po/sa.po
delete mode 100644 po/sc.po
delete mode 100644 po/sd.po
delete mode 100644 po/se.po
delete mode 100644 po/sg.po
delete mode 100644 po/si.po
delete mode 100644 po/sk.po
delete mode 100644 po/sl.po
delete mode 100644 po/sm.po
delete mode 100644 po/sma.po
delete mode 100644 po/sn.po
delete mode 100644 po/so.po
delete mode 100644 po/sq.po
delete mode 100644 po/sr.po
delete mode 100644 po/ss.po
delete mode 100644 po/st.po
delete mode 100644 po/su.po
delete mode 100644 po/sv.po
delete mode 100644 po/sw.po
delete mode 100644 po/ta.po
delete mode 100644 po/te.po
delete mode 100644 po/tg.po
delete mode 100644 po/th.po
delete mode 100644 po/ti.po
delete mode 100644 po/tk.po
delete mode 100644 po/tl.po
delete mode 100644 po/tn.po
delete mode 100644 po/to.po
delete mode 100644 po/tr.po
delete mode 100644 po/ts.po
delete mode 100644 po/tt.po
delete mode 100644 po/tw.po
delete mode 100644 po/ty.po
delete mode 100644 po/ug.po
delete mode 100644 po/uk.po
delete mode 100644 po/ur.po
delete mode 100644 po/uz.po
delete mode 100644 po/ve.po
delete mode 100644 po/vi.po
delete mode 100644 po/vo.po
delete mode 100644 po/wa.po
delete mode 100644 po/wo.po
delete mode 100644 po/xh.po
delete mode 100644 po/yi.po
delete mode 100644 po/yo.po
delete mode 100644 po/za.po
delete mode 100644 po/zh.po
delete mode 100644 po/zh_CN.po
delete mode 100644 po/zh_HK.po
delete mode 100644 po/zh_TW.po
delete mode 100644 po/zu.po
diff --git a/po/LINGUAS b/po/LINGUAS
index 721d287..e368637 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -1,198 +1,4 @@
# please keep this list sorted alphabetically
#
-aa
-ab
-ae
-af
-ak
-am
-an
-ar
-as
-ast
-av
-ay
-az
-ba
-be
-bg
-bh
-bi
-bm
-bn
-bo
-br
-bs
-ca
-ce
-ch
-ckb
-co
-cr
-cs
-cu
-cv
-cy
-da
-de
-dv
-dz
-ee
-el
-en_AU
-en_CA
-en_GB
-eo
-es
-et
-eu
-fa
-ff
-fi
-fj
-fo
-fr_CA
fr
-fy
-ga
-gd
-gl
-gn
-gu
-gv
-ha
-he
-hi
-ho
-hr
-ht
-hu
-hy
-hz
-ia
-id
-ie
-ig
-ii
-ik
-io
-is
-it
-iu
-ja
-jv
-ka
-kg
-ki
-kj
-kk
-kl
-km
-kn
-ko
-kr
-ks
-ku
-kv
-kw
-ky
-la
-lb
-lg
-li
-ln
-lo
-lt
-lu
-lv
-mg
-mh
-mi
-mk
-ml
-mn
-mo
-mr
-ms
-mt
-my
-na
-nb
-nd
-ne
-ng
-nl
-nn
-no
-nr
-nv
-ny
-oc
-oj
-om
-or
-os
-pa
-pi
-pl
-ps
-pt_BR
-pt
-qu
-rm
-rn
-ro
-rue
ru
-rw
-sa
-sc
-sd
-se
-sg
-si
-sk
-sl
-sma
-sm
-sn
-so
-sq
-sr
-ss
-st
-su
-sv
-sw
-ta
-te
-tg
-th
-ti
-tk
-tl
-tn
-to
-tr
-ts
-tt
-tw
-ty
-ug
-uk
-ur
-uz
-ve
-vi
-vo
-wa
-wo
-xh
-yi
-yo
-za
-zh_CN
-zh_HK
-zh
-zh_TW
-zu
\ No newline at end of file
diff --git a/po/aa.po b/po/aa.po
deleted file mode 100644
index 8e8b71a..0000000
--- a/po/aa.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Afar translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: aa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ab.po b/po/ab.po
deleted file mode 100644
index 9dd80ce..0000000
--- a/po/ab.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Abkhazian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ab\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ae.po b/po/ae.po
deleted file mode 100644
index 121b443..0000000
--- a/po/ae.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Avestan translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ae\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/af.po b/po/af.po
deleted file mode 100644
index 0e8f76b..0000000
--- a/po/af.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Afrikaans translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: af\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ak.po b/po/ak.po
deleted file mode 100644
index 895297b..0000000
--- a/po/ak.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Akan translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ak\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/am.po b/po/am.po
deleted file mode 100644
index 7dbef79..0000000
--- a/po/am.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Amharic translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: am\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/an.po b/po/an.po
deleted file mode 100644
index 90d27e8..0000000
--- a/po/an.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Aragonese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: an\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ar.po b/po/ar.po
deleted file mode 100644
index bfe377b..0000000
--- a/po/ar.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Arabic translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ar\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/as.po b/po/as.po
deleted file mode 100644
index d99ca15..0000000
--- a/po/as.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Assamese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: as\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ast.po b/po/ast.po
deleted file mode 100644
index 2eac5fd..0000000
--- a/po/ast.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Asturian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ast\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/av.po b/po/av.po
deleted file mode 100644
index 7222e06..0000000
--- a/po/av.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Avaric translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: av\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ay.po b/po/ay.po
deleted file mode 100644
index 79937e4..0000000
--- a/po/ay.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Aymara translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ay\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/az.po b/po/az.po
deleted file mode 100644
index 73f56a4..0000000
--- a/po/az.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Azerbaijani translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: az\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ba.po b/po/ba.po
deleted file mode 100644
index 108b7b2..0000000
--- a/po/ba.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Bashkir translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ba\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/be.po b/po/be.po
deleted file mode 100644
index 39a8ad2..0000000
--- a/po/be.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Belarusian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: be\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bg.po b/po/bg.po
deleted file mode 100644
index 525dc81..0000000
--- a/po/bg.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Bulgarian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bh.po b/po/bh.po
deleted file mode 100644
index e5a631e..0000000
--- a/po/bh.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Bihari translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bi.po b/po/bi.po
deleted file mode 100644
index c8a5d00..0000000
--- a/po/bi.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Bislama translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bm.po b/po/bm.po
deleted file mode 100644
index 56afafa..0000000
--- a/po/bm.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Bambara translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bm\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bn.po b/po/bn.po
deleted file mode 100644
index ed93f9a..0000000
--- a/po/bn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Bengali translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bo.po b/po/bo.po
deleted file mode 100644
index c2bbf6f..0000000
--- a/po/bo.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tibetan translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/br.po b/po/br.po
deleted file mode 100644
index 3602356..0000000
--- a/po/br.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Breton translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: br\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/bs.po b/po/bs.po
deleted file mode 100644
index e6e49f8..0000000
--- a/po/bs.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Bosnian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ca.po b/po/ca.po
deleted file mode 100644
index dac8f30..0000000
--- a/po/ca.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Catalan translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ca\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ce.po b/po/ce.po
deleted file mode 100644
index 8d8c26a..0000000
--- a/po/ce.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chechen translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ce\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ch.po b/po/ch.po
deleted file mode 100644
index 0ecf0f2..0000000
--- a/po/ch.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chamorro translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ch\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ckb.po b/po/ckb.po
deleted file mode 100644
index ab1e97e..0000000
--- a/po/ckb.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Language ckb translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ckb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/co.po b/po/co.po
deleted file mode 100644
index c01cd87..0000000
--- a/po/co.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Corsican translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: co\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/cr.po b/po/cr.po
deleted file mode 100644
index 214b09c..0000000
--- a/po/cr.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Cree translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/cs.po b/po/cs.po
deleted file mode 100644
index a544ff9..0000000
--- a/po/cs.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Czech translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/cu.po b/po/cu.po
deleted file mode 100644
index e75f6ae..0000000
--- a/po/cu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Church Slavic translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/cv.po b/po/cv.po
deleted file mode 100644
index 8abb3b6..0000000
--- a/po/cv.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chuvash translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/cy.po b/po/cy.po
deleted file mode 100644
index 7a5b3de..0000000
--- a/po/cy.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Welsh translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cy\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/da.po b/po/da.po
deleted file mode 100644
index e29aa88..0000000
--- a/po/da.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Danish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: da\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/de.po b/po/de.po
deleted file mode 100644
index d882b5c..0000000
--- a/po/de.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# German translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/dv.po b/po/dv.po
deleted file mode 100644
index 1bd847b..0000000
--- a/po/dv.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Divehi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: dv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/dz.po b/po/dz.po
deleted file mode 100644
index e319afa..0000000
--- a/po/dz.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Dzongkha translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: dz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ee.po b/po/ee.po
deleted file mode 100644
index d1712d3..0000000
--- a/po/ee.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Ewe translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ee\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/el.po b/po/el.po
deleted file mode 100644
index ec53ffa..0000000
--- a/po/el.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Greek translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: el\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/en_AU.po b/po/en_AU.po
deleted file mode 100644
index bc2dcfa..0000000
--- a/po/en_AU.po
+++ /dev/null
@@ -1,78 +0,0 @@
-# English translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_AU\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr "Control your smart home gadgets"
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr "Let's go"
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr "Looking for smart home gadgets to control."
diff --git a/po/en_CA.po b/po/en_CA.po
deleted file mode 100644
index 85a46a2..0000000
--- a/po/en_CA.po
+++ /dev/null
@@ -1,78 +0,0 @@
-# English translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_CA\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr "Control your smart home gadgets"
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr "Let's go"
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr "Looking for smart home gadgets to control."
diff --git a/po/en_GB.po b/po/en_GB.po
deleted file mode 100644
index 08175b2..0000000
--- a/po/en_GB.po
+++ /dev/null
@@ -1,78 +0,0 @@
-# English translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_GB\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr "Control your smart home gadgets"
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr "Let's go"
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr "Looking for smart home gadgets to control."
diff --git a/po/eo.po b/po/eo.po
deleted file mode 100644
index a9cbe6b..0000000
--- a/po/eo.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Esperanto translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: eo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/es.po b/po/es.po
deleted file mode 100644
index 048a1da..0000000
--- a/po/es.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Spanish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/et.po b/po/et.po
deleted file mode 100644
index e788553..0000000
--- a/po/et.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Estonian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: et\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/eu.po b/po/eu.po
deleted file mode 100644
index 8d5458d..0000000
--- a/po/eu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Basque translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: eu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS
index 721d287..e368637 100644
--- a/po/extra/LINGUAS
+++ b/po/extra/LINGUAS
@@ -1,198 +1,4 @@
# please keep this list sorted alphabetically
#
-aa
-ab
-ae
-af
-ak
-am
-an
-ar
-as
-ast
-av
-ay
-az
-ba
-be
-bg
-bh
-bi
-bm
-bn
-bo
-br
-bs
-ca
-ce
-ch
-ckb
-co
-cr
-cs
-cu
-cv
-cy
-da
-de
-dv
-dz
-ee
-el
-en_AU
-en_CA
-en_GB
-eo
-es
-et
-eu
-fa
-ff
-fi
-fj
-fo
-fr_CA
fr
-fy
-ga
-gd
-gl
-gn
-gu
-gv
-ha
-he
-hi
-ho
-hr
-ht
-hu
-hy
-hz
-ia
-id
-ie
-ig
-ii
-ik
-io
-is
-it
-iu
-ja
-jv
-ka
-kg
-ki
-kj
-kk
-kl
-km
-kn
-ko
-kr
-ks
-ku
-kv
-kw
-ky
-la
-lb
-lg
-li
-ln
-lo
-lt
-lu
-lv
-mg
-mh
-mi
-mk
-ml
-mn
-mo
-mr
-ms
-mt
-my
-na
-nb
-nd
-ne
-ng
-nl
-nn
-no
-nr
-nv
-ny
-oc
-oj
-om
-or
-os
-pa
-pi
-pl
-ps
-pt_BR
-pt
-qu
-rm
-rn
-ro
-rue
ru
-rw
-sa
-sc
-sd
-se
-sg
-si
-sk
-sl
-sma
-sm
-sn
-so
-sq
-sr
-ss
-st
-su
-sv
-sw
-ta
-te
-tg
-th
-ti
-tk
-tl
-tn
-to
-tr
-ts
-tt
-tw
-ty
-ug
-uk
-ur
-uz
-ve
-vi
-vo
-wa
-wo
-xh
-yi
-yo
-za
-zh_CN
-zh_HK
-zh
-zh_TW
-zu
\ No newline at end of file
diff --git a/po/extra/aa.po b/po/extra/aa.po
deleted file mode 100644
index 363cb25..0000000
--- a/po/extra/aa.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Afar translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: aa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ab.po b/po/extra/ab.po
deleted file mode 100644
index e1d9432..0000000
--- a/po/extra/ab.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Abkhazian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ab\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ae.po b/po/extra/ae.po
deleted file mode 100644
index 72a4455..0000000
--- a/po/extra/ae.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Avestan translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ae\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/af.po b/po/extra/af.po
deleted file mode 100644
index 91fe5fb..0000000
--- a/po/extra/af.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Afrikaans translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: af\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ak.po b/po/extra/ak.po
deleted file mode 100644
index 0bc9620..0000000
--- a/po/extra/ak.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Akan translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ak\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/am.po b/po/extra/am.po
deleted file mode 100644
index 10ff96e..0000000
--- a/po/extra/am.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Amharic translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: am\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/an.po b/po/extra/an.po
deleted file mode 100644
index d51931b..0000000
--- a/po/extra/an.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Aragonese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: an\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ar.po b/po/extra/ar.po
deleted file mode 100644
index 19fc0fb..0000000
--- a/po/extra/ar.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Arabic translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ar\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/as.po b/po/extra/as.po
deleted file mode 100644
index 7304fed..0000000
--- a/po/extra/as.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Assamese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: as\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ast.po b/po/extra/ast.po
deleted file mode 100644
index 5bde53c..0000000
--- a/po/extra/ast.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Asturian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ast\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/av.po b/po/extra/av.po
deleted file mode 100644
index f701113..0000000
--- a/po/extra/av.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Avaric translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: av\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ay.po b/po/extra/ay.po
deleted file mode 100644
index 478d060..0000000
--- a/po/extra/ay.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Aymara translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ay\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/az.po b/po/extra/az.po
deleted file mode 100644
index 7834582..0000000
--- a/po/extra/az.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Azerbaijani translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: az\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ba.po b/po/extra/ba.po
deleted file mode 100644
index 0477985..0000000
--- a/po/extra/ba.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Bashkir translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ba\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/be.po b/po/extra/be.po
deleted file mode 100644
index 59b1191..0000000
--- a/po/extra/be.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Belarusian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: be\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bg.po b/po/extra/bg.po
deleted file mode 100644
index 06b4fc8..0000000
--- a/po/extra/bg.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Bulgarian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bh.po b/po/extra/bh.po
deleted file mode 100644
index 2698da2..0000000
--- a/po/extra/bh.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Bihari translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bi.po b/po/extra/bi.po
deleted file mode 100644
index adfe717..0000000
--- a/po/extra/bi.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Bislama translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bm.po b/po/extra/bm.po
deleted file mode 100644
index 0bf3bc1..0000000
--- a/po/extra/bm.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Bambara translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bm\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bn.po b/po/extra/bn.po
deleted file mode 100644
index 3609af0..0000000
--- a/po/extra/bn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Bengali translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bo.po b/po/extra/bo.po
deleted file mode 100644
index 1bfb18d..0000000
--- a/po/extra/bo.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tibetan translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/br.po b/po/extra/br.po
deleted file mode 100644
index c70836f..0000000
--- a/po/extra/br.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Breton translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: br\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/bs.po b/po/extra/bs.po
deleted file mode 100644
index 084556e..0000000
--- a/po/extra/bs.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Bosnian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: bs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ca.po b/po/extra/ca.po
deleted file mode 100644
index f17d897..0000000
--- a/po/extra/ca.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Catalan translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ca\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ce.po b/po/extra/ce.po
deleted file mode 100644
index 366942f..0000000
--- a/po/extra/ce.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chechen translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ce\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ch.po b/po/extra/ch.po
deleted file mode 100644
index 255b23a..0000000
--- a/po/extra/ch.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chamorro translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ch\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ckb.po b/po/extra/ckb.po
deleted file mode 100644
index 2ff2f1d..0000000
--- a/po/extra/ckb.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Language ckb translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ckb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/co.po b/po/extra/co.po
deleted file mode 100644
index 05f4530..0000000
--- a/po/extra/co.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Corsican translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: co\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/cr.po b/po/extra/cr.po
deleted file mode 100644
index 26841fa..0000000
--- a/po/extra/cr.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Cree translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/cs.po b/po/extra/cs.po
deleted file mode 100644
index f6dddfc..0000000
--- a/po/extra/cs.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Czech translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/cu.po b/po/extra/cu.po
deleted file mode 100644
index 9abaa29..0000000
--- a/po/extra/cu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Church Slavic translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/cv.po b/po/extra/cv.po
deleted file mode 100644
index d63d2ee..0000000
--- a/po/extra/cv.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chuvash translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/cy.po b/po/extra/cy.po
deleted file mode 100644
index 20d2327..0000000
--- a/po/extra/cy.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Welsh translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: cy\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/da.po b/po/extra/da.po
deleted file mode 100644
index 8845dd4..0000000
--- a/po/extra/da.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Danish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: da\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/de.po b/po/extra/de.po
deleted file mode 100644
index 11fccbe..0000000
--- a/po/extra/de.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# German translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/dv.po b/po/extra/dv.po
deleted file mode 100644
index 531c6e9..0000000
--- a/po/extra/dv.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Divehi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: dv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/dz.po b/po/extra/dz.po
deleted file mode 100644
index ef64114..0000000
--- a/po/extra/dz.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Dzongkha translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: dz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ee.po b/po/extra/ee.po
deleted file mode 100644
index 1004477..0000000
--- a/po/extra/ee.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Ewe translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ee\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/el.po b/po/extra/el.po
deleted file mode 100644
index fe0c644..0000000
--- a/po/extra/el.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Greek translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: el\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/en_AU.po b/po/extra/en_AU.po
deleted file mode 100644
index 7cee7b5..0000000
--- a/po/extra/en_AU.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# English translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_AU\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr "Home"
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr "Control your smart home gadgets"
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr "A smart home application to control your gadgets."
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr "Supported devices:"
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr "LIFX"
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr "New:"
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr "Add welcome view for onboarding"
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr "Show loading page if no smart home gadget is found"
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr "Show manufacturer and model of device"
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr "Improved:"
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr "Save and load window settings"
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr "Fixed:"
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr "Remove mention of elementary OS in app description"
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr "Suffix symbolic icon names with -symbolic"
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr "Install all available icon sizes"
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr "Initial release"
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr "Manexim"
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr "com.github.manexim.home"
diff --git a/po/extra/en_CA.po b/po/extra/en_CA.po
deleted file mode 100644
index 6b9136d..0000000
--- a/po/extra/en_CA.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# English translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_CA\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr "Home"
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr "Control your smart home gadgets"
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr "A smart home application to control your gadgets."
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr "Supported devices:"
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr "LIFX"
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr "New:"
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr "Add welcome view for onboarding"
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr "Show loading page if no smart home gadget is found"
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr "Show manufacturer and model of device"
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr "Improved:"
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr "Save and load window settings"
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr "Fixed:"
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr "Remove mention of elementary OS in app description"
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr "Suffix symbolic icon names with -symbolic"
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr "Install all available icon sizes"
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr "Initial release"
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr "Manexim"
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr "com.github.manexim.home"
diff --git a/po/extra/en_GB.po b/po/extra/en_GB.po
deleted file mode 100644
index 8018db7..0000000
--- a/po/extra/en_GB.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# English translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: en_GB\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr "Home"
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr "Control your smart home gadgets"
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr "A smart home application to control your gadgets."
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr "Supported devices:"
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr "LIFX"
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr "New:"
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr "Add welcome view for onboarding"
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr "Show loading page if no smart home gadget is found"
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr "Show manufacturer and model of device"
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr "Improved:"
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr "Save and load window settings"
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr "Fixed:"
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr "Remove mention of elementary OS in app description"
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr "Suffix symbolic icon names with -symbolic"
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr "Install all available icon sizes"
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr "Initial release"
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr "Manexim"
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr "com.github.manexim.home"
diff --git a/po/extra/eo.po b/po/extra/eo.po
deleted file mode 100644
index 1c11fa5..0000000
--- a/po/extra/eo.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Esperanto translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: eo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/es.po b/po/extra/es.po
deleted file mode 100644
index aaa7758..0000000
--- a/po/extra/es.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Spanish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/et.po b/po/extra/et.po
deleted file mode 100644
index db45974..0000000
--- a/po/extra/et.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Estonian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: et\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/eu.po b/po/extra/eu.po
deleted file mode 100644
index 84377d6..0000000
--- a/po/extra/eu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Basque translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: eu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/fa.po b/po/extra/fa.po
deleted file mode 100644
index cdd6351..0000000
--- a/po/extra/fa.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Persian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ff.po b/po/extra/ff.po
deleted file mode 100644
index 9a40216..0000000
--- a/po/extra/ff.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Fulah translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ff\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/fi.po b/po/extra/fi.po
deleted file mode 100644
index e89d60f..0000000
--- a/po/extra/fi.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Finnish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/fj.po b/po/extra/fj.po
deleted file mode 100644
index 159063f..0000000
--- a/po/extra/fj.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Fijian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fj\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/fo.po b/po/extra/fo.po
deleted file mode 100644
index e79f499..0000000
--- a/po/extra/fo.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Faroese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/fr_CA.po b/po/extra/fr_CA.po
deleted file mode 100644
index 772735d..0000000
--- a/po/extra/fr_CA.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# French translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fr_CA\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/fy.po b/po/extra/fy.po
deleted file mode 100644
index e80f6fa..0000000
--- a/po/extra/fy.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Western Frisian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fy\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ga.po b/po/extra/ga.po
deleted file mode 100644
index 27e126b..0000000
--- a/po/extra/ga.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Irish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ga\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/gd.po b/po/extra/gd.po
deleted file mode 100644
index 33ccddf..0000000
--- a/po/extra/gd.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Scottish Gaelic translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gd\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/gl.po b/po/extra/gl.po
deleted file mode 100644
index 1dd9628..0000000
--- a/po/extra/gl.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Galician translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/gn.po b/po/extra/gn.po
deleted file mode 100644
index effd5d2..0000000
--- a/po/extra/gn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Guarani translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/gu.po b/po/extra/gu.po
deleted file mode 100644
index 956b6bc..0000000
--- a/po/extra/gu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Gujarati translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/gv.po b/po/extra/gv.po
deleted file mode 100644
index 37ff82f..0000000
--- a/po/extra/gv.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Manx translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ha.po b/po/extra/ha.po
deleted file mode 100644
index fbe9282..0000000
--- a/po/extra/ha.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Hausa translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ha\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/he.po b/po/extra/he.po
deleted file mode 100644
index 87f25e8..0000000
--- a/po/extra/he.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Hebrew translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: he\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/hi.po b/po/extra/hi.po
deleted file mode 100644
index 6908956..0000000
--- a/po/extra/hi.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Hindi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ho.po b/po/extra/ho.po
deleted file mode 100644
index 7359940..0000000
--- a/po/extra/ho.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Hiri Motu translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ho\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/hr.po b/po/extra/hr.po
deleted file mode 100644
index 269827b..0000000
--- a/po/extra/hr.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Croatian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ht.po b/po/extra/ht.po
deleted file mode 100644
index c5e1f48..0000000
--- a/po/extra/ht.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Haitian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ht\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/hu.po b/po/extra/hu.po
deleted file mode 100644
index 87de3e0..0000000
--- a/po/extra/hu.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Hungarian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/hy.po b/po/extra/hy.po
deleted file mode 100644
index b30568d..0000000
--- a/po/extra/hy.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Armenian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hy\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/hz.po b/po/extra/hz.po
deleted file mode 100644
index 3652f10..0000000
--- a/po/extra/hz.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Herero translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ia.po b/po/extra/ia.po
deleted file mode 100644
index 6ddddf2..0000000
--- a/po/extra/ia.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Interlingua translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ia\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/id.po b/po/extra/id.po
deleted file mode 100644
index e09cf6e..0000000
--- a/po/extra/id.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Indonesian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: id\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ie.po b/po/extra/ie.po
deleted file mode 100644
index 84f51de..0000000
--- a/po/extra/ie.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Interlingue translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ie\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ig.po b/po/extra/ig.po
deleted file mode 100644
index b80b886..0000000
--- a/po/extra/ig.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Igbo translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ig\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ii.po b/po/extra/ii.po
deleted file mode 100644
index 16a71bc..0000000
--- a/po/extra/ii.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sichuan Yi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ii\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ik.po b/po/extra/ik.po
deleted file mode 100644
index 36faff8..0000000
--- a/po/extra/ik.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Inupiak translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ik\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/io.po b/po/extra/io.po
deleted file mode 100644
index 6757feb..0000000
--- a/po/extra/io.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Language io translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: io\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/is.po b/po/extra/is.po
deleted file mode 100644
index 371a2fe..0000000
--- a/po/extra/is.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Icelandic translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: is\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/it.po b/po/extra/it.po
deleted file mode 100644
index c8d41ad..0000000
--- a/po/extra/it.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Italian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/iu.po b/po/extra/iu.po
deleted file mode 100644
index 9305b84..0000000
--- a/po/extra/iu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Inuktitut translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: iu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ja.po b/po/extra/ja.po
deleted file mode 100644
index 3041a90..0000000
--- a/po/extra/ja.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Japanese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ja\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/jv.po b/po/extra/jv.po
deleted file mode 100644
index bb28817..0000000
--- a/po/extra/jv.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Javanese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: jv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ka.po b/po/extra/ka.po
deleted file mode 100644
index e32b125..0000000
--- a/po/extra/ka.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Georgian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ka\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kg.po b/po/extra/kg.po
deleted file mode 100644
index ee89a7e..0000000
--- a/po/extra/kg.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kongo translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ki.po b/po/extra/ki.po
deleted file mode 100644
index 21a2f6a..0000000
--- a/po/extra/ki.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kikuyu translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ki\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kj.po b/po/extra/kj.po
deleted file mode 100644
index 23be7c3..0000000
--- a/po/extra/kj.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kuanyama translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kj\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kk.po b/po/extra/kk.po
deleted file mode 100644
index a59cfc9..0000000
--- a/po/extra/kk.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kazakh translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kl.po b/po/extra/kl.po
deleted file mode 100644
index 8e9dc58..0000000
--- a/po/extra/kl.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kalaallisut translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/km.po b/po/extra/km.po
deleted file mode 100644
index 6c284d0..0000000
--- a/po/extra/km.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Central Khmer translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: km\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kn.po b/po/extra/kn.po
deleted file mode 100644
index 1ba8af5..0000000
--- a/po/extra/kn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kannada translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ko.po b/po/extra/ko.po
deleted file mode 100644
index 0820728..0000000
--- a/po/extra/ko.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Korean translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ko\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kr.po b/po/extra/kr.po
deleted file mode 100644
index 78c7a45..0000000
--- a/po/extra/kr.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kanuri translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ks.po b/po/extra/ks.po
deleted file mode 100644
index a6745e5..0000000
--- a/po/extra/ks.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kashmiri translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ks\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ku.po b/po/extra/ku.po
deleted file mode 100644
index f9708c9..0000000
--- a/po/extra/ku.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kurdish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ku\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kv.po b/po/extra/kv.po
deleted file mode 100644
index 0912254..0000000
--- a/po/extra/kv.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Komi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/kw.po b/po/extra/kw.po
deleted file mode 100644
index c27de54..0000000
--- a/po/extra/kw.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Cornish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ky.po b/po/extra/ky.po
deleted file mode 100644
index 7b93946..0000000
--- a/po/extra/ky.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kirghiz translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ky\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/la.po b/po/extra/la.po
deleted file mode 100644
index dd88663..0000000
--- a/po/extra/la.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Latin translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: la\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/lb.po b/po/extra/lb.po
deleted file mode 100644
index 679f43f..0000000
--- a/po/extra/lb.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Letzeburgesch translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/lg.po b/po/extra/lg.po
deleted file mode 100644
index 5511df9..0000000
--- a/po/extra/lg.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Ganda translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/li.po b/po/extra/li.po
deleted file mode 100644
index 41b6274..0000000
--- a/po/extra/li.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Limburgish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: li\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ln.po b/po/extra/ln.po
deleted file mode 100644
index ccd0769..0000000
--- a/po/extra/ln.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Lingala translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ln\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/lo.po b/po/extra/lo.po
deleted file mode 100644
index e4a6992..0000000
--- a/po/extra/lo.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Laotian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/lt.po b/po/extra/lt.po
deleted file mode 100644
index 48b42e5..0000000
--- a/po/extra/lt.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Lithuanian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/lu.po b/po/extra/lu.po
deleted file mode 100644
index ab1819b..0000000
--- a/po/extra/lu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Luba-Katanga translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/lv.po b/po/extra/lv.po
deleted file mode 100644
index 9a32951..0000000
--- a/po/extra/lv.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Latvian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
-"2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mg.po b/po/extra/mg.po
deleted file mode 100644
index c6ced39..0000000
--- a/po/extra/mg.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Malagasy translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mh.po b/po/extra/mh.po
deleted file mode 100644
index dae41ba..0000000
--- a/po/extra/mh.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Marshallese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mi.po b/po/extra/mi.po
deleted file mode 100644
index 72a7991..0000000
--- a/po/extra/mi.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Maori translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mk.po b/po/extra/mk.po
deleted file mode 100644
index e97105f..0000000
--- a/po/extra/mk.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Macedonian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ml.po b/po/extra/ml.po
deleted file mode 100644
index f4e0099..0000000
--- a/po/extra/ml.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Malayalam translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ml\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mn.po b/po/extra/mn.po
deleted file mode 100644
index f767df8..0000000
--- a/po/extra/mn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Mongolian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mo.po b/po/extra/mo.po
deleted file mode 100644
index 421aaa6..0000000
--- a/po/extra/mo.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Moldavian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mr.po b/po/extra/mr.po
deleted file mode 100644
index 8aa7f87..0000000
--- a/po/extra/mr.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Marathi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ms.po b/po/extra/ms.po
deleted file mode 100644
index b7d6e23..0000000
--- a/po/extra/ms.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Malay translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ms\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/mt.po b/po/extra/mt.po
deleted file mode 100644
index 53b0364..0000000
--- a/po/extra/mt.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Maltese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/my.po b/po/extra/my.po
deleted file mode 100644
index aca08c7..0000000
--- a/po/extra/my.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Burmese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: my\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/na.po b/po/extra/na.po
deleted file mode 100644
index 4acbd6d..0000000
--- a/po/extra/na.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Nauru translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: na\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/nb.po b/po/extra/nb.po
deleted file mode 100644
index 97240d4..0000000
--- a/po/extra/nb.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Norwegian Bokmal translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/nd.po b/po/extra/nd.po
deleted file mode 100644
index 27da7e5..0000000
--- a/po/extra/nd.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# North Ndebele translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nd\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ne.po b/po/extra/ne.po
deleted file mode 100644
index 8f24b9b..0000000
--- a/po/extra/ne.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Nepali translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ne\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ng.po b/po/extra/ng.po
deleted file mode 100644
index ed08d51..0000000
--- a/po/extra/ng.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Ndonga translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ng\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/nl.po b/po/extra/nl.po
deleted file mode 100644
index 0e667f9..0000000
--- a/po/extra/nl.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Dutch translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/nn.po b/po/extra/nn.po
deleted file mode 100644
index 04fc792..0000000
--- a/po/extra/nn.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Norwegian Nynorsk translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/no.po b/po/extra/no.po
deleted file mode 100644
index 797505c..0000000
--- a/po/extra/no.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Norwegian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: no\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/nr.po b/po/extra/nr.po
deleted file mode 100644
index 40bcbe4..0000000
--- a/po/extra/nr.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# South Ndebele translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/nv.po b/po/extra/nv.po
deleted file mode 100644
index a659577..0000000
--- a/po/extra/nv.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Navajo translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ny.po b/po/extra/ny.po
deleted file mode 100644
index b37bccf..0000000
--- a/po/extra/ny.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Nyanja translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ny\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/oc.po b/po/extra/oc.po
deleted file mode 100644
index ac3d217..0000000
--- a/po/extra/oc.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Occitan translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: oc\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/oj.po b/po/extra/oj.po
deleted file mode 100644
index 1a81fc8..0000000
--- a/po/extra/oj.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Ojibwa translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: oj\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/om.po b/po/extra/om.po
deleted file mode 100644
index 3690fa3..0000000
--- a/po/extra/om.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# (Afan) Oromo translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: om\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/or.po b/po/extra/or.po
deleted file mode 100644
index 4c7215e..0000000
--- a/po/extra/or.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Oriya translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: or\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/os.po b/po/extra/os.po
deleted file mode 100644
index 93acb50..0000000
--- a/po/extra/os.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Ossetian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: os\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/pa.po b/po/extra/pa.po
deleted file mode 100644
index 90a9881..0000000
--- a/po/extra/pa.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Punjabi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/pi.po b/po/extra/pi.po
deleted file mode 100644
index ec61093..0000000
--- a/po/extra/pi.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Pali translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/pl.po b/po/extra/pl.po
deleted file mode 100644
index 9bca647..0000000
--- a/po/extra/pl.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Polish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ps.po b/po/extra/ps.po
deleted file mode 100644
index b415b03..0000000
--- a/po/extra/ps.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Pashto translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ps\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/pt.po b/po/extra/pt.po
deleted file mode 100644
index 19975aa..0000000
--- a/po/extra/pt.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Portuguese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/pt_BR.po b/po/extra/pt_BR.po
deleted file mode 100644
index 4a2d8f2..0000000
--- a/po/extra/pt_BR.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Portuguese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pt_BR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/qu.po b/po/extra/qu.po
deleted file mode 100644
index 4e35cfb..0000000
--- a/po/extra/qu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Quechua translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: qu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/rm.po b/po/extra/rm.po
deleted file mode 100644
index a75ed36..0000000
--- a/po/extra/rm.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Romansh translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rm\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/rn.po b/po/extra/rn.po
deleted file mode 100644
index 3587200..0000000
--- a/po/extra/rn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kirundi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ro.po b/po/extra/ro.po
deleted file mode 100644
index 36c3b6c..0000000
--- a/po/extra/ro.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Romanian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ro\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
-"20)) ? 1 : 2;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/rue.po b/po/extra/rue.po
deleted file mode 100644
index 8046ba8..0000000
--- a/po/extra/rue.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Language rue translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rue\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/rw.po b/po/extra/rw.po
deleted file mode 100644
index 61e6468..0000000
--- a/po/extra/rw.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Kinyarwanda translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sa.po b/po/extra/sa.po
deleted file mode 100644
index 653d139..0000000
--- a/po/extra/sa.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sanskrit translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sc.po b/po/extra/sc.po
deleted file mode 100644
index 831028a..0000000
--- a/po/extra/sc.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sardinian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sc\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sd.po b/po/extra/sd.po
deleted file mode 100644
index 2f77a1f..0000000
--- a/po/extra/sd.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sindhi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sd\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/se.po b/po/extra/se.po
deleted file mode 100644
index 88a6a7d..0000000
--- a/po/extra/se.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Northern Sami translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: se\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sg.po b/po/extra/sg.po
deleted file mode 100644
index f8f6b6a..0000000
--- a/po/extra/sg.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sango translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/si.po b/po/extra/si.po
deleted file mode 100644
index f5ed533..0000000
--- a/po/extra/si.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sinhala translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: si\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sk.po b/po/extra/sk.po
deleted file mode 100644
index 25a6766..0000000
--- a/po/extra/sk.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Slovak translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sl.po b/po/extra/sl.po
deleted file mode 100644
index 3b86fb2..0000000
--- a/po/extra/sl.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Slovenian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sm.po b/po/extra/sm.po
deleted file mode 100644
index a206875..0000000
--- a/po/extra/sm.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Samoan translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sm\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sma.po b/po/extra/sma.po
deleted file mode 100644
index d48919d..0000000
--- a/po/extra/sma.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Southern Sami translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sma\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sn.po b/po/extra/sn.po
deleted file mode 100644
index 6f5a3da..0000000
--- a/po/extra/sn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Shona translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/so.po b/po/extra/so.po
deleted file mode 100644
index 1e817f7..0000000
--- a/po/extra/so.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Somali translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: so\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sq.po b/po/extra/sq.po
deleted file mode 100644
index 9906811..0000000
--- a/po/extra/sq.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Albanian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sq\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sr.po b/po/extra/sr.po
deleted file mode 100644
index 8d91949..0000000
--- a/po/extra/sr.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Serbian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ss.po b/po/extra/ss.po
deleted file mode 100644
index c34ca34..0000000
--- a/po/extra/ss.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Siswati translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ss\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/st.po b/po/extra/st.po
deleted file mode 100644
index 5186065..0000000
--- a/po/extra/st.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sesotho translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: st\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/su.po b/po/extra/su.po
deleted file mode 100644
index 68c497e..0000000
--- a/po/extra/su.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Sundanese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: su\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sv.po b/po/extra/sv.po
deleted file mode 100644
index e791442..0000000
--- a/po/extra/sv.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Swedish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/sw.po b/po/extra/sw.po
deleted file mode 100644
index a8069d8..0000000
--- a/po/extra/sw.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Swahili translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ta.po b/po/extra/ta.po
deleted file mode 100644
index 1a97d8b..0000000
--- a/po/extra/ta.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tamil translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ta\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/te.po b/po/extra/te.po
deleted file mode 100644
index dbe53a0..0000000
--- a/po/extra/te.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Telugu translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: te\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tg.po b/po/extra/tg.po
deleted file mode 100644
index 35ae13e..0000000
--- a/po/extra/tg.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tajik translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/th.po b/po/extra/th.po
deleted file mode 100644
index cc1f35f..0000000
--- a/po/extra/th.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Thai translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: th\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ti.po b/po/extra/ti.po
deleted file mode 100644
index ac27888..0000000
--- a/po/extra/ti.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tigrinya translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ti\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tk.po b/po/extra/tk.po
deleted file mode 100644
index 07353d9..0000000
--- a/po/extra/tk.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Turkmen translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tl.po b/po/extra/tl.po
deleted file mode 100644
index bdd8f26..0000000
--- a/po/extra/tl.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tagalog translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tn.po b/po/extra/tn.po
deleted file mode 100644
index 45bfbc6..0000000
--- a/po/extra/tn.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Setswana translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/to.po b/po/extra/to.po
deleted file mode 100644
index 4e4dbd2..0000000
--- a/po/extra/to.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tonga translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: to\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tr.po b/po/extra/tr.po
deleted file mode 100644
index a6525b8..0000000
--- a/po/extra/tr.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Turkish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ts.po b/po/extra/ts.po
deleted file mode 100644
index 8e12327..0000000
--- a/po/extra/ts.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tsonga translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ts\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tt.po b/po/extra/tt.po
deleted file mode 100644
index 797fb9b..0000000
--- a/po/extra/tt.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tatar translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/tw.po b/po/extra/tw.po
deleted file mode 100644
index 7902136..0000000
--- a/po/extra/tw.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Twi translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ty.po b/po/extra/ty.po
deleted file mode 100644
index 4921f04..0000000
--- a/po/extra/ty.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Tahitian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ty\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ug.po b/po/extra/ug.po
deleted file mode 100644
index 69794b3..0000000
--- a/po/extra/ug.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Uighur translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ug\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/uk.po b/po/extra/uk.po
deleted file mode 100644
index 1ec24b3..0000000
--- a/po/extra/uk.po
+++ /dev/null
@@ -1,94 +0,0 @@
-# Ukrainian translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: uk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ur.po b/po/extra/ur.po
deleted file mode 100644
index f2a3c9f..0000000
--- a/po/extra/ur.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Urdu translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ur\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/uz.po b/po/extra/uz.po
deleted file mode 100644
index c808d92..0000000
--- a/po/extra/uz.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Uzbek translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: uz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/ve.po b/po/extra/ve.po
deleted file mode 100644
index 08cf81d..0000000
--- a/po/extra/ve.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Venda translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ve\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/vi.po b/po/extra/vi.po
deleted file mode 100644
index a6c0d5e..0000000
--- a/po/extra/vi.po
+++ /dev/null
@@ -1,93 +0,0 @@
-# Vietnamese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: vi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/vo.po b/po/extra/vo.po
deleted file mode 100644
index f45ffa4..0000000
--- a/po/extra/vo.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Volapuk translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: vo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/wa.po b/po/extra/wa.po
deleted file mode 100644
index f3806f7..0000000
--- a/po/extra/wa.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Language wa translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: wa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/wo.po b/po/extra/wo.po
deleted file mode 100644
index b8b7a15..0000000
--- a/po/extra/wo.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Wolof translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: wo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/xh.po b/po/extra/xh.po
deleted file mode 100644
index e924f01..0000000
--- a/po/extra/xh.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Xhosa translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: xh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/yi.po b/po/extra/yi.po
deleted file mode 100644
index 61df675..0000000
--- a/po/extra/yi.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Yiddish translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: yi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/yo.po b/po/extra/yo.po
deleted file mode 100644
index 6b0742b..0000000
--- a/po/extra/yo.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Yoruba translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: yo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/za.po b/po/extra/za.po
deleted file mode 100644
index 1b97946..0000000
--- a/po/extra/za.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Zhuang translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: za\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/zh.po b/po/extra/zh.po
deleted file mode 100644
index dc5fef3..0000000
--- a/po/extra/zh.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chinese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/zh_CN.po b/po/extra/zh_CN.po
deleted file mode 100644
index f5c6467..0000000
--- a/po/extra/zh_CN.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chinese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh_CN\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/zh_HK.po b/po/extra/zh_HK.po
deleted file mode 100644
index 59dc7e7..0000000
--- a/po/extra/zh_HK.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chinese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh_HK\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/zh_TW.po b/po/extra/zh_TW.po
deleted file mode 100644
index 57d4ae2..0000000
--- a/po/extra/zh_TW.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Chinese translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh_TW\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/extra/zu.po b/po/extra/zu.po
deleted file mode 100644
index 1a9481d..0000000
--- a/po/extra/zu.po
+++ /dev/null
@@ -1,92 +0,0 @@
-# Zulu translations for extra package.
-# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the extra package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: extra\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
-"PO-Revision-Date: 2019-06-17 22:33+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: data/com.github.manexim.home.appdata.xml.in:7
-#: data/com.github.manexim.home.desktop.in:4
-#: data/com.github.manexim.home.desktop.in:5
-msgid "Home"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:8
-#: data/com.github.manexim.home.desktop.in:6
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:10
-msgid "A smart home application to control your gadgets."
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:11
-msgid "Supported devices:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:13
-msgid "LIFX"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:25
-msgid "New:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:27
-msgid "Add welcome view for onboarding"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:28
-msgid "Show loading page if no smart home gadget is found"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:29
-msgid "Show manufacturer and model of device"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:31
-msgid "Improved:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:33
-msgid "Save and load window settings"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:35
-msgid "Fixed:"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:37
-msgid "Remove mention of elementary OS in app description"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:38
-msgid "Suffix symbolic icon names with -symbolic"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:39
-msgid "Install all available icon sizes"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:45
-msgid "Initial release"
-msgstr ""
-
-#: data/com.github.manexim.home.appdata.xml.in:71
-msgid "Manexim"
-msgstr ""
-
-#: data/com.github.manexim.home.desktop.in:8
-msgid "com.github.manexim.home"
-msgstr ""
diff --git a/po/fa.po b/po/fa.po
deleted file mode 100644
index 0dd2c80..0000000
--- a/po/fa.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Persian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ff.po b/po/ff.po
deleted file mode 100644
index 14c769b..0000000
--- a/po/ff.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Fulah translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ff\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/fi.po b/po/fi.po
deleted file mode 100644
index 4d51e59..0000000
--- a/po/fi.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Finnish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/fj.po b/po/fj.po
deleted file mode 100644
index 8c5bf2f..0000000
--- a/po/fj.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Fijian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fj\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/fo.po b/po/fo.po
deleted file mode 100644
index 35d6124..0000000
--- a/po/fo.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Faroese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/fr_CA.po b/po/fr_CA.po
deleted file mode 100644
index 21e429d..0000000
--- a/po/fr_CA.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# French translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fr_CA\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/fy.po b/po/fy.po
deleted file mode 100644
index b2f5345..0000000
--- a/po/fy.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Western Frisian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: fy\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ga.po b/po/ga.po
deleted file mode 100644
index 990a7dd..0000000
--- a/po/ga.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Irish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ga\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/gd.po b/po/gd.po
deleted file mode 100644
index eeaaf95..0000000
--- a/po/gd.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Scottish Gaelic translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gd\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/gl.po b/po/gl.po
deleted file mode 100644
index 5b02271..0000000
--- a/po/gl.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Galician translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/gn.po b/po/gn.po
deleted file mode 100644
index 3772d1a..0000000
--- a/po/gn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Guarani translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/gu.po b/po/gu.po
deleted file mode 100644
index d5b458e..0000000
--- a/po/gu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Gujarati translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/gv.po b/po/gv.po
deleted file mode 100644
index c65b231..0000000
--- a/po/gv.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Manx translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: gv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ha.po b/po/ha.po
deleted file mode 100644
index 0209d5e..0000000
--- a/po/ha.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Hausa translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ha\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/he.po b/po/he.po
deleted file mode 100644
index a8a23ed..0000000
--- a/po/he.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Hebrew translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: he\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/hi.po b/po/hi.po
deleted file mode 100644
index e7d7944..0000000
--- a/po/hi.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Hindi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ho.po b/po/ho.po
deleted file mode 100644
index 3a1f15e..0000000
--- a/po/ho.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Hiri Motu translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ho\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/hr.po b/po/hr.po
deleted file mode 100644
index ec0ef59..0000000
--- a/po/hr.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Croatian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ht.po b/po/ht.po
deleted file mode 100644
index 893cc59..0000000
--- a/po/ht.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Haitian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ht\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/hu.po b/po/hu.po
deleted file mode 100644
index 224203b..0000000
--- a/po/hu.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Hungarian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/hy.po b/po/hy.po
deleted file mode 100644
index d03654f..0000000
--- a/po/hy.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Armenian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hy\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/hz.po b/po/hz.po
deleted file mode 100644
index 9ecf0f0..0000000
--- a/po/hz.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Herero translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: hz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ia.po b/po/ia.po
deleted file mode 100644
index de19103..0000000
--- a/po/ia.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Interlingua translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ia\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/id.po b/po/id.po
deleted file mode 100644
index e30739d..0000000
--- a/po/id.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Indonesian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: id\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ie.po b/po/ie.po
deleted file mode 100644
index 1ccee73..0000000
--- a/po/ie.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Interlingue translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ie\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ig.po b/po/ig.po
deleted file mode 100644
index a3164b2..0000000
--- a/po/ig.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Igbo translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ig\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ii.po b/po/ii.po
deleted file mode 100644
index a27a670..0000000
--- a/po/ii.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sichuan Yi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ii\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ik.po b/po/ik.po
deleted file mode 100644
index 75317ad..0000000
--- a/po/ik.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Inupiak translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ik\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/io.po b/po/io.po
deleted file mode 100644
index 6f5be8d..0000000
--- a/po/io.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Language io translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: io\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/is.po b/po/is.po
deleted file mode 100644
index 555b8d0..0000000
--- a/po/is.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Icelandic translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: is\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/it.po b/po/it.po
deleted file mode 100644
index 8dd9e96..0000000
--- a/po/it.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Italian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/iu.po b/po/iu.po
deleted file mode 100644
index 73bef03..0000000
--- a/po/iu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Inuktitut translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: iu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ja.po b/po/ja.po
deleted file mode 100644
index d20476e..0000000
--- a/po/ja.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Japanese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ja\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/jv.po b/po/jv.po
deleted file mode 100644
index 7674911..0000000
--- a/po/jv.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Javanese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: jv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ka.po b/po/ka.po
deleted file mode 100644
index 632a59f..0000000
--- a/po/ka.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Georgian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ka\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kg.po b/po/kg.po
deleted file mode 100644
index 127b5f3..0000000
--- a/po/kg.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kongo translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ki.po b/po/ki.po
deleted file mode 100644
index c4f9572..0000000
--- a/po/ki.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kikuyu translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ki\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kj.po b/po/kj.po
deleted file mode 100644
index 1ad582f..0000000
--- a/po/kj.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kuanyama translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kj\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kk.po b/po/kk.po
deleted file mode 100644
index 1d46428..0000000
--- a/po/kk.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kazakh translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kl.po b/po/kl.po
deleted file mode 100644
index b55db6f..0000000
--- a/po/kl.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kalaallisut translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/km.po b/po/km.po
deleted file mode 100644
index cacc6e6..0000000
--- a/po/km.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Central Khmer translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: km\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kn.po b/po/kn.po
deleted file mode 100644
index bbca953..0000000
--- a/po/kn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kannada translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ko.po b/po/ko.po
deleted file mode 100644
index 895c490..0000000
--- a/po/ko.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Korean translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ko\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kr.po b/po/kr.po
deleted file mode 100644
index 8ad9a9f..0000000
--- a/po/kr.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kanuri translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ks.po b/po/ks.po
deleted file mode 100644
index e949725..0000000
--- a/po/ks.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kashmiri translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ks\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ku.po b/po/ku.po
deleted file mode 100644
index 41975c9..0000000
--- a/po/ku.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kurdish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ku\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kv.po b/po/kv.po
deleted file mode 100644
index c81a7d4..0000000
--- a/po/kv.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Komi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/kw.po b/po/kw.po
deleted file mode 100644
index ab4246b..0000000
--- a/po/kw.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Cornish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: kw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ky.po b/po/ky.po
deleted file mode 100644
index 6abb017..0000000
--- a/po/ky.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kirghiz translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ky\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/la.po b/po/la.po
deleted file mode 100644
index 0e1aa8d..0000000
--- a/po/la.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Latin translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: la\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/lb.po b/po/lb.po
deleted file mode 100644
index 4cdfac2..0000000
--- a/po/lb.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Letzeburgesch translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/lg.po b/po/lg.po
deleted file mode 100644
index 217d4be..0000000
--- a/po/lg.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Ganda translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/li.po b/po/li.po
deleted file mode 100644
index 9c2def1..0000000
--- a/po/li.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Limburgish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: li\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ln.po b/po/ln.po
deleted file mode 100644
index 86cca2b..0000000
--- a/po/ln.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Lingala translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ln\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/lo.po b/po/lo.po
deleted file mode 100644
index 7f11684..0000000
--- a/po/lo.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Laotian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/lt.po b/po/lt.po
deleted file mode 100644
index 6777835..0000000
--- a/po/lt.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Lithuanian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/lu.po b/po/lu.po
deleted file mode 100644
index 4d3f14a..0000000
--- a/po/lu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Luba-Katanga translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/lv.po b/po/lv.po
deleted file mode 100644
index 69d14a0..0000000
--- a/po/lv.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Latvian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: lv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
-"2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mg.po b/po/mg.po
deleted file mode 100644
index 3b6e89e..0000000
--- a/po/mg.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Malagasy translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mh.po b/po/mh.po
deleted file mode 100644
index a4eb16b..0000000
--- a/po/mh.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Marshallese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mi.po b/po/mi.po
deleted file mode 100644
index 18ead07..0000000
--- a/po/mi.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Maori translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mk.po b/po/mk.po
deleted file mode 100644
index 1f3d2ee..0000000
--- a/po/mk.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Macedonian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ml.po b/po/ml.po
deleted file mode 100644
index 0687df8..0000000
--- a/po/ml.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Malayalam translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ml\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mn.po b/po/mn.po
deleted file mode 100644
index 2dc341d..0000000
--- a/po/mn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Mongolian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mo.po b/po/mo.po
deleted file mode 100644
index 3b994c8..0000000
--- a/po/mo.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Moldavian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mr.po b/po/mr.po
deleted file mode 100644
index 2065d3f..0000000
--- a/po/mr.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Marathi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ms.po b/po/ms.po
deleted file mode 100644
index 1eb6c2e..0000000
--- a/po/ms.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Malay translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ms\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/mt.po b/po/mt.po
deleted file mode 100644
index 36d7e88..0000000
--- a/po/mt.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Maltese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: mt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/my.po b/po/my.po
deleted file mode 100644
index 81c1ad6..0000000
--- a/po/my.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Burmese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: my\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/na.po b/po/na.po
deleted file mode 100644
index 62b4032..0000000
--- a/po/na.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Nauru translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: na\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/nb.po b/po/nb.po
deleted file mode 100644
index fa5c008..0000000
--- a/po/nb.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Norwegian Bokmal translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nb\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/nd.po b/po/nd.po
deleted file mode 100644
index e52be64..0000000
--- a/po/nd.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# North Ndebele translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nd\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ne.po b/po/ne.po
deleted file mode 100644
index 80a6c59..0000000
--- a/po/ne.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Nepali translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ne\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ng.po b/po/ng.po
deleted file mode 100644
index 3183b6a..0000000
--- a/po/ng.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Ndonga translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ng\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/nl.po b/po/nl.po
deleted file mode 100644
index 7291f90..0000000
--- a/po/nl.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Dutch translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/nn.po b/po/nn.po
deleted file mode 100644
index c59a00a..0000000
--- a/po/nn.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Norwegian Nynorsk translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/no.po b/po/no.po
deleted file mode 100644
index 01335dd..0000000
--- a/po/no.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Norwegian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: no\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/nr.po b/po/nr.po
deleted file mode 100644
index 1c10bbd..0000000
--- a/po/nr.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# South Ndebele translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/nv.po b/po/nv.po
deleted file mode 100644
index 4d49598..0000000
--- a/po/nv.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Navajo translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ny.po b/po/ny.po
deleted file mode 100644
index aa197da..0000000
--- a/po/ny.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Nyanja translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ny\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/oc.po b/po/oc.po
deleted file mode 100644
index c2e4156..0000000
--- a/po/oc.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Occitan translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: oc\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/oj.po b/po/oj.po
deleted file mode 100644
index 3fee3e9..0000000
--- a/po/oj.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Ojibwa translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: oj\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/om.po b/po/om.po
deleted file mode 100644
index af50b95..0000000
--- a/po/om.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# (Afan) Oromo translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: om\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/or.po b/po/or.po
deleted file mode 100644
index 2b76545..0000000
--- a/po/or.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Oriya translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: or\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/os.po b/po/os.po
deleted file mode 100644
index 8d85aa3..0000000
--- a/po/os.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Ossetian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: os\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/pa.po b/po/pa.po
deleted file mode 100644
index 9c4a855..0000000
--- a/po/pa.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Punjabi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/pi.po b/po/pi.po
deleted file mode 100644
index 6c50bd5..0000000
--- a/po/pi.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Pali translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/pl.po b/po/pl.po
deleted file mode 100644
index 47554cc..0000000
--- a/po/pl.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Polish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ps.po b/po/ps.po
deleted file mode 100644
index 7a10779..0000000
--- a/po/ps.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Pashto translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ps\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/pt.po b/po/pt.po
deleted file mode 100644
index a4f0165..0000000
--- a/po/pt.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Portuguese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
deleted file mode 100644
index 2c8c3ab..0000000
--- a/po/pt_BR.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Portuguese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: pt_BR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/qu.po b/po/qu.po
deleted file mode 100644
index 53acdc6..0000000
--- a/po/qu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Quechua translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: qu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/rm.po b/po/rm.po
deleted file mode 100644
index 2d5c5ce..0000000
--- a/po/rm.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Romansh translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rm\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/rn.po b/po/rn.po
deleted file mode 100644
index 8a89ccb..0000000
--- a/po/rn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kirundi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ro.po b/po/ro.po
deleted file mode 100644
index cad3842..0000000
--- a/po/ro.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Romanian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ro\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
-"20)) ? 1 : 2;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ru.po b/po/ru.po
index f2a8ff7..fb74abe 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
+"POT-Creation-Date: 2019-06-20 15:47+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -19,6 +19,10 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 2.0.6\n"
+#: src/MainWindow.vala:67
+msgid "Overview"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Управляйте своими умными домашними устройствами"
diff --git a/po/rue.po b/po/rue.po
deleted file mode 100644
index 9890a35..0000000
--- a/po/rue.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Language rue translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rue\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/rw.po b/po/rw.po
deleted file mode 100644
index 0d9c693..0000000
--- a/po/rw.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Kinyarwanda translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: rw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sa.po b/po/sa.po
deleted file mode 100644
index 5246e86..0000000
--- a/po/sa.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sanskrit translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sc.po b/po/sc.po
deleted file mode 100644
index 0df5ea1..0000000
--- a/po/sc.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sardinian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sc\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sd.po b/po/sd.po
deleted file mode 100644
index 385de4f..0000000
--- a/po/sd.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sindhi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sd\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/se.po b/po/se.po
deleted file mode 100644
index 65da8a9..0000000
--- a/po/se.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Northern Sami translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: se\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sg.po b/po/sg.po
deleted file mode 100644
index e295fd0..0000000
--- a/po/sg.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sango translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/si.po b/po/si.po
deleted file mode 100644
index a1fe8fd..0000000
--- a/po/si.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sinhala translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: si\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sk.po b/po/sk.po
deleted file mode 100644
index cd8e026..0000000
--- a/po/sk.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Slovak translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sl.po b/po/sl.po
deleted file mode 100644
index c52febf..0000000
--- a/po/sl.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Slovenian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sm.po b/po/sm.po
deleted file mode 100644
index dbc7a82..0000000
--- a/po/sm.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Samoan translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sm\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sma.po b/po/sma.po
deleted file mode 100644
index d37915a..0000000
--- a/po/sma.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Southern Sami translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sma\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sn.po b/po/sn.po
deleted file mode 100644
index 8c88ba0..0000000
--- a/po/sn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Shona translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/so.po b/po/so.po
deleted file mode 100644
index 52fbbb7..0000000
--- a/po/so.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Somali translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: so\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sq.po b/po/sq.po
deleted file mode 100644
index 282333e..0000000
--- a/po/sq.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Albanian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sq\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sr.po b/po/sr.po
deleted file mode 100644
index 4c12261..0000000
--- a/po/sr.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Serbian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ss.po b/po/ss.po
deleted file mode 100644
index 2701590..0000000
--- a/po/ss.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Siswati translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ss\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/st.po b/po/st.po
deleted file mode 100644
index a66987f..0000000
--- a/po/st.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sesotho translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: st\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/su.po b/po/su.po
deleted file mode 100644
index e80f752..0000000
--- a/po/su.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Sundanese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: su\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sv.po b/po/sv.po
deleted file mode 100644
index c1f0a86..0000000
--- a/po/sv.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Swedish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/sw.po b/po/sw.po
deleted file mode 100644
index fd501e1..0000000
--- a/po/sw.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Swahili translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: sw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ta.po b/po/ta.po
deleted file mode 100644
index 1481b93..0000000
--- a/po/ta.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tamil translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ta\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/te.po b/po/te.po
deleted file mode 100644
index dd1448f..0000000
--- a/po/te.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Telugu translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: te\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tg.po b/po/tg.po
deleted file mode 100644
index 4531dcb..0000000
--- a/po/tg.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tajik translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/th.po b/po/th.po
deleted file mode 100644
index d839a99..0000000
--- a/po/th.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Thai translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: th\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ti.po b/po/ti.po
deleted file mode 100644
index 9fc1c6e..0000000
--- a/po/ti.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tigrinya translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ti\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tk.po b/po/tk.po
deleted file mode 100644
index ead3585..0000000
--- a/po/tk.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Turkmen translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tl.po b/po/tl.po
deleted file mode 100644
index 8af3d69..0000000
--- a/po/tl.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tagalog translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tn.po b/po/tn.po
deleted file mode 100644
index a4c33d9..0000000
--- a/po/tn.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Setswana translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tn\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/to.po b/po/to.po
deleted file mode 100644
index 974d589..0000000
--- a/po/to.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tonga translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: to\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tr.po b/po/tr.po
deleted file mode 100644
index 0b9930e..0000000
--- a/po/tr.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Turkish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ts.po b/po/ts.po
deleted file mode 100644
index 84dc96d..0000000
--- a/po/ts.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tsonga translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ts\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tt.po b/po/tt.po
deleted file mode 100644
index ff76d55..0000000
--- a/po/tt.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tatar translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/tw.po b/po/tw.po
deleted file mode 100644
index 14207c2..0000000
--- a/po/tw.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Twi translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: tw\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ty.po b/po/ty.po
deleted file mode 100644
index b7ed354..0000000
--- a/po/ty.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Tahitian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ty\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ug.po b/po/ug.po
deleted file mode 100644
index b5af50e..0000000
--- a/po/ug.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Uighur translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ug\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/uk.po b/po/uk.po
deleted file mode 100644
index 5d59b83..0000000
--- a/po/uk.po
+++ /dev/null
@@ -1,73 +0,0 @@
-# Ukrainian translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: uk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ur.po b/po/ur.po
deleted file mode 100644
index 666671d..0000000
--- a/po/ur.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Urdu translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ur\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/uz.po b/po/uz.po
deleted file mode 100644
index bf0a5ea..0000000
--- a/po/uz.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Uzbek translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: uz\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/ve.po b/po/ve.po
deleted file mode 100644
index eec4133..0000000
--- a/po/ve.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Venda translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: ve\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/vi.po b/po/vi.po
deleted file mode 100644
index ab2d9ce..0000000
--- a/po/vi.po
+++ /dev/null
@@ -1,72 +0,0 @@
-# Vietnamese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: vi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/vo.po b/po/vo.po
deleted file mode 100644
index 44d3deb..0000000
--- a/po/vo.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Volapuk translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: vo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/wa.po b/po/wa.po
deleted file mode 100644
index 255dde5..0000000
--- a/po/wa.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Language wa translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: wa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/wo.po b/po/wo.po
deleted file mode 100644
index 8c99fbf..0000000
--- a/po/wo.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Wolof translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: wo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/xh.po b/po/xh.po
deleted file mode 100644
index a7c10f9..0000000
--- a/po/xh.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Xhosa translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: xh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/yi.po b/po/yi.po
deleted file mode 100644
index 5878265..0000000
--- a/po/yi.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Yiddish translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: yi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/yo.po b/po/yo.po
deleted file mode 100644
index 5e4e1ac..0000000
--- a/po/yo.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Yoruba translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: yo\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/za.po b/po/za.po
deleted file mode 100644
index 911bfa8..0000000
--- a/po/za.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Zhuang translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: za\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/zh.po b/po/zh.po
deleted file mode 100644
index a69abce..0000000
--- a/po/zh.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chinese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
deleted file mode 100644
index b422380..0000000
--- a/po/zh_CN.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chinese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh_CN\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/zh_HK.po b/po/zh_HK.po
deleted file mode 100644
index 3269286..0000000
--- a/po/zh_HK.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chinese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh_HK\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
deleted file mode 100644
index 2b5fc33..0000000
--- a/po/zh_TW.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Chinese translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zh_TW\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
diff --git a/po/zu.po b/po/zu.po
deleted file mode 100644
index af703ac..0000000
--- a/po/zu.po
+++ /dev/null
@@ -1,71 +0,0 @@
-# Zulu translations for com.github.manexim.home package.
-# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the com.github.manexim.home package.
-# Automatically generated, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: com.github.manexim.home\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
-"PO-Revision-Date: 2019-06-17 22:32+0400\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: zu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr ""
-
-#: src/views/WelcomeView.vala:30
-msgid ""
-"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
-"your Wi-Fi."
-msgstr ""
-
-#: src/views/WelcomeView.vala:35
-msgid ""
-"Smart ZigBee lights by Philips Hue are supported. They must already be "
-"connected to your Philips Hue Bridge."
-msgstr ""
-
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr ""
-
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-
-#: src/pages/LampPage.vala:63
-msgid "ID: "
-msgstr ""
-
-#: src/pages/LampPage.vala:64
-msgid "Manufacturer: "
-msgstr ""
-
-#: src/pages/LampPage.vala:65
-msgid "Model: "
-msgstr ""
-
-#: src/pages/LampPage.vala:70
-msgid "Enabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:74
-msgid "Disabled"
-msgstr ""
-
-#: src/pages/LampPage.vala:78
-msgid "Unknown"
-msgstr ""
-
-#: src/pages/LoadingPage.vala:27
-msgid "Looking for smart home gadgets to control."
-msgstr ""
From a67408a8e96575cf007a08d1f98edcbc30239cff Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 20 Jun 2019 16:00:36 +0200
Subject: [PATCH 05/84] Update translatable strings
---
po/POTFILES | 3 ++-
po/com.github.manexim.home.pot | 6 +++++-
po/fr.po | 6 +++++-
po/ru.po | 2 +-
4 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/po/POTFILES b/po/POTFILES
index b7d0c26..8c2b3d9 100644
--- a/po/POTFILES
+++ b/po/POTFILES
@@ -1,3 +1,4 @@
+src/MainWindow.vala
src/views/WelcomeView.vala
src/pages/LampPage.vala
-src/pages/LoadingPage.vala
\ No newline at end of file
+src/pages/LoadingPage.vala
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index 37c8005..d1d3f77 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
+"POT-Creation-Date: 2019-06-20 15:56+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,6 +17,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
+#: src/MainWindow.vala:67
+msgid "Overview"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index a6ac05a..b1178df 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 17:14+0200\n"
+"POT-Creation-Date: 2019-06-20 15:56+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -17,6 +17,10 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+#: src/MainWindow.vala:67
+msgid "Overview"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Contrôlez vos objets connectés pour maison intelligente"
diff --git a/po/ru.po b/po/ru.po
index fb74abe..5726fe9 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-20 15:47+0200\n"
+"POT-Creation-Date: 2019-06-20 15:56+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
From 8f312fe5f43990dd78991d14d39221b913c37db0 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 20 Jun 2019 16:08:01 +0200
Subject: [PATCH 06/84] Add overlay to show toast notifications
---
src/MainWindow.vala | 8 +++++--
src/meson.build | 3 ++-
src/widgets/Overlay.vala | 45 ++++++++++++++++++++++++++++++++++++++++
3 files changed, 53 insertions(+), 3 deletions(-)
create mode 100644 src/widgets/Overlay.vala
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index ee69d92..89e39ec 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -25,6 +25,7 @@ public class MainWindow : Gtk.ApplicationWindow {
private Gtk.Stack stack;
private Gtk.Button return_button;
private History history;
+ private Overlay overlay;
public MainWindow (Gtk.Application application) {
instance = this;
@@ -50,8 +51,11 @@ public class MainWindow : Gtk.ApplicationWindow {
set_titlebar (headerbar);
title = Config.APP_NAME;
- var stack = new Gtk.Stack ();
- add (stack);
+ overlay = Overlay.instance;
+ add (overlay);
+
+ stack = new Gtk.Stack ();
+ overlay.add (stack);
if (settings.is_first_run ()) {
var welcome_view = new WelcomeView ();
diff --git a/src/meson.build b/src/meson.build
index 3845bb8..c6bf6a0 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -18,7 +18,8 @@ sources = [
'utils/History.vala',
'utils/Platform.vala',
'views/ThingsView.vala',
- 'views/WelcomeView.vala'
+ 'views/WelcomeView.vala',
+ 'widgets/Overlay.vala'
]
executable(
diff --git a/src/widgets/Overlay.vala b/src/widgets/Overlay.vala
new file mode 100644
index 0000000..9fd7ee8
--- /dev/null
+++ b/src/widgets/Overlay.vala
@@ -0,0 +1,45 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Overlay : Gtk.Overlay {
+ private static Overlay? _instance;
+ public Granite.Widgets.Toast toast;
+
+ public static Overlay instance {
+ get {
+ if (_instance == null) {
+ _instance = new Overlay ();
+ }
+
+ return _instance;
+ }
+ }
+
+ private Overlay () {
+ toast = new Granite.Widgets.Toast ("");
+ add_overlay (toast);
+ }
+
+ public void show_toast (string message) {
+ toast.title = message;
+ toast.send_notification ();
+ }
+}
From 21f27441c4889d28382f98277532ad70db82558e Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 07:06:34 +0200
Subject: [PATCH 07/84] Add new layout for overview page
---
src/MainWindow.vala | 6 +--
src/meson.build | 9 +++-
src/philips/hue/Lamp.vala | 25 ++++++++++
src/views/Overview.vala | 64 +++++++++++++++++++++++++
src/widgets/Carousel.vala | 67 ++++++++++++++++++++++++++
src/widgets/CarouselItem.vala | 89 +++++++++++++++++++++++++++++++++++
6 files changed, 255 insertions(+), 5 deletions(-)
create mode 100644 src/philips/hue/Lamp.vala
create mode 100644 src/views/Overview.vala
create mode 100644 src/widgets/Carousel.vala
create mode 100644 src/widgets/CarouselItem.vala
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 89e39ec..e54b078 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -62,12 +62,12 @@ public class MainWindow : Gtk.ApplicationWindow {
stack.add_named (welcome_view, "welcome");
welcome_view.start.connect (() => {
- stack.set_visible_child_full("things", Gtk.StackTransitionType.SLIDE_LEFT);
+ stack.set_visible_child_full(_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
});
}
- var things_view = new ThingsView ();
- stack.add_named (things_view, "things");
+ var overview = new Overview ();
+ stack.add_named (overview, _("Overview"));
history.add (_("Overview"));
delete_event.connect (() => {
diff --git a/src/meson.build b/src/meson.build
index c6bf6a0..efad9b9 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -11,20 +11,25 @@ sources = [
'pages/LoadingPage.vala',
'philips/hue/Bridge.vala',
'philips/hue/BridgeController.vala',
+ 'philips/hue/Lamp.vala',
'philips/hue/Service.vala',
'services/Settings.vala',
'types/Power.vala',
'utils/Buffer.vala',
'utils/History.vala',
'utils/Platform.vala',
+ 'views/Overview.vala',
'views/ThingsView.vala',
'views/WelcomeView.vala',
- 'widgets/Overlay.vala'
+ 'widgets/Carousel.vala',
+ 'widgets/CarouselItem.vala',
+ 'widgets/Overlay.vala',
+ 'MainWindow.vala'
]
executable(
meson.project_name(),
- sources + ['Application.vala', 'MainWindow.vala'],
+ sources + ['Application.vala'],
dependencies: [
gtk_plus_3_dep,
json_glib_1_dep,
diff --git a/src/philips/hue/Lamp.vala b/src/philips/hue/Lamp.vala
new file mode 100644
index 0000000..587a0fe
--- /dev/null
+++ b/src/philips/hue/Lamp.vala
@@ -0,0 +1,25 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+namespace Philips.Hue {
+ public class Lamp : Models.Lamp {
+ }
+}
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
new file mode 100644
index 0000000..cd611d1
--- /dev/null
+++ b/src/views/Overview.vala
@@ -0,0 +1,64 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Overview : Gtk.Viewport {
+ private ThingsController things_controller;
+
+ public Overview () {
+ var scrolled_window = new Gtk.ScrolledWindow (null, null);
+ add (scrolled_window);
+
+ var grid = new Gtk.Grid ();
+ grid.margin = 12;
+ scrolled_window.add (grid);
+
+ var devices_label = new Gtk.Label (_("Devices"));
+ devices_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL);
+ devices_label.xalign = 0;
+ devices_label.margin_start = 10;
+
+ var devices_carousel = new Carousel ();
+
+ var devices_grid = new Gtk.Grid ();
+ devices_grid.margin = 2;
+ devices_grid.margin_top = 12;
+ devices_grid.attach (devices_label, 0, 0, 1, 1);
+ devices_grid.attach (devices_carousel, 0, 1, 1, 1);
+
+ grid.attach (devices_grid, 0, 0, 1, 1);
+
+ things_controller = new ThingsController ();
+ things_controller.on_new_lamp.connect ((lamp) => {
+ devices_carousel.add_thing (lamp);
+ });
+
+ things_controller.on_updated_lamp.connect ((lamp) => {
+ devices_carousel.update_thing (lamp);
+ });
+
+ devices_carousel.on_thing_activated.connect ((thing) => {
+ MainWindow.get_default ().go_to_page (
+ new LampPage (thing as Models.Lamp),
+ (thing.name == null || thing.name.length == 0) ? thing.id : thing.name
+ );
+ });
+ }
+}
diff --git a/src/widgets/Carousel.vala b/src/widgets/Carousel.vala
new file mode 100644
index 0000000..27f0875
--- /dev/null
+++ b/src/widgets/Carousel.vala
@@ -0,0 +1,67 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Carousel : Gtk.FlowBox {
+ private Gee.HashMap carousel_item_map;
+ private int index = 0;
+ public signal void on_thing_activated (Models.Thing thing);
+
+ public Carousel () {
+ Object (
+ activate_on_single_click: true,
+ homogeneous: true
+ );
+
+ carousel_item_map = new Gee.HashMap ();
+ }
+
+ construct {
+ column_spacing = 12;
+ row_spacing = 12;
+ hexpand = true;
+ max_children_per_line = 5;
+ min_children_per_line = 2;
+ selection_mode = Gtk.SelectionMode.NONE;
+ child_activated.connect (on_child_activated);
+ }
+
+ public void add_thing (Models.Thing? thing) {
+ var carousel_item = new CarouselItem (thing);
+ add (carousel_item);
+ carousel_item_map.set (thing.id, index++);
+ show_all ();
+ }
+
+ public void update_thing (Models.Thing? thing) {
+ weak Gtk.FlowBoxChild child = get_child_at_index (carousel_item_map.get (thing.id));
+ if (child is CarouselItem) {
+ var carousel_item = child as CarouselItem;
+ carousel_item.update_thing (thing);
+ }
+ }
+
+ private void on_child_activated (Gtk.FlowBoxChild child) {
+ if (child is CarouselItem) {
+ var thing = ((CarouselItem)child).thing;
+ on_thing_activated (thing);
+ }
+ }
+}
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
new file mode 100644
index 0000000..de8701d
--- /dev/null
+++ b/src/widgets/CarouselItem.vala
@@ -0,0 +1,89 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class CarouselItem : Gtk.FlowBoxChild {
+ public Models.Thing thing { get; construct set; }
+ private Gtk.Image icon;
+ private Gtk.Image status_icon;
+ private Gtk.Label name_label;
+ private Gtk.Label id_label;
+
+ public CarouselItem (Models.Thing thing) {
+ Object (thing: thing);
+ }
+
+ construct {
+ icon = new Gtk.Image ();
+ icon.pixel_size = 64;
+
+ status_icon = new Gtk.Image ();
+ status_icon.halign = Gtk.Align.END;
+ status_icon.valign = Gtk.Align.END;
+ status_icon.pixel_size = 16;
+
+ var icon_overlay = new Gtk.Overlay ();
+ icon_overlay.width_request = 64;
+ icon_overlay.add (icon);
+ icon_overlay.add_overlay (status_icon);
+
+ name_label = new Gtk.Label (thing.name);
+ name_label.valign = Gtk.Align.END;
+ name_label.xalign = 0;
+ name_label.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL);
+
+ id_label = new Gtk.Label (thing.id);
+ id_label.valign = Gtk.Align.START;
+ id_label.xalign = 0;
+ id_label.get_style_context ().add_class (Gtk.STYLE_CLASS_DIM_LABEL);
+
+ var grid = new Gtk.Grid ();
+ grid.column_spacing = 12;
+ grid.row_spacing = 3;
+ grid.margin = 6;
+ grid.attach (icon_overlay, 0, 0, 1, 2);
+ grid.attach (name_label, 1, 0, 1, 1);
+ grid.attach (id_label, 1, 1, 1, 1);
+
+ add (grid);
+ }
+
+ public void update_thing (Models.Thing thing) {
+ if (thing is Lifx.Lamp) {
+ icon.gicon = new ThemedIcon ("com.github.manexim.home.lightbulb.lifx-symbolic");
+ } else if (thing is Philips.Hue.Lamp) {
+ icon.gicon = new ThemedIcon ("com.github.manexim.home.lightbulb.philips.hue-symbolic");
+ } else {
+ icon.gicon = new ThemedIcon ("com.github.manexim.home.lightbulb-symbolic");
+ }
+
+ switch ((thing as Models.Lamp).power) {
+ case Power.ON:
+ status_icon.icon_name = "user-available";
+ break;
+ case Power.OFF:
+ status_icon.icon_name = "user-offline";
+ break;
+ }
+
+ name_label.label = thing.name;
+ id_label.label = thing.id;
+ }
+}
From 21a421996cfc9b4394ee797d2a23e640ccc9761e Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 08:55:42 +0200
Subject: [PATCH 08/84] Add icon for a thing
---
...com.github.manexim.home.thing-symbolic.svg | 212 ++++++++++++++++++
1 file changed, 212 insertions(+)
create mode 100644 data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
diff --git a/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg b/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
new file mode 100644
index 0000000..4eeec95
--- /dev/null
+++ b/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
@@ -0,0 +1,212 @@
+
+
+
+
From 5dedebf32a72dc86cbc3119b4cd7c5ee0213733a Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 08:56:28 +0200
Subject: [PATCH 09/84] Update models
---
src/lifx/Lamp.vala | 5 ++++
src/models/Lamp.vala | 46 ++--------------------------
src/models/Thing.vala | 60 +++++++++++++++++++++++++++++++++++++
src/philips/hue/Bridge.vala | 26 ----------------
src/philips/hue/Lamp.vala | 4 +++
5 files changed, 71 insertions(+), 70 deletions(-)
diff --git a/src/lifx/Lamp.vala b/src/lifx/Lamp.vala
index ad094d1..f5a33bd 100644
--- a/src/lifx/Lamp.vala
+++ b/src/lifx/Lamp.vala
@@ -21,6 +21,11 @@
namespace Lifx {
public class Lamp : Models.Lamp {
+ public Lamp () {
+ icon = "com.github.manexim.home.lightbulb.lifx-symbolic";
+ manufacturer = "LIFX";
+ }
+
public uint16 port {
get {
if (!_obj.has_member ("port")) {
diff --git a/src/models/Lamp.vala b/src/models/Lamp.vala
index 6c1c193..fbbfe9f 100644
--- a/src/models/Lamp.vala
+++ b/src/models/Lamp.vala
@@ -21,50 +21,8 @@
namespace Models {
public class Lamp : Thing {
- public Power power {
- get {
- if (!_obj.has_member ("power")) {
- _obj.set_string_member ("power", "unknown");
- }
-
- switch (_obj.get_string_member ("power")) {
- case "on":
- return Power.ON;
- case "off":
- return Power.OFF;
- default:
- return Power.UNKNOWN;
- }
- }
- set {
- _obj.set_string_member ("power", value.to_string ());
- }
- }
-
- public string manufacturer {
- get {
- if (!_obj.has_member ("manufacturer")) {
- manufacturer = null;
- }
-
- return _obj.get_string_member ("manufacturer");
- }
- set {
- _obj.set_string_member ("manufacturer", value);
- }
- }
-
- public string model {
- get {
- if (!_obj.has_member ("model")) {
- model = null;
- }
-
- return _obj.get_string_member ("model");
- }
- set {
- _obj.set_string_member ("model", value);
- }
+ public Lamp () {
+ icon = "com.github.manexim.home.lightbulb-symbolic";
}
public bool supports_color {
diff --git a/src/models/Thing.vala b/src/models/Thing.vala
index a877ea6..127c59e 100644
--- a/src/models/Thing.vala
+++ b/src/models/Thing.vala
@@ -25,6 +25,7 @@ namespace Models {
public Thing () {
_obj = new Json.Object ();
+ icon = "com.github.manexim.home.thing-symbolic";
}
public string id {
@@ -53,6 +54,65 @@ namespace Models {
}
}
+ public string icon {
+ get {
+ if (!_obj.has_member ("icon")) {
+ icon = null;
+ }
+
+ return _obj.get_string_member ("icon");
+ }
+ set {
+ _obj.set_string_member ("icon", value);
+ }
+ }
+
+ public Power power {
+ get {
+ if (!_obj.has_member ("power")) {
+ _obj.set_string_member ("power", "unknown");
+ }
+
+ switch (_obj.get_string_member ("power")) {
+ case "on":
+ return Power.ON;
+ case "off":
+ return Power.OFF;
+ default:
+ return Power.UNKNOWN;
+ }
+ }
+ set {
+ _obj.set_string_member ("power", value.to_string ());
+ }
+ }
+
+ public string manufacturer {
+ get {
+ if (!_obj.has_member ("manufacturer")) {
+ manufacturer = null;
+ }
+
+ return _obj.get_string_member ("manufacturer");
+ }
+ set {
+ _obj.set_string_member ("manufacturer", value);
+ }
+ }
+
+ public string model {
+ get {
+ if (!_obj.has_member ("model")) {
+ model = null;
+ }
+
+ return _obj.get_string_member ("model");
+ }
+ set {
+ _obj.set_string_member ("model", value);
+ }
+ }
+
public string to_string () {
size_t length;
diff --git a/src/philips/hue/Bridge.vala b/src/philips/hue/Bridge.vala
index 4594a86..7b0b5c6 100644
--- a/src/philips/hue/Bridge.vala
+++ b/src/philips/hue/Bridge.vala
@@ -25,31 +25,5 @@ namespace Philips.Hue {
_obj.set_string_member ("username", value);
}
}
-
- public string manufacturer {
- get {
- if (!_obj.has_member ("manufacturer")) {
- manufacturer = null;
- }
-
- return _obj.get_string_member ("manufacturer");
- }
- set {
- _obj.set_string_member ("manufacturer", value);
- }
- }
-
- public string model {
- get {
- if (!_obj.has_member ("model")) {
- model = null;
- }
-
- return _obj.get_string_member ("model");
- }
- set {
- _obj.set_string_member ("model", value);
- }
- }
}
}
diff --git a/src/philips/hue/Lamp.vala b/src/philips/hue/Lamp.vala
index 587a0fe..10de75d 100644
--- a/src/philips/hue/Lamp.vala
+++ b/src/philips/hue/Lamp.vala
@@ -21,5 +21,9 @@
namespace Philips.Hue {
public class Lamp : Models.Lamp {
+ public Lamp () {
+ icon = "com.github.manexim.home.lightbulb.philips.hue-symbolic";
+ manufacturer = "Philips";
+ }
}
}
From b58b94ed5723c583461c2a623879f2c054b97bf2 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 08:57:18 +0200
Subject: [PATCH 10/84] Use new models
---
data/meson.build | 3 +-
src/meson.build | 2 +-
src/pages/LampPage.vala | 82 -----------------------------------
src/pages/ThingPage.vala | 33 ++++++++++++++
src/views/Overview.vala | 2 +-
src/views/ThingsView.vala | 2 +-
src/widgets/CarouselItem.vala | 15 +++----
7 files changed, 45 insertions(+), 94 deletions(-)
delete mode 100644 src/pages/LampPage.vala
create mode 100644 src/pages/ThingPage.vala
diff --git a/data/meson.build b/data/meson.build
index 52da49f..fb408a3 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -16,7 +16,8 @@ symbolic_icons = [
'com.github.manexim.home.lightbulb-symbolic',
'com.github.manexim.home.lightbulb.lifx-symbolic',
'com.github.manexim.home.logo.lifx-symbolic',
- 'com.github.manexim.home.logo.philips.hue-symbolic'
+ 'com.github.manexim.home.logo.philips.hue-symbolic',
+ 'com.github.manexim.home.thing-symbolic'
]
foreach icon : symbolic_icons
diff --git a/src/meson.build b/src/meson.build
index efad9b9..b366993 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -7,8 +7,8 @@ sources = [
'lifx/Service.vala',
'models/Lamp.vala',
'models/Thing.vala',
- 'pages/LampPage.vala',
'pages/LoadingPage.vala',
+ 'pages/ThingPage.vala',
'philips/hue/Bridge.vala',
'philips/hue/BridgeController.vala',
'philips/hue/Lamp.vala',
diff --git a/src/pages/LampPage.vala b/src/pages/LampPage.vala
deleted file mode 100644
index f8c9187..0000000
--- a/src/pages/LampPage.vala
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
-* Copyright (c) 2019 Manexim (https://github.com/manexim)
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public
-* License as published by the Free Software Foundation; either
-* version 2 of the License, or (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* General Public License for more details.
-*
-* You should have received a copy of the GNU General Public
-* License along with this program; if not, write to the
-* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-* Boston, MA 02110-1301 USA
-*
-* Authored by: Marius Meisenzahl
-*/
-
-public class LampPage : Granite.SimpleSettingsPage {
- private Lifx.LampController controller;
-
- public LampPage (Models.Lamp lamp) {
- Object (
- activatable: true,
- icon_name: "com.github.manexim.home.lightbulb.lifx-symbolic",
- description: lamp.id,
- title: lamp.name != null ? lamp.name : lamp.id
- );
-
- controller = new Lifx.LampController ((Lifx.Lamp) lamp);
- controller.updated.connect ((lamp) => {
- if (lamp.power == Power.ON) {
- status_switch.active = true;
- status_switch.state = true;
- } else if (lamp.power == Power.OFF) {
- status_switch.active = false;
- status_switch.state = false;
- }
-
- title = lamp.name;
-
- update_status ();
- });
-
- update_status ();
-
- status_switch.notify["active"].connect (update_status);
-
- status_switch.state_set.connect ((state) => {
- controller.switch_power (state);
-
- status_switch.active = state;
- status_switch.state = state;
-
- return state;
- });
- }
-
- private void update_status () {
- description = _("ID: ") + controller.lamp.id;
- description += "\n" + _("Manufacturer: ") + controller.lamp.manufacturer;
- description += "\n" + _("Model: ") + controller.lamp.model;
-
- switch (controller.lamp.power) {
- case Power.ON:
- status_type = Granite.SettingsPage.StatusType.SUCCESS;
- status = (_("Enabled"));
- break;
- case Power.OFF:
- status_type = Granite.SettingsPage.StatusType.OFFLINE;
- status = (_("Disabled"));
- break;
- default:
- status_type = Granite.SettingsPage.StatusType.NONE;
- status = (_("Unknown"));
- break;
- }
- }
-}
diff --git a/src/pages/ThingPage.vala b/src/pages/ThingPage.vala
new file mode 100644
index 0000000..c47fff6
--- /dev/null
+++ b/src/pages/ThingPage.vala
@@ -0,0 +1,33 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class ThingPage : Gtk.ScrolledWindow {
+ public ThingPage (Models.Thing thing) {
+ set_policy (Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
+
+ var list_box = new Gtk.ListBox ();
+ add (list_box);
+
+ list_box.add (new Gtk.Label (thing.id));
+
+ show_all ();
+ }
+}
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index cd611d1..fcfcdef 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -56,7 +56,7 @@ public class Overview : Gtk.Viewport {
devices_carousel.on_thing_activated.connect ((thing) => {
MainWindow.get_default ().go_to_page (
- new LampPage (thing as Models.Lamp),
+ new ThingPage (thing),
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
diff --git a/src/views/ThingsView.vala b/src/views/ThingsView.vala
index 0ab27cd..1d16c79 100644
--- a/src/views/ThingsView.vala
+++ b/src/views/ThingsView.vala
@@ -37,7 +37,7 @@ public class ThingsView : Gtk.Paned {
stack.show_all ();
things_controller.on_new_lamp.connect ((lamp) => {
- stack.add_named (new LampPage (lamp), lamp.id);
+ stack.add_named (new ThingPage (lamp), lamp.id);
if (stack.get_visible_child_name () == "loading") {
var child = stack.get_child_by_name ("loading");
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
index de8701d..d98f100 100644
--- a/src/widgets/CarouselItem.vala
+++ b/src/widgets/CarouselItem.vala
@@ -63,24 +63,23 @@ public class CarouselItem : Gtk.FlowBoxChild {
grid.attach (id_label, 1, 1, 1, 1);
add (grid);
+
+ update_thing (thing);
}
public void update_thing (Models.Thing thing) {
- if (thing is Lifx.Lamp) {
- icon.gicon = new ThemedIcon ("com.github.manexim.home.lightbulb.lifx-symbolic");
- } else if (thing is Philips.Hue.Lamp) {
- icon.gicon = new ThemedIcon ("com.github.manexim.home.lightbulb.philips.hue-symbolic");
- } else {
- icon.gicon = new ThemedIcon ("com.github.manexim.home.lightbulb-symbolic");
- }
+ icon.gicon = new ThemedIcon (thing.icon);
- switch ((thing as Models.Lamp).power) {
+ switch (thing.power) {
case Power.ON:
status_icon.icon_name = "user-available";
break;
case Power.OFF:
status_icon.icon_name = "user-offline";
break;
+ default:
+ status_icon.icon_name = "dialog-question";
+ break;
}
name_label.label = thing.name;
From 8728a621e8b5a45f65b29c67bbc0f20962146237 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 09:20:27 +0200
Subject: [PATCH 11/84] Use old layout
---
src/pages/ThingPage.vala | 61 ++++++++++++++++++++++++++++++++++++----
1 file changed, 56 insertions(+), 5 deletions(-)
diff --git a/src/pages/ThingPage.vala b/src/pages/ThingPage.vala
index c47fff6..38155b0 100644
--- a/src/pages/ThingPage.vala
+++ b/src/pages/ThingPage.vala
@@ -19,15 +19,66 @@
* Authored by: Marius Meisenzahl
*/
-public class ThingPage : Gtk.ScrolledWindow {
+public class ThingPage : Granite.SimpleSettingsPage {
+ private Lifx.LampController controller;
+
public ThingPage (Models.Thing thing) {
- set_policy (Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
+ Object (
+ activatable: true,
+ icon_name: thing.icon,
+ description: thing.id,
+ title: thing.name != null ? thing.name : thing.id
+ );
+
+ controller = new Lifx.LampController ((Lifx.Lamp) thing);
+ controller.updated.connect ((lamp) => {
+ if (lamp.power == Power.ON) {
+ status_switch.active = true;
+ status_switch.state = true;
+ } else if (lamp.power == Power.OFF) {
+ status_switch.active = false;
+ status_switch.state = false;
+ }
+
+ title = lamp.name;
+
+ update_status ();
+ });
+
+ update_status ();
- var list_box = new Gtk.ListBox ();
- add (list_box);
+ status_switch.notify["active"].connect (update_status);
- list_box.add (new Gtk.Label (thing.id));
+ status_switch.state_set.connect ((state) => {
+ controller.switch_power (state);
+
+ status_switch.active = state;
+ status_switch.state = state;
+
+ return state;
+ });
show_all ();
}
+
+ private void update_status () {
+ description = _("ID: ") + controller.lamp.id;
+ description += "\n" + _("Manufacturer: ") + controller.lamp.manufacturer;
+ description += "\n" + _("Model: ") + controller.lamp.model;
+
+ switch (controller.lamp.power) {
+ case Power.ON:
+ status_type = Granite.SettingsPage.StatusType.SUCCESS;
+ status = (_("Enabled"));
+ break;
+ case Power.OFF:
+ status_type = Granite.SettingsPage.StatusType.OFFLINE;
+ status = (_("Disabled"));
+ break;
+ default:
+ status_type = Granite.SettingsPage.StatusType.NONE;
+ status = (_("Unknown"));
+ break;
+ }
+ }
}
From 067f6dacd94d6b6337bbc854297f48787aad2fb7 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 09:23:47 +0200
Subject: [PATCH 12/84] Update translatable files
---
po/POTFILES | 3 ++-
po/com.github.manexim.home.pot | 20 ++++++++++++--------
po/fr.po | 20 ++++++++++++--------
po/ru.po | 20 ++++++++++++--------
4 files changed, 38 insertions(+), 25 deletions(-)
diff --git a/po/POTFILES b/po/POTFILES
index 8c2b3d9..4632ad8 100644
--- a/po/POTFILES
+++ b/po/POTFILES
@@ -1,4 +1,5 @@
src/MainWindow.vala
+src/views/Overview.vala
src/views/WelcomeView.vala
-src/pages/LampPage.vala
+src/pages/ThingPage.vala
src/pages/LoadingPage.vala
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index d1d3f77..e956833 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-20 15:56+0200\n"
+"POT-Creation-Date: 2019-06-22 09:23+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,10 +17,14 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: src/MainWindow.vala:67
+#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
msgid "Overview"
msgstr ""
+#: src/views/Overview.vala:33
+msgid "Devices"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr ""
@@ -47,27 +51,27 @@ msgid ""
"connection to the internet is not required."
msgstr ""
-#: src/pages/LampPage.vala:63
+#: src/pages/ThingPage.vala:65
msgid "ID: "
msgstr ""
-#: src/pages/LampPage.vala:64
+#: src/pages/ThingPage.vala:66
msgid "Manufacturer: "
msgstr ""
-#: src/pages/LampPage.vala:65
+#: src/pages/ThingPage.vala:67
msgid "Model: "
msgstr ""
-#: src/pages/LampPage.vala:70
+#: src/pages/ThingPage.vala:72
msgid "Enabled"
msgstr ""
-#: src/pages/LampPage.vala:74
+#: src/pages/ThingPage.vala:76
msgid "Disabled"
msgstr ""
-#: src/pages/LampPage.vala:78
+#: src/pages/ThingPage.vala:80
msgid "Unknown"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index b1178df..b632fef 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-20 15:56+0200\n"
+"POT-Creation-Date: 2019-06-22 09:23+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -17,10 +17,14 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: src/MainWindow.vala:67
+#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
msgid "Overview"
msgstr ""
+#: src/views/Overview.vala:33
+msgid "Devices"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Contrôlez vos objets connectés pour maison intelligente"
@@ -53,27 +57,27 @@ msgstr ""
"Vous pouvez contrôler vos objets connectés directement via votre réseau "
"local. Une connexion Internet n'est pas nécessaire."
-#: src/pages/LampPage.vala:63
+#: src/pages/ThingPage.vala:65
msgid "ID: "
msgstr "Identifiant : "
-#: src/pages/LampPage.vala:64
+#: src/pages/ThingPage.vala:66
msgid "Manufacturer: "
msgstr "Fabricant : "
-#: src/pages/LampPage.vala:65
+#: src/pages/ThingPage.vala:67
msgid "Model: "
msgstr "Modèle : "
-#: src/pages/LampPage.vala:70
+#: src/pages/ThingPage.vala:72
msgid "Enabled"
msgstr "Activé"
-#: src/pages/LampPage.vala:74
+#: src/pages/ThingPage.vala:76
msgid "Disabled"
msgstr "Désactivé"
-#: src/pages/LampPage.vala:78
+#: src/pages/ThingPage.vala:80
msgid "Unknown"
msgstr "Inconnu"
diff --git a/po/ru.po b/po/ru.po
index 5726fe9..795487d 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-20 15:56+0200\n"
+"POT-Creation-Date: 2019-06-22 09:23+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -19,10 +19,14 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 2.0.6\n"
-#: src/MainWindow.vala:67
+#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
msgid "Overview"
msgstr ""
+#: src/views/Overview.vala:33
+msgid "Devices"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Управляйте своими умными домашними устройствами"
@@ -55,27 +59,27 @@ msgstr ""
"Вы можете управлять своими умными домашними устройствами непосредственно "
"через локальную сеть. Подключение к интернету не требуется."
-#: src/pages/LampPage.vala:63
+#: src/pages/ThingPage.vala:65
msgid "ID: "
msgstr ""
-#: src/pages/LampPage.vala:64
+#: src/pages/ThingPage.vala:66
msgid "Manufacturer: "
msgstr ""
-#: src/pages/LampPage.vala:65
+#: src/pages/ThingPage.vala:67
msgid "Model: "
msgstr ""
-#: src/pages/LampPage.vala:70
+#: src/pages/ThingPage.vala:72
msgid "Enabled"
msgstr ""
-#: src/pages/LampPage.vala:74
+#: src/pages/ThingPage.vala:76
msgid "Disabled"
msgstr ""
-#: src/pages/LampPage.vala:78
+#: src/pages/ThingPage.vala:80
msgid "Unknown"
msgstr ""
From f311080f10ba62506f0bcec3f1357738267068b0 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 09:49:06 +0200
Subject: [PATCH 13/84] Add German translations
---
po/LINGUAS | 1 +
po/com.github.manexim.home.pot | 2 +-
po/de.po | 86 +++++++++++++++++++++++++++++++
po/extra/LINGUAS | 1 +
po/extra/de.po | 93 ++++++++++++++++++++++++++++++++++
po/extra/extra.pot | 2 +-
po/extra/fr.po | 9 ++--
po/extra/ru.po | 2 +-
po/fr.po | 2 +-
po/ru.po | 2 +-
10 files changed, 192 insertions(+), 8 deletions(-)
create mode 100644 po/de.po
create mode 100644 po/extra/de.po
diff --git a/po/LINGUAS b/po/LINGUAS
index e368637..831f337 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -1,4 +1,5 @@
# please keep this list sorted alphabetically
#
+de
fr
ru
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index e956833..c922f7e 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:23+0200\n"
+"POT-Creation-Date: 2019-06-22 09:48+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/po/de.po b/po/de.po
new file mode 100644
index 0000000..90c6dc3
--- /dev/null
+++ b/po/de.po
@@ -0,0 +1,86 @@
+# German translations for com.github.manexim.home package.
+# Copyright (C) 2019 THE com.github.manexim.home'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the com.github.manexim.home package.
+# Automatically generated, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: com.github.manexim.home\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-06-22 09:48+0200\n"
+"PO-Revision-Date: 2019-06-22 09:24+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
+msgid "Overview"
+msgstr "Übersicht"
+
+#: src/views/Overview.vala:33
+msgid "Devices"
+msgstr "Geräte"
+
+#: src/views/WelcomeView.vala:26
+msgid "Control your smart home gadgets"
+msgstr "Steuern Sie Ihre Smart Home Gadgets"
+
+#: src/views/WelcomeView.vala:30
+msgid ""
+"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
+"your Wi-Fi."
+msgstr ""
+"Intelligente WLAN-Leuchten von LIFX werden unterstützt. Sie müssen bereits "
+"mit Ihrem WLAN verbunden sein."
+
+#: src/views/WelcomeView.vala:35
+msgid ""
+"Smart ZigBee lights by Philips Hue are supported. They must already be "
+"connected to your Philips Hue Bridge."
+msgstr ""
+"Intelligente ZigBee-Leuchten von Philips Hue werden unterstützt. Sie müssen "
+"bereits an Ihre Philips Hue Bridge angeschlossen sein."
+
+#: src/views/WelcomeView.vala:39
+msgid "Let's go"
+msgstr "Lass uns loslegen"
+
+#: src/views/WelcomeView.vala:40
+msgid ""
+"You can control your smart home gadgets directly via your local network. A "
+"connection to the internet is not required."
+msgstr ""
+"Sie können Ihre Smart Home Gadgets direkt über Ihr lokales Netzwerk steuern. "
+"Eine Verbindung zum Internet ist nicht erforderlich."
+
+#: src/pages/ThingPage.vala:65
+msgid "ID: "
+msgstr "ID: "
+
+#: src/pages/ThingPage.vala:66
+msgid "Manufacturer: "
+msgstr "Hersteller: "
+
+#: src/pages/ThingPage.vala:67
+msgid "Model: "
+msgstr "Modell: "
+
+#: src/pages/ThingPage.vala:72
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#: src/pages/ThingPage.vala:76
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: src/pages/ThingPage.vala:80
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#: src/pages/LoadingPage.vala:27
+msgid "Looking for smart home gadgets to control."
+msgstr "Suche nach Smart Home Gadgets zur Steuerung."
diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS
index e368637..831f337 100644
--- a/po/extra/LINGUAS
+++ b/po/extra/LINGUAS
@@ -1,4 +1,5 @@
# please keep this list sorted alphabetically
#
+de
fr
ru
diff --git a/po/extra/de.po b/po/extra/de.po
new file mode 100644
index 0000000..0a6026b
--- /dev/null
+++ b/po/extra/de.po
@@ -0,0 +1,93 @@
+# German translations for extra package.
+# Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the extra package.
+# Automatically generated, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: extra\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-06-22 09:47+0200\n"
+"PO-Revision-Date: 2019-06-22 09:24+0200\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: data/com.github.manexim.home.appdata.xml.in:7
+#: data/com.github.manexim.home.desktop.in:4
+#: data/com.github.manexim.home.desktop.in:5
+msgid "Home"
+msgstr ""
+
+#: data/com.github.manexim.home.appdata.xml.in:8
+#: data/com.github.manexim.home.desktop.in:6
+msgid "Control your smart home gadgets"
+msgstr "Steuern Sie Ihre Smart Home Gadgets"
+
+#: data/com.github.manexim.home.appdata.xml.in:10
+msgid "A smart home application to control your gadgets."
+msgstr "Eine Smart Home App zur Steuerung Ihrer Gadgets."
+
+#: data/com.github.manexim.home.appdata.xml.in:11
+msgid "Supported devices:"
+msgstr "Unterstützte Geräte:"
+
+#: data/com.github.manexim.home.appdata.xml.in:13
+msgid "LIFX"
+msgstr ""
+
+#: data/com.github.manexim.home.appdata.xml.in:25
+msgid "New:"
+msgstr "Neu:"
+
+#: data/com.github.manexim.home.appdata.xml.in:27
+msgid "Add welcome view for onboarding"
+msgstr "Willkommensansicht für Onboarding hinzugefügt"
+
+#: data/com.github.manexim.home.appdata.xml.in:28
+msgid "Show loading page if no smart home gadget is found"
+msgstr "Lade-Seite anzeigen, wenn kein Smart Home Gadget gefunden wird."
+
+#: data/com.github.manexim.home.appdata.xml.in:29
+msgid "Show manufacturer and model of device"
+msgstr "Zeige Hersteller und Modell des Gerätes an"
+
+#: data/com.github.manexim.home.appdata.xml.in:31
+msgid "Improved:"
+msgstr "Verbessert:"
+
+#: data/com.github.manexim.home.appdata.xml.in:33
+msgid "Save and load window settings"
+msgstr "Speichern und laden der Fenstereinstellungen"
+
+#: data/com.github.manexim.home.appdata.xml.in:35
+msgid "Fixed:"
+msgstr ""
+
+#: data/com.github.manexim.home.appdata.xml.in:37
+msgid "Remove mention of elementary OS in app description"
+msgstr "Entfernen der Erwähnung von elementary OS in der App-Beschreibung"
+
+#: data/com.github.manexim.home.appdata.xml.in:38
+msgid "Suffix symbolic icon names with -symbolic"
+msgstr "-symbolic an symbolic Icon-Namen angehängt"
+
+#: data/com.github.manexim.home.appdata.xml.in:39
+msgid "Install all available icon sizes"
+msgstr "Installiere alle verfügbaren Icon-Größen"
+
+#: data/com.github.manexim.home.appdata.xml.in:45
+msgid "Initial release"
+msgstr "Erstveröffentlichung"
+
+#: data/com.github.manexim.home.appdata.xml.in:71
+msgid "Manexim"
+msgstr ""
+
+#: data/com.github.manexim.home.desktop.in:8
+msgid "com.github.manexim.home"
+msgstr ""
diff --git a/po/extra/extra.pot b/po/extra/extra.pot
index 204a8a9..5ce07b9 100644
--- a/po/extra/extra.pot
+++ b/po/extra/extra.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
+"POT-Creation-Date: 2019-06-22 09:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/po/extra/fr.po b/po/extra/fr.po
index b7980a8..493bea7 100644
--- a/po/extra/fr.po
+++ b/po/extra/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
+"POT-Creation-Date: 2019-06-22 09:47+0200\n"
"PO-Revision-Date: 2019-06-17 22:33+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -30,7 +30,9 @@ msgstr "Contrôlez vos objets connectés pour maison intelligente"
#: data/com.github.manexim.home.appdata.xml.in:10
msgid "A smart home application to control your gadgets."
-msgstr "Une application pour maison intelligente afin de contrôler vos objets connectés"
+msgstr ""
+"Une application pour maison intelligente afin de contrôler vos objets "
+"connectés"
#: data/com.github.manexim.home.appdata.xml.in:11
msgid "Supported devices:"
@@ -50,7 +52,8 @@ msgstr "Ajout d'un écran de bienvenue à l'ouverture"
#: data/com.github.manexim.home.appdata.xml.in:28
msgid "Show loading page if no smart home gadget is found"
-msgstr "Affichage de la page de chargement si aucun objet connecté n'est trouvé"
+msgstr ""
+"Affichage de la page de chargement si aucun objet connecté n'est trouvé"
#: data/com.github.manexim.home.appdata.xml.in:29
msgid "Show manufacturer and model of device"
diff --git a/po/extra/ru.po b/po/extra/ru.po
index 4085e96..23eb67f 100644
--- a/po/extra/ru.po
+++ b/po/extra/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: extra\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-19 16:59+0200\n"
+"POT-Creation-Date: 2019-06-22 09:47+0200\n"
"PO-Revision-Date: 2019-06-17 22:54+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
diff --git a/po/fr.po b/po/fr.po
index b632fef..5a9d2bd 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:23+0200\n"
+"POT-Creation-Date: 2019-06-22 09:48+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
diff --git a/po/ru.po b/po/ru.po
index 795487d..59a24c0 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:23+0200\n"
+"POT-Creation-Date: 2019-06-22 09:48+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
From a08dd52b52b05d015afd3f17beefb99c32e3b626 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 15:43:14 +0200
Subject: [PATCH 14/84] Show available hubs
---
...nexim.home.bridge.philips.hue-symbolic.svg | 85 +++++++++++++++++++
...com.github.manexim.home.thing-symbolic.svg | 46 ++--------
data/meson.build | 1 +
src/MainWindow.vala | 16 ++--
src/models/Thing.vala | 2 +
src/philips/hue/Bridge.vala | 6 ++
src/types/Power.vala | 5 +-
src/views/Overview.vala | 37 ++++++--
src/widgets/CarouselItem.vala | 3 +
9 files changed, 148 insertions(+), 53 deletions(-)
create mode 100644 data/icons/symbolic/com.github.manexim.home.bridge.philips.hue-symbolic.svg
diff --git a/data/icons/symbolic/com.github.manexim.home.bridge.philips.hue-symbolic.svg b/data/icons/symbolic/com.github.manexim.home.bridge.philips.hue-symbolic.svg
new file mode 100644
index 0000000..454a0d2
--- /dev/null
+++ b/data/icons/symbolic/com.github.manexim.home.bridge.philips.hue-symbolic.svg
@@ -0,0 +1,85 @@
+
+
+
+
diff --git a/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg b/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
index 4eeec95..27eb907 100644
--- a/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
+++ b/data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
@@ -25,9 +25,9 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
- inkscape:zoom="45.254834"
- inkscape:cx="-0.74467991"
- inkscape:cy="8.1383848"
+ inkscape:zoom="0.5"
+ inkscape:cx="-276.67729"
+ inkscape:cy="-237.65193"
inkscape:document-units="px"
inkscape:current-layer="g18"
showgrid="true"
@@ -36,11 +36,11 @@
fit-margin-right="0"
fit-margin-bottom="0"
units="px"
- inkscape:window-width="765"
- inkscape:window-height="419"
- inkscape:window-x="935"
- inkscape:window-y="243"
- inkscape:window-maximized="0"
+ inkscape:window-width="1920"
+ inkscape:window-height="1017"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="1"
showguides="false" />
@@ -68,36 +68,6 @@
d="M 3.5 2.5 C 2.946 2.5 2.5 2.946 2.5 3.5 L 2.5 12.5 C 2.5 13.054 2.946 13.5 3.5 13.5 L 12.5 13.5 C 13.054 13.5 13.5 13.054 13.5 12.5 L 13.5 3.5 C 13.5 2.946 13.054 2.5 12.5 2.5 L 3.5 2.5 z M 5.1367188 4.5 L 10.863281 4.5 C 11.215827 4.5 11.5 4.7841733 11.5 5.1367188 L 11.5 10.863281 C 11.5 11.215827 11.215827 11.5 10.863281 11.5 L 5.1367188 11.5 C 4.7841733 11.5 4.5 11.215827 4.5 10.863281 L 4.5 5.1367188 C 4.5 4.7841733 4.7841733 4.5 5.1367188 4.5 z "
transform="matrix(13.375001,0,0,13.375001,3.749992,11.399798)"
id="rect837" />
-
-
-
-
-
-
-
-
-
{
- stack.set_visible_child_full(_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
- });
- }
+ // if (settings.is_first_run ()) {
+ // var welcome_view = new WelcomeView ();
+ // stack.add_named (welcome_view, "welcome");
+
+ // welcome_view.start.connect (() => {
+ // stack.set_visible_child_full(_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
+ // });
+ // }
var overview = new Overview ();
stack.add_named (overview, _("Overview"));
diff --git a/src/models/Thing.vala b/src/models/Thing.vala
index 127c59e..403311d 100644
--- a/src/models/Thing.vala
+++ b/src/models/Thing.vala
@@ -78,6 +78,8 @@ namespace Models {
return Power.ON;
case "off":
return Power.OFF;
+ case "warning":
+ return Power.WARNING;
default:
return Power.UNKNOWN;
}
diff --git a/src/philips/hue/Bridge.vala b/src/philips/hue/Bridge.vala
index 7b0b5c6..1e0d170 100644
--- a/src/philips/hue/Bridge.vala
+++ b/src/philips/hue/Bridge.vala
@@ -1,5 +1,11 @@
namespace Philips.Hue {
public class Bridge : Models.Thing {
+ public Bridge () {
+ icon = "com.github.manexim.home.bridge.philips.hue-symbolic";
+ manufacturer = "Philips";
+ power = Power.WARNING;
+ }
+
public string base_url {
get {
if (!_obj.has_member ("baseURL")) {
diff --git a/src/types/Power.vala b/src/types/Power.vala
index 7694c79..eeaf4d9 100644
--- a/src/types/Power.vala
+++ b/src/types/Power.vala
@@ -20,7 +20,8 @@
*/
public enum Power {
- UNKNOWN = -1,
+ UNKNOWN = 1,
+ WARNING = 2,
OFF = 0,
ON = 65535;
@@ -28,6 +29,8 @@ public enum Power {
switch (this) {
case UNKNOWN:
return "unknown";
+ case WARNING:
+ return "warning";
case OFF:
return "off";
case ON:
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index fcfcdef..b84f464 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -19,16 +19,13 @@
* Authored by: Marius Meisenzahl
*/
-public class Overview : Gtk.Viewport {
+public class Overview : Gtk.ScrolledWindow {
private ThingsController things_controller;
public Overview () {
- var scrolled_window = new Gtk.ScrolledWindow (null, null);
- add (scrolled_window);
-
var grid = new Gtk.Grid ();
grid.margin = 12;
- scrolled_window.add (grid);
+ add (grid);
var devices_label = new Gtk.Label (_("Devices"));
devices_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL);
@@ -43,11 +40,15 @@ public class Overview : Gtk.Viewport {
devices_grid.attach (devices_label, 0, 0, 1, 1);
devices_grid.attach (devices_carousel, 0, 1, 1, 1);
- grid.attach (devices_grid, 0, 0, 1, 1);
+ var devices_revealer = new Gtk.Revealer ();
+ devices_revealer.add (devices_grid );
+
+ grid.attach (devices_revealer, 0, 0, 1, 1);
things_controller = new ThingsController ();
things_controller.on_new_lamp.connect ((lamp) => {
devices_carousel.add_thing (lamp);
+ devices_revealer.reveal_child = true;
});
things_controller.on_updated_lamp.connect ((lamp) => {
@@ -60,5 +61,29 @@ public class Overview : Gtk.Viewport {
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
+
+ var hubs_label = new Gtk.Label ("Hubs");
+ hubs_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL);
+ hubs_label.xalign = 0;
+ hubs_label.margin_start = 10;
+
+ var hubs_carousel = new Carousel ();
+
+ var hubs_grid = new Gtk.Grid ();
+ hubs_grid.margin = 2;
+ hubs_grid.margin_top = 12;
+ hubs_grid.attach (hubs_label, 0, 0, 1, 1);
+ hubs_grid.attach (hubs_carousel, 0, 1, 1, 1);
+
+ var hubs_revealer = new Gtk.Revealer ();
+ hubs_revealer.add (hubs_grid );
+
+ grid.attach (hubs_revealer, 0, 1, 1, 1);
+
+ var philipsHueService = Philips.Hue.Service.instance;
+ philipsHueService.on_new_bridge.connect ((bridge) => {
+ hubs_carousel.add_thing (bridge);
+ hubs_revealer.reveal_child = true;
+ });
}
}
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
index d98f100..e4be1f2 100644
--- a/src/widgets/CarouselItem.vala
+++ b/src/widgets/CarouselItem.vala
@@ -77,6 +77,9 @@ public class CarouselItem : Gtk.FlowBoxChild {
case Power.OFF:
status_icon.icon_name = "user-offline";
break;
+ case Power.WARNING:
+ status_icon.icon_name = "user-away";
+ break;
default:
status_icon.icon_name = "dialog-question";
break;
From 6d6cff7d6d4118ea94234a5af4bb49dc90fe96b7 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 16:14:41 +0200
Subject: [PATCH 15/84] Fix whitespacing
---
src/MainWindow.vala | 2 +-
src/views/Overview.vala | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index c8c1ad1..5380696 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -62,7 +62,7 @@ public class MainWindow : Gtk.ApplicationWindow {
// stack.add_named (welcome_view, "welcome");
// welcome_view.start.connect (() => {
- // stack.set_visible_child_full(_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
+ // stack.set_visible_child_full (_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
// });
// }
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index b84f464..190fe4f 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -41,7 +41,7 @@ public class Overview : Gtk.ScrolledWindow {
devices_grid.attach (devices_carousel, 0, 1, 1, 1);
var devices_revealer = new Gtk.Revealer ();
- devices_revealer.add (devices_grid );
+ devices_revealer.add (devices_grid);
grid.attach (devices_revealer, 0, 0, 1, 1);
@@ -76,7 +76,7 @@ public class Overview : Gtk.ScrolledWindow {
hubs_grid.attach (hubs_carousel, 0, 1, 1, 1);
var hubs_revealer = new Gtk.Revealer ();
- hubs_revealer.add (hubs_grid );
+ hubs_revealer.add (hubs_grid);
grid.attach (hubs_revealer, 0, 1, 1, 1);
From 9fe009d3c5d80e3ef4fdbef3de016a7c62fa234a Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 16:38:24 +0200
Subject: [PATCH 16/84] Add initial page layout to configure Philips Hue Bridge
---
src/meson.build | 1 +
src/pages/HueBridgeOnboardingPage.vala | 41 ++++++++++++++++++++++++++
src/views/Overview.vala | 7 +++++
3 files changed, 49 insertions(+)
create mode 100644 src/pages/HueBridgeOnboardingPage.vala
diff --git a/src/meson.build b/src/meson.build
index b366993..b5bdd68 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -7,6 +7,7 @@ sources = [
'lifx/Service.vala',
'models/Lamp.vala',
'models/Thing.vala',
+ 'pages/HueBridgeOnboardingPage.vala',
'pages/LoadingPage.vala',
'pages/ThingPage.vala',
'philips/hue/Bridge.vala',
diff --git a/src/pages/HueBridgeOnboardingPage.vala b/src/pages/HueBridgeOnboardingPage.vala
new file mode 100644
index 0000000..af9e546
--- /dev/null
+++ b/src/pages/HueBridgeOnboardingPage.vala
@@ -0,0 +1,41 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class HueBridgeOnboardingPage : Gtk.Grid {
+ public HueBridgeOnboardingPage () {
+ halign = Gtk.Align.CENTER;
+ valign = Gtk.Align.CENTER;
+
+ var label = new Gtk.Label (_("Looking for smart home gadgets to control."));
+ label.halign = Gtk.Align.CENTER;
+ label.valign = Gtk.Align.CENTER;
+
+ var spinner = new Gtk.Spinner ();
+ spinner.halign = Gtk.Align.CENTER;
+ spinner.valign = Gtk.Align.CENTER;
+ spinner.start ();
+
+ attach (label, 0, 0, 1, 1);
+ attach (spinner, 0, 2, 1, 1);
+
+ show_all ();
+ }
+}
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index 190fe4f..9c69886 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -85,5 +85,12 @@ public class Overview : Gtk.ScrolledWindow {
hubs_carousel.add_thing (bridge);
hubs_revealer.reveal_child = true;
});
+
+ hubs_carousel.on_thing_activated.connect ((thing) => {
+ MainWindow.get_default ().go_to_page (
+ new HueBridgeOnboardingPage (),
+ (thing.name == null || thing.name.length == 0) ? thing.id : thing.name
+ );
+ });
}
}
From 36cec87fb3925ac12e61f0fdcaeb071c49447997 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 17:09:18 +0200
Subject: [PATCH 17/84] Switch stack transition type
---
src/MainWindow.vala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 5380696..18f726f 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -88,14 +88,14 @@ public class MainWindow : Gtk.ApplicationWindow {
return_button.no_show_all = false;
return_button.visible = true;
history.add (name);
- stack.set_visible_child_full (name, Gtk.StackTransitionType.SLIDE_RIGHT);
+ stack.set_visible_child_full (name, Gtk.StackTransitionType.SLIDE_LEFT);
}
public void go_back () {
if (!history.is_homepage) {
var widget = stack.get_visible_child ();
- stack.set_visible_child_full (history.previous, Gtk.StackTransitionType.SLIDE_LEFT);
+ stack.set_visible_child_full (history.previous, Gtk.StackTransitionType.SLIDE_RIGHT);
stack.remove (widget);
history.pop ();
From 8961128efa409f35a5fedd0a3994ac3c6a63cb9d Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 18:07:02 +0200
Subject: [PATCH 18/84] Add mode switch in headerbar to switch between light
and dark background if freedesktop schema is not available
---
po/com.github.manexim.home.pot | 14 +++++++++++---
po/de.po | 14 +++++++++++---
po/fr.po | 14 +++++++++++---
po/ru.po | 14 +++++++++++---
src/MainWindow.vala | 14 ++++++++++++++
src/services/Settings.vala | 13 +++++++++++--
6 files changed, 69 insertions(+), 14 deletions(-)
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index c922f7e..3f1779f 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:48+0200\n"
+"POT-Creation-Date: 2019-06-22 18:04+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,11 +17,19 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
+#: src/MainWindow.vala:58
+msgid "Light background"
+msgstr ""
+
+#: src/MainWindow.vala:59
+msgid "Dark background"
+msgstr ""
+
+#: src/MainWindow.vala:84 src/MainWindow.vala:85
msgid "Overview"
msgstr ""
-#: src/views/Overview.vala:33
+#: src/views/Overview.vala:30
msgid "Devices"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 90c6dc3..0046a91 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:48+0200\n"
+"POT-Creation-Date: 2019-06-22 18:04+0200\n"
"PO-Revision-Date: 2019-06-22 09:24+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,11 +17,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
+#: src/MainWindow.vala:58
+msgid "Light background"
+msgstr "Heller Hintergrund"
+
+#: src/MainWindow.vala:59
+msgid "Dark background"
+msgstr "Dunkler Hintergrund"
+
+#: src/MainWindow.vala:84 src/MainWindow.vala:85
msgid "Overview"
msgstr "Übersicht"
-#: src/views/Overview.vala:33
+#: src/views/Overview.vala:30
msgid "Devices"
msgstr "Geräte"
diff --git a/po/fr.po b/po/fr.po
index 5a9d2bd..f6a53cf 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:48+0200\n"
+"POT-Creation-Date: 2019-06-22 18:04+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -17,11 +17,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
+#: src/MainWindow.vala:58
+msgid "Light background"
+msgstr ""
+
+#: src/MainWindow.vala:59
+msgid "Dark background"
+msgstr ""
+
+#: src/MainWindow.vala:84 src/MainWindow.vala:85
msgid "Overview"
msgstr ""
-#: src/views/Overview.vala:33
+#: src/views/Overview.vala:30
msgid "Devices"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 59a24c0..0145acf 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 09:48+0200\n"
+"POT-Creation-Date: 2019-06-22 18:04+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -19,11 +19,19 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 2.0.6\n"
-#: src/MainWindow.vala:65 src/MainWindow.vala:70 src/MainWindow.vala:71
+#: src/MainWindow.vala:58
+msgid "Light background"
+msgstr ""
+
+#: src/MainWindow.vala:59
+msgid "Dark background"
+msgstr ""
+
+#: src/MainWindow.vala:84 src/MainWindow.vala:85
msgid "Overview"
msgstr ""
-#: src/views/Overview.vala:33
+#: src/views/Overview.vala:30
msgid "Devices"
msgstr ""
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 18f726f..5380363 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -48,6 +48,20 @@ public class MainWindow : Gtk.ApplicationWindow {
return_button.clicked.connect (go_back);
headerbar.pack_start (return_button);
+ if (!settings.is_freedesktop_prefers_color_scheme_available ()) {
+ var gtk_settings = Gtk.Settings.get_default ();
+
+ var mode_switch = new Granite.ModeSwitch.from_icon_name (
+ "display-brightness-symbolic",
+ "weather-clear-night-symbolic"
+ );
+ mode_switch.primary_icon_tooltip_text = _("Light background");
+ mode_switch.secondary_icon_tooltip_text = _("Dark background");
+ mode_switch.valign = Gtk.Align.CENTER;
+ mode_switch.bind_property ("active", gtk_settings, "gtk_application_prefer_dark_theme");
+ headerbar.pack_end (mode_switch);
+ }
+
set_titlebar (headerbar);
title = Config.APP_NAME;
diff --git a/src/services/Settings.vala b/src/services/Settings.vala
index ce5a7a0..581417b 100644
--- a/src/services/Settings.vala
+++ b/src/services/Settings.vala
@@ -21,6 +21,7 @@
public class Settings : Granite.Services.Settings {
private static Settings settings;
+ private bool _is_freedesktop_prefers_color_scheme_available;
public static Settings get_default () {
if (settings == null) {
@@ -45,11 +46,13 @@ public class Settings : Granite.Services.Settings {
const string DESKTOP_SCHEMA = "org.freedesktop";
const string PREFERS_KEY = "prefers-color-scheme";
- var gtk_settings = Gtk.Settings.get_default ();
var lookup = SettingsSchemaSource.get_default ().lookup (DESKTOP_SCHEMA, false);
-
if (lookup != null) {
+ _is_freedesktop_prefers_color_scheme_available = true;
+
+ var gtk_settings = Gtk.Settings.get_default ();
var desktop_settings = new GLib.Settings (DESKTOP_SCHEMA);
+
desktop_settings.bind_with_mapping (
PREFERS_KEY,
gtk_settings,
@@ -65,6 +68,8 @@ public class Settings : Granite.Services.Settings {
null,
null
);
+ } else {
+ _is_freedesktop_prefers_color_scheme_available = false;
}
}
@@ -72,6 +77,10 @@ public class Settings : Granite.Services.Settings {
return last_started_app_version == "";
}
+ public bool is_freedesktop_prefers_color_scheme_available () {
+ return _is_freedesktop_prefers_color_scheme_available;
+ }
+
public void save () {
last_started_app_version = Config.APP_VERSION;
From eb511586411448dce6a727f39f5487479b757b4c Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 19:10:27 +0200
Subject: [PATCH 19/84] Update page to configure Philips Hue Bridge
---
po/POTFILES | 1 +
po/com.github.manexim.home.pot | 6 +++++-
po/de.po | 6 +++++-
po/fr.po | 6 +++++-
po/ru.po | 6 +++++-
src/pages/HueBridgeOnboardingPage.vala | 9 +++++++--
6 files changed, 28 insertions(+), 6 deletions(-)
diff --git a/po/POTFILES b/po/POTFILES
index 4632ad8..d91989d 100644
--- a/po/POTFILES
+++ b/po/POTFILES
@@ -3,3 +3,4 @@ src/views/Overview.vala
src/views/WelcomeView.vala
src/pages/ThingPage.vala
src/pages/LoadingPage.vala
+src/pages/HueBridgeOnboardingPage.vala
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index 3f1779f..fdd729d 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 18:04+0200\n"
+"POT-Creation-Date: 2019-06-22 19:07+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -86,3 +86,7 @@ msgstr ""
#: src/pages/LoadingPage.vala:27
msgid "Looking for smart home gadgets to control."
msgstr ""
+
+#: src/pages/HueBridgeOnboardingPage.vala:31
+msgid "Press the push-link button on the Hue bridge."
+msgstr ""
diff --git a/po/de.po b/po/de.po
index 0046a91..894c954 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 18:04+0200\n"
+"POT-Creation-Date: 2019-06-22 19:07+0200\n"
"PO-Revision-Date: 2019-06-22 09:24+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -92,3 +92,7 @@ msgstr "Unbekannt"
#: src/pages/LoadingPage.vala:27
msgid "Looking for smart home gadgets to control."
msgstr "Suche nach Smart Home Gadgets zur Steuerung."
+
+#: src/pages/HueBridgeOnboardingPage.vala:31
+msgid "Press the push-link button on the Hue bridge."
+msgstr "Drücke die Push-Link-Taste an der Hue Bridge."
diff --git a/po/fr.po b/po/fr.po
index f6a53cf..d3c0623 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 18:04+0200\n"
+"POT-Creation-Date: 2019-06-22 19:07+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -92,3 +92,7 @@ msgstr "Inconnu"
#: src/pages/LoadingPage.vala:27
msgid "Looking for smart home gadgets to control."
msgstr "Recherche d'objets connectés à contrôler."
+
+#: src/pages/HueBridgeOnboardingPage.vala:31
+msgid "Press the push-link button on the Hue bridge."
+msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 0145acf..317b78b 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 18:04+0200\n"
+"POT-Creation-Date: 2019-06-22 19:07+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -94,3 +94,7 @@ msgstr ""
#: src/pages/LoadingPage.vala:27
msgid "Looking for smart home gadgets to control."
msgstr "Поиск умных домашних устройств."
+
+#: src/pages/HueBridgeOnboardingPage.vala:31
+msgid "Press the push-link button on the Hue bridge."
+msgstr ""
diff --git a/src/pages/HueBridgeOnboardingPage.vala b/src/pages/HueBridgeOnboardingPage.vala
index af9e546..7f15c3c 100644
--- a/src/pages/HueBridgeOnboardingPage.vala
+++ b/src/pages/HueBridgeOnboardingPage.vala
@@ -24,7 +24,11 @@ public class HueBridgeOnboardingPage : Gtk.Grid {
halign = Gtk.Align.CENTER;
valign = Gtk.Align.CENTER;
- var label = new Gtk.Label (_("Looking for smart home gadgets to control."));
+ var icon = new Gtk.Image ();
+ icon.gicon = new ThemedIcon ("com.github.manexim.home.bridge.philips.hue-symbolic");
+ icon.pixel_size = 256;
+
+ var label = new Gtk.Label (_("Press the push-link button on the Hue bridge."));
label.halign = Gtk.Align.CENTER;
label.valign = Gtk.Align.CENTER;
@@ -33,7 +37,8 @@ public class HueBridgeOnboardingPage : Gtk.Grid {
spinner.valign = Gtk.Align.CENTER;
spinner.start ();
- attach (label, 0, 0, 1, 1);
+ attach (icon, 0, 0, 1, 1);
+ attach (label, 0, 1, 1, 1);
attach (spinner, 0, 2, 1, 1);
show_all ();
From 28d9b5ed39442f7f794333fcb126541b2623eefb Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 19:12:26 +0200
Subject: [PATCH 20/84] Update German translation
---
po/de.po | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/po/de.po b/po/de.po
index 894c954..1ea3442 100644
--- a/po/de.po
+++ b/po/de.po
@@ -35,7 +35,7 @@ msgstr "Geräte"
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
-msgstr "Steuern Sie Ihre Smart Home Gadgets"
+msgstr "Steuer deine Smart Home Gadgets"
#: src/views/WelcomeView.vala:30
msgid ""
@@ -62,7 +62,7 @@ msgid ""
"You can control your smart home gadgets directly via your local network. A "
"connection to the internet is not required."
msgstr ""
-"Sie können Ihre Smart Home Gadgets direkt über Ihr lokales Netzwerk steuern. "
+"Du kannst deine Smart Home Gadgets direkt über dein lokales Netzwerk steuern. "
"Eine Verbindung zum Internet ist nicht erforderlich."
#: src/pages/ThingPage.vala:65
@@ -91,7 +91,7 @@ msgstr "Unbekannt"
#: src/pages/LoadingPage.vala:27
msgid "Looking for smart home gadgets to control."
-msgstr "Suche nach Smart Home Gadgets zur Steuerung."
+msgstr "Suche nach steuerbaren Smart Home Gadgets."
#: src/pages/HueBridgeOnboardingPage.vala:31
msgid "Press the push-link button on the Hue bridge."
From 9b2fd6b9e7c71f494559c77c3380197dc26a47eb Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 19:18:06 +0200
Subject: [PATCH 21/84] Update explanation to configure Philips Hue Bridge
---
po/com.github.manexim.home.pot | 4 ++--
po/de.po | 10 +++++-----
po/fr.po | 4 ++--
po/ru.po | 4 ++--
src/pages/HueBridgeOnboardingPage.vala | 6 +-----
5 files changed, 12 insertions(+), 16 deletions(-)
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index fdd729d..1dacb7e 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:07+0200\n"
+"POT-Creation-Date: 2019-06-22 19:15+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -88,5 +88,5 @@ msgid "Looking for smart home gadgets to control."
msgstr ""
#: src/pages/HueBridgeOnboardingPage.vala:31
-msgid "Press the push-link button on the Hue bridge."
+msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
diff --git a/po/de.po b/po/de.po
index 1ea3442..e686592 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:07+0200\n"
+"POT-Creation-Date: 2019-06-22 19:15+0200\n"
"PO-Revision-Date: 2019-06-22 09:24+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -62,8 +62,8 @@ msgid ""
"You can control your smart home gadgets directly via your local network. A "
"connection to the internet is not required."
msgstr ""
-"Du kannst deine Smart Home Gadgets direkt über dein lokales Netzwerk steuern. "
-"Eine Verbindung zum Internet ist nicht erforderlich."
+"Du kannst deine Smart Home Gadgets direkt über dein lokales Netzwerk "
+"steuern. Eine Verbindung zum Internet ist nicht erforderlich."
#: src/pages/ThingPage.vala:65
msgid "ID: "
@@ -94,5 +94,5 @@ msgid "Looking for smart home gadgets to control."
msgstr "Suche nach steuerbaren Smart Home Gadgets."
#: src/pages/HueBridgeOnboardingPage.vala:31
-msgid "Press the push-link button on the Hue bridge."
-msgstr "Drücke die Push-Link-Taste an der Hue Bridge."
+msgid "Press the push-link button in the middle of the Hue bridge."
+msgstr "Drücke die Push-Link-Taste in der Mitte der Hue Bridge."
diff --git a/po/fr.po b/po/fr.po
index d3c0623..f62bdab 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:07+0200\n"
+"POT-Creation-Date: 2019-06-22 19:15+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -94,5 +94,5 @@ msgid "Looking for smart home gadgets to control."
msgstr "Recherche d'objets connectés à contrôler."
#: src/pages/HueBridgeOnboardingPage.vala:31
-msgid "Press the push-link button on the Hue bridge."
+msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 317b78b..8d5bfb7 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:07+0200\n"
+"POT-Creation-Date: 2019-06-22 19:15+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -96,5 +96,5 @@ msgid "Looking for smart home gadgets to control."
msgstr "Поиск умных домашних устройств."
#: src/pages/HueBridgeOnboardingPage.vala:31
-msgid "Press the push-link button on the Hue bridge."
+msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
diff --git a/src/pages/HueBridgeOnboardingPage.vala b/src/pages/HueBridgeOnboardingPage.vala
index 7f15c3c..47f89b4 100644
--- a/src/pages/HueBridgeOnboardingPage.vala
+++ b/src/pages/HueBridgeOnboardingPage.vala
@@ -28,13 +28,9 @@ public class HueBridgeOnboardingPage : Gtk.Grid {
icon.gicon = new ThemedIcon ("com.github.manexim.home.bridge.philips.hue-symbolic");
icon.pixel_size = 256;
- var label = new Gtk.Label (_("Press the push-link button on the Hue bridge."));
- label.halign = Gtk.Align.CENTER;
- label.valign = Gtk.Align.CENTER;
+ var label = new Gtk.Label (_("Press the push-link button in the middle of the Hue bridge."));
var spinner = new Gtk.Spinner ();
- spinner.halign = Gtk.Align.CENTER;
- spinner.valign = Gtk.Align.CENTER;
spinner.start ();
attach (icon, 0, 0, 1, 1);
From cac2cfb7f76078311c064b645c5f327ef524d0ff Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 22 Jun 2019 19:36:38 +0200
Subject: [PATCH 22/84] Get name of Philips Hue Bridge
---
src/pages/HueBridgeOnboardingPage.vala | 1 +
src/philips/hue/BridgeController.vala | 18 +++++++++++++++++-
src/philips/hue/Service.vala | 4 ++++
3 files changed, 22 insertions(+), 1 deletion(-)
diff --git a/src/pages/HueBridgeOnboardingPage.vala b/src/pages/HueBridgeOnboardingPage.vala
index 47f89b4..3b8afb7 100644
--- a/src/pages/HueBridgeOnboardingPage.vala
+++ b/src/pages/HueBridgeOnboardingPage.vala
@@ -23,6 +23,7 @@ public class HueBridgeOnboardingPage : Gtk.Grid {
public HueBridgeOnboardingPage () {
halign = Gtk.Align.CENTER;
valign = Gtk.Align.CENTER;
+ row_spacing = 16;
var icon = new Gtk.Image ();
icon.gicon = new ThemedIcon ("com.github.manexim.home.bridge.philips.hue-symbolic");
diff --git a/src/philips/hue/BridgeController.vala b/src/philips/hue/BridgeController.vala
index 2543047..338e17d 100644
--- a/src/philips/hue/BridgeController.vala
+++ b/src/philips/hue/BridgeController.vala
@@ -34,7 +34,7 @@ namespace Philips.Hue {
print ("failed to create the xpath context\n");
}
- Xml.XPath.Object* obj = context.eval_expression("/root/device/manufacturer");
+ Xml.XPath.Object* obj = context.eval_expression("/root/device/friendlyName");
if (obj == null) {
print ("failed to evaluate xpath\n");
}
@@ -46,6 +46,22 @@ namespace Philips.Hue {
print ("failed to find the expected node\n");
}
+ _bridge.name = node->get_content ();
+
+ delete obj;
+
+ obj = context.eval_expression("/root/device/manufacturer");
+ if (obj == null) {
+ print ("failed to evaluate xpath\n");
+ }
+
+ node = null;
+ if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
+ node = obj->nodesetval->item(0);
+ } else {
+ print ("failed to find the expected node\n");
+ }
+
_bridge.manufacturer = node->get_content ();
delete obj;
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 352021f..ade47e0 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -145,6 +145,10 @@ namespace Philips.Hue {
bridge.id = bridgeid.up ();
bridge.base_url = protocol + host + ":" + port + "/";
+ var controller = new Philips.Hue.BridgeController (bridge);
+ controller.get_description ();
+ bridge = controller.bridge;
+
bridge_map.set (bridge.id, bridge);
on_new_bridge (bridge);
}
From efa820bd3f7aebfe0e8f594eb7332fa51b6811ad Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sun, 23 Jun 2019 08:09:22 +0200
Subject: [PATCH 23/84] Generate device uuid in constructor of settings if not
defined
---
src/services/Settings.vala | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/services/Settings.vala b/src/services/Settings.vala
index 581417b..f759745 100644
--- a/src/services/Settings.vala
+++ b/src/services/Settings.vala
@@ -43,6 +43,18 @@ public class Settings : Granite.Services.Settings {
private Settings () {
base ("com.github.manexim.home");
+ if (uuid == null || uuid == "") {
+ uint8[] uu = new uint8[16];
+ UUID.generate (uu);
+ string s = "";
+
+ for (uint8 i = 0; i < 16; i++) {
+ s += uu[i].to_string ("%X");
+ }
+
+ uuid = s;
+ }
+
const string DESKTOP_SCHEMA = "org.freedesktop";
const string PREFERS_KEY = "prefers-color-scheme";
@@ -84,18 +96,6 @@ public class Settings : Granite.Services.Settings {
public void save () {
last_started_app_version = Config.APP_VERSION;
- if (uuid == null || uuid == "") {
- uint8[] uu = new uint8[16];
- UUID.generate (uu);
- string s = "";
-
- for (uint8 i = 0; i < 16; i++) {
- s += uu[i].to_string ("%X");
- }
-
- uuid = s;
- }
-
var philips_hue_service = Philips.Hue.Service.instance;
var bridges = philips_hue_service.bridges;
var bridges_strings = new string[bridges.length];
From ed1bc3274524c6d46cb32472588fd454d9cdcbdd Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Mon, 24 Jun 2019 07:11:58 +0200
Subject: [PATCH 24/84] Implement page to configure Philips Hue Bridge
---
data/meson.build | 1 +
po/com.github.manexim.home.pot | 12 ++-
po/de.po | 12 ++-
po/fr.po | 12 ++-
po/ru.po | 12 ++-
src/controllers/ThingsController.vala | 15 +++-
src/models/Thing.vala | 6 +-
src/pages/HueBridgeOnboardingPage.vala | 36 +++++++-
src/philips/hue/Bridge.vala | 4 +
src/philips/hue/BridgeController.vala | 113 +++++++++++++++++++++++--
src/philips/hue/Service.vala | 76 ++++++++++++++---
src/views/Overview.vala | 4 +-
src/widgets/CarouselItem.vala | 4 +
13 files changed, 268 insertions(+), 39 deletions(-)
diff --git a/data/meson.build b/data/meson.build
index e34f783..784d971 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -16,6 +16,7 @@ symbolic_icons = [
'com.github.manexim.home.bridge.philips.hue-symbolic',
'com.github.manexim.home.lightbulb-symbolic',
'com.github.manexim.home.lightbulb.lifx-symbolic',
+ 'com.github.manexim.home.lightbulb.philips.hue-symbolic',
'com.github.manexim.home.logo.lifx-symbolic',
'com.github.manexim.home.logo.philips.hue-symbolic',
'com.github.manexim.home.thing-symbolic'
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index 1dacb7e..d8ea7cd 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:15+0200\n"
+"POT-Creation-Date: 2019-06-23 09:20+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -33,6 +33,10 @@ msgstr ""
msgid "Devices"
msgstr ""
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr ""
@@ -87,6 +91,10 @@ msgstr ""
msgid "Looking for smart home gadgets to control."
msgstr ""
-#: src/pages/HueBridgeOnboardingPage.vala:31
+#: src/pages/HueBridgeOnboardingPage.vala:38
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
+
+#: src/pages/HueBridgeOnboardingPage.vala:61
+msgid "The Hue bridge was successfully registered."
+msgstr ""
diff --git a/po/de.po b/po/de.po
index e686592..8e71f5f 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:15+0200\n"
+"POT-Creation-Date: 2019-06-23 09:20+0200\n"
"PO-Revision-Date: 2019-06-22 09:24+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -33,6 +33,10 @@ msgstr "Übersicht"
msgid "Devices"
msgstr "Geräte"
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Steuer deine Smart Home Gadgets"
@@ -93,6 +97,10 @@ msgstr "Unbekannt"
msgid "Looking for smart home gadgets to control."
msgstr "Suche nach steuerbaren Smart Home Gadgets."
-#: src/pages/HueBridgeOnboardingPage.vala:31
+#: src/pages/HueBridgeOnboardingPage.vala:38
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr "Drücke die Push-Link-Taste in der Mitte der Hue Bridge."
+
+#: src/pages/HueBridgeOnboardingPage.vala:61
+msgid "The Hue bridge was successfully registered."
+msgstr "Die Hue Bridge wurde erfolgreich registriert."
diff --git a/po/fr.po b/po/fr.po
index f62bdab..c2388a5 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:15+0200\n"
+"POT-Creation-Date: 2019-06-23 09:20+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -33,6 +33,10 @@ msgstr ""
msgid "Devices"
msgstr ""
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Contrôlez vos objets connectés pour maison intelligente"
@@ -93,6 +97,10 @@ msgstr "Inconnu"
msgid "Looking for smart home gadgets to control."
msgstr "Recherche d'objets connectés à contrôler."
-#: src/pages/HueBridgeOnboardingPage.vala:31
+#: src/pages/HueBridgeOnboardingPage.vala:38
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
+
+#: src/pages/HueBridgeOnboardingPage.vala:61
+msgid "The Hue bridge was successfully registered."
+msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 8d5bfb7..2b52c5e 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-22 19:15+0200\n"
+"POT-Creation-Date: 2019-06-23 09:20+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -35,6 +35,10 @@ msgstr ""
msgid "Devices"
msgstr ""
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
#: src/views/WelcomeView.vala:26
msgid "Control your smart home gadgets"
msgstr "Управляйте своими умными домашними устройствами"
@@ -95,6 +99,10 @@ msgstr ""
msgid "Looking for smart home gadgets to control."
msgstr "Поиск умных домашних устройств."
-#: src/pages/HueBridgeOnboardingPage.vala:31
+#: src/pages/HueBridgeOnboardingPage.vala:38
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
+
+#: src/pages/HueBridgeOnboardingPage.vala:61
+msgid "The Hue bridge was successfully registered."
+msgstr ""
diff --git a/src/controllers/ThingsController.vala b/src/controllers/ThingsController.vala
index 06709ef..a1c9d9d 100644
--- a/src/controllers/ThingsController.vala
+++ b/src/controllers/ThingsController.vala
@@ -21,9 +21,10 @@
public class ThingsController {
private Lifx.Service lifx_service;
+ private Philips.Hue.Service philips_hue_service;
- public signal void on_new_lamp(Models.Lamp lamp);
- public signal void on_updated_lamp(Models.Lamp lamp);
+ public signal void on_new_lamp (Models.Lamp lamp);
+ public signal void on_updated_lamp (Models.Lamp lamp);
public ThingsController () {
lifx_service = Lifx.Service.instance;
@@ -35,5 +36,15 @@ public class ThingsController {
lifx_service.on_updated_thing.connect ((thing) => {
on_updated_lamp((Models.Lamp) thing);
});
+
+ philips_hue_service = Philips.Hue.Service.instance;
+
+ philips_hue_service.on_new_thing.connect ((thing) => {
+ on_new_lamp((Models.Lamp) thing);
+ });
+
+ philips_hue_service.on_updated_thing.connect ((thing) => {
+ on_updated_lamp((Models.Lamp) thing);
+ });
}
}
diff --git a/src/models/Thing.vala b/src/models/Thing.vala
index 403311d..db0e79f 100644
--- a/src/models/Thing.vala
+++ b/src/models/Thing.vala
@@ -20,7 +20,7 @@
*/
namespace Models {
- public class Thing {
+ public class Thing : Object {
protected Json.Object _obj;
public Thing () {
@@ -28,6 +28,10 @@ namespace Models {
icon = "com.github.manexim.home.thing-symbolic";
}
+ public Thing.from_object (Json.Object object) {
+ _obj = object;
+ }
+
public string id {
get {
if (!_obj.has_member ("id")) {
diff --git a/src/pages/HueBridgeOnboardingPage.vala b/src/pages/HueBridgeOnboardingPage.vala
index 3b8afb7..a052f73 100644
--- a/src/pages/HueBridgeOnboardingPage.vala
+++ b/src/pages/HueBridgeOnboardingPage.vala
@@ -20,7 +20,13 @@
*/
public class HueBridgeOnboardingPage : Gtk.Grid {
- public HueBridgeOnboardingPage () {
+ private Philips.Hue.BridgeController controller;
+ private Gtk.Label label;
+ private Gtk.Spinner spinner;
+
+ public HueBridgeOnboardingPage (Philips.Hue.Bridge bridge) {
+ controller = new Philips.Hue.BridgeController (bridge);
+
halign = Gtk.Align.CENTER;
valign = Gtk.Align.CENTER;
row_spacing = 16;
@@ -29,9 +35,9 @@ public class HueBridgeOnboardingPage : Gtk.Grid {
icon.gicon = new ThemedIcon ("com.github.manexim.home.bridge.philips.hue-symbolic");
icon.pixel_size = 256;
- var label = new Gtk.Label (_("Press the push-link button in the middle of the Hue bridge."));
+ label = new Gtk.Label (_("Press the push-link button in the middle of the Hue bridge."));
- var spinner = new Gtk.Spinner ();
+ spinner = new Gtk.Spinner ();
spinner.start ();
attach (icon, 0, 0, 1, 1);
@@ -39,5 +45,29 @@ public class HueBridgeOnboardingPage : Gtk.Grid {
attach (spinner, 0, 2, 1, 1);
show_all ();
+
+ register ();
+ }
+
+ private void register () {
+ new Thread (null, () => {
+ const ulong SLEEP_SECONDS = 5;
+
+ while (true) {
+ try {
+ if (controller.register ()) {
+ label.label = _("The Hue bridge was successfully registered.");
+ spinner.stop ();
+
+ Thread.usleep (SLEEP_SECONDS * 1000 * 1000);
+ MainWindow.get_default ().go_back ();
+ }
+ } catch (GLib.Error e) {
+ stderr.printf ("Error: %d %s\n", e.code, e.message);
+ }
+
+ Thread.usleep (SLEEP_SECONDS * 1000 * 1000);
+ }
+ });
}
}
diff --git a/src/philips/hue/Bridge.vala b/src/philips/hue/Bridge.vala
index 1e0d170..7d37530 100644
--- a/src/philips/hue/Bridge.vala
+++ b/src/philips/hue/Bridge.vala
@@ -6,6 +6,10 @@ namespace Philips.Hue {
power = Power.WARNING;
}
+ public Bridge.from_object (Json.Object object) {
+ _obj = object;
+ }
+
public string base_url {
get {
if (!_obj.has_member ("baseURL")) {
diff --git a/src/philips/hue/BridgeController.vala b/src/philips/hue/BridgeController.vala
index 338e17d..2b962d1 100644
--- a/src/philips/hue/BridgeController.vala
+++ b/src/philips/hue/BridgeController.vala
@@ -1,9 +1,14 @@
namespace Philips.Hue {
public class BridgeController {
private Bridge _bridge;
+ private Gee.HashMap thing_map;
+
+ public signal void on_new_lamp (Models.Lamp lamp);
+ public signal void on_updated_lamp (Models.Lamp lamp);
public BridgeController (Bridge bridge) {
_bridge = bridge;
+ thing_map = new Gee.HashMap ();
}
public void get_description () {
@@ -12,7 +17,6 @@ namespace Philips.Hue {
var session = new Soup.Session ();
var message = new Soup.Message ("GET", url);
- // send the HTTP request and wait for response
session.send_message (message);
// replace with
@@ -26,24 +30,24 @@ namespace Philips.Hue {
doc = Xml.Parser.parse_memory (patched, patched.length);
if (doc == null) {
- print ("failed to read the .xml file\n");
+ stderr.printf ("failed to read the .xml file\n");
}
Xml.XPath.Context context = new Xml.XPath.Context(doc);
if (context == null) {
- print ("failed to create the xpath context\n");
+ stderr.printf ("failed to create the xpath context\n");
}
Xml.XPath.Object* obj = context.eval_expression("/root/device/friendlyName");
if (obj == null) {
- print ("failed to evaluate xpath\n");
+ stderr.printf ("failed to evaluate xpath\n");
}
Xml.Node* node = null;
if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
node = obj->nodesetval->item(0);
} else {
- print ("failed to find the expected node\n");
+ stderr.printf ("failed to find the expected node\n");
}
_bridge.name = node->get_content ();
@@ -52,14 +56,14 @@ namespace Philips.Hue {
obj = context.eval_expression("/root/device/manufacturer");
if (obj == null) {
- print ("failed to evaluate xpath\n");
+ stderr.printf ("failed to evaluate xpath\n");
}
node = null;
if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
node = obj->nodesetval->item(0);
} else {
- print ("failed to find the expected node\n");
+ stderr.printf ("failed to find the expected node\n");
}
_bridge.manufacturer = node->get_content ();
@@ -68,14 +72,14 @@ namespace Philips.Hue {
obj = context.eval_expression("/root/device/modelName");
if (obj == null) {
- print ("failed to evaluate xpath\n");
+ stderr.printf ("failed to evaluate xpath\n");
}
node = null;
if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
node = obj->nodesetval->item(0);
} else {
- print ("failed to find the expected node\n");
+ stderr.printf ("failed to find the expected node\n");
}
_bridge.model = node->get_content ();
@@ -90,6 +94,97 @@ namespace Philips.Hue {
Xml.Parser.cleanup ();
}
+ public bool register () throws GLib.Error {
+ string url = "%sapi".printf (_bridge.base_url);
+
+ var session = new Soup.Session ();
+ var message = new Soup.Message ("POST", url);
+
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ var object = new Json.Object ();
+
+ object.set_string_member ("devicetype", "com.github.manexim.home");
+
+ root.set_object (object);
+ gen.set_root (root);
+
+ size_t length;
+ string json = gen.to_data (out length);
+
+ message.request_body.append_take (json.data);
+
+ session.send_message (message);
+
+ string response = (string) message.response_body.flatten ().data;
+
+ var parser = new Json.Parser();
+ parser.load_from_data (response, -1);
+
+ foreach (var element in parser.get_root ().get_array ().get_elements ()) {
+ var obj = element.get_object ();
+
+ if (obj.has_member ("error")) {
+ throw new GLib.Error (
+ GLib.Quark.from_string (""),
+ (int) obj.get_object_member ("error").get_int_member ("type"),
+ obj.get_object_member ("error").get_string_member ("description")
+ );
+ } else if (obj.has_member ("success")) {
+ _bridge.username = "%s".printf (obj.get_object_member ("success").get_string_member ("username"));
+ _bridge.power = Power.ON;
+
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ public void state () {
+ string url = "%sapi/%s".printf (_bridge.base_url, _bridge.username);
+
+ var session = new Soup.Session ();
+ var message = new Soup.Message ("GET", url);
+
+ session.send_message (message);
+
+ string response = (string) message.response_body.flatten ().data;
+
+ try {
+ var parser = new Json.Parser();
+ parser.load_from_data (response, -1);
+ var object = parser.get_root ().get_object ();
+ var lights = object.get_object_member ("lights");
+
+ foreach (var key in lights.get_members ()) {
+ var light = lights.get_object_member (key);
+ var lamp = new Philips.Hue.Lamp ();
+ lamp.name = light.get_string_member ("name");
+ lamp.manufacturer = light.get_string_member ("manufacturername");
+ lamp.model = light.get_string_member ("modelid");
+ lamp.id = light.get_string_member ("uniqueid");
+ var on = light.get_object_member ("state").get_boolean_member ("on");
+
+ if (on) {
+ lamp.power = Power.ON;
+ } else {
+ lamp.power = Power.OFF;
+ }
+
+ if (!thing_map.has_key (lamp.id)) {
+ thing_map.set (lamp.id, lamp);
+ on_new_lamp (lamp);
+ } else {
+ thing_map.set (lamp.id, lamp);
+ on_updated_lamp (lamp);
+ }
+ }
+ } catch (GLib.Error e) {
+ stderr.printf (e.message);
+ }
+ }
+
public Bridge bridge {
get {
return _bridge;
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index ade47e0..bcf5ad1 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -26,6 +26,9 @@ namespace Philips.Hue {
private Socket socket;
public signal void on_new_bridge (Bridge bridge);
+ public signal void on_updated_bridge (Bridge bridge);
+ public signal void on_new_thing (Models.Thing thing);
+ public signal void on_updated_thing (Models.Thing thing);
public static Service instance {
get {
@@ -46,9 +49,24 @@ namespace Philips.Hue {
private Service () {
bridge_map = new Gee.HashMap ();
+ load_bridges ();
setup_socket ();
listen ();
- discover ();
+ discover_bridges ();
+ }
+
+ private void load_bridges () {
+ string[] philips_hue_bridges = Settings.get_default ().philips_hue_bridges;
+ foreach (var bridge_str in philips_hue_bridges) {
+ var parser = new Json.Parser();
+ parser.load_from_data (bridge_str, -1);
+ var object = parser.get_root ().get_object ();
+
+ var bridge = new Philips.Hue.Bridge.from_object (object);
+ bridge.power = Power.UNKNOWN;
+
+ found_bridge (bridge);
+ }
}
private void setup_socket () {
@@ -101,17 +119,38 @@ namespace Philips.Hue {
});
}
- private void discover () {
+ private void discover_bridges () {
new Thread (null, () => {
while (true) {
- discover_ssdp ();
+ discover_bridges_ssdp ();
Thread.usleep (10 * 1000 * 1000);
}
});
}
- private void discover_ssdp () {
+ private void discover_bridge_things (Philips.Hue.Bridge bridge) {
+ var controller = new Philips.Hue.BridgeController (bridge);
+ controller.on_new_lamp.connect ((lamp) => {
+ on_new_thing (lamp);
+ });
+
+ controller.on_updated_lamp.connect ((lamp) => {
+ on_updated_thing (lamp);
+ });
+
+ new Thread (null, () => {
+ while (true) {
+ if (bridge.username != null && bridge.username != "") {
+ controller.state ();
+ }
+
+ Thread.usleep (10 * 1000 * 1000);
+ }
+ });
+ }
+
+ private void discover_bridges_ssdp () {
string message = "M-SEARCH * HTTP/1.1\r\n";
message += "HOST: 239.255.255.250:1900\r\n";
message += "MAN: ssdp:discover\r\n";
@@ -140,18 +179,27 @@ namespace Philips.Hue {
port = mi.fetch (4);
path = mi.fetch (5);
- if (!bridge_map.has_key (bridgeid)) {
- var bridge = new Bridge ();
- bridge.id = bridgeid.up ();
- bridge.base_url = protocol + host + ":" + port + "/";
+ var bridge = new Bridge ();
+ bridge.id = bridgeid.up ();
+ bridge.base_url = protocol + host + ":" + port + "/";
- var controller = new Philips.Hue.BridgeController (bridge);
- controller.get_description ();
- bridge = controller.bridge;
+ found_bridge (bridge);
- bridge_map.set (bridge.id, bridge);
- on_new_bridge (bridge);
- }
+ }
+ }
+
+ private void found_bridge (Philips.Hue.Bridge bridge) {
+ var controller = new Philips.Hue.BridgeController (bridge);
+ controller.get_description ();
+ bridge = controller.bridge;
+
+ if (!bridge_map.has_key (bridge.id)) {
+ bridge_map.set (bridge.id, bridge);
+ discover_bridge_things (bridge);
+ on_new_bridge (bridge);
+ } else {
+ bridge_map.set (bridge.id, bridge);
+ on_updated_bridge (bridge);
}
}
}
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index 9c69886..a9abb8b 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -62,7 +62,7 @@ public class Overview : Gtk.ScrolledWindow {
);
});
- var hubs_label = new Gtk.Label ("Hubs");
+ var hubs_label = new Gtk.Label (_("Hubs"));
hubs_label.get_style_context ().add_class (Granite.STYLE_CLASS_H4_LABEL);
hubs_label.xalign = 0;
hubs_label.margin_start = 10;
@@ -88,7 +88,7 @@ public class Overview : Gtk.ScrolledWindow {
hubs_carousel.on_thing_activated.connect ((thing) => {
MainWindow.get_default ().go_to_page (
- new HueBridgeOnboardingPage (),
+ new HueBridgeOnboardingPage (thing as Philips.Hue.Bridge),
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
index e4be1f2..6a4ed27 100644
--- a/src/widgets/CarouselItem.vala
+++ b/src/widgets/CarouselItem.vala
@@ -65,6 +65,10 @@ public class CarouselItem : Gtk.FlowBoxChild {
add (grid);
update_thing (thing);
+
+ thing.notify.connect ((_) => {
+ update_thing (thing);
+ });
}
public void update_thing (Models.Thing thing) {
From e51ac38ac42750377be147904d0d52cbf63278f6 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Wed, 26 Jun 2019 07:37:40 +0200
Subject: [PATCH 25/84] Use separate base models for devices and hubs
---
...Controller.vala => DevicesController.vala} | 20 +--
src/lifx/LampController.vala | 2 +-
src/lifx/Service.vala | 152 +++++++++---------
src/meson.build | 8 +-
src/models/Device.vala | 24 +++
src/models/Hub.vala | 24 +++
src/models/Lamp.vala | 2 +-
src/pages/{ThingPage.vala => DevicePage.vala} | 4 +-
src/philips/hue/Bridge.vala | 2 +-
src/philips/hue/BridgeController.vala | 4 +-
src/philips/hue/Service.vala | 12 +-
.../{ThingsView.vala => DevicesView.vala} | 12 +-
src/views/Overview.vala | 10 +-
src/widgets/Carousel.vala | 6 +-
src/widgets/CarouselItem.vala | 6 +-
15 files changed, 169 insertions(+), 119 deletions(-)
rename src/controllers/{ThingsController.vala => DevicesController.vala} (70%)
create mode 100644 src/models/Device.vala
create mode 100644 src/models/Hub.vala
rename src/pages/{ThingPage.vala => DevicePage.vala} (96%)
rename src/views/{ThingsView.vala => DevicesView.vala} (81%)
diff --git a/src/controllers/ThingsController.vala b/src/controllers/DevicesController.vala
similarity index 70%
rename from src/controllers/ThingsController.vala
rename to src/controllers/DevicesController.vala
index a1c9d9d..a30efd3 100644
--- a/src/controllers/ThingsController.vala
+++ b/src/controllers/DevicesController.vala
@@ -19,32 +19,32 @@
* Authored by: Marius Meisenzahl
*/
-public class ThingsController {
+public class DevicesController {
private Lifx.Service lifx_service;
private Philips.Hue.Service philips_hue_service;
public signal void on_new_lamp (Models.Lamp lamp);
public signal void on_updated_lamp (Models.Lamp lamp);
- public ThingsController () {
+ public DevicesController () {
lifx_service = Lifx.Service.instance;
- lifx_service.on_new_thing.connect ((thing) => {
- on_new_lamp((Models.Lamp) thing);
+ lifx_service.on_new_device.connect ((device) => {
+ on_new_lamp((Models.Lamp) device);
});
- lifx_service.on_updated_thing.connect ((thing) => {
- on_updated_lamp((Models.Lamp) thing);
+ lifx_service.on_updated_device.connect ((device) => {
+ on_updated_lamp((Models.Lamp) device);
});
philips_hue_service = Philips.Hue.Service.instance;
- philips_hue_service.on_new_thing.connect ((thing) => {
- on_new_lamp((Models.Lamp) thing);
+ philips_hue_service.on_new_device.connect ((device) => {
+ on_new_lamp((Models.Lamp) device);
});
- philips_hue_service.on_updated_thing.connect ((thing) => {
- on_updated_lamp((Models.Lamp) thing);
+ philips_hue_service.on_updated_device.connect ((device) => {
+ on_updated_lamp((Models.Lamp) device);
});
}
}
diff --git a/src/lifx/LampController.vala b/src/lifx/LampController.vala
index 624a950..2378a09 100644
--- a/src/lifx/LampController.vala
+++ b/src/lifx/LampController.vala
@@ -30,7 +30,7 @@ namespace Lifx {
_lamp = lamp;
service = Lifx.Service.instance;
- service.on_updated_thing.connect ((updated_lamp) => {
+ service.on_updated_device.connect ((updated_lamp) => {
if (updated_lamp.id == lamp.id) {
updated ((Lifx.Lamp) updated_lamp);
}
diff --git a/src/lifx/Service.vala b/src/lifx/Service.vala
index beca2d5..ad5ad73 100644
--- a/src/lifx/Service.vala
+++ b/src/lifx/Service.vala
@@ -24,11 +24,11 @@ namespace Lifx {
private static Service? _instance;
public bool debug = false;
private uint32 source = 0;
- private Gee.HashMap thing_map;
+ private Gee.HashMap device_map;
private Socket socket;
- public signal void on_new_thing (Models.Thing thing);
- public signal void on_updated_thing (Models.Thing thing);
+ public signal void on_new_device (Models.Device device);
+ public signal void on_updated_device (Models.Device device);
public static Service instance {
get {
@@ -63,7 +63,7 @@ namespace Lifx {
}
private Service () {
- thing_map = new Gee.HashMap ();
+ device_map = new Gee.HashMap ();
setup_socket ();
listen ();
@@ -106,123 +106,123 @@ namespace Lifx {
Lifx.Packet packet = new Lifx.Packet.from (raw);
switch (packet.type) {
case 3: // StateService
- if (!thing_map.has_key (packet.target)) {
- var thing = new Lifx.Lamp ();
- thing.id = packet.target;
- thing.port = (uint16) packet.payload.get_int_member ("port");
- thing.manufacturer = "LIFX";
+ if (!device_map.has_key (packet.target)) {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.port = (uint16) packet.payload.get_int_member ("port");
+ device.manufacturer = "LIFX";
- get_version (thing);
- get_state (thing);
+ get_version (device);
+ get_state (device);
- thing_map.set (thing.id, thing);
- on_new_thing (thing);
+ device_map.set (device.id, device);
+ on_new_device (device);
}
break;
case 22: // StatePower
- if (thing_map.has_key (packet.target)) {
- ((Lifx.Lamp) thing_map.get (packet.target)).power =
+ if (device_map.has_key (packet.target)) {
+ ((Lifx.Lamp) device_map.get (packet.target)).power =
(Power) packet.payload.get_int_member ("level");
- on_updated_thing (thing_map.get (packet.target));
+ on_updated_device (device_map.get (packet.target));
} else {
- var thing = new Lifx.Lamp ();
- thing.id = packet.target;
- thing.power = (Power) packet.payload.get_int_member ("level");
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.power = (Power) packet.payload.get_int_member ("level");
- thing_map.set (thing.id, thing);
- on_new_thing (thing);
+ device_map.set (device.id, device);
+ on_new_device (device);
}
break;
case 25: // StateLabel
- if (thing_map.has_key (packet.target)) {
- thing_map.get (packet.target).name = packet.payload.get_string_member ("label");
- ((Lifx.Lamp) thing_map.get (packet.target)).manufacturer = "LIFX";
+ if (device_map.has_key (packet.target)) {
+ device_map.get (packet.target).name = packet.payload.get_string_member ("label");
+ ((Lifx.Lamp) device_map.get (packet.target)).manufacturer = "LIFX";
- on_updated_thing (thing_map.get (packet.target));
+ on_updated_device (device_map.get (packet.target));
} else {
- var thing = new Lifx.Lamp ();
- thing.id = packet.target;
- thing.name = packet.payload.get_string_member ("label");
- thing.manufacturer = "LIFX";
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.name = packet.payload.get_string_member ("label");
+ device.manufacturer = "LIFX";
- thing_map.set (thing.id, thing);
- on_new_thing (thing);
+ device_map.set (device.id, device);
+ on_new_device (device);
}
break;
case 33: // StateVersion
- if (thing_map.has_key (packet.target)) {
- ((Lifx.Lamp) thing_map.get (packet.target)).manufacturer =
+ if (device_map.has_key (packet.target)) {
+ ((Lifx.Lamp) device_map.get (packet.target)).manufacturer =
packet.payload.get_string_member ("manufacturer");
- ((Lifx.Lamp) thing_map.get (packet.target)).model =
+ ((Lifx.Lamp) device_map.get (packet.target)).model =
packet.payload.get_string_member ("model");
- ((Lifx.Lamp) thing_map.get (packet.target)).supports_color =
+ ((Lifx.Lamp) device_map.get (packet.target)).supports_color =
packet.payload.get_boolean_member ("supportsColor");
- ((Lifx.Lamp) thing_map.get (packet.target)).supports_infrared =
+ ((Lifx.Lamp) device_map.get (packet.target)).supports_infrared =
packet.payload.get_boolean_member ("supportsInfrared");
- ((Lifx.Lamp) thing_map.get (packet.target)).supports_multizone =
+ ((Lifx.Lamp) device_map.get (packet.target)).supports_multizone =
packet.payload.get_boolean_member ("supportsMultizone");
- on_updated_thing (thing_map.get (packet.target));
+ on_updated_device (device_map.get (packet.target));
} else {
- var thing = new Lifx.Lamp ();
- thing.id = packet.target;
- thing.manufacturer = packet.payload.get_string_member ("manufacturer");
- thing.model = packet.payload.get_string_member ("model");
- thing.supports_color = packet.payload.get_boolean_member ("supportsColor");
- thing.supports_infrared =
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.manufacturer = packet.payload.get_string_member ("manufacturer");
+ device.model = packet.payload.get_string_member ("model");
+ device.supports_color = packet.payload.get_boolean_member ("supportsColor");
+ device.supports_infrared =
packet.payload.get_boolean_member ("supportsInfrared");
- thing.supports_multizone =
+ device.supports_multizone =
packet.payload.get_boolean_member ("supportsMultizone");
- thing_map.set (thing.id, thing);
- on_new_thing (thing);
+ device_map.set (device.id, device);
+ on_new_device (device);
}
break;
case 107: // State
- if (thing_map.has_key (packet.target)) {
- thing_map.get (packet.target).name = packet.payload.get_string_member ("label");
- ((Lifx.Lamp) thing_map.get (packet.target)).manufacturer = "LIFX";
- ((Lifx.Lamp) thing_map.get (packet.target)).power =
+ if (device_map.has_key (packet.target)) {
+ device_map.get (packet.target).name = packet.payload.get_string_member ("label");
+ ((Lifx.Lamp) device_map.get (packet.target)).manufacturer = "LIFX";
+ ((Lifx.Lamp) device_map.get (packet.target)).power =
(Power) packet.payload.get_int_member ("power");
- ((Lifx.Lamp) thing_map.get (packet.target)).hue =
+ ((Lifx.Lamp) device_map.get (packet.target)).hue =
(uint16) packet.payload.get_int_member ("hue");
- ((Lifx.Lamp) thing_map.get (packet.target)).saturation =
+ ((Lifx.Lamp) device_map.get (packet.target)).saturation =
(uint16) packet.payload.get_int_member ("saturation");
- ((Lifx.Lamp) thing_map.get (packet.target)).brightness =
+ ((Lifx.Lamp) device_map.get (packet.target)).brightness =
(uint16) packet.payload.get_int_member ("brightness");
- ((Lifx.Lamp) thing_map.get (packet.target)).kelvin =
+ ((Lifx.Lamp) device_map.get (packet.target)).kelvin =
(uint16) packet.payload.get_int_member ("kelvin");
- on_updated_thing (thing_map.get (packet.target));
+ on_updated_device (device_map.get (packet.target));
} else {
- var thing = new Lifx.Lamp ();
- thing.id = packet.target;
- thing.name = packet.payload.get_string_member ("label");
- thing.manufacturer = "LIFX";
- thing.power = (Power) packet.payload.get_int_member ("power");
- thing.hue = (uint16) packet.payload.get_int_member ("hue");
- thing.saturation = (uint16) packet.payload.get_int_member ("saturation");
- thing.brightness = (uint16) packet.payload.get_int_member ("brightness");
- thing.kelvin = (uint16) packet.payload.get_int_member ("kelvin");
-
- thing_map.set (thing.id, thing);
- on_new_thing (thing);
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.name = packet.payload.get_string_member ("label");
+ device.manufacturer = "LIFX";
+ device.power = (Power) packet.payload.get_int_member ("power");
+ device.hue = (uint16) packet.payload.get_int_member ("hue");
+ device.saturation = (uint16) packet.payload.get_int_member ("saturation");
+ device.brightness = (uint16) packet.payload.get_int_member ("brightness");
+ device.kelvin = (uint16) packet.payload.get_int_member ("kelvin");
+
+ device_map.set (device.id, device);
+ on_new_device (device);
}
break;
case 118: // StatePower
- if (thing_map.has_key (packet.target)) {
- ((Lifx.Lamp) thing_map.get (packet.target)).power =
+ if (device_map.has_key (packet.target)) {
+ ((Lifx.Lamp) device_map.get (packet.target)).power =
(Power) packet.payload.get_int_member ("level");
- on_updated_thing (thing_map.get (packet.target));
+ on_updated_device (device_map.get (packet.target));
} else {
- var thing = new Lifx.Lamp ();
- thing.id = packet.target;
- thing.power = (Power) packet.payload.get_int_member ("level");
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.power = (Power) packet.payload.get_int_member ("level");
- thing_map.set (thing.id, thing);
- on_new_thing (thing);
+ device_map.set (device.id, device);
+ on_new_device (device);
}
break;
default:
diff --git a/src/meson.build b/src/meson.build
index b5bdd68..6be9aba 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,15 +1,17 @@
sources = [
'config/Constants.vala',
- 'controllers/ThingsController.vala',
+ 'controllers/DevicesController.vala',
'lifx/LampController.vala',
'lifx/Lamp.vala',
'lifx/Packet.vala',
'lifx/Service.vala',
+ 'models/Device.vala',
'models/Lamp.vala',
+ 'models/Hub.vala',
'models/Thing.vala',
'pages/HueBridgeOnboardingPage.vala',
+ 'pages/DevicePage.vala',
'pages/LoadingPage.vala',
- 'pages/ThingPage.vala',
'philips/hue/Bridge.vala',
'philips/hue/BridgeController.vala',
'philips/hue/Lamp.vala',
@@ -19,8 +21,8 @@ sources = [
'utils/Buffer.vala',
'utils/History.vala',
'utils/Platform.vala',
+ 'views/DevicesView.vala',
'views/Overview.vala',
- 'views/ThingsView.vala',
'views/WelcomeView.vala',
'widgets/Carousel.vala',
'widgets/CarouselItem.vala',
diff --git a/src/models/Device.vala b/src/models/Device.vala
new file mode 100644
index 0000000..e8069f3
--- /dev/null
+++ b/src/models/Device.vala
@@ -0,0 +1,24 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+namespace Models {
+ public class Device : Thing {}
+}
diff --git a/src/models/Hub.vala b/src/models/Hub.vala
new file mode 100644
index 0000000..1025868
--- /dev/null
+++ b/src/models/Hub.vala
@@ -0,0 +1,24 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+namespace Models {
+ public class Hub : Thing {}
+}
diff --git a/src/models/Lamp.vala b/src/models/Lamp.vala
index fbbfe9f..f095556 100644
--- a/src/models/Lamp.vala
+++ b/src/models/Lamp.vala
@@ -20,7 +20,7 @@
*/
namespace Models {
- public class Lamp : Thing {
+ public class Lamp : Device {
public Lamp () {
icon = "com.github.manexim.home.lightbulb-symbolic";
}
diff --git a/src/pages/ThingPage.vala b/src/pages/DevicePage.vala
similarity index 96%
rename from src/pages/ThingPage.vala
rename to src/pages/DevicePage.vala
index 38155b0..e99936a 100644
--- a/src/pages/ThingPage.vala
+++ b/src/pages/DevicePage.vala
@@ -19,10 +19,10 @@
* Authored by: Marius Meisenzahl
*/
-public class ThingPage : Granite.SimpleSettingsPage {
+public class DevicePage : Granite.SimpleSettingsPage {
private Lifx.LampController controller;
- public ThingPage (Models.Thing thing) {
+ public DevicePage (Models.Device thing) {
Object (
activatable: true,
icon_name: thing.icon,
diff --git a/src/philips/hue/Bridge.vala b/src/philips/hue/Bridge.vala
index 7d37530..7c0059f 100644
--- a/src/philips/hue/Bridge.vala
+++ b/src/philips/hue/Bridge.vala
@@ -1,5 +1,5 @@
namespace Philips.Hue {
- public class Bridge : Models.Thing {
+ public class Bridge : Models.Device {
public Bridge () {
icon = "com.github.manexim.home.bridge.philips.hue-symbolic";
manufacturer = "Philips";
diff --git a/src/philips/hue/BridgeController.vala b/src/philips/hue/BridgeController.vala
index 2b962d1..e6e9690 100644
--- a/src/philips/hue/BridgeController.vala
+++ b/src/philips/hue/BridgeController.vala
@@ -1,14 +1,14 @@
namespace Philips.Hue {
public class BridgeController {
private Bridge _bridge;
- private Gee.HashMap thing_map;
+ private Gee.HashMap thing_map;
public signal void on_new_lamp (Models.Lamp lamp);
public signal void on_updated_lamp (Models.Lamp lamp);
public BridgeController (Bridge bridge) {
_bridge = bridge;
- thing_map = new Gee.HashMap ();
+ thing_map = new Gee.HashMap ();
}
public void get_description () {
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index bcf5ad1..4d1c8c5 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -27,8 +27,8 @@ namespace Philips.Hue {
public signal void on_new_bridge (Bridge bridge);
public signal void on_updated_bridge (Bridge bridge);
- public signal void on_new_thing (Models.Thing thing);
- public signal void on_updated_thing (Models.Thing thing);
+ public signal void on_new_device (Models.Device device);
+ public signal void on_updated_device (Models.Device device);
public static Service instance {
get {
@@ -129,14 +129,14 @@ namespace Philips.Hue {
});
}
- private void discover_bridge_things (Philips.Hue.Bridge bridge) {
+ private void discover_bridge_devices (Philips.Hue.Bridge bridge) {
var controller = new Philips.Hue.BridgeController (bridge);
controller.on_new_lamp.connect ((lamp) => {
- on_new_thing (lamp);
+ on_new_device (lamp);
});
controller.on_updated_lamp.connect ((lamp) => {
- on_updated_thing (lamp);
+ on_updated_device (lamp);
});
new Thread (null, () => {
@@ -195,7 +195,7 @@ namespace Philips.Hue {
if (!bridge_map.has_key (bridge.id)) {
bridge_map.set (bridge.id, bridge);
- discover_bridge_things (bridge);
+ discover_bridge_devices (bridge);
on_new_bridge (bridge);
} else {
bridge_map.set (bridge.id, bridge);
diff --git a/src/views/ThingsView.vala b/src/views/DevicesView.vala
similarity index 81%
rename from src/views/ThingsView.vala
rename to src/views/DevicesView.vala
index 1d16c79..b8e2416 100644
--- a/src/views/ThingsView.vala
+++ b/src/views/DevicesView.vala
@@ -19,12 +19,12 @@
* Authored by: Marius Meisenzahl
*/
-public class ThingsView : Gtk.Paned {
+public class DevicesView : Gtk.Paned {
private Gtk.Stack stack;
- private ThingsController things_controller;
+ private DevicesController devices_controller;
- public ThingsView () {
- things_controller = new ThingsController ();
+ public DevicesView () {
+ devices_controller = new DevicesController ();
stack = new Gtk.Stack ();
@@ -36,8 +36,8 @@ public class ThingsView : Gtk.Paned {
stack.add_named (new LoadingPage (), "loading");
stack.show_all ();
- things_controller.on_new_lamp.connect ((lamp) => {
- stack.add_named (new ThingPage (lamp), lamp.id);
+ devices_controller.on_new_lamp.connect ((lamp) => {
+ stack.add_named (new DevicePage (lamp), lamp.id);
if (stack.get_visible_child_name () == "loading") {
var child = stack.get_child_by_name ("loading");
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index a9abb8b..77edf2f 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -20,7 +20,7 @@
*/
public class Overview : Gtk.ScrolledWindow {
- private ThingsController things_controller;
+ private DevicesController devices_controller;
public Overview () {
var grid = new Gtk.Grid ();
@@ -45,19 +45,19 @@ public class Overview : Gtk.ScrolledWindow {
grid.attach (devices_revealer, 0, 0, 1, 1);
- things_controller = new ThingsController ();
- things_controller.on_new_lamp.connect ((lamp) => {
+ devices_controller = new DevicesController ();
+ devices_controller.on_new_lamp.connect ((lamp) => {
devices_carousel.add_thing (lamp);
devices_revealer.reveal_child = true;
});
- things_controller.on_updated_lamp.connect ((lamp) => {
+ devices_controller.on_updated_lamp.connect ((lamp) => {
devices_carousel.update_thing (lamp);
});
devices_carousel.on_thing_activated.connect ((thing) => {
MainWindow.get_default ().go_to_page (
- new ThingPage (thing),
+ new DevicePage (thing),
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
diff --git a/src/widgets/Carousel.vala b/src/widgets/Carousel.vala
index 27f0875..f3a14ff 100644
--- a/src/widgets/Carousel.vala
+++ b/src/widgets/Carousel.vala
@@ -22,7 +22,7 @@
public class Carousel : Gtk.FlowBox {
private Gee.HashMap carousel_item_map;
private int index = 0;
- public signal void on_thing_activated (Models.Thing thing);
+ public signal void on_thing_activated (Models.Device thing);
public Carousel () {
Object (
@@ -43,14 +43,14 @@ public class Carousel : Gtk.FlowBox {
child_activated.connect (on_child_activated);
}
- public void add_thing (Models.Thing? thing) {
+ public void add_thing (Models.Device? thing) {
var carousel_item = new CarouselItem (thing);
add (carousel_item);
carousel_item_map.set (thing.id, index++);
show_all ();
}
- public void update_thing (Models.Thing? thing) {
+ public void update_thing (Models.Device? thing) {
weak Gtk.FlowBoxChild child = get_child_at_index (carousel_item_map.get (thing.id));
if (child is CarouselItem) {
var carousel_item = child as CarouselItem;
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
index 6a4ed27..2136ea8 100644
--- a/src/widgets/CarouselItem.vala
+++ b/src/widgets/CarouselItem.vala
@@ -20,13 +20,13 @@
*/
public class CarouselItem : Gtk.FlowBoxChild {
- public Models.Thing thing { get; construct set; }
+ public Models.Device thing { get; construct set; }
private Gtk.Image icon;
private Gtk.Image status_icon;
private Gtk.Label name_label;
private Gtk.Label id_label;
- public CarouselItem (Models.Thing thing) {
+ public CarouselItem (Models.Device thing) {
Object (thing: thing);
}
@@ -71,7 +71,7 @@ public class CarouselItem : Gtk.FlowBoxChild {
});
}
- public void update_thing (Models.Thing thing) {
+ public void update_thing (Models.Device thing) {
icon.gicon = new ThemedIcon (thing.icon);
switch (thing.power) {
From 51b9da394f28bbce840e2fd853686b3f59b50d67 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Wed, 26 Jun 2019 18:41:16 +0200
Subject: [PATCH 26/84] Show right power state of device in device page
---
src/pages/DevicePage.vala | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
diff --git a/src/pages/DevicePage.vala b/src/pages/DevicePage.vala
index e99936a..9774d7d 100644
--- a/src/pages/DevicePage.vala
+++ b/src/pages/DevicePage.vala
@@ -32,16 +32,6 @@ public class DevicePage : Granite.SimpleSettingsPage {
controller = new Lifx.LampController ((Lifx.Lamp) thing);
controller.updated.connect ((lamp) => {
- if (lamp.power == Power.ON) {
- status_switch.active = true;
- status_switch.state = true;
- } else if (lamp.power == Power.OFF) {
- status_switch.active = false;
- status_switch.state = false;
- }
-
- title = lamp.name;
-
update_status ();
});
@@ -66,12 +56,18 @@ public class DevicePage : Granite.SimpleSettingsPage {
description += "\n" + _("Manufacturer: ") + controller.lamp.manufacturer;
description += "\n" + _("Model: ") + controller.lamp.model;
+ title = controller.lamp.name;
+
switch (controller.lamp.power) {
case Power.ON:
+ status_switch.active = true;
+ status_switch.state = true;
status_type = Granite.SettingsPage.StatusType.SUCCESS;
status = (_("Enabled"));
break;
case Power.OFF:
+ status_switch.active = false;
+ status_switch.state = false;
status_type = Granite.SettingsPage.StatusType.OFFLINE;
status = (_("Disabled"));
break;
From 5ebff480ea65e1580c68108e13725a10c88bfe24 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 27 Jun 2019 19:47:41 +0200
Subject: [PATCH 27/84] Optimize usage of base models for devices and hubs
---
src/controllers/DeviceController.vala | 41 +++++++++++++++++++
src/controllers/DevicesController.vala | 12 +++---
.../{LampController.vala => Controller.vala} | 28 ++++---------
src/meson.build | 3 +-
src/pages/DevicePage.vala | 29 ++++++-------
src/views/DevicesView.vala | 4 +-
src/views/Overview.vala | 10 ++---
src/widgets/Carousel.vala | 8 ++--
src/widgets/CarouselItem.vala | 12 +++---
9 files changed, 88 insertions(+), 59 deletions(-)
create mode 100644 src/controllers/DeviceController.vala
rename src/lifx/{LampController.vala => Controller.vala} (59%)
diff --git a/src/controllers/DeviceController.vala b/src/controllers/DeviceController.vala
new file mode 100644
index 0000000..5a53802
--- /dev/null
+++ b/src/controllers/DeviceController.vala
@@ -0,0 +1,41 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public abstract class DeviceController : Object {
+ protected Models.Device _device;
+
+ public DeviceController (Models.Device device) {
+ Object (
+ device : device
+ );
+ }
+
+ public abstract void switch_power (bool on);
+
+ public Models.Device device {
+ get {
+ return _device;
+ }
+ construct set {
+ _device = value;
+ }
+ }
+}
diff --git a/src/controllers/DevicesController.vala b/src/controllers/DevicesController.vala
index a30efd3..ce7f7f9 100644
--- a/src/controllers/DevicesController.vala
+++ b/src/controllers/DevicesController.vala
@@ -23,28 +23,28 @@ public class DevicesController {
private Lifx.Service lifx_service;
private Philips.Hue.Service philips_hue_service;
- public signal void on_new_lamp (Models.Lamp lamp);
- public signal void on_updated_lamp (Models.Lamp lamp);
+ public signal void on_new_device (Models.Device device);
+ public signal void on_updated_device (Models.Device device);
public DevicesController () {
lifx_service = Lifx.Service.instance;
lifx_service.on_new_device.connect ((device) => {
- on_new_lamp((Models.Lamp) device);
+ on_new_device (device);
});
lifx_service.on_updated_device.connect ((device) => {
- on_updated_lamp((Models.Lamp) device);
+ on_updated_device (device);
});
philips_hue_service = Philips.Hue.Service.instance;
philips_hue_service.on_new_device.connect ((device) => {
- on_new_lamp((Models.Lamp) device);
+ on_new_device (device);
});
philips_hue_service.on_updated_device.connect ((device) => {
- on_updated_lamp((Models.Lamp) device);
+ on_updated_device (device);
});
}
}
diff --git a/src/lifx/LampController.vala b/src/lifx/Controller.vala
similarity index 59%
rename from src/lifx/LampController.vala
rename to src/lifx/Controller.vala
index 2378a09..a128353 100644
--- a/src/lifx/LampController.vala
+++ b/src/lifx/Controller.vala
@@ -20,33 +20,21 @@
*/
namespace Lifx {
- public class LampController {
+ public class Controller : DeviceController {
private Lifx.Service service;
- private Lifx.Lamp _lamp;
- public signal void updated (Lifx.Lamp lamp);
-
- public LampController (Lifx.Lamp lamp) {
- _lamp = lamp;
+ public Controller (Models.Device device) {
+ Object (
+ device : device
+ );
service = Lifx.Service.instance;
- service.on_updated_device.connect ((updated_lamp) => {
- if (updated_lamp.id == lamp.id) {
- updated ((Lifx.Lamp) updated_lamp);
- }
- });
}
- public void switch_power (bool on) {
- service.set_power (lamp, on ? 65535 : 0);
-
- _lamp.power = on ? Power.ON : Power.OFF;
- }
+ public override void switch_power (bool on) {
+ service.set_power (device as Lifx.Lamp, on ? 65535 : 0);
- public Lifx.Lamp lamp {
- get {
- return _lamp;
- }
+ _device.power = on ? Power.ON : Power.OFF;
}
}
}
diff --git a/src/meson.build b/src/meson.build
index 6be9aba..abb577b 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -1,7 +1,8 @@
sources = [
'config/Constants.vala',
+ 'controllers/DeviceController.vala',
'controllers/DevicesController.vala',
- 'lifx/LampController.vala',
+ 'lifx/Controller.vala',
'lifx/Lamp.vala',
'lifx/Packet.vala',
'lifx/Service.vala',
diff --git a/src/pages/DevicePage.vala b/src/pages/DevicePage.vala
index 9774d7d..91ce857 100644
--- a/src/pages/DevicePage.vala
+++ b/src/pages/DevicePage.vala
@@ -20,20 +20,21 @@
*/
public class DevicePage : Granite.SimpleSettingsPage {
- private Lifx.LampController controller;
+ private DeviceController controller;
- public DevicePage (Models.Device thing) {
+ public DevicePage (Models.Device device) {
Object (
activatable: true,
- icon_name: thing.icon,
- description: thing.id,
- title: thing.name != null ? thing.name : thing.id
+ icon_name: device.icon,
+ description: device.id,
+ title: device.name != null ? device.name : device.id
);
- controller = new Lifx.LampController ((Lifx.Lamp) thing);
- controller.updated.connect ((lamp) => {
- update_status ();
- });
+ if (device is Lifx.Lamp) {
+ controller = new Lifx.Controller (device);
+ }
+
+ controller.device.notify.connect (update_status);
update_status ();
@@ -52,13 +53,13 @@ public class DevicePage : Granite.SimpleSettingsPage {
}
private void update_status () {
- description = _("ID: ") + controller.lamp.id;
- description += "\n" + _("Manufacturer: ") + controller.lamp.manufacturer;
- description += "\n" + _("Model: ") + controller.lamp.model;
+ description = _("ID: ") + controller.device.id;
+ description += "\n" + _("Manufacturer: ") + controller.device.manufacturer;
+ description += "\n" + _("Model: ") + controller.device.model;
- title = controller.lamp.name;
+ title = controller.device.name;
- switch (controller.lamp.power) {
+ switch (controller.device.power) {
case Power.ON:
status_switch.active = true;
status_switch.state = true;
diff --git a/src/views/DevicesView.vala b/src/views/DevicesView.vala
index b8e2416..1ed7b0b 100644
--- a/src/views/DevicesView.vala
+++ b/src/views/DevicesView.vala
@@ -36,8 +36,8 @@ public class DevicesView : Gtk.Paned {
stack.add_named (new LoadingPage (), "loading");
stack.show_all ();
- devices_controller.on_new_lamp.connect ((lamp) => {
- stack.add_named (new DevicePage (lamp), lamp.id);
+ devices_controller.on_new_device.connect ((device) => {
+ stack.add_named (new DevicePage (device), device.id);
if (stack.get_visible_child_name () == "loading") {
var child = stack.get_child_by_name ("loading");
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index 77edf2f..d9fcb56 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -46,18 +46,18 @@ public class Overview : Gtk.ScrolledWindow {
grid.attach (devices_revealer, 0, 0, 1, 1);
devices_controller = new DevicesController ();
- devices_controller.on_new_lamp.connect ((lamp) => {
- devices_carousel.add_thing (lamp);
+ devices_controller.on_new_device.connect ((device) => {
+ devices_carousel.add_thing (device);
devices_revealer.reveal_child = true;
});
- devices_controller.on_updated_lamp.connect ((lamp) => {
- devices_carousel.update_thing (lamp);
+ devices_controller.on_updated_device.connect ((device) => {
+ devices_carousel.update_thing (device);
});
devices_carousel.on_thing_activated.connect ((thing) => {
MainWindow.get_default ().go_to_page (
- new DevicePage (thing),
+ new DevicePage (thing as Models.Device),
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
diff --git a/src/widgets/Carousel.vala b/src/widgets/Carousel.vala
index f3a14ff..fa81a32 100644
--- a/src/widgets/Carousel.vala
+++ b/src/widgets/Carousel.vala
@@ -22,7 +22,7 @@
public class Carousel : Gtk.FlowBox {
private Gee.HashMap carousel_item_map;
private int index = 0;
- public signal void on_thing_activated (Models.Device thing);
+ public signal void on_thing_activated (Models.Thing thing);
public Carousel () {
Object (
@@ -43,18 +43,18 @@ public class Carousel : Gtk.FlowBox {
child_activated.connect (on_child_activated);
}
- public void add_thing (Models.Device? thing) {
+ public void add_thing (Models.Thing? thing) {
var carousel_item = new CarouselItem (thing);
add (carousel_item);
carousel_item_map.set (thing.id, index++);
show_all ();
}
- public void update_thing (Models.Device? thing) {
+ public void update_thing (Models.Thing? thing) {
weak Gtk.FlowBoxChild child = get_child_at_index (carousel_item_map.get (thing.id));
if (child is CarouselItem) {
var carousel_item = child as CarouselItem;
- carousel_item.update_thing (thing);
+ carousel_item.update ();
}
}
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
index 2136ea8..8afac34 100644
--- a/src/widgets/CarouselItem.vala
+++ b/src/widgets/CarouselItem.vala
@@ -20,13 +20,13 @@
*/
public class CarouselItem : Gtk.FlowBoxChild {
- public Models.Device thing { get; construct set; }
+ public Models.Thing thing { get; construct set; }
private Gtk.Image icon;
private Gtk.Image status_icon;
private Gtk.Label name_label;
private Gtk.Label id_label;
- public CarouselItem (Models.Device thing) {
+ public CarouselItem (Models.Thing thing) {
Object (thing: thing);
}
@@ -64,14 +64,12 @@ public class CarouselItem : Gtk.FlowBoxChild {
add (grid);
- update_thing (thing);
+ update ();
- thing.notify.connect ((_) => {
- update_thing (thing);
- });
+ thing.notify.connect (update);
}
- public void update_thing (Models.Device thing) {
+ public void update () {
icon.gicon = new ThemedIcon (thing.icon);
switch (thing.power) {
From b4d2ba53d3787f03bb0bbf940ed65af1d7db06fc Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 27 Jun 2019 20:10:41 +0200
Subject: [PATCH 28/84] Refactor namespaces
---
src/MainWindow.vala | 6 +-
src/controllers/DeviceController.vala | 2 +-
src/controllers/DevicesController.vala | 2 +-
src/lifx/Controller.vala | 24 +-
src/lifx/Lamp.vala | 126 +++--
src/lifx/Packet.vala | 690 ++++++++++++-------------
src/lifx/Service.vala | 532 ++++++++++---------
src/models/Device.vala | 4 +-
src/models/Hub.vala | 4 +-
src/models/Lamp.vala | 28 +-
src/models/Thing.vala | 170 +++---
src/pages/DevicePage.vala | 8 +-
src/pages/HueBridgeOnboardingPage.vala | 2 +-
src/pages/LoadingPage.vala | 2 +-
src/philips/hue/Bridge.vala | 77 +--
src/philips/hue/BridgeController.vala | 319 ++++++------
src/philips/hue/Lamp.vala | 10 +-
src/philips/hue/Service.vala | 300 ++++++-----
src/types/Power.vala | 2 +-
src/views/DevicesView.vala | 10 +-
src/views/Overview.vala | 14 +-
src/views/WelcomeView.vala | 2 +-
src/widgets/Carousel.vala | 2 +-
src/widgets/CarouselItem.vala | 8 +-
src/widgets/Overlay.vala | 2 +-
25 files changed, 1182 insertions(+), 1164 deletions(-)
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 5380363..223e11a 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -25,7 +25,7 @@ public class MainWindow : Gtk.ApplicationWindow {
private Gtk.Stack stack;
private Gtk.Button return_button;
private History history;
- private Overlay overlay;
+ private Widgets.Overlay overlay;
public MainWindow (Gtk.Application application) {
instance = this;
@@ -65,7 +65,7 @@ public class MainWindow : Gtk.ApplicationWindow {
set_titlebar (headerbar);
title = Config.APP_NAME;
- overlay = Overlay.instance;
+ overlay = Widgets.Overlay.instance;
add (overlay);
stack = new Gtk.Stack ();
@@ -80,7 +80,7 @@ public class MainWindow : Gtk.ApplicationWindow {
// });
// }
- var overview = new Overview ();
+ var overview = new Views.Overview ();
stack.add_named (overview, _("Overview"));
history.add (_("Overview"));
diff --git a/src/controllers/DeviceController.vala b/src/controllers/DeviceController.vala
index 5a53802..ee2b379 100644
--- a/src/controllers/DeviceController.vala
+++ b/src/controllers/DeviceController.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public abstract class DeviceController : Object {
+public abstract class Controllers.DeviceController : Object {
protected Models.Device _device;
public DeviceController (Models.Device device) {
diff --git a/src/controllers/DevicesController.vala b/src/controllers/DevicesController.vala
index ce7f7f9..0049094 100644
--- a/src/controllers/DevicesController.vala
+++ b/src/controllers/DevicesController.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class DevicesController {
+public class Controllers.DevicesController {
private Lifx.Service lifx_service;
private Philips.Hue.Service philips_hue_service;
diff --git a/src/lifx/Controller.vala b/src/lifx/Controller.vala
index a128353..bc96531 100644
--- a/src/lifx/Controller.vala
+++ b/src/lifx/Controller.vala
@@ -19,22 +19,20 @@
* Authored by: Marius Meisenzahl
*/
-namespace Lifx {
- public class Controller : DeviceController {
- private Lifx.Service service;
+public class Lifx.Controller : Controllers.DeviceController {
+ private Lifx.Service service;
- public Controller (Models.Device device) {
- Object (
- device : device
- );
+ public Controller (Models.Device device) {
+ Object (
+ device : device
+ );
- service = Lifx.Service.instance;
- }
+ service = Lifx.Service.instance;
+ }
- public override void switch_power (bool on) {
- service.set_power (device as Lifx.Lamp, on ? 65535 : 0);
+ public override void switch_power (bool on) {
+ service.set_power (device as Lifx.Lamp, on ? 65535 : 0);
- _device.power = on ? Power.ON : Power.OFF;
- }
+ _device.power = on ? Types.Power.ON : Types.Power.OFF;
}
}
diff --git a/src/lifx/Lamp.vala b/src/lifx/Lamp.vala
index f5a33bd..673da9d 100644
--- a/src/lifx/Lamp.vala
+++ b/src/lifx/Lamp.vala
@@ -19,86 +19,84 @@
* Authored by: Marius Meisenzahl
*/
-namespace Lifx {
- public class Lamp : Models.Lamp {
- public Lamp () {
- icon = "com.github.manexim.home.lightbulb.lifx-symbolic";
- manufacturer = "LIFX";
- }
-
- public uint16 port {
- get {
- if (!_obj.has_member ("port")) {
- port = 56700;
- }
+public class Lifx.Lamp : Models.Lamp {
+ public Lamp () {
+ icon = "com.github.manexim.home.lightbulb.lifx-symbolic";
+ manufacturer = "LIFX";
+ }
- return (uint16) _obj.get_int_member ("port");
- }
- set {
- _obj.set_int_member ("port", value);
+ public uint16 port {
+ get {
+ if (!_obj.has_member ("port")) {
+ port = 56700;
}
- }
- public uint16 hue {
- get {
- return (uint16) _obj.get_int_member ("hue");
- }
- set {
- _obj.set_int_member ("hue", value);
- }
+ return (uint16) _obj.get_int_member ("port");
+ }
+ set {
+ _obj.set_int_member ("port", value);
}
+ }
- public uint16 saturation {
- get {
- return (uint16) _obj.get_int_member ("saturation");
- }
- set {
- _obj.set_int_member ("saturation", value);
- }
+ public uint16 hue {
+ get {
+ return (uint16) _obj.get_int_member ("hue");
+ }
+ set {
+ _obj.set_int_member ("hue", value);
}
+ }
- public uint16 brightness {
- get {
- return (uint16) _obj.get_int_member ("brightness");
- }
- set {
- _obj.set_int_member ("brightness", value);
- }
+ public uint16 saturation {
+ get {
+ return (uint16) _obj.get_int_member ("saturation");
+ }
+ set {
+ _obj.set_int_member ("saturation", value);
}
+ }
- public uint16 kelvin {
- get {
- return (uint16) _obj.get_int_member ("kelvin");
- }
- set {
- _obj.set_int_member ("kelvin", value);
- }
+ public uint16 brightness {
+ get {
+ return (uint16) _obj.get_int_member ("brightness");
+ }
+ set {
+ _obj.set_int_member ("brightness", value);
}
+ }
- public bool supports_infrared {
- get {
- if (!_obj.has_member ("supportsInfrared")) {
- supports_infrared = false;
- }
+ public uint16 kelvin {
+ get {
+ return (uint16) _obj.get_int_member ("kelvin");
+ }
+ set {
+ _obj.set_int_member ("kelvin", value);
+ }
+ }
- return _obj.get_boolean_member ("supportsInfrared");
+ public bool supports_infrared {
+ get {
+ if (!_obj.has_member ("supportsInfrared")) {
+ supports_infrared = false;
}
- set {
- _obj.set_boolean_member ("supportsInfrared", value);
- }
- }
- public bool supports_multizone {
- get {
- if (!_obj.has_member ("supportsMultizone")) {
- supports_multizone = false;
- }
+ return _obj.get_boolean_member ("supportsInfrared");
+ }
+ set {
+ _obj.set_boolean_member ("supportsInfrared", value);
+ }
+ }
- return _obj.get_boolean_member ("supportsMultizone");
- }
- set {
- _obj.set_boolean_member ("supportsMultizone", value);
+ public bool supports_multizone {
+ get {
+ if (!_obj.has_member ("supportsMultizone")) {
+ supports_multizone = false;
}
+
+ return _obj.get_boolean_member ("supportsMultizone");
+ }
+ set {
+ _obj.set_boolean_member ("supportsMultizone", value);
}
}
}
diff --git a/src/lifx/Packet.vala b/src/lifx/Packet.vala
index fcd3f9f..f9879d5 100644
--- a/src/lifx/Packet.vala
+++ b/src/lifx/Packet.vala
@@ -19,383 +19,381 @@
* Authored by: Marius Meisenzahl
*/
-namespace Lifx {
- public class Packet {
- /* frame */
- public uint16 size;
- public uint16 protocol;
- public bool addressable;
- public bool tagged;
- public uint32 source;
- /* frame address */
- public string target;
- public bool res_required;
- public bool ack_required;
- public uint8 sequence;
- /* protocol header */
- public uint16 type;
- /* payload */
- public Json.Object payload;
-
- public Packet () {
- target = "00:00:00:00:00:00:00:00";
- payload = new Json.Object ();
+public class Lifx.Packet {
+ /* frame */
+ public uint16 size;
+ public uint16 protocol;
+ public bool addressable;
+ public bool tagged;
+ public uint32 source;
+ /* frame address */
+ public string target;
+ public bool res_required;
+ public bool ack_required;
+ public uint8 sequence;
+ /* protocol header */
+ public uint16 type;
+ /* payload */
+ public Json.Object payload;
+
+ public Packet () {
+ target = "00:00:00:00:00:00:00:00";
+ payload = new Json.Object ();
+ }
+
+ public Packet.from (uint8[] array) {
+ var buffer = new Buffer.from (array);
+
+ if (buffer.length < 36) {
+ // TODO error
}
- public Packet.from (uint8[] array) {
- var buffer = new Buffer.from (array);
+ // frame
+ size = buffer.read_uint16_le (0);
+ if (size != buffer.length) {
+ // TODO error
+ }
- if (buffer.length < 36) {
- // TODO error
- }
+ tagged = ((buffer.read_uint8 (3) & 32) == 1) ? true : false;
+ addressable = ((buffer.read_uint8 (3) & 16) == 1) ? true : false;
+ protocol = buffer.read_uint16_le (2) & 0xfff;
+ source = buffer.read_uint32_le (4);
+
+ // frame address
+ string[] target_parts = new string[8];
+ for (uint8 i = 8; i < 16; i++) {
+ target_parts[i - 8] = buffer.slice (i, i + 1).to_string ("%02x").up ();
+ }
+ target = string.joinv (":", target_parts);
+ res_required = ((buffer.read_uint8 (22) & 1) == 1) ? true : false;
+ ack_required = ((buffer.read_uint8 (22) & 2) == 1) ? true : false;
+ sequence = buffer.read_uint8 (23);
+
+ // header
+ type = buffer.read_uint16_le (32);
+
+ // payload
+ payload = new Json.Object ();
+ const uint8 i = 36;
+
+ switch (type) {
+ case 3: // StateService
+ payload.set_int_member ("service", buffer.read_uint8 (i));
+ payload.set_int_member ("port", buffer.read_uint32_le (i + 1));
+ break;
+ case 13: // StateHostInfo
+ payload.set_double_member ("signal", buffer.read_float_le (i));
+ payload.set_int_member ("tx", buffer.read_uint32_le (i + 4));
+ payload.set_int_member ("rx", buffer.read_uint32_le (i + 8));
+ break;
+ case 15: // StateHostFirmware
+ payload.set_double_member ("signal", buffer.read_float_le (i));
+ payload.set_int_member ("tx", buffer.read_uint32_le (i + 4));
+ payload.set_int_member ("rx", buffer.read_uint32_le (i + 8));
+ break;
+ case 22: // StatePower
+ Types.Power power = Types.Power.UNKNOWN;
+ uint16 power_t = buffer.read_uint16_le (i);
+ if (power_t > 0) {
+ power = Types.Power.ON;
+ } else if (power_t == 0) {
+ power = Types.Power.OFF;
+ }
+ payload.set_int_member ("level", power);
+ break;
+ case 25: // StateLabel
+ payload.set_string_member ("label", (string) buffer.slice (i, i + 32).raw);
+ break;
+ case 33: // StateVersion
+ uint32 product = buffer.read_uint32_le (i + 4);
+ string model = "";
+ bool supports_color = false;
+ bool supports_infrared = false;
+ bool supports_multizone = false;
+
+ // https://lan.developer.lifx.com/v2.0/docs/lifx-products
+ switch (product) {
+ case 1:
+ model = "Original 1000";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 3:
+ model = "Color 650";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 10:
+ model = "White 800 (Low Voltage)";
+ supports_color = false;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 11:
+ model = "White 800 (High Voltage)";
+ supports_color = false;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 18:
+ model = "White 900 BR30 (Low Voltage)";
+ supports_color = false;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 20:
+ model = "Color 1000 BR30";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 22:
+ model = "Color 1000";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 27:
+ case 43:
+ model = "LIFX A19";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 28:
+ case 44:
+ model = "LIFX BR30";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 29:
+ case 45:
+ model = "LIFX+ A19";
+ supports_color = true;
+ supports_infrared = true;
+ supports_multizone = false;
+ break;
+ case 30:
+ case 46:
+ model = "LIFX+ BR30";
+ supports_color = true;
+ supports_infrared = true;
+ supports_multizone = false;
+ break;
+ case 31:
+ model = "LIFX Z";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = true;
+ break;
+ case 32:
+ model = "LIFX Z 2";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = true;
+ break;
+ case 36:
+ case 37:
+ model = "LIFX Downlight";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 38:
+ model = "LIFX Beam";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = true;
+ break;
+ case 49:
+ case 59:
+ model = "LIFX Mini";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 50:
+ case 60:
+ model = "LIFX Mini Day and Dusk";
+ supports_color = false;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 51:
+ case 61:
+ model = "LIFX Mini White";
+ supports_color = false;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 52:
+ model = "LIFX GU10";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ case 55:
+ model = "LIFX Tile";
+ supports_color = true;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ default:
+ model = "unknown";
+ supports_color = false;
+ supports_infrared = false;
+ supports_multizone = false;
+ break;
+ }
+ payload.set_string_member ("manufacturer", "LIFX");
+ payload.set_string_member ("model", model);
+ payload.set_boolean_member ("supportsColor", supports_color);
+ payload.set_boolean_member ("supportsInfrared", supports_infrared);
+ payload.set_boolean_member ("supportsMultizone", supports_multizone);
+ break;
+ case 107: // State
+ payload.set_int_member ("hue", buffer.read_uint16_le (i));
+ payload.set_int_member ("saturation", buffer.read_uint16_le (i + 2));
+ payload.set_int_member ("brightness", buffer.read_uint16_le (i + 4));
+ payload.set_int_member ("kelvin", buffer.read_uint16_le (i + 6));
+
+ // power
+ Types.Power power = Types.Power.UNKNOWN;
+ uint16 power_t = buffer.read_uint16_le (i + 10);
+ if (power_t > 0) {
+ power = Types.Power.ON;
+ } else if (power_t == 0) {
+ power = Types.Power.OFF;
+ }
+ payload.set_int_member ("power", power);
+
+ payload.set_string_member ("label", (string) buffer.slice (i + 12, i + 44).raw);
+ break;
+ case 118: // StatePower
+ Types.Power power = Types.Power.UNKNOWN;
+ uint16 power_t = buffer.read_uint16_le (i);
+ if (power_t > 0) {
+ power = Types.Power.ON;
+ } else if (power_t == 0) {
+ power = Types.Power.OFF;
+ }
+ payload.set_int_member ("level", power);
+ break;
+ default:
+ var a = new Json.Array ();
+ var raw = buffer.slice (i, (uint8) size).raw;
+
+ for (uint8 j = 0; j < raw.length; j++) {
+ a.add_int_element (raw[j]);
+ }
+
+ payload.set_array_member ("raw", a);
+ break;
+ }
+ }
+
+ public uint8[] raw {
+ owned get {
+ uint8 ack_required = ack_required ? 1 : 0;
+ uint8 res_required = res_required ? 1 : 0;
+ uint8 tagged = tagged ? 1 : 0;
+ uint8[] target_parts = new uint8[8];
+ target.scanf (
+ "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
+ &target_parts[0],
+ &target_parts[1],
+ &target_parts[2],
+ &target_parts[3],
+ &target_parts[4],
+ &target_parts[5],
+ &target_parts[6],
+ &target_parts[7]
+ );
// frame
- size = buffer.read_uint16_le (0);
- if (size != buffer.length) {
- // TODO error
- }
+ uint8 origin = 0;
+ uint8 addressable = 1;
+ uint16 protocol = 1024;
- tagged = ((buffer.read_uint8 (3) & 32) == 1) ? true : false;
- addressable = ((buffer.read_uint8 (3) & 16) == 1) ? true : false;
- protocol = buffer.read_uint16_le (2) & 0xfff;
- source = buffer.read_uint32_le (4);
+ Buffer buf1 = new Buffer.alloc (8);
+ uint16 buf1n2 = protocol | (origin << 14) | (tagged << 13) | (addressable << 12);
+ buf1.write_uint16_le (buf1n2, 2);
+ buf1.write_uint32_le (source, 4);
// frame address
- string[] target_parts = new string[8];
- for (uint8 i = 8; i < 16; i++) {
- target_parts[i - 8] = buffer.slice (i, i + 1).to_string ("%02x").up ();
+ Buffer buf2 = new Buffer.alloc (16);
+ for (uint8 i = 0; i < 8; i++) {
+ buf2.write_uint8(target_parts[i], i);
}
- target = string.joinv (":", target_parts);
- res_required = ((buffer.read_uint8 (22) & 1) == 1) ? true : false;
- ack_required = ((buffer.read_uint8 (22) & 2) == 1) ? true : false;
- sequence = buffer.read_uint8 (23);
// header
- type = buffer.read_uint16_le (32);
+ Buffer buf3 = new Buffer.alloc(12);
+ buf3.write_uint16_le (type, 8);
+
+ uint8 byte14 = (ack_required << 1) | res_required;
+ buf2.write_uint8 (byte14, 14);
+ buf2.write_uint8 (sequence, 15);
// payload
- payload = new Json.Object ();
- const uint8 i = 36;
+ Buffer buf4 = new Buffer ();
switch (type) {
- case 3: // StateService
- payload.set_int_member ("service", buffer.read_uint8 (i));
- payload.set_int_member ("port", buffer.read_uint32_le (i + 1));
- break;
- case 13: // StateHostInfo
- payload.set_double_member ("signal", buffer.read_float_le (i));
- payload.set_int_member ("tx", buffer.read_uint32_le (i + 4));
- payload.set_int_member ("rx", buffer.read_uint32_le (i + 8));
- break;
- case 15: // StateHostFirmware
- payload.set_double_member ("signal", buffer.read_float_le (i));
- payload.set_int_member ("tx", buffer.read_uint32_le (i + 4));
- payload.set_int_member ("rx", buffer.read_uint32_le (i + 8));
+ case 2: // GetService
break;
- case 22: // StatePower
- Power power = Power.UNKNOWN;
- uint16 power_t = buffer.read_uint16_le (i);
- if (power_t > 0) {
- power = Power.ON;
- } else if (power_t == 0) {
- power = Power.OFF;
- }
- payload.set_int_member ("level", power);
+ case 21: // SetPower
+ buf4 = new Buffer.alloc (2);
+ buf4.write_uint16_le ((uint16) payload.get_int_member ("level"), 0);
break;
- case 25: // StateLabel
- payload.set_string_member ("label", (string) buffer.slice (i, i + 32).raw);
- break;
- case 33: // StateVersion
- uint32 product = buffer.read_uint32_le (i + 4);
- string model = "";
- bool supports_color = false;
- bool supports_infrared = false;
- bool supports_multizone = false;
-
- // https://lan.developer.lifx.com/v2.0/docs/lifx-products
- switch (product) {
- case 1:
- model = "Original 1000";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 3:
- model = "Color 650";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 10:
- model = "White 800 (Low Voltage)";
- supports_color = false;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 11:
- model = "White 800 (High Voltage)";
- supports_color = false;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 18:
- model = "White 900 BR30 (Low Voltage)";
- supports_color = false;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 20:
- model = "Color 1000 BR30";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 22:
- model = "Color 1000";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 27:
- case 43:
- model = "LIFX A19";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 28:
- case 44:
- model = "LIFX BR30";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 29:
- case 45:
- model = "LIFX+ A19";
- supports_color = true;
- supports_infrared = true;
- supports_multizone = false;
- break;
- case 30:
- case 46:
- model = "LIFX+ BR30";
- supports_color = true;
- supports_infrared = true;
- supports_multizone = false;
- break;
- case 31:
- model = "LIFX Z";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = true;
- break;
- case 32:
- model = "LIFX Z 2";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = true;
- break;
- case 36:
- case 37:
- model = "LIFX Downlight";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 38:
- model = "LIFX Beam";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = true;
- break;
- case 49:
- case 59:
- model = "LIFX Mini";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 50:
- case 60:
- model = "LIFX Mini Day and Dusk";
- supports_color = false;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 51:
- case 61:
- model = "LIFX Mini White";
- supports_color = false;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 52:
- model = "LIFX GU10";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- case 55:
- model = "LIFX Tile";
- supports_color = true;
- supports_infrared = false;
- supports_multizone = false;
- break;
- default:
- model = "unknown";
- supports_color = false;
- supports_infrared = false;
- supports_multizone = false;
- break;
- }
- payload.set_string_member ("manufacturer", "LIFX");
- payload.set_string_member ("model", model);
- payload.set_boolean_member ("supportsColor", supports_color);
- payload.set_boolean_member ("supportsInfrared", supports_infrared);
- payload.set_boolean_member ("supportsMultizone", supports_multizone);
- break;
- case 107: // State
- payload.set_int_member ("hue", buffer.read_uint16_le (i));
- payload.set_int_member ("saturation", buffer.read_uint16_le (i + 2));
- payload.set_int_member ("brightness", buffer.read_uint16_le (i + 4));
- payload.set_int_member ("kelvin", buffer.read_uint16_le (i + 6));
-
- // power
- Power power = Power.UNKNOWN;
- uint16 power_t = buffer.read_uint16_le (i + 10);
- if (power_t > 0) {
- power = Power.ON;
- } else if (power_t == 0) {
- power = Power.OFF;
- }
- payload.set_int_member ("power", power);
-
- payload.set_string_member ("label", (string) buffer.slice (i + 12, i + 44).raw);
- break;
- case 118: // StatePower
- Power power = Power.UNKNOWN;
- uint16 power_t = buffer.read_uint16_le (i);
- if (power_t > 0) {
- power = Power.ON;
- } else if (power_t == 0) {
- power = Power.OFF;
- }
- payload.set_int_member ("level", power);
+ case 117: // SetPower
+ buf4 = new Buffer.alloc (6);
+ buf4.write_uint16_le ((uint16) payload.get_int_member ("level"), 0);
+ buf4.write_uint32_le ((uint32) payload.get_int_member ("duration"), 2);
break;
default:
- var a = new Json.Array ();
- var raw = buffer.slice (i, (uint8) size).raw;
-
- for (uint8 j = 0; j < raw.length; j++) {
- a.add_int_element (raw[j]);
- }
-
- payload.set_array_member ("raw", a);
break;
}
- }
-
- public uint8[] raw {
- owned get {
- uint8 ack_required = ack_required ? 1 : 0;
- uint8 res_required = res_required ? 1 : 0;
- uint8 tagged = tagged ? 1 : 0;
- uint8[] target_parts = new uint8[8];
- target.scanf (
- "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x",
- &target_parts[0],
- &target_parts[1],
- &target_parts[2],
- &target_parts[3],
- &target_parts[4],
- &target_parts[5],
- &target_parts[6],
- &target_parts[7]
- );
-
- // frame
- uint8 origin = 0;
- uint8 addressable = 1;
- uint16 protocol = 1024;
-
- Buffer buf1 = new Buffer.alloc (8);
- uint16 buf1n2 = protocol | (origin << 14) | (tagged << 13) | (addressable << 12);
- buf1.write_uint16_le (buf1n2, 2);
- buf1.write_uint32_le (source, 4);
-
- // frame address
- Buffer buf2 = new Buffer.alloc (16);
- for (uint8 i = 0; i < 8; i++) {
- buf2.write_uint8(target_parts[i], i);
- }
- // header
- Buffer buf3 = new Buffer.alloc(12);
- buf3.write_uint16_le (type, 8);
+ Buffer buffer = buf1.concat (buf2);
+ buffer = buffer.concat (buf3);
+ buffer = buffer.concat (buf4);
- uint8 byte14 = (ack_required << 1) | res_required;
- buf2.write_uint8 (byte14, 14);
- buf2.write_uint8 (sequence, 15);
+ uint16 size = (uint16) buffer.length;
+ buffer.write_uint16_le (size, 0);
- // payload
- Buffer buf4 = new Buffer ();
-
- switch (type) {
- case 2: // GetService
- break;
- case 21: // SetPower
- buf4 = new Buffer.alloc (2);
- buf4.write_uint16_le ((uint16) payload.get_int_member ("level"), 0);
- break;
- case 117: // SetPower
- buf4 = new Buffer.alloc (6);
- buf4.write_uint16_le ((uint16) payload.get_int_member ("level"), 0);
- buf4.write_uint32_le ((uint32) payload.get_int_member ("duration"), 2);
- break;
- default:
- break;
- }
-
- Buffer buffer = buf1.concat (buf2);
- buffer = buffer.concat (buf3);
- buffer = buffer.concat (buf4);
-
- uint16 size = (uint16) buffer.length;
- buffer.write_uint16_le (size, 0);
-
- return buffer.raw;
- }
+ return buffer.raw;
}
+ }
- public string to_string () {
- size_t length;
+ public string to_string () {
+ size_t length;
- var gen = new Json.Generator ();
- var root = new Json.Node (Json.NodeType.OBJECT);
- var object = new Json.Object ();
- root.set_object (object);
- gen.set_root (root);
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ var object = new Json.Object ();
+ root.set_object (object);
+ gen.set_root (root);
- // frame
- object.set_int_member ("size", size);
- object.set_boolean_member ("addressable", addressable);
- object.set_boolean_member ("tagged", tagged);
- object.set_int_member ("source", source);
+ // frame
+ object.set_int_member ("size", size);
+ object.set_boolean_member ("addressable", addressable);
+ object.set_boolean_member ("tagged", tagged);
+ object.set_int_member ("source", source);
- // frame address
- object.set_string_member ("target", target);
- object.set_boolean_member ("res_required", res_required);
- object.set_boolean_member ("ack_required", ack_required);
- object.set_int_member ("sequence", sequence);
+ // frame address
+ object.set_string_member ("target", target);
+ object.set_boolean_member ("res_required", res_required);
+ object.set_boolean_member ("ack_required", ack_required);
+ object.set_int_member ("sequence", sequence);
- // protocol
- object.set_int_member ("type", type);
+ // protocol
+ object.set_int_member ("type", type);
- // payload
- object.set_object_member ("payload", payload);
+ // payload
+ object.set_object_member ("payload", payload);
- return gen.to_data (out length);
- }
+ return gen.to_data (out length);
}
}
diff --git a/src/lifx/Service.vala b/src/lifx/Service.vala
index ad5ad73..30c1ab6 100644
--- a/src/lifx/Service.vala
+++ b/src/lifx/Service.vala
@@ -19,291 +19,289 @@
* Authored by: Marius Meisenzahl
*/
-namespace Lifx {
- public class Service {
- private static Service? _instance;
- public bool debug = false;
- private uint32 source = 0;
- private Gee.HashMap device_map;
- private Socket socket;
-
- public signal void on_new_device (Models.Device device);
- public signal void on_updated_device (Models.Device device);
-
- public static Service instance {
- get {
- if (_instance == null) {
- _instance = new Service ();
- }
-
- return _instance;
+public class Lifx.Service {
+ private static Service? _instance;
+ public bool debug = false;
+ private uint32 source = 0;
+ private Gee.HashMap device_map;
+ private Socket socket;
+
+ public signal void on_new_device (Models.Device device);
+ public signal void on_updated_device (Models.Device device);
+
+ public static Service instance {
+ get {
+ if (_instance == null) {
+ _instance = new Service ();
}
+
+ return _instance;
}
+ }
- public void set_power (Lifx.Lamp lamp, uint16 level) {
- var packet = new Lifx.Packet ();
- packet.type = 21;
- packet.tagged = false;
- packet.addressable = true;
- packet.target = lamp.id;
- packet.ack_required = false;
- packet.res_required = false;
- packet.source = source++;
- packet.payload.set_int_member ("level", level);
-
- try {
- socket.send_to (
- new InetSocketAddress (
- new InetAddress.from_string ("255.255.255.255"), lamp.port),
- packet.raw
- );
- } catch (Error e) {
- stderr.printf (e.message);
- }
+ public void set_power (Lifx.Lamp lamp, uint16 level) {
+ var packet = new Lifx.Packet ();
+ packet.type = 21;
+ packet.tagged = false;
+ packet.addressable = true;
+ packet.target = lamp.id;
+ packet.ack_required = false;
+ packet.res_required = false;
+ packet.source = source++;
+ packet.payload.set_int_member ("level", level);
+
+ try {
+ socket.send_to (
+ new InetSocketAddress (
+ new InetAddress.from_string ("255.255.255.255"), lamp.port),
+ packet.raw
+ );
+ } catch (Error e) {
+ stderr.printf (e.message);
}
+ }
- private Service () {
- device_map = new Gee.HashMap ();
+ private Service () {
+ device_map = new Gee.HashMap ();
- setup_socket ();
- listen ();
- discover ();
- }
+ setup_socket ();
+ listen ();
+ discover ();
+ }
- private void setup_socket () {
- try {
- socket = new Socket (SocketFamily.IPV4, SocketType.DATAGRAM, SocketProtocol.UDP);
- socket.broadcast = true;
-
- #if HAVE_SO_REUSEPORT
- int32 enable = 1;
- Posix.setsockopt(
- socket.fd, Platform.Socket.SOL_SOCKET, Platform.Socket.SO_REUSEPORT, &enable,
- (Posix.socklen_t) sizeof(int)
- );
- #endif
-
- var sa = new InetSocketAddress (new InetAddress.any (SocketFamily.IPV4), 56700);
- socket.bind (sa, true);
- } catch (Error e) {
- stderr.printf (e.message);
- }
+ private void setup_socket () {
+ try {
+ socket = new Socket (SocketFamily.IPV4, SocketType.DATAGRAM, SocketProtocol.UDP);
+ socket.broadcast = true;
+
+ #if HAVE_SO_REUSEPORT
+ int32 enable = 1;
+ Posix.setsockopt(
+ socket.fd, Platform.Socket.SOL_SOCKET, Platform.Socket.SO_REUSEPORT, &enable,
+ (Posix.socklen_t) sizeof(int)
+ );
+ #endif
+
+ var sa = new InetSocketAddress (new InetAddress.any (SocketFamily.IPV4), 56700);
+ socket.bind (sa, true);
+ } catch (Error e) {
+ stderr.printf (e.message);
}
+ }
- private void listen () {
- new Thread (null, () => {
- while (true) {
- var source = socket.create_source (IOCondition.IN);
- source.set_callback ((s, cond) => {
- try {
- uint8 buffer[256];
- s.receive (buffer);
-
- uint16 size = buffer[0];
- size += buffer[1] << 1;
- uint8[] raw = buffer[0:size];
-
- Lifx.Packet packet = new Lifx.Packet.from (raw);
- switch (packet.type) {
- case 3: // StateService
- if (!device_map.has_key (packet.target)) {
- var device = new Lifx.Lamp ();
- device.id = packet.target;
- device.port = (uint16) packet.payload.get_int_member ("port");
- device.manufacturer = "LIFX";
-
- get_version (device);
- get_state (device);
-
- device_map.set (device.id, device);
- on_new_device (device);
- }
- break;
- case 22: // StatePower
- if (device_map.has_key (packet.target)) {
- ((Lifx.Lamp) device_map.get (packet.target)).power =
- (Power) packet.payload.get_int_member ("level");
-
- on_updated_device (device_map.get (packet.target));
- } else {
- var device = new Lifx.Lamp ();
- device.id = packet.target;
- device.power = (Power) packet.payload.get_int_member ("level");
-
- device_map.set (device.id, device);
- on_new_device (device);
- }
- break;
- case 25: // StateLabel
- if (device_map.has_key (packet.target)) {
- device_map.get (packet.target).name = packet.payload.get_string_member ("label");
- ((Lifx.Lamp) device_map.get (packet.target)).manufacturer = "LIFX";
-
- on_updated_device (device_map.get (packet.target));
- } else {
- var device = new Lifx.Lamp ();
- device.id = packet.target;
- device.name = packet.payload.get_string_member ("label");
- device.manufacturer = "LIFX";
-
- device_map.set (device.id, device);
- on_new_device (device);
- }
- break;
- case 33: // StateVersion
- if (device_map.has_key (packet.target)) {
- ((Lifx.Lamp) device_map.get (packet.target)).manufacturer =
- packet.payload.get_string_member ("manufacturer");
- ((Lifx.Lamp) device_map.get (packet.target)).model =
- packet.payload.get_string_member ("model");
- ((Lifx.Lamp) device_map.get (packet.target)).supports_color =
- packet.payload.get_boolean_member ("supportsColor");
- ((Lifx.Lamp) device_map.get (packet.target)).supports_infrared =
- packet.payload.get_boolean_member ("supportsInfrared");
- ((Lifx.Lamp) device_map.get (packet.target)).supports_multizone =
- packet.payload.get_boolean_member ("supportsMultizone");
-
- on_updated_device (device_map.get (packet.target));
- } else {
- var device = new Lifx.Lamp ();
- device.id = packet.target;
- device.manufacturer = packet.payload.get_string_member ("manufacturer");
- device.model = packet.payload.get_string_member ("model");
- device.supports_color = packet.payload.get_boolean_member ("supportsColor");
- device.supports_infrared =
- packet.payload.get_boolean_member ("supportsInfrared");
- device.supports_multizone =
- packet.payload.get_boolean_member ("supportsMultizone");
-
- device_map.set (device.id, device);
- on_new_device (device);
- }
- break;
- case 107: // State
- if (device_map.has_key (packet.target)) {
- device_map.get (packet.target).name = packet.payload.get_string_member ("label");
- ((Lifx.Lamp) device_map.get (packet.target)).manufacturer = "LIFX";
- ((Lifx.Lamp) device_map.get (packet.target)).power =
- (Power) packet.payload.get_int_member ("power");
- ((Lifx.Lamp) device_map.get (packet.target)).hue =
- (uint16) packet.payload.get_int_member ("hue");
- ((Lifx.Lamp) device_map.get (packet.target)).saturation =
- (uint16) packet.payload.get_int_member ("saturation");
- ((Lifx.Lamp) device_map.get (packet.target)).brightness =
- (uint16) packet.payload.get_int_member ("brightness");
- ((Lifx.Lamp) device_map.get (packet.target)).kelvin =
- (uint16) packet.payload.get_int_member ("kelvin");
-
- on_updated_device (device_map.get (packet.target));
- } else {
- var device = new Lifx.Lamp ();
- device.id = packet.target;
- device.name = packet.payload.get_string_member ("label");
- device.manufacturer = "LIFX";
- device.power = (Power) packet.payload.get_int_member ("power");
- device.hue = (uint16) packet.payload.get_int_member ("hue");
- device.saturation = (uint16) packet.payload.get_int_member ("saturation");
- device.brightness = (uint16) packet.payload.get_int_member ("brightness");
- device.kelvin = (uint16) packet.payload.get_int_member ("kelvin");
-
- device_map.set (device.id, device);
- on_new_device (device);
- }
- break;
- case 118: // StatePower
- if (device_map.has_key (packet.target)) {
- ((Lifx.Lamp) device_map.get (packet.target)).power =
- (Power) packet.payload.get_int_member ("level");
-
- on_updated_device (device_map.get (packet.target));
- } else {
- var device = new Lifx.Lamp ();
- device.id = packet.target;
- device.power = (Power) packet.payload.get_int_member ("level");
-
- device_map.set (device.id, device);
- on_new_device (device);
- }
- break;
- default:
- break;
- }
-
- if (debug) {
- print ("%s\n", packet.to_string ());
- }
- } catch (Error e) {
- stderr.printf (e.message);
+ private void listen () {
+ new Thread (null, () => {
+ while (true) {
+ var source = socket.create_source (IOCondition.IN);
+ source.set_callback ((s, cond) => {
+ try {
+ uint8 buffer[256];
+ s.receive (buffer);
+
+ uint16 size = buffer[0];
+ size += buffer[1] << 1;
+ uint8[] raw = buffer[0:size];
+
+ Lifx.Packet packet = new Lifx.Packet.from (raw);
+ switch (packet.type) {
+ case 3: // StateService
+ if (!device_map.has_key (packet.target)) {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.port = (uint16) packet.payload.get_int_member ("port");
+ device.manufacturer = "LIFX";
+
+ get_version (device);
+ get_state (device);
+
+ device_map.set (device.id, device);
+ on_new_device (device);
+ }
+ break;
+ case 22: // StatePower
+ if (device_map.has_key (packet.target)) {
+ ((Lifx.Lamp) device_map.get (packet.target)).power =
+ (Types.Power) packet.payload.get_int_member ("level");
+
+ on_updated_device (device_map.get (packet.target));
+ } else {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.power = (Types.Power) packet.payload.get_int_member ("level");
+
+ device_map.set (device.id, device);
+ on_new_device (device);
+ }
+ break;
+ case 25: // StateLabel
+ if (device_map.has_key (packet.target)) {
+ device_map.get (packet.target).name = packet.payload.get_string_member ("label");
+ ((Lifx.Lamp) device_map.get (packet.target)).manufacturer = "LIFX";
+
+ on_updated_device (device_map.get (packet.target));
+ } else {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.name = packet.payload.get_string_member ("label");
+ device.manufacturer = "LIFX";
+
+ device_map.set (device.id, device);
+ on_new_device (device);
+ }
+ break;
+ case 33: // StateVersion
+ if (device_map.has_key (packet.target)) {
+ ((Lifx.Lamp) device_map.get (packet.target)).manufacturer =
+ packet.payload.get_string_member ("manufacturer");
+ ((Lifx.Lamp) device_map.get (packet.target)).model =
+ packet.payload.get_string_member ("model");
+ ((Lifx.Lamp) device_map.get (packet.target)).supports_color =
+ packet.payload.get_boolean_member ("supportsColor");
+ ((Lifx.Lamp) device_map.get (packet.target)).supports_infrared =
+ packet.payload.get_boolean_member ("supportsInfrared");
+ ((Lifx.Lamp) device_map.get (packet.target)).supports_multizone =
+ packet.payload.get_boolean_member ("supportsMultizone");
+
+ on_updated_device (device_map.get (packet.target));
+ } else {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.manufacturer = packet.payload.get_string_member ("manufacturer");
+ device.model = packet.payload.get_string_member ("model");
+ device.supports_color = packet.payload.get_boolean_member ("supportsColor");
+ device.supports_infrared =
+ packet.payload.get_boolean_member ("supportsInfrared");
+ device.supports_multizone =
+ packet.payload.get_boolean_member ("supportsMultizone");
+
+ device_map.set (device.id, device);
+ on_new_device (device);
+ }
+ break;
+ case 107: // State
+ if (device_map.has_key (packet.target)) {
+ device_map.get (packet.target).name = packet.payload.get_string_member ("label");
+ ((Lifx.Lamp) device_map.get (packet.target)).manufacturer = "LIFX";
+ ((Lifx.Lamp) device_map.get (packet.target)).power =
+ (Types.Power) packet.payload.get_int_member ("power");
+ ((Lifx.Lamp) device_map.get (packet.target)).hue =
+ (uint16) packet.payload.get_int_member ("hue");
+ ((Lifx.Lamp) device_map.get (packet.target)).saturation =
+ (uint16) packet.payload.get_int_member ("saturation");
+ ((Lifx.Lamp) device_map.get (packet.target)).brightness =
+ (uint16) packet.payload.get_int_member ("brightness");
+ ((Lifx.Lamp) device_map.get (packet.target)).kelvin =
+ (uint16) packet.payload.get_int_member ("kelvin");
+
+ on_updated_device (device_map.get (packet.target));
+ } else {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.name = packet.payload.get_string_member ("label");
+ device.manufacturer = "LIFX";
+ device.power = (Types.Power) packet.payload.get_int_member ("power");
+ device.hue = (uint16) packet.payload.get_int_member ("hue");
+ device.saturation = (uint16) packet.payload.get_int_member ("saturation");
+ device.brightness = (uint16) packet.payload.get_int_member ("brightness");
+ device.kelvin = (uint16) packet.payload.get_int_member ("kelvin");
+
+ device_map.set (device.id, device);
+ on_new_device (device);
+ }
+ break;
+ case 118: // StatePower
+ if (device_map.has_key (packet.target)) {
+ ((Lifx.Lamp) device_map.get (packet.target)).power =
+ (Types.Power) packet.payload.get_int_member ("level");
+
+ on_updated_device (device_map.get (packet.target));
+ } else {
+ var device = new Lifx.Lamp ();
+ device.id = packet.target;
+ device.power = (Types.Power) packet.payload.get_int_member ("level");
+
+ device_map.set (device.id, device);
+ on_new_device (device);
+ }
+ break;
+ default:
+ break;
}
- return true;
- });
- source.attach (MainContext.default ());
-
- new MainLoop ().run ();
- }
- });
- }
- private void discover () {
- new Thread (null, () => {
- while (true) {
- get_service ();
+ if (debug) {
+ print ("%s\n", packet.to_string ());
+ }
+ } catch (Error e) {
+ stderr.printf (e.message);
+ }
+ return true;
+ });
+ source.attach (MainContext.default ());
+
+ new MainLoop ().run ();
+ }
+ });
+ }
- Thread.usleep (30 * 1000 * 1000);
- }
- });
- }
+ private void discover () {
+ new Thread (null, () => {
+ while (true) {
+ get_service ();
- private void get_service () {
- var packet = new Lifx.Packet ();
- packet.type = 2;
- packet.tagged = true;
-
- try {
- socket.send_to (
- new InetSocketAddress (
- new InetAddress.from_string ("255.255.255.255"), 56700),
- packet.raw
- );
- } catch (Error e) {
- stderr.printf (e.message);
+ Thread.usleep (30 * 1000 * 1000);
}
+ });
+ }
+
+ private void get_service () {
+ var packet = new Lifx.Packet ();
+ packet.type = 2;
+ packet.tagged = true;
+
+ try {
+ socket.send_to (
+ new InetSocketAddress (
+ new InetAddress.from_string ("255.255.255.255"), 56700),
+ packet.raw
+ );
+ } catch (Error e) {
+ stderr.printf (e.message);
}
+ }
- private void get_version (Lifx.Lamp lamp) {
- var packet = new Lifx.Packet ();
- packet.type = 32;
- packet.tagged = true;
- packet.addressable = true;
- packet.source = source++;
-
- try {
- socket.send_to (
- new InetSocketAddress (
- new InetAddress.from_string ("255.255.255.255"), lamp.port),
- packet.raw
- );
- } catch (Error e) {
- stderr.printf (e.message);
- }
+ private void get_version (Lifx.Lamp lamp) {
+ var packet = new Lifx.Packet ();
+ packet.type = 32;
+ packet.tagged = true;
+ packet.addressable = true;
+ packet.source = source++;
+
+ try {
+ socket.send_to (
+ new InetSocketAddress (
+ new InetAddress.from_string ("255.255.255.255"), lamp.port),
+ packet.raw
+ );
+ } catch (Error e) {
+ stderr.printf (e.message);
}
+ }
- private void get_state (Lifx.Lamp lamp) {
- var packet = new Lifx.Packet ();
- packet.type = 101;
- packet.tagged = true;
- packet.addressable = true;
- packet.source = source++;
-
- try {
- socket.send_to (
- new InetSocketAddress (
- new InetAddress.from_string ("255.255.255.255"), lamp.port),
- packet.raw
- );
- } catch (Error e) {
- stderr.printf (e.message);
- }
+ private void get_state (Lifx.Lamp lamp) {
+ var packet = new Lifx.Packet ();
+ packet.type = 101;
+ packet.tagged = true;
+ packet.addressable = true;
+ packet.source = source++;
+
+ try {
+ socket.send_to (
+ new InetSocketAddress (
+ new InetAddress.from_string ("255.255.255.255"), lamp.port),
+ packet.raw
+ );
+ } catch (Error e) {
+ stderr.printf (e.message);
}
}
}
diff --git a/src/models/Device.vala b/src/models/Device.vala
index e8069f3..a0eb3b7 100644
--- a/src/models/Device.vala
+++ b/src/models/Device.vala
@@ -19,6 +19,4 @@
* Authored by: Marius Meisenzahl
*/
-namespace Models {
- public class Device : Thing {}
-}
+public class Models.Device : Models.Thing {}
diff --git a/src/models/Hub.vala b/src/models/Hub.vala
index 1025868..270775d 100644
--- a/src/models/Hub.vala
+++ b/src/models/Hub.vala
@@ -19,6 +19,4 @@
* Authored by: Marius Meisenzahl
*/
-namespace Models {
- public class Hub : Thing {}
-}
+public class Models.Hub : Models.Thing {}
diff --git a/src/models/Lamp.vala b/src/models/Lamp.vala
index f095556..7ff6b95 100644
--- a/src/models/Lamp.vala
+++ b/src/models/Lamp.vala
@@ -19,23 +19,21 @@
* Authored by: Marius Meisenzahl
*/
-namespace Models {
- public class Lamp : Device {
- public Lamp () {
- icon = "com.github.manexim.home.lightbulb-symbolic";
- }
-
- public bool supports_color {
- get {
- if (!_obj.has_member ("supportsColor")) {
- supports_color = false;
- }
+public class Models.Lamp : Models.Device {
+ public Lamp () {
+ icon = "com.github.manexim.home.lightbulb-symbolic";
+ }
- return _obj.get_boolean_member ("supportsColor");
- }
- set {
- _obj.set_boolean_member ("supportsColor", value);
+ public bool supports_color {
+ get {
+ if (!_obj.has_member ("supportsColor")) {
+ supports_color = false;
}
+
+ return _obj.get_boolean_member ("supportsColor");
+ }
+ set {
+ _obj.set_boolean_member ("supportsColor", value);
}
}
}
diff --git a/src/models/Thing.vala b/src/models/Thing.vala
index db0e79f..4bd1495 100644
--- a/src/models/Thing.vala
+++ b/src/models/Thing.vala
@@ -19,115 +19,113 @@
* Authored by: Marius Meisenzahl
*/
-namespace Models {
- public class Thing : Object {
- protected Json.Object _obj;
+public class Models.Thing : Object {
+ protected Json.Object _obj;
- public Thing () {
- _obj = new Json.Object ();
- icon = "com.github.manexim.home.thing-symbolic";
- }
-
- public Thing.from_object (Json.Object object) {
- _obj = object;
- }
+ public Thing () {
+ _obj = new Json.Object ();
+ icon = "com.github.manexim.home.thing-symbolic";
+ }
- public string id {
- get {
- if (!_obj.has_member ("id")) {
- id = null;
- }
+ public Thing.from_object (Json.Object object) {
+ _obj = object;
+ }
- return _obj.get_string_member ("id");
+ public string id {
+ get {
+ if (!_obj.has_member ("id")) {
+ id = null;
}
- set {
- _obj.set_string_member ("id", value);
- }
- }
- public string name {
- get {
- if (!_obj.has_member ("name")) {
- name = null;
- }
+ return _obj.get_string_member ("id");
+ }
+ set {
+ _obj.set_string_member ("id", value);
+ }
+ }
- return _obj.get_string_member ("name");
- }
- set {
- _obj.set_string_member ("name", value);
+ public string name {
+ get {
+ if (!_obj.has_member ("name")) {
+ name = null;
}
- }
- public string icon {
- get {
- if (!_obj.has_member ("icon")) {
- icon = null;
- }
+ return _obj.get_string_member ("name");
+ }
+ set {
+ _obj.set_string_member ("name", value);
+ }
+ }
- return _obj.get_string_member ("icon");
- }
- set {
- _obj.set_string_member ("icon", value);
+ public string icon {
+ get {
+ if (!_obj.has_member ("icon")) {
+ icon = null;
}
+
+ return _obj.get_string_member ("icon");
}
+ set {
+ _obj.set_string_member ("icon", value);
+ }
+ }
- public Power power {
- get {
- if (!_obj.has_member ("power")) {
- _obj.set_string_member ("power", "unknown");
- }
-
- switch (_obj.get_string_member ("power")) {
- case "on":
- return Power.ON;
- case "off":
- return Power.OFF;
- case "warning":
- return Power.WARNING;
- default:
- return Power.UNKNOWN;
- }
+ public Types.Power power {
+ get {
+ if (!_obj.has_member ("power")) {
+ _obj.set_string_member ("power", "unknown");
}
- set {
- _obj.set_string_member ("power", value.to_string ());
+
+ switch (_obj.get_string_member ("power")) {
+ case "on":
+ return Types.Power.ON;
+ case "off":
+ return Types.Power.OFF;
+ case "warning":
+ return Types.Power.WARNING;
+ default:
+ return Types.Power.UNKNOWN;
}
}
+ set {
+ _obj.set_string_member ("power", value.to_string ());
+ }
+ }
- public string manufacturer {
- get {
- if (!_obj.has_member ("manufacturer")) {
- manufacturer = null;
- }
-
- return _obj.get_string_member ("manufacturer");
+ public string manufacturer {
+ get {
+ if (!_obj.has_member ("manufacturer")) {
+ manufacturer = null;
}
- set {
- _obj.set_string_member ("manufacturer", value);
- }
- }
- public string model {
- get {
- if (!_obj.has_member ("model")) {
- model = null;
- }
+ return _obj.get_string_member ("manufacturer");
+ }
+ set {
+ _obj.set_string_member ("manufacturer", value);
+ }
+ }
- return _obj.get_string_member ("model");
- }
- set {
- _obj.set_string_member ("model", value);
+ public string model {
+ get {
+ if (!_obj.has_member ("model")) {
+ model = null;
}
+
+ return _obj.get_string_member ("model");
+ }
+ set {
+ _obj.set_string_member ("model", value);
}
+ }
- public string to_string () {
- size_t length;
+ public string to_string () {
+ size_t length;
- var gen = new Json.Generator ();
- var root = new Json.Node (Json.NodeType.OBJECT);
- root.set_object (_obj);
- gen.set_root (root);
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ root.set_object (_obj);
+ gen.set_root (root);
- return gen.to_data (out length);
- }
+ return gen.to_data (out length);
}
}
diff --git a/src/pages/DevicePage.vala b/src/pages/DevicePage.vala
index 91ce857..97e138d 100644
--- a/src/pages/DevicePage.vala
+++ b/src/pages/DevicePage.vala
@@ -19,8 +19,8 @@
* Authored by: Marius Meisenzahl
*/
-public class DevicePage : Granite.SimpleSettingsPage {
- private DeviceController controller;
+public class Pages.DevicePage : Granite.SimpleSettingsPage {
+ private Controllers.DeviceController controller;
public DevicePage (Models.Device device) {
Object (
@@ -60,13 +60,13 @@ public class DevicePage : Granite.SimpleSettingsPage {
title = controller.device.name;
switch (controller.device.power) {
- case Power.ON:
+ case Types.Power.ON:
status_switch.active = true;
status_switch.state = true;
status_type = Granite.SettingsPage.StatusType.SUCCESS;
status = (_("Enabled"));
break;
- case Power.OFF:
+ case Types.Power.OFF:
status_switch.active = false;
status_switch.state = false;
status_type = Granite.SettingsPage.StatusType.OFFLINE;
diff --git a/src/pages/HueBridgeOnboardingPage.vala b/src/pages/HueBridgeOnboardingPage.vala
index a052f73..db68494 100644
--- a/src/pages/HueBridgeOnboardingPage.vala
+++ b/src/pages/HueBridgeOnboardingPage.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class HueBridgeOnboardingPage : Gtk.Grid {
+public class Pages.HueBridgeOnboardingPage : Gtk.Grid {
private Philips.Hue.BridgeController controller;
private Gtk.Label label;
private Gtk.Spinner spinner;
diff --git a/src/pages/LoadingPage.vala b/src/pages/LoadingPage.vala
index 8598c49..3703ead 100644
--- a/src/pages/LoadingPage.vala
+++ b/src/pages/LoadingPage.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class LoadingPage : Gtk.Grid {
+public class Pages.LoadingPage : Gtk.Grid {
public LoadingPage () {
halign = Gtk.Align.CENTER;
valign = Gtk.Align.CENTER;
diff --git a/src/philips/hue/Bridge.vala b/src/philips/hue/Bridge.vala
index 7c0059f..1a70644 100644
--- a/src/philips/hue/Bridge.vala
+++ b/src/philips/hue/Bridge.vala
@@ -1,39 +1,58 @@
-namespace Philips.Hue {
- public class Bridge : Models.Device {
- public Bridge () {
- icon = "com.github.manexim.home.bridge.philips.hue-symbolic";
- manufacturer = "Philips";
- power = Power.WARNING;
- }
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
- public Bridge.from_object (Json.Object object) {
- _obj = object;
- }
+public class Philips.Hue.Bridge : Models.Device {
+ public Bridge () {
+ icon = "com.github.manexim.home.bridge.philips.hue-symbolic";
+ manufacturer = "Philips";
+ power = Types.Power.WARNING;
+ }
- public string base_url {
- get {
- if (!_obj.has_member ("baseURL")) {
- base_url = null;
- }
+ public Bridge.from_object (Json.Object object) {
+ _obj = object;
+ }
- return _obj.get_string_member ("baseURL");
- }
- set {
- _obj.set_string_member ("baseURL", value);
+ public string base_url {
+ get {
+ if (!_obj.has_member ("baseURL")) {
+ base_url = null;
}
- }
- public string username {
- get {
- if (!_obj.has_member ("username")) {
- username = null;
- }
+ return _obj.get_string_member ("baseURL");
+ }
+ set {
+ _obj.set_string_member ("baseURL", value);
+ }
+ }
- return _obj.get_string_member ("username");
- }
- set {
- _obj.set_string_member ("username", value);
+ public string username {
+ get {
+ if (!_obj.has_member ("username")) {
+ username = null;
}
+
+ return _obj.get_string_member ("username");
+ }
+ set {
+ _obj.set_string_member ("username", value);
}
}
}
diff --git a/src/philips/hue/BridgeController.vala b/src/philips/hue/BridgeController.vala
index e6e9690..2a6bf2c 100644
--- a/src/philips/hue/BridgeController.vala
+++ b/src/philips/hue/BridgeController.vala
@@ -1,194 +1,213 @@
-namespace Philips.Hue {
- public class BridgeController {
- private Bridge _bridge;
- private Gee.HashMap thing_map;
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Philips.Hue.BridgeController {
+ private Bridge _bridge;
+ private Gee.HashMap thing_map;
+
+ public signal void on_new_lamp (Models.Lamp lamp);
+ public signal void on_updated_lamp (Models.Lamp lamp);
+
+ public BridgeController (Bridge bridge) {
+ _bridge = bridge;
+ thing_map = new Gee.HashMap ();
+ }
- public signal void on_new_lamp (Models.Lamp lamp);
- public signal void on_updated_lamp (Models.Lamp lamp);
+ public void get_description () {
+ string url = "%sdescription.xml".printf (_bridge.base_url);
- public BridgeController (Bridge bridge) {
- _bridge = bridge;
- thing_map = new Gee.HashMap ();
- }
+ var session = new Soup.Session ();
+ var message = new Soup.Message ("GET", url);
- public void get_description () {
- string url = "%sdescription.xml".printf (_bridge.base_url);
+ session.send_message (message);
- var session = new Soup.Session ();
- var message = new Soup.Message ("GET", url);
+ // replace with
+ // because otherwise the node can not be found
+ GLib.Regex r = /.*().*/;
+ Xml.Doc* doc;
+ try {
+ var patched = r.replace ((string) message.response_body.data, (ssize_t) message.response_body.length, 0, "");
- session.send_message (message);
+ Xml.Parser.init ();
- // replace with
- // because otherwise the node can not be found
- GLib.Regex r = /.*().*/;
- Xml.Doc* doc;
- try {
- var patched = r.replace ((string) message.response_body.data, (ssize_t) message.response_body.length, 0, "");
+ doc = Xml.Parser.parse_memory (patched, patched.length);
+ if (doc == null) {
+ stderr.printf ("failed to read the .xml file\n");
+ }
- Xml.Parser.init ();
+ Xml.XPath.Context context = new Xml.XPath.Context(doc);
+ if (context == null) {
+ stderr.printf ("failed to create the xpath context\n");
+ }
- doc = Xml.Parser.parse_memory (patched, patched.length);
- if (doc == null) {
- stderr.printf ("failed to read the .xml file\n");
- }
+ Xml.XPath.Object* obj = context.eval_expression("/root/device/friendlyName");
+ if (obj == null) {
+ stderr.printf ("failed to evaluate xpath\n");
+ }
- Xml.XPath.Context context = new Xml.XPath.Context(doc);
- if (context == null) {
- stderr.printf ("failed to create the xpath context\n");
- }
+ Xml.Node* node = null;
+ if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
+ node = obj->nodesetval->item(0);
+ } else {
+ stderr.printf ("failed to find the expected node\n");
+ }
- Xml.XPath.Object* obj = context.eval_expression("/root/device/friendlyName");
- if (obj == null) {
- stderr.printf ("failed to evaluate xpath\n");
- }
+ _bridge.name = node->get_content ();
- Xml.Node* node = null;
- if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
- node = obj->nodesetval->item(0);
- } else {
- stderr.printf ("failed to find the expected node\n");
- }
+ delete obj;
- _bridge.name = node->get_content ();
+ obj = context.eval_expression("/root/device/manufacturer");
+ if (obj == null) {
+ stderr.printf ("failed to evaluate xpath\n");
+ }
- delete obj;
+ node = null;
+ if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
+ node = obj->nodesetval->item(0);
+ } else {
+ stderr.printf ("failed to find the expected node\n");
+ }
- obj = context.eval_expression("/root/device/manufacturer");
- if (obj == null) {
- stderr.printf ("failed to evaluate xpath\n");
- }
+ _bridge.manufacturer = node->get_content ();
- node = null;
- if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
- node = obj->nodesetval->item(0);
- } else {
- stderr.printf ("failed to find the expected node\n");
- }
+ delete obj;
- _bridge.manufacturer = node->get_content ();
+ obj = context.eval_expression("/root/device/modelName");
+ if (obj == null) {
+ stderr.printf ("failed to evaluate xpath\n");
+ }
- delete obj;
+ node = null;
+ if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
+ node = obj->nodesetval->item(0);
+ } else {
+ stderr.printf ("failed to find the expected node\n");
+ }
- obj = context.eval_expression("/root/device/modelName");
- if (obj == null) {
- stderr.printf ("failed to evaluate xpath\n");
- }
+ _bridge.model = node->get_content ();
- node = null;
- if (obj->nodesetval != null && obj->nodesetval->item(0) != null) {
- node = obj->nodesetval->item(0);
- } else {
- stderr.printf ("failed to find the expected node\n");
- }
+ delete obj;
+ } catch (GLib.RegexError e) {
+ stderr.printf (e.message);
+ } finally {
+ delete doc;
+ }
- _bridge.model = node->get_content ();
+ Xml.Parser.cleanup ();
+ }
- delete obj;
- } catch (GLib.RegexError e) {
- stderr.printf (e.message);
- } finally {
- delete doc;
- }
+ public bool register () throws GLib.Error {
+ string url = "%sapi".printf (_bridge.base_url);
- Xml.Parser.cleanup ();
- }
+ var session = new Soup.Session ();
+ var message = new Soup.Message ("POST", url);
- public bool register () throws GLib.Error {
- string url = "%sapi".printf (_bridge.base_url);
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ var object = new Json.Object ();
- var session = new Soup.Session ();
- var message = new Soup.Message ("POST", url);
+ object.set_string_member ("devicetype", "com.github.manexim.home");
- var gen = new Json.Generator ();
- var root = new Json.Node (Json.NodeType.OBJECT);
- var object = new Json.Object ();
+ root.set_object (object);
+ gen.set_root (root);
- object.set_string_member ("devicetype", "com.github.manexim.home");
+ size_t length;
+ string json = gen.to_data (out length);
- root.set_object (object);
- gen.set_root (root);
+ message.request_body.append_take (json.data);
- size_t length;
- string json = gen.to_data (out length);
+ session.send_message (message);
- message.request_body.append_take (json.data);
+ string response = (string) message.response_body.flatten ().data;
- session.send_message (message);
+ var parser = new Json.Parser();
+ parser.load_from_data (response, -1);
- string response = (string) message.response_body.flatten ().data;
+ foreach (var element in parser.get_root ().get_array ().get_elements ()) {
+ var obj = element.get_object ();
- var parser = new Json.Parser();
- parser.load_from_data (response, -1);
+ if (obj.has_member ("error")) {
+ throw new GLib.Error (
+ GLib.Quark.from_string (""),
+ (int) obj.get_object_member ("error").get_int_member ("type"),
+ obj.get_object_member ("error").get_string_member ("description")
+ );
+ } else if (obj.has_member ("success")) {
+ _bridge.username = "%s".printf (obj.get_object_member ("success").get_string_member ("username"));
+ _bridge.power = Types.Power.ON;
- foreach (var element in parser.get_root ().get_array ().get_elements ()) {
- var obj = element.get_object ();
+ return true;
+ }
+ }
- if (obj.has_member ("error")) {
- throw new GLib.Error (
- GLib.Quark.from_string (""),
- (int) obj.get_object_member ("error").get_int_member ("type"),
- obj.get_object_member ("error").get_string_member ("description")
- );
- } else if (obj.has_member ("success")) {
- _bridge.username = "%s".printf (obj.get_object_member ("success").get_string_member ("username"));
- _bridge.power = Power.ON;
+ return false;
+ }
- return true;
- }
- }
+ public void state () {
+ string url = "%sapi/%s".printf (_bridge.base_url, _bridge.username);
- return false;
- }
+ var session = new Soup.Session ();
+ var message = new Soup.Message ("GET", url);
- public void state () {
- string url = "%sapi/%s".printf (_bridge.base_url, _bridge.username);
-
- var session = new Soup.Session ();
- var message = new Soup.Message ("GET", url);
-
- session.send_message (message);
-
- string response = (string) message.response_body.flatten ().data;
-
- try {
- var parser = new Json.Parser();
- parser.load_from_data (response, -1);
- var object = parser.get_root ().get_object ();
- var lights = object.get_object_member ("lights");
-
- foreach (var key in lights.get_members ()) {
- var light = lights.get_object_member (key);
- var lamp = new Philips.Hue.Lamp ();
- lamp.name = light.get_string_member ("name");
- lamp.manufacturer = light.get_string_member ("manufacturername");
- lamp.model = light.get_string_member ("modelid");
- lamp.id = light.get_string_member ("uniqueid");
- var on = light.get_object_member ("state").get_boolean_member ("on");
-
- if (on) {
- lamp.power = Power.ON;
- } else {
- lamp.power = Power.OFF;
- }
-
- if (!thing_map.has_key (lamp.id)) {
- thing_map.set (lamp.id, lamp);
- on_new_lamp (lamp);
- } else {
- thing_map.set (lamp.id, lamp);
- on_updated_lamp (lamp);
- }
+ session.send_message (message);
+
+ string response = (string) message.response_body.flatten ().data;
+
+ try {
+ var parser = new Json.Parser();
+ parser.load_from_data (response, -1);
+ var object = parser.get_root ().get_object ();
+ var lights = object.get_object_member ("lights");
+
+ foreach (var key in lights.get_members ()) {
+ var light = lights.get_object_member (key);
+ var lamp = new Philips.Hue.Lamp ();
+ lamp.name = light.get_string_member ("name");
+ lamp.manufacturer = light.get_string_member ("manufacturername");
+ lamp.model = light.get_string_member ("modelid");
+ lamp.id = light.get_string_member ("uniqueid");
+ var on = light.get_object_member ("state").get_boolean_member ("on");
+
+ if (on) {
+ lamp.power = Types.Power.ON;
+ } else {
+ lamp.power = Types.Power.OFF;
+ }
+
+ if (!thing_map.has_key (lamp.id)) {
+ thing_map.set (lamp.id, lamp);
+ on_new_lamp (lamp);
+ } else {
+ thing_map.set (lamp.id, lamp);
+ on_updated_lamp (lamp);
}
- } catch (GLib.Error e) {
- stderr.printf (e.message);
}
+ } catch (GLib.Error e) {
+ stderr.printf (e.message);
}
+ }
- public Bridge bridge {
- get {
- return _bridge;
- }
+ public Bridge bridge {
+ get {
+ return _bridge;
}
}
}
diff --git a/src/philips/hue/Lamp.vala b/src/philips/hue/Lamp.vala
index 10de75d..62aed0a 100644
--- a/src/philips/hue/Lamp.vala
+++ b/src/philips/hue/Lamp.vala
@@ -19,11 +19,9 @@
* Authored by: Marius Meisenzahl
*/
-namespace Philips.Hue {
- public class Lamp : Models.Lamp {
- public Lamp () {
- icon = "com.github.manexim.home.lightbulb.philips.hue-symbolic";
- manufacturer = "Philips";
- }
+public class Philips.Hue.Lamp : Models.Lamp {
+ public Lamp () {
+ icon = "com.github.manexim.home.lightbulb.philips.hue-symbolic";
+ manufacturer = "Philips";
}
}
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 4d1c8c5..2a3b30b 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -19,188 +19,186 @@
* Authored by: Marius Meisenzahl
*/
-namespace Philips.Hue {
- public class Service {
- private static Service? _instance;
- private Gee.HashMap bridge_map;
- private Socket socket;
-
- public signal void on_new_bridge (Bridge bridge);
- public signal void on_updated_bridge (Bridge bridge);
- public signal void on_new_device (Models.Device device);
- public signal void on_updated_device (Models.Device device);
-
- public static Service instance {
- get {
- if (_instance == null) {
- _instance = new Service ();
- }
-
- return _instance;
+public class Philips.Hue.Service {
+ private static Service? _instance;
+ private Gee.HashMap bridge_map;
+ private Socket socket;
+
+ public signal void on_new_bridge (Bridge bridge);
+ public signal void on_updated_bridge (Bridge bridge);
+ public signal void on_new_device (Models.Device device);
+ public signal void on_updated_device (Models.Device device);
+
+ public static Service instance {
+ get {
+ if (_instance == null) {
+ _instance = new Service ();
}
+
+ return _instance;
}
+ }
- public Bridge[] bridges {
- owned get {
- return bridge_map.values.to_array ();
- }
+ public Bridge[] bridges {
+ owned get {
+ return bridge_map.values.to_array ();
}
+ }
- private Service () {
- bridge_map = new Gee.HashMap ();
+ private Service () {
+ bridge_map = new Gee.HashMap ();
- load_bridges ();
- setup_socket ();
- listen ();
- discover_bridges ();
- }
+ load_bridges ();
+ setup_socket ();
+ listen ();
+ discover_bridges ();
+ }
- private void load_bridges () {
- string[] philips_hue_bridges = Settings.get_default ().philips_hue_bridges;
- foreach (var bridge_str in philips_hue_bridges) {
- var parser = new Json.Parser();
- parser.load_from_data (bridge_str, -1);
- var object = parser.get_root ().get_object ();
+ private void load_bridges () {
+ string[] philips_hue_bridges = Settings.get_default ().philips_hue_bridges;
+ foreach (var bridge_str in philips_hue_bridges) {
+ var parser = new Json.Parser();
+ parser.load_from_data (bridge_str, -1);
+ var object = parser.get_root ().get_object ();
- var bridge = new Philips.Hue.Bridge.from_object (object);
- bridge.power = Power.UNKNOWN;
+ var bridge = new Philips.Hue.Bridge.from_object (object);
+ bridge.power = Types.Power.UNKNOWN;
- found_bridge (bridge);
- }
+ found_bridge (bridge);
}
+ }
- private void setup_socket () {
- try {
- socket = new Socket (SocketFamily.IPV4, SocketType.DATAGRAM, SocketProtocol.UDP);
- socket.broadcast = true;
-
- #if HAVE_SO_REUSEPORT
- int32 enable = 1;
- Posix.setsockopt(
- socket.fd, Platform.Socket.SOL_SOCKET, Platform.Socket.SO_REUSEPORT, &enable,
- (Posix.socklen_t) sizeof(int)
- );
- #endif
-
- var sa = new InetSocketAddress (new InetAddress.any (SocketFamily.IPV4), 1900);
- socket.bind (sa, true);
- } catch (Error e) {
- stderr.printf (e.message);
- }
+ private void setup_socket () {
+ try {
+ socket = new Socket (SocketFamily.IPV4, SocketType.DATAGRAM, SocketProtocol.UDP);
+ socket.broadcast = true;
+
+ #if HAVE_SO_REUSEPORT
+ int32 enable = 1;
+ Posix.setsockopt(
+ socket.fd, Platform.Socket.SOL_SOCKET, Platform.Socket.SO_REUSEPORT, &enable,
+ (Posix.socklen_t) sizeof(int)
+ );
+ #endif
+
+ var sa = new InetSocketAddress (new InetAddress.any (SocketFamily.IPV4), 1900);
+ socket.bind (sa, true);
+ } catch (Error e) {
+ stderr.printf (e.message);
}
+ }
- private void listen () {
- new Thread (null, () => {
- while (true) {
- var source = socket.create_source (IOCondition.IN);
- source.set_callback ((s, cond) => {
- try {
- uint8 buffer[4096];
- size_t read = s.receive (buffer);
- buffer[read] = 0; // null-terminate string
-
- GLib.Regex r_hue_bridgeid = /.*hue-bridgeid:\s*([^\s]*).*/;
- string hue_bridgeid;
- GLib.MatchInfo mi;
- if (r_hue_bridgeid.match ((string) buffer, 0, out mi)) {
- hue_bridgeid = mi.fetch (1);
- found_bridge_ssdp (hue_bridgeid, (string) buffer);
- }
- } catch (Error e) {
- stderr.printf (e.message);
+ private void listen () {
+ new Thread (null, () => {
+ while (true) {
+ var source = socket.create_source (IOCondition.IN);
+ source.set_callback ((s, cond) => {
+ try {
+ uint8 buffer[4096];
+ size_t read = s.receive (buffer);
+ buffer[read] = 0; // null-terminate string
+
+ GLib.Regex r_hue_bridgeid = /.*hue-bridgeid:\s*([^\s]*).*/;
+ string hue_bridgeid;
+ GLib.MatchInfo mi;
+ if (r_hue_bridgeid.match ((string) buffer, 0, out mi)) {
+ hue_bridgeid = mi.fetch (1);
+ found_bridge_ssdp (hue_bridgeid, (string) buffer);
}
+ } catch (Error e) {
+ stderr.printf (e.message);
+ }
- return true;
- });
- source.attach (MainContext.default ());
-
- new MainLoop ().run ();
- }
- });
- }
+ return true;
+ });
+ source.attach (MainContext.default ());
- private void discover_bridges () {
- new Thread (null, () => {
- while (true) {
- discover_bridges_ssdp ();
+ new MainLoop ().run ();
+ }
+ });
+ }
- Thread.usleep (10 * 1000 * 1000);
- }
- });
- }
+ private void discover_bridges () {
+ new Thread (null, () => {
+ while (true) {
+ discover_bridges_ssdp ();
- private void discover_bridge_devices (Philips.Hue.Bridge bridge) {
- var controller = new Philips.Hue.BridgeController (bridge);
- controller.on_new_lamp.connect ((lamp) => {
- on_new_device (lamp);
- });
+ Thread.usleep (10 * 1000 * 1000);
+ }
+ });
+ }
- controller.on_updated_lamp.connect ((lamp) => {
- on_updated_device (lamp);
- });
+ private void discover_bridge_devices (Philips.Hue.Bridge bridge) {
+ var controller = new Philips.Hue.BridgeController (bridge);
+ controller.on_new_lamp.connect ((lamp) => {
+ on_new_device (lamp);
+ });
- new Thread (null, () => {
- while (true) {
- if (bridge.username != null && bridge.username != "") {
- controller.state ();
- }
+ controller.on_updated_lamp.connect ((lamp) => {
+ on_updated_device (lamp);
+ });
- Thread.usleep (10 * 1000 * 1000);
+ new Thread (null, () => {
+ while (true) {
+ if (bridge.username != null && bridge.username != "") {
+ controller.state ();
}
- });
- }
- private void discover_bridges_ssdp () {
- string message = "M-SEARCH * HTTP/1.1\r\n";
- message += "HOST: 239.255.255.250:1900\r\n";
- message += "MAN: ssdp:discover\r\n";
- message += "MX: 10\r\n";
- message += "ST: ssdp:all\r\n";
-
- try {
- socket.send_to (
- new InetSocketAddress (
- new InetAddress.from_string ("255.255.255.255"), 1900),
- message.data
- );
- } catch (Error e) {
- stderr.printf (e.message);
+ Thread.usleep (10 * 1000 * 1000);
}
+ });
+ }
+
+ private void discover_bridges_ssdp () {
+ string message = "M-SEARCH * HTTP/1.1\r\n";
+ message += "HOST: 239.255.255.250:1900\r\n";
+ message += "MAN: ssdp:discover\r\n";
+ message += "MX: 10\r\n";
+ message += "ST: ssdp:all\r\n";
+
+ try {
+ socket.send_to (
+ new InetSocketAddress (
+ new InetAddress.from_string ("255.255.255.255"), 1900),
+ message.data
+ );
+ } catch (Error e) {
+ stderr.printf (e.message);
}
+ }
- private void found_bridge_ssdp (string bridgeid, string message) {
- GLib.Regex r_location = /.*LOCATION:\s*((http:\/\/)(.*):(\d*)([^\s]*)).*/;
- string url, protocol, host, port, path;
- GLib.MatchInfo mi;
- if (r_location.match (message, 0, out mi)) {
- url = mi.fetch (1);
- protocol = mi.fetch (2);
- host = mi.fetch (3);
- port = mi.fetch (4);
- path = mi.fetch (5);
+ private void found_bridge_ssdp (string bridgeid, string message) {
+ GLib.Regex r_location = /.*LOCATION:\s*((http:\/\/)(.*):(\d*)([^\s]*)).*/;
+ string url, protocol, host, port, path;
+ GLib.MatchInfo mi;
+ if (r_location.match (message, 0, out mi)) {
+ url = mi.fetch (1);
+ protocol = mi.fetch (2);
+ host = mi.fetch (3);
+ port = mi.fetch (4);
+ path = mi.fetch (5);
- var bridge = new Bridge ();
- bridge.id = bridgeid.up ();
- bridge.base_url = protocol + host + ":" + port + "/";
+ var bridge = new Bridge ();
+ bridge.id = bridgeid.up ();
+ bridge.base_url = protocol + host + ":" + port + "/";
- found_bridge (bridge);
+ found_bridge (bridge);
- }
}
+ }
- private void found_bridge (Philips.Hue.Bridge bridge) {
- var controller = new Philips.Hue.BridgeController (bridge);
- controller.get_description ();
- bridge = controller.bridge;
-
- if (!bridge_map.has_key (bridge.id)) {
- bridge_map.set (bridge.id, bridge);
- discover_bridge_devices (bridge);
- on_new_bridge (bridge);
- } else {
- bridge_map.set (bridge.id, bridge);
- on_updated_bridge (bridge);
- }
+ private void found_bridge (Philips.Hue.Bridge bridge) {
+ var controller = new Philips.Hue.BridgeController (bridge);
+ controller.get_description ();
+ bridge = controller.bridge;
+
+ if (!bridge_map.has_key (bridge.id)) {
+ bridge_map.set (bridge.id, bridge);
+ discover_bridge_devices (bridge);
+ on_new_bridge (bridge);
+ } else {
+ bridge_map.set (bridge.id, bridge);
+ on_updated_bridge (bridge);
}
}
}
diff --git a/src/types/Power.vala b/src/types/Power.vala
index eeaf4d9..6e00f60 100644
--- a/src/types/Power.vala
+++ b/src/types/Power.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public enum Power {
+public enum Types.Power {
UNKNOWN = 1,
WARNING = 2,
OFF = 0,
diff --git a/src/views/DevicesView.vala b/src/views/DevicesView.vala
index 1ed7b0b..2a3d4fe 100644
--- a/src/views/DevicesView.vala
+++ b/src/views/DevicesView.vala
@@ -19,12 +19,12 @@
* Authored by: Marius Meisenzahl
*/
-public class DevicesView : Gtk.Paned {
+public class Views.DevicesView : Gtk.Paned {
private Gtk.Stack stack;
- private DevicesController devices_controller;
+ private Controllers.DevicesController devices_controller;
public DevicesView () {
- devices_controller = new DevicesController ();
+ devices_controller = new Controllers.DevicesController ();
stack = new Gtk.Stack ();
@@ -33,11 +33,11 @@ public class DevicesView : Gtk.Paned {
add (sidebar);
add (stack);
- stack.add_named (new LoadingPage (), "loading");
+ stack.add_named (new Pages.LoadingPage (), "loading");
stack.show_all ();
devices_controller.on_new_device.connect ((device) => {
- stack.add_named (new DevicePage (device), device.id);
+ stack.add_named (new Pages.DevicePage (device), device.id);
if (stack.get_visible_child_name () == "loading") {
var child = stack.get_child_by_name ("loading");
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index d9fcb56..d03fff3 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -19,8 +19,8 @@
* Authored by: Marius Meisenzahl
*/
-public class Overview : Gtk.ScrolledWindow {
- private DevicesController devices_controller;
+public class Views.Overview : Gtk.ScrolledWindow {
+ private Controllers.DevicesController devices_controller;
public Overview () {
var grid = new Gtk.Grid ();
@@ -32,7 +32,7 @@ public class Overview : Gtk.ScrolledWindow {
devices_label.xalign = 0;
devices_label.margin_start = 10;
- var devices_carousel = new Carousel ();
+ var devices_carousel = new Widgets.Carousel ();
var devices_grid = new Gtk.Grid ();
devices_grid.margin = 2;
@@ -45,7 +45,7 @@ public class Overview : Gtk.ScrolledWindow {
grid.attach (devices_revealer, 0, 0, 1, 1);
- devices_controller = new DevicesController ();
+ devices_controller = new Controllers.DevicesController ();
devices_controller.on_new_device.connect ((device) => {
devices_carousel.add_thing (device);
devices_revealer.reveal_child = true;
@@ -57,7 +57,7 @@ public class Overview : Gtk.ScrolledWindow {
devices_carousel.on_thing_activated.connect ((thing) => {
MainWindow.get_default ().go_to_page (
- new DevicePage (thing as Models.Device),
+ new Pages.DevicePage (thing as Models.Device),
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
@@ -67,7 +67,7 @@ public class Overview : Gtk.ScrolledWindow {
hubs_label.xalign = 0;
hubs_label.margin_start = 10;
- var hubs_carousel = new Carousel ();
+ var hubs_carousel = new Widgets.Carousel ();
var hubs_grid = new Gtk.Grid ();
hubs_grid.margin = 2;
@@ -88,7 +88,7 @@ public class Overview : Gtk.ScrolledWindow {
hubs_carousel.on_thing_activated.connect ((thing) => {
MainWindow.get_default ().go_to_page (
- new HueBridgeOnboardingPage (thing as Philips.Hue.Bridge),
+ new Pages.HueBridgeOnboardingPage (thing as Philips.Hue.Bridge),
(thing.name == null || thing.name.length == 0) ? thing.id : thing.name
);
});
diff --git a/src/views/WelcomeView.vala b/src/views/WelcomeView.vala
index 96950fc..1a4667f 100644
--- a/src/views/WelcomeView.vala
+++ b/src/views/WelcomeView.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class WelcomeView : Gtk.Grid {
+public class Views.WelcomeView : Gtk.Grid {
public signal void start ();
construct {
diff --git a/src/widgets/Carousel.vala b/src/widgets/Carousel.vala
index fa81a32..9e9ae06 100644
--- a/src/widgets/Carousel.vala
+++ b/src/widgets/Carousel.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class Carousel : Gtk.FlowBox {
+public class Widgets.Carousel : Gtk.FlowBox {
private Gee.HashMap carousel_item_map;
private int index = 0;
public signal void on_thing_activated (Models.Thing thing);
diff --git a/src/widgets/CarouselItem.vala b/src/widgets/CarouselItem.vala
index 8afac34..e3d84f4 100644
--- a/src/widgets/CarouselItem.vala
+++ b/src/widgets/CarouselItem.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class CarouselItem : Gtk.FlowBoxChild {
+public class Widgets.CarouselItem : Gtk.FlowBoxChild {
public Models.Thing thing { get; construct set; }
private Gtk.Image icon;
private Gtk.Image status_icon;
@@ -73,13 +73,13 @@ public class CarouselItem : Gtk.FlowBoxChild {
icon.gicon = new ThemedIcon (thing.icon);
switch (thing.power) {
- case Power.ON:
+ case Types.Power.ON:
status_icon.icon_name = "user-available";
break;
- case Power.OFF:
+ case Types.Power.OFF:
status_icon.icon_name = "user-offline";
break;
- case Power.WARNING:
+ case Types.Power.WARNING:
status_icon.icon_name = "user-away";
break;
default:
diff --git a/src/widgets/Overlay.vala b/src/widgets/Overlay.vala
index 9fd7ee8..564f408 100644
--- a/src/widgets/Overlay.vala
+++ b/src/widgets/Overlay.vala
@@ -19,7 +19,7 @@
* Authored by: Marius Meisenzahl
*/
-public class Overlay : Gtk.Overlay {
+public class Widgets.Overlay : Gtk.Overlay {
private static Overlay? _instance;
public Granite.Widgets.Toast toast;
From e46a1f1f20797050f8439b38ed481a55392b4f1f Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 29 Jun 2019 13:20:34 +0200
Subject: [PATCH 29/84] Save preference for dark theme if freedesktop schema is
not available
---
data/com.github.manexim.home.gschema.xml | 5 +++++
src/MainWindow.vala | 1 +
src/services/Settings.vala | 4 ++++
3 files changed, 10 insertions(+)
diff --git a/data/com.github.manexim.home.gschema.xml b/data/com.github.manexim.home.gschema.xml
index 57122d5..7c2a095 100644
--- a/data/com.github.manexim.home.gschema.xml
+++ b/data/com.github.manexim.home.gschema.xml
@@ -16,6 +16,11 @@
List of configured Philips Hue Bridges
List of configured Philips Hue Bridges.
+
+ false
+ If the dark Gtk stylesheet should be used
+ If the dark Gtk stylesheet should be used
+
900
The saved width of the window.
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 223e11a..314fbb6 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -59,6 +59,7 @@ public class MainWindow : Gtk.ApplicationWindow {
mode_switch.secondary_icon_tooltip_text = _("Dark background");
mode_switch.valign = Gtk.Align.CENTER;
mode_switch.bind_property ("active", gtk_settings, "gtk_application_prefer_dark_theme");
+ settings.bind ("prefer-dark-style", mode_switch, "active", GLib.SettingsBindFlags.DEFAULT);
headerbar.pack_end (mode_switch);
}
diff --git a/src/services/Settings.vala b/src/services/Settings.vala
index f759745..9e2dff0 100644
--- a/src/services/Settings.vala
+++ b/src/services/Settings.vala
@@ -85,6 +85,10 @@ public class Settings : Granite.Services.Settings {
}
}
+ public void bind (string key, GLib.Object object, string property, GLib.SettingsBindFlags flags) {
+ schema.bind (key, object, property, flags);
+ }
+
public bool is_first_run () {
return last_started_app_version == "";
}
From 922946b35bb56c2a6ede3a0227b3119195cb5bf7 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 29 Jun 2019 14:22:05 +0200
Subject: [PATCH 30/84] Load configured bridges from settings
---
src/philips/hue/Service.vala | 41 +++++++++++++++++++++++++++++-------
src/services/Settings.vala | 21 ++++++++++++++----
2 files changed, 50 insertions(+), 12 deletions(-)
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 2a3b30b..17dab7d 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -21,7 +21,8 @@
public class Philips.Hue.Service {
private static Service? _instance;
- private Gee.HashMap bridge_map;
+ private Array bridge_loaded_array;
+ private Array bridge_array;
private Socket socket;
public signal void on_new_bridge (Bridge bridge);
@@ -41,12 +42,13 @@ public class Philips.Hue.Service {
public Bridge[] bridges {
owned get {
- return bridge_map.values.to_array ();
+ return bridge_array.data;
}
}
private Service () {
- bridge_map = new Gee.HashMap ();
+ bridge_loaded_array = new Array ();
+ bridge_array = new Array ();
load_bridges ();
setup_socket ();
@@ -64,7 +66,7 @@ public class Philips.Hue.Service {
var bridge = new Philips.Hue.Bridge.from_object (object);
bridge.power = Types.Power.UNKNOWN;
- found_bridge (bridge);
+ bridge_loaded_array.append_val (bridge);
}
}
@@ -190,15 +192,38 @@ public class Philips.Hue.Service {
private void found_bridge (Philips.Hue.Bridge bridge) {
var controller = new Philips.Hue.BridgeController (bridge);
controller.get_description ();
- bridge = controller.bridge;
- if (!bridge_map.has_key (bridge.id)) {
- bridge_map.set (bridge.id, bridge);
+ if (!is_in_array (bridge_array, bridge.id)) {
+ if (is_in_array (bridge_loaded_array, bridge.id)) {
+ bridge.username = get_value_from_id (bridge_loaded_array, bridge.id).username;
+ bridge.power = Types.Power.ON;
+ }
+
+ bridge_array.append_val (bridge);
discover_bridge_devices (bridge);
on_new_bridge (bridge);
} else {
- bridge_map.set (bridge.id, bridge);
on_updated_bridge (bridge);
}
}
+
+ private bool is_in_array (Array array, string id) {
+ for (uint i = 0; i < array.length; i++) {
+ if (array.index (i).id == id) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ private Bridge? get_value_from_id (Array array, string id) {
+ for (uint i = 0; i < array.length; i++) {
+ if (array.index (i).id == id) {
+ return array.index (i) as Philips.Hue.Bridge;
+ }
+ }
+
+ return null;
+ }
}
diff --git a/src/services/Settings.vala b/src/services/Settings.vala
index 9e2dff0..f1356da 100644
--- a/src/services/Settings.vala
+++ b/src/services/Settings.vala
@@ -102,12 +102,25 @@ public class Settings : Granite.Services.Settings {
var philips_hue_service = Philips.Hue.Service.instance;
var bridges = philips_hue_service.bridges;
- var bridges_strings = new string[bridges.length];
- for (uint8 i = 0; i < bridges.length; i++) {
- bridges_strings[i] = bridges[i].to_string ();
+ var bridges_list = new Gee.ArrayList ();
+ for (uint i = 0; i < bridges.length; i++) {
+ if (bridges[i].username != null) {
+ size_t length;
+
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ var obj = new Json.Object ();
+ root.set_object (obj);
+
+ obj.set_string_member ("id", bridges[i].id);
+ obj.set_string_member ("username", bridges[i].username);
+
+ gen.set_root (root);
+ bridges_list.add (gen.to_data (out length));
+ }
}
- philips_hue_bridges = bridges_strings;
+ philips_hue_bridges = bridges_list.to_array ();
}
}
From 4a6e34bf584af00022a58ea08a1f39839b817e7e Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Sat, 29 Jun 2019 14:24:19 +0200
Subject: [PATCH 31/84] Only show page to configure hub if hub is not
configured
---
src/views/Overview.vala | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/views/Overview.vala b/src/views/Overview.vala
index d03fff3..306e869 100644
--- a/src/views/Overview.vala
+++ b/src/views/Overview.vala
@@ -87,10 +87,12 @@ public class Views.Overview : Gtk.ScrolledWindow {
});
hubs_carousel.on_thing_activated.connect ((thing) => {
- MainWindow.get_default ().go_to_page (
- new Pages.HueBridgeOnboardingPage (thing as Philips.Hue.Bridge),
- (thing.name == null || thing.name.length == 0) ? thing.id : thing.name
- );
+ if (thing.power != Types.Power.ON) {
+ MainWindow.get_default ().go_to_page (
+ new Pages.HueBridgeOnboardingPage (thing as Philips.Hue.Bridge),
+ (thing.name == null || thing.name.length == 0) ? thing.id : thing.name
+ );
+ }
});
}
}
From 3609541b222acb8bc9dddf696c27cfaaf4630ddd Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Mon, 1 Jul 2019 07:03:12 +0200
Subject: [PATCH 32/84] Add empty controller for Philips Hue devices to
suppress assertion errors in DevicePage
---
src/meson.build | 1 +
src/pages/DevicePage.vala | 2 ++
src/philips/hue/Controller.vala | 34 +++++++++++++++++++++++++++++++++
3 files changed, 37 insertions(+)
create mode 100644 src/philips/hue/Controller.vala
diff --git a/src/meson.build b/src/meson.build
index abb577b..5ff3672 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -15,6 +15,7 @@ sources = [
'pages/LoadingPage.vala',
'philips/hue/Bridge.vala',
'philips/hue/BridgeController.vala',
+ 'philips/hue/Controller.vala',
'philips/hue/Lamp.vala',
'philips/hue/Service.vala',
'services/Settings.vala',
diff --git a/src/pages/DevicePage.vala b/src/pages/DevicePage.vala
index 97e138d..0bb207c 100644
--- a/src/pages/DevicePage.vala
+++ b/src/pages/DevicePage.vala
@@ -32,6 +32,8 @@ public class Pages.DevicePage : Granite.SimpleSettingsPage {
if (device is Lifx.Lamp) {
controller = new Lifx.Controller (device);
+ } else if (device is Philips.Hue.Lamp) {
+ controller = new Philips.Hue.Controller (device);
}
controller.device.notify.connect (update_status);
diff --git a/src/philips/hue/Controller.vala b/src/philips/hue/Controller.vala
new file mode 100644
index 0000000..3aea018
--- /dev/null
+++ b/src/philips/hue/Controller.vala
@@ -0,0 +1,34 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Philips.Hue.Controller : Controllers.DeviceController {
+ private Philips.Hue.BridgeController controller;
+
+ public Controller (Models.Device device) {
+ Object (
+ device : device
+ );
+
+ // controller = Philips.Hue.BridgeController.instance;
+ }
+
+ public override void switch_power (bool on) {}
+}
From d68621c2996f2b628832721fd7ca243eb79d62b5 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Tue, 2 Jul 2019 21:03:59 +0200
Subject: [PATCH 33/84] Save and load configuration
---
data/com.github.manexim.home.gschema.xml | 8 ++--
src/philips/hue/Service.vala | 34 ++++++++++++++---
src/services/Settings.vala | 48 +++++++++++++++---------
3 files changed, 62 insertions(+), 28 deletions(-)
diff --git a/data/com.github.manexim.home.gschema.xml b/data/com.github.manexim.home.gschema.xml
index 7c2a095..860e96c 100644
--- a/data/com.github.manexim.home.gschema.xml
+++ b/data/com.github.manexim.home.gschema.xml
@@ -11,10 +11,10 @@
Lasted started app version
Last started app version to check if new features should be explained to user.
-
- []
- List of configured Philips Hue Bridges
- List of configured Philips Hue Bridges.
+
+ "{}"
+ Configuration
+ Configuration
false
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 17dab7d..1df533a 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -57,13 +57,35 @@ public class Philips.Hue.Service {
}
private void load_bridges () {
- string[] philips_hue_bridges = Settings.get_default ().philips_hue_bridges;
- foreach (var bridge_str in philips_hue_bridges) {
- var parser = new Json.Parser();
- parser.load_from_data (bridge_str, -1);
- var object = parser.get_root ().get_object ();
+ var configuration = Settings.get_default ().configuration_as_json ();
+ var o = configuration.get_object_member ("com");
+ if (o == null) {
+ return;
+ }
+
+ o = o.get_object_member ("philips");
+ if (o == null) {
+ return;
+ }
+
+ o = o.get_object_member ("hue");
+ if (o == null) {
+ return;
+ }
+
+ o = o.get_object_member ("bridges");
+ if (o == null) {
+ return;
+ }
+
+ foreach (var key in o.get_members ()) {
+ var obj = o.get_object_member (key);
+ if (obj == null) {
+ continue;
+ }
- var bridge = new Philips.Hue.Bridge.from_object (object);
+ var bridge = new Philips.Hue.Bridge.from_object (obj);
+ bridge.id = key;
bridge.power = Types.Power.UNKNOWN;
bridge_loaded_array.append_val (bridge);
diff --git a/src/services/Settings.vala b/src/services/Settings.vala
index f1356da..5d44972 100644
--- a/src/services/Settings.vala
+++ b/src/services/Settings.vala
@@ -33,7 +33,7 @@ public class Settings : Granite.Services.Settings {
public string uuid { get; protected set; }
public string last_started_app_version { get; set; }
- public string[] philips_hue_bridges { get; set; }
+ public string configuration { get; set; }
public int window_width { get; set; }
public int window_height { get; set; }
public int window_x { get; set; }
@@ -97,30 +97,42 @@ public class Settings : Granite.Services.Settings {
return _is_freedesktop_prefers_color_scheme_available;
}
+ public Json.Object configuration_as_json () {
+ var parser = new Json.Parser();
+ parser.load_from_data (configuration, -1);
+ var object = parser.get_root ().get_object ();
+
+ return object;
+ }
+
public void save () {
last_started_app_version = Config.APP_VERSION;
var philips_hue_service = Philips.Hue.Service.instance;
- var bridges = philips_hue_service.bridges;
-
- var bridges_list = new Gee.ArrayList ();
- for (uint i = 0; i < bridges.length; i++) {
- if (bridges[i].username != null) {
- size_t length;
-
- var gen = new Json.Generator ();
- var root = new Json.Node (Json.NodeType.OBJECT);
- var obj = new Json.Object ();
- root.set_object (obj);
-
- obj.set_string_member ("id", bridges[i].id);
- obj.set_string_member ("username", bridges[i].username);
- gen.set_root (root);
- bridges_list.add (gen.to_data (out length));
+ var obj = new Json.Object ();
+ var com = new Json.Object ();
+ var philips = new Json.Object ();
+ var hue = new Json.Object ();
+ var bridges = new Json.Object ();
+ for (uint i = 0; i < philips_hue_service.bridges.length; i++) {
+ if (philips_hue_service.bridges[i].username != null) {
+ var bridge = new Json.Object ();
+ bridge.set_string_member ("username", philips_hue_service.bridges[i].username);
+ bridges.set_object_member (philips_hue_service.bridges[i].id, bridge);
}
}
- philips_hue_bridges = bridges_list.to_array ();
+ hue.set_object_member ("bridges", bridges);
+ philips.set_object_member ("hue", hue);
+ com.set_object_member ("philips", philips);
+ obj.set_object_member ("com", com);
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ root.set_object (obj);
+ gen.set_root (root);
+
+ size_t length;
+ configuration = gen.to_data (out length);
}
}
From a407daedb2e23f567428c4bb1c3324965fc6a347 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Tue, 2 Jul 2019 21:14:25 +0200
Subject: [PATCH 34/84] Handle error
---
src/philips/hue/Service.vala | 56 +++++++++++++++++++-----------------
src/services/Settings.vala | 2 +-
2 files changed, 31 insertions(+), 27 deletions(-)
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 1df533a..43caa55 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -57,38 +57,42 @@ public class Philips.Hue.Service {
}
private void load_bridges () {
- var configuration = Settings.get_default ().configuration_as_json ();
- var o = configuration.get_object_member ("com");
- if (o == null) {
- return;
- }
-
- o = o.get_object_member ("philips");
- if (o == null) {
- return;
- }
+ try {
+ var configuration = Settings.get_default ().configuration_as_json ();
+ var o = configuration.get_object_member ("com");
+ if (o == null) {
+ return;
+ }
- o = o.get_object_member ("hue");
- if (o == null) {
- return;
- }
+ o = o.get_object_member ("philips");
+ if (o == null) {
+ return;
+ }
- o = o.get_object_member ("bridges");
- if (o == null) {
- return;
- }
+ o = o.get_object_member ("hue");
+ if (o == null) {
+ return;
+ }
- foreach (var key in o.get_members ()) {
- var obj = o.get_object_member (key);
- if (obj == null) {
- continue;
+ o = o.get_object_member ("bridges");
+ if (o == null) {
+ return;
}
- var bridge = new Philips.Hue.Bridge.from_object (obj);
- bridge.id = key;
- bridge.power = Types.Power.UNKNOWN;
+ foreach (var key in o.get_members ()) {
+ var obj = o.get_object_member (key);
+ if (obj == null) {
+ continue;
+ }
+
+ var bridge = new Philips.Hue.Bridge.from_object (obj);
+ bridge.id = key;
+ bridge.power = Types.Power.UNKNOWN;
- bridge_loaded_array.append_val (bridge);
+ bridge_loaded_array.append_val (bridge);
+ }
+ } catch (Error e) {
+ stderr.printf (e.message);
}
}
diff --git a/src/services/Settings.vala b/src/services/Settings.vala
index 5d44972..154a500 100644
--- a/src/services/Settings.vala
+++ b/src/services/Settings.vala
@@ -97,7 +97,7 @@ public class Settings : Granite.Services.Settings {
return _is_freedesktop_prefers_color_scheme_available;
}
- public Json.Object configuration_as_json () {
+ public Json.Object configuration_as_json () throws GLib.Error {
var parser = new Json.Parser();
parser.load_from_data (configuration, -1);
var object = parser.get_root ().get_object ();
From fcf54fd01ae8e3f2d4055ff43d6b2b2f4f265178 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Wed, 3 Jul 2019 07:12:26 +0200
Subject: [PATCH 35/84] Add support to switch Philips Hue lights on and off
---
src/philips/hue/BridgeController.vala | 26 ++++++++++++++++++++++++++
src/philips/hue/Controller.vala | 8 ++++++--
src/philips/hue/Lamp.vala | 15 +++++++++++++++
3 files changed, 47 insertions(+), 2 deletions(-)
diff --git a/src/philips/hue/BridgeController.vala b/src/philips/hue/BridgeController.vala
index 2a6bf2c..bb4f0dd 100644
--- a/src/philips/hue/BridgeController.vala
+++ b/src/philips/hue/BridgeController.vala
@@ -180,10 +180,12 @@ public class Philips.Hue.BridgeController {
foreach (var key in lights.get_members ()) {
var light = lights.get_object_member (key);
var lamp = new Philips.Hue.Lamp ();
+ lamp.number = key;
lamp.name = light.get_string_member ("name");
lamp.manufacturer = light.get_string_member ("manufacturername");
lamp.model = light.get_string_member ("modelid");
lamp.id = light.get_string_member ("uniqueid");
+ lamp.bridge = bridge;
var on = light.get_object_member ("state").get_boolean_member ("on");
if (on) {
@@ -205,6 +207,30 @@ public class Philips.Hue.BridgeController {
}
}
+ public void switch_light_power (Philips.Hue.Lamp lamp, bool on) {
+ string url = "%sapi/%s/lights/%s/state".printf (_bridge.base_url, _bridge.username, lamp.number);
+
+ var session = new Soup.Session ();
+ var message = new Soup.Message ("PUT", url);
+
+ size_t length;
+
+ var obj = new Json.Object ();
+ obj.set_boolean_member ("on", on);
+
+ var gen = new Json.Generator ();
+ var root = new Json.Node (Json.NodeType.OBJECT);
+ root.set_object (obj);
+ gen.set_root (root);
+
+ var params = gen.to_data (out length);
+
+ Soup.MemoryUse buffer = Soup.MemoryUse.STATIC;
+ message.set_request ("application/json", buffer, params.data);
+
+ session.send_message (message);
+ }
+
public Bridge bridge {
get {
return _bridge;
diff --git a/src/philips/hue/Controller.vala b/src/philips/hue/Controller.vala
index 3aea018..c538c12 100644
--- a/src/philips/hue/Controller.vala
+++ b/src/philips/hue/Controller.vala
@@ -27,8 +27,12 @@ public class Philips.Hue.Controller : Controllers.DeviceController {
device : device
);
- // controller = Philips.Hue.BridgeController.instance;
+ controller = new Philips.Hue.BridgeController ((device as Philips.Hue.Lamp).bridge);
}
- public override void switch_power (bool on) {}
+ public override void switch_power (bool on) {
+ controller.switch_light_power (device as Philips.Hue.Lamp, on);
+
+ _device.power = on ? Types.Power.ON : Types.Power.OFF;
+ }
}
diff --git a/src/philips/hue/Lamp.vala b/src/philips/hue/Lamp.vala
index 62aed0a..95f6d75 100644
--- a/src/philips/hue/Lamp.vala
+++ b/src/philips/hue/Lamp.vala
@@ -20,8 +20,23 @@
*/
public class Philips.Hue.Lamp : Models.Lamp {
+ public Philips.Hue.Bridge bridge;
+
public Lamp () {
icon = "com.github.manexim.home.lightbulb.philips.hue-symbolic";
manufacturer = "Philips";
}
+
+ public string number {
+ get {
+ if (!_obj.has_member ("number")) {
+ number = null;
+ }
+
+ return _obj.get_string_member ("number");
+ }
+ set {
+ _obj.set_string_member ("number", value);
+ }
+ }
}
From f003f2b22e1a1137924515b64104a52f8ab8714e Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Wed, 3 Jul 2019 20:08:22 +0200
Subject: [PATCH 36/84] Fix assertion check
---
src/philips/hue/Service.vala | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 43caa55..5a2bbd1 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -59,23 +59,28 @@ public class Philips.Hue.Service {
private void load_bridges () {
try {
var configuration = Settings.get_default ().configuration_as_json ();
- var o = configuration.get_object_member ("com");
- if (o == null) {
+ Json.Object o;
+ if (configuration.has_member ("com")) {
+ o = configuration.get_object_member ("com");
+ } else {
return;
}
- o = o.get_object_member ("philips");
- if (o == null) {
+ if (o.has_member ("philips")) {
+ o = o.get_object_member ("philips");
+ } else {
return;
}
- o = o.get_object_member ("hue");
- if (o == null) {
+ if (o.has_member ("hue")) {
+ o = o.get_object_member ("hue");
+ } else {
return;
}
- o = o.get_object_member ("bridges");
- if (o == null) {
+ if (o.has_member ("bridges")) {
+ o = o.get_object_member ("bridges");
+ } else {
return;
}
From 416b3c5c2dbac8f9a9df558d20ca80d71365ad66 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 4 Jul 2019 06:11:54 +0200
Subject: [PATCH 37/84] Add meson option to detect if running in demo mode
---
meson.build | 8 ++++++++
meson_options.txt | 1 +
src/config/Constants.vala | 6 ++++++
3 files changed, 15 insertions(+)
create mode 100644 meson_options.txt
diff --git a/meson.build b/meson.build
index 3849742..d378455 100644
--- a/meson.build
+++ b/meson.build
@@ -17,6 +17,14 @@ soup_dep = dependency('libsoup-2.4')
xml_dep = dependency('libxml-2.0')
uuid_dep = dependency('uuid')
+vala_flags = []
+enable_demo_mode = get_option('demo_mode') == 'true'
+if enable_demo_mode
+ vala_flags += ['--define', 'DEMO_MODE']
+endif
+
+add_project_arguments(vala_flags, language: 'vala')
+
subdir('data')
subdir('src')
subdir('po')
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..1f641af
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1 @@
+option('demo_mode', type: 'string', value: 'false', description: 'Check if demo mode should be enabled')
diff --git a/src/config/Constants.vala b/src/config/Constants.vala
index ac99fb7..625d927 100644
--- a/src/config/Constants.vala
+++ b/src/config/Constants.vala
@@ -23,4 +23,10 @@ namespace Config {
public const string APP_ID = "com.github.manexim.home";
public const string APP_NAME = "Home";
public const string APP_VERSION = "0.2.0";
+
+ #if DEMO_MODE
+ public const bool DEMO_MODE = true;
+ #else
+ public const bool DEMO_MODE = false;
+ #endif
}
From 061b7affb485303b6372551f8c4175a657c5dd73 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 4 Jul 2019 18:30:10 +0200
Subject: [PATCH 38/84] Implement demo mode
---
src/config/Constants.vala | 6 ---
src/lifx/Service.vala | 73 +++++++++++++++++++++++++++
src/pages/DevicePage.vala | 4 ++
src/philips/hue/BridgeController.vala | 12 +++++
src/philips/hue/Service.vala | 46 +++++++++++++++++
5 files changed, 135 insertions(+), 6 deletions(-)
diff --git a/src/config/Constants.vala b/src/config/Constants.vala
index 625d927..ac99fb7 100644
--- a/src/config/Constants.vala
+++ b/src/config/Constants.vala
@@ -23,10 +23,4 @@ namespace Config {
public const string APP_ID = "com.github.manexim.home";
public const string APP_NAME = "Home";
public const string APP_VERSION = "0.2.0";
-
- #if DEMO_MODE
- public const bool DEMO_MODE = true;
- #else
- public const bool DEMO_MODE = false;
- #endif
}
diff --git a/src/lifx/Service.vala b/src/lifx/Service.vala
index 30c1ab6..166ef41 100644
--- a/src/lifx/Service.vala
+++ b/src/lifx/Service.vala
@@ -64,9 +64,82 @@ public class Lifx.Service {
private Service () {
device_map = new Gee.HashMap ();
+ #if DEMO_MODE
+ new Thread (null, () => {
+ Thread.usleep (500 * 1000);
+
+ {
+ var lamp = new Lifx.Lamp ();
+ lamp.name = "Backyard";
+ lamp.id = "??:??:??:??:??:??:??:??";
+ lamp.power = Types.Power.OFF;
+ lamp.manufacturer = "LIFX";
+ lamp.model = "White 800 (High Voltage)";
+ on_new_device (lamp);
+ }
+
+ Thread.usleep (500 * 1000);
+
+ {
+ var lamp = new Lifx.Lamp ();
+ lamp.name = "Bedroom";
+ lamp.id = "??:??:??:??:??:??:??:??";
+ lamp.power = Types.Power.OFF;
+ lamp.model = "Color 1000";
+ on_new_device (lamp as Models.Device);
+ }
+
+ Thread.usleep (500 * 1000);
+
+ {
+ var lamp = new Lifx.Lamp ();
+ lamp.name = "Coffee Table";
+ lamp.id = "??:??:??:??:??:??:??:??";
+ lamp.power = Types.Power.ON;
+ lamp.model = "Color 1000";
+ on_new_device (lamp as Models.Device);
+ }
+
+ Thread.usleep (500 * 1000);
+
+ {
+ var lamp = new Lifx.Lamp ();
+ lamp.name = "Desk";
+ lamp.id = "??:??:??:??:??:??:??:??";
+ lamp.power = Types.Power.ON;
+ lamp.model = "Color 1000";
+ on_new_device (lamp as Models.Device);
+ }
+
+ Thread.usleep (500 * 1000);
+
+ {
+ var lamp = new Lifx.Lamp ();
+ lamp.name = "Hallway";
+ lamp.id = "??:??:??:??:??:??:??:??";
+ lamp.power = Types.Power.ON;
+ lamp.model = "Color 1000";
+ on_new_device (lamp as Models.Device);
+ }
+
+ Thread.usleep (500 * 1000);
+
+ {
+ var lamp = new Lifx.Lamp ();
+ lamp.name = "Living Room";
+ lamp.id = "??:??:??:??:??:??:??:??";
+ lamp.power = Types.Power.OFF;
+ lamp.model = "Color 1000";
+ on_new_device (lamp as Models.Device);
+ }
+
+ return null;
+ });
+ #else
setup_socket ();
listen ();
discover ();
+ #endif
}
private void setup_socket () {
diff --git a/src/pages/DevicePage.vala b/src/pages/DevicePage.vala
index 0bb207c..4c9259c 100644
--- a/src/pages/DevicePage.vala
+++ b/src/pages/DevicePage.vala
@@ -43,7 +43,11 @@ public class Pages.DevicePage : Granite.SimpleSettingsPage {
status_switch.notify["active"].connect (update_status);
status_switch.state_set.connect ((state) => {
+ #if DEMO_MODE
+ controller.device.power = state ? Types.Power.ON : Types.Power.OFF;
+ #else
controller.switch_power (state);
+ #endif
status_switch.active = state;
status_switch.state = state;
diff --git a/src/philips/hue/BridgeController.vala b/src/philips/hue/BridgeController.vala
index bb4f0dd..bad316c 100644
--- a/src/philips/hue/BridgeController.vala
+++ b/src/philips/hue/BridgeController.vala
@@ -23,6 +23,10 @@ public class Philips.Hue.BridgeController {
private Bridge _bridge;
private Gee.HashMap thing_map;
+ #if DEMO_MODE
+ private uint register_counter = 0;
+ #endif
+
public signal void on_new_lamp (Models.Lamp lamp);
public signal void on_updated_lamp (Models.Lamp lamp);
@@ -115,6 +119,13 @@ public class Philips.Hue.BridgeController {
}
public bool register () throws GLib.Error {
+ #if DEMO_MODE
+ if (register_counter++ == 2) {
+ _bridge.power = Types.Power.ON;
+
+ return true;
+ }
+ #else
string url = "%sapi".printf (_bridge.base_url);
var session = new Soup.Session ();
@@ -157,6 +168,7 @@ public class Philips.Hue.BridgeController {
return true;
}
}
+ #endif
return false;
}
diff --git a/src/philips/hue/Service.vala b/src/philips/hue/Service.vala
index 5a2bbd1..0dba059 100644
--- a/src/philips/hue/Service.vala
+++ b/src/philips/hue/Service.vala
@@ -50,10 +50,23 @@ public class Philips.Hue.Service {
bridge_loaded_array = new Array ();
bridge_array = new Array ();
+ #if DEMO_MODE
+ new Thread (null, () => {
+ Thread.usleep (2 * 1000 * 1000);
+
+ var bridge = new Philips.Hue.Bridge ();
+ bridge.name = "Philips Hue";
+ bridge.id = "????????????????";
+ found_bridge (bridge);
+
+ return null;
+ });
+ #else
load_bridges ();
setup_socket ();
listen ();
discover_bridges ();
+ #endif
}
private void load_bridges () {
@@ -162,6 +175,35 @@ public class Philips.Hue.Service {
}
private void discover_bridge_devices (Philips.Hue.Bridge bridge) {
+ #if DEMO_MODE
+ new Thread (null, () => {
+ while (bridge.power != Types.Power.ON) {
+ Thread.usleep (1 * 1000 * 1000);
+ }
+
+ {
+ var lamp = new Philips.Hue.Lamp ();
+ lamp.name = "Kitchen";
+ lamp.id = "??:??:??:??:??:??:??:??-??";
+ lamp.power = Types.Power.ON;
+ lamp.manufacturer = "Philips Hue";
+ lamp.model = "White";
+ on_new_device (lamp);
+ }
+
+ {
+ var lamp = new Philips.Hue.Lamp ();
+ lamp.name = "Garage";
+ lamp.id = "??:??:??:??:??:??:??:??-??";
+ lamp.power = Types.Power.OFF;
+ lamp.manufacturer = "Philips Hue";
+ lamp.model = "White";
+ on_new_device (lamp);
+ }
+
+ return null;
+ });
+ #else
var controller = new Philips.Hue.BridgeController (bridge);
controller.on_new_lamp.connect ((lamp) => {
on_new_device (lamp);
@@ -180,6 +222,7 @@ public class Philips.Hue.Service {
Thread.usleep (10 * 1000 * 1000);
}
});
+ #endif
}
private void discover_bridges_ssdp () {
@@ -222,7 +265,10 @@ public class Philips.Hue.Service {
private void found_bridge (Philips.Hue.Bridge bridge) {
var controller = new Philips.Hue.BridgeController (bridge);
+ #if DEMO_MODE
+ #else
controller.get_description ();
+ #endif
if (!is_in_array (bridge_array, bridge.id)) {
if (is_in_array (bridge_loaded_array, bridge.id)) {
From 08680faeb1d9d9dd2282e6454e2d002c18102412 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 4 Jul 2019 19:16:55 +0200
Subject: [PATCH 39/84] Add onboarding view for first run
---
src/MainWindow.vala | 16 +--
src/meson.build | 7 +-
src/onboarding/AbstractOnboardingView.vala | 69 +++++++++++++
src/onboarding/FinishView.vala | 30 ++++++
src/onboarding/LIFXView.vala | 30 ++++++
src/onboarding/PhilipsHueView.vala | 30 ++++++
src/onboarding/StartView.vala | 30 ++++++
src/views/OnboardingView.vala | 115 +++++++++++++++++++++
src/views/WelcomeView.vala | 56 ----------
9 files changed, 318 insertions(+), 65 deletions(-)
create mode 100644 src/onboarding/AbstractOnboardingView.vala
create mode 100644 src/onboarding/FinishView.vala
create mode 100644 src/onboarding/LIFXView.vala
create mode 100644 src/onboarding/PhilipsHueView.vala
create mode 100644 src/onboarding/StartView.vala
create mode 100644 src/views/OnboardingView.vala
delete mode 100644 src/views/WelcomeView.vala
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 314fbb6..da0857d 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -72,14 +72,14 @@ public class MainWindow : Gtk.ApplicationWindow {
stack = new Gtk.Stack ();
overlay.add (stack);
- // if (settings.is_first_run ()) {
- // var welcome_view = new WelcomeView ();
- // stack.add_named (welcome_view, "welcome");
-
- // welcome_view.start.connect (() => {
- // stack.set_visible_child_full (_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
- // });
- // }
+ if (settings.is_first_run ()) {
+ var onboarding_view = new Views.OnboardingView ();
+ stack.add_named (onboarding_view, "onboarding");
+
+ onboarding_view.start.connect (() => {
+ stack.set_visible_child_full (_("Overview"), Gtk.StackTransitionType.SLIDE_LEFT);
+ });
+ }
var overview = new Views.Overview ();
stack.add_named (overview, _("Overview"));
diff --git a/src/meson.build b/src/meson.build
index 5ff3672..1759b5b 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -10,6 +10,11 @@ sources = [
'models/Lamp.vala',
'models/Hub.vala',
'models/Thing.vala',
+ 'onboarding/AbstractOnboardingView.vala',
+ 'onboarding/FinishView.vala',
+ 'onboarding/LIFXView.vala',
+ 'onboarding/PhilipsHueView.vala',
+ 'onboarding/StartView.vala',
'pages/HueBridgeOnboardingPage.vala',
'pages/DevicePage.vala',
'pages/LoadingPage.vala',
@@ -24,8 +29,8 @@ sources = [
'utils/History.vala',
'utils/Platform.vala',
'views/DevicesView.vala',
+ 'views/OnboardingView.vala',
'views/Overview.vala',
- 'views/WelcomeView.vala',
'widgets/Carousel.vala',
'widgets/CarouselItem.vala',
'widgets/Overlay.vala',
diff --git a/src/onboarding/AbstractOnboardingView.vala b/src/onboarding/AbstractOnboardingView.vala
new file mode 100644
index 0000000..2ee4497
--- /dev/null
+++ b/src/onboarding/AbstractOnboardingView.vala
@@ -0,0 +1,69 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public abstract class Onboarding.AbstractOnboardingView : Gtk.Grid {
+ public string description { get; set; }
+ public string icon_name { get; construct; }
+ public string title { get; construct; }
+
+ public Gtk.Grid custom_bin { get; private set; }
+
+ construct {
+ var image = new Gtk.Image ();
+ image.icon_name = icon_name;
+ image.pixel_size = 64;
+
+ var title_label = new Gtk.Label (title);
+ title_label.get_style_context ().add_class (Granite.STYLE_CLASS_H2_LABEL);
+ title_label.halign = Gtk.Align.CENTER;
+
+ var description_label = new Gtk.Label (description);
+ description_label.halign = Gtk.Align.CENTER;
+ description_label.justify = Gtk.Justification.CENTER;
+ description_label.wrap = true;
+ description_label.max_width_chars = 50;
+ description_label.use_markup = true;
+
+ var header_area = new Gtk.Grid ();
+ header_area.column_spacing = 12;
+ header_area.halign = Gtk.Align.CENTER;
+ header_area.expand = true;
+ header_area.row_spacing = 12;
+ header_area.orientation = Gtk.Orientation.VERTICAL;
+ header_area.add (image);
+ header_area.add (title_label);
+ header_area.add (description_label);
+
+ custom_bin = new Gtk.Grid ();
+ custom_bin.column_spacing = 12;
+ custom_bin.expand = true;
+ custom_bin.row_spacing = 6;
+ custom_bin.halign = Gtk.Align.CENTER;
+
+ margin_start = margin_end = 10;
+ orientation = Gtk.Orientation.VERTICAL;
+ row_spacing = 24;
+ add (header_area);
+ add (custom_bin);
+
+ bind_property ("description", description_label, "label");
+ }
+}
diff --git a/src/onboarding/FinishView.vala b/src/onboarding/FinishView.vala
new file mode 100644
index 0000000..9e76ae1
--- /dev/null
+++ b/src/onboarding/FinishView.vala
@@ -0,0 +1,30 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Onboarding.FinishView : Onboarding.AbstractOnboardingView {
+ public FinishView () {
+ Object (
+ description: _("You can control your smart home gadgets directly via your local network. A connection to the internet is not required."),
+ icon_name: "process-completed",
+ title: _("Let's go")
+ );
+ }
+}
diff --git a/src/onboarding/LIFXView.vala b/src/onboarding/LIFXView.vala
new file mode 100644
index 0000000..9ed127f
--- /dev/null
+++ b/src/onboarding/LIFXView.vala
@@ -0,0 +1,30 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Onboarding.LIFXView : Onboarding.AbstractOnboardingView {
+ public LIFXView () {
+ Object (
+ description: _("Smart Wi-Fi lights by LIFX are supported. They must already be connected to your Wi-Fi."),
+ icon_name: "com.github.manexim.home.logo.lifx-symbolic",
+ title: "LIFX"
+ );
+ }
+}
diff --git a/src/onboarding/PhilipsHueView.vala b/src/onboarding/PhilipsHueView.vala
new file mode 100644
index 0000000..491e606
--- /dev/null
+++ b/src/onboarding/PhilipsHueView.vala
@@ -0,0 +1,30 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Onboarding.PhilipsHueView : Onboarding.AbstractOnboardingView {
+ public PhilipsHueView () {
+ Object (
+ description: _("Smart ZigBee lights by Philips Hue are supported. They must already be connected to your Philips Hue Bridge."),
+ icon_name: "com.github.manexim.home.logo.philips.hue-symbolic",
+ title: "Philips Hue"
+ );
+ }
+}
diff --git a/src/onboarding/StartView.vala b/src/onboarding/StartView.vala
new file mode 100644
index 0000000..8eea269
--- /dev/null
+++ b/src/onboarding/StartView.vala
@@ -0,0 +1,30 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Onboarding.StartView : Onboarding.AbstractOnboardingView {
+ public StartView () {
+ Object (
+ description: _("Control your smart home gadgets"),
+ icon_name: "com.github.manexim.home",
+ title: _("Welcome to %s!").printf (Config.APP_NAME)
+ );
+ }
+}
diff --git a/src/views/OnboardingView.vala b/src/views/OnboardingView.vala
new file mode 100644
index 0000000..84505d8
--- /dev/null
+++ b/src/views/OnboardingView.vala
@@ -0,0 +1,115 @@
+/*
+* Copyright (c) 2019 Manexim (https://github.com/manexim)
+*
+* This program is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public
+* License along with this program; if not, write to the
+* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+* Boston, MA 02110-1301 USA
+*
+* Authored by: Marius Meisenzahl
+*/
+
+public class Views.OnboardingView : Gtk.Grid {
+ public signal void start ();
+
+ public OnboardingView () {
+ var stack = new Gtk.Stack ();
+ stack.expand = true;
+ stack.valign = stack.halign = Gtk.Align.CENTER;
+ stack.transition_type = Gtk.StackTransitionType.SLIDE_LEFT_RIGHT;
+
+ var start_view = new Onboarding.StartView ();
+ stack.add_titled (start_view, "start", start_view.title);
+ stack.child_set_property (start_view, "icon-name", "pager-checked-symbolic");
+
+ var lifx_view = new Onboarding.LIFXView ();
+ stack.add_titled (lifx_view, "lifx", lifx_view.title);
+ stack.child_set_property (lifx_view, "icon-name", "pager-checked-symbolic");
+
+ var philips_hue_view = new Onboarding.PhilipsHueView ();
+ stack.add_titled (philips_hue_view, "philips_hue", philips_hue_view.title);
+ stack.child_set_property (philips_hue_view, "icon-name", "pager-checked-symbolic");
+
+ var finish_view = new Onboarding.FinishView ();
+ stack.add_titled (finish_view, "finish", finish_view.title);
+ stack.child_set_property (finish_view, "icon-name", "pager-checked-symbolic");
+
+ GLib.List views = stack.get_children ();
+ foreach (Gtk.Widget view in views) {
+ var view_name_value = GLib.Value (typeof (string));
+ stack.child_get_property (view, "name", ref view_name_value);
+ }
+
+ var skip_button = new Gtk.Button.with_label (_("Skip All"));
+
+ var skip_revealer = new Gtk.Revealer ();
+ skip_revealer.reveal_child = true;
+ skip_revealer.transition_type = Gtk.RevealerTransitionType.NONE;
+ skip_revealer.add (skip_button);
+
+ var stack_switcher = new Gtk.StackSwitcher ();
+ stack_switcher.halign = Gtk.Align.CENTER;
+ stack_switcher.stack = stack;
+
+ var next_button = new Gtk.Button.with_label (_("Next"));
+ next_button.get_style_context ().add_class (Gtk.STYLE_CLASS_SUGGESTED_ACTION);
+
+ var action_area = new Gtk.ButtonBox (Gtk.Orientation.HORIZONTAL);
+ action_area.margin_start = action_area.margin_end = 10;
+ action_area.expand = true;
+ action_area.spacing = 6;
+ action_area.valign = Gtk.Align.END;
+ action_area.layout_style = Gtk.ButtonBoxStyle.EDGE;
+ action_area.add (skip_revealer);
+ action_area.add (stack_switcher);
+ action_area.add (next_button);
+ action_area.set_child_non_homogeneous (stack_switcher, true);
+
+ margin_bottom = 10;
+ orientation = Gtk.Orientation.VERTICAL;
+ row_spacing = 24;
+ add (stack);
+ add (action_area);
+
+ next_button.grab_focus ();
+
+ stack.notify["visible-child-name"].connect (() => {
+ if (stack.visible_child_name == "finish") {
+ next_button.label = _("Get Started");
+ skip_revealer.reveal_child = false;
+ } else {
+ next_button.label = _("Next");
+ skip_revealer.reveal_child = true;
+ }
+ });
+
+ next_button.clicked.connect (() => {
+ GLib.List current_views = stack.get_children ();
+ var index = current_views.index (stack.visible_child);
+ if (index < current_views.length () - 1) {
+ stack.visible_child = current_views.nth_data (index + 1);
+ } else {
+ start ();
+ }
+ });
+
+ skip_button.clicked.connect (() => {
+ foreach (Gtk.Widget view in views) {
+ var view_name_value = GLib.Value (typeof (string));
+ stack.child_get_property (view, "name", ref view_name_value);
+ }
+
+ stack.visible_child_name = "finish";
+ });
+ }
+}
diff --git a/src/views/WelcomeView.vala b/src/views/WelcomeView.vala
deleted file mode 100644
index 1a4667f..0000000
--- a/src/views/WelcomeView.vala
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
-* Copyright (c) 2019 Manexim (https://github.com/manexim)
-*
-* This program is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public
-* License as published by the Free Software Foundation; either
-* version 2 of the License, or (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* General Public License for more details.
-*
-* You should have received a copy of the GNU General Public
-* License along with this program; if not, write to the
-* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-* Boston, MA 02110-1301 USA
-*
-* Authored by: Marius Meisenzahl
-*/
-
-public class Views.WelcomeView : Gtk.Grid {
- public signal void start ();
-
- construct {
- var welcome = new Granite.Widgets.Welcome ("Home", _("Control your smart home gadgets"));
- welcome.append (
- "com.github.manexim.home.logo.lifx-symbolic",
- "LIFX",
- _("Smart Wi-Fi lights by LIFX are supported. They must already be connected to your Wi-Fi.")
- );
- welcome.append (
- "com.github.manexim.home.logo.philips.hue-symbolic",
- "Philips Hue",
- _("Smart ZigBee lights by Philips Hue are supported. They must already be connected to your Philips Hue Bridge.")
- );
- welcome.append (
- "go-next",
- _("Let's go"),
- _("You can control your smart home gadgets directly via your local network. A connection to the internet is not required.")
- );
-
- welcome.set_item_sensitivity (0, false);
- welcome.set_item_sensitivity (1, false);
-
- add (welcome);
-
- welcome.activated.connect ((index) => {
- switch (index) {
- case 2:
- start ();
- break;
- }
- });
- }
-}
From 9933c161ff06b23584415f9ceccaa281b54b0354 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 4 Jul 2019 19:22:50 +0200
Subject: [PATCH 40/84] Update translations
---
po/POTFILES | 10 +++--
po/com.github.manexim.home.pot | 67 +++++++++++++++++-----------
po/de.po | 81 ++++++++++++++++++++--------------
po/fr.po | 75 +++++++++++++++++++------------
po/ru.po | 75 +++++++++++++++++++------------
5 files changed, 190 insertions(+), 118 deletions(-)
diff --git a/po/POTFILES b/po/POTFILES
index d91989d..96f91e0 100644
--- a/po/POTFILES
+++ b/po/POTFILES
@@ -1,6 +1,10 @@
src/MainWindow.vala
-src/views/Overview.vala
-src/views/WelcomeView.vala
-src/pages/ThingPage.vala
+src/onboarding/FinishView.vala
+src/onboarding/LIFXView.vala
+src/onboarding/PhilipsHueView.vala
+src/onboarding/StartView.vala
+src/pages/DevicePage.vala
src/pages/LoadingPage.vala
src/pages/HueBridgeOnboardingPage.vala
+src/views/Overview.vala
+src/views/OnboardingView.vala
diff --git a/po/com.github.manexim.home.pot b/po/com.github.manexim.home.pot
index d8ea7cd..351d944 100644
--- a/po/com.github.manexim.home.pot
+++ b/po/com.github.manexim.home.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-23 09:20+0200\n"
+"POT-Creation-Date: 2019-07-04 19:22+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -25,65 +25,62 @@ msgstr ""
msgid "Dark background"
msgstr ""
-#: src/MainWindow.vala:84 src/MainWindow.vala:85
+#: src/MainWindow.vala:80 src/MainWindow.vala:85 src/MainWindow.vala:86
msgid "Overview"
msgstr ""
-#: src/views/Overview.vala:30
-msgid "Devices"
-msgstr ""
-
-#: src/views/Overview.vala:65
-msgid "Hubs"
+#: src/onboarding/FinishView.vala:25
+msgid ""
+"You can control your smart home gadgets directly via your local network. A "
+"connection to the internet is not required."
msgstr ""
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
+#: src/onboarding/FinishView.vala:27
+msgid "Let's go"
msgstr ""
-#: src/views/WelcomeView.vala:30
+#: src/onboarding/LIFXView.vala:25
msgid ""
"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
"your Wi-Fi."
msgstr ""
-#: src/views/WelcomeView.vala:35
+#: src/onboarding/PhilipsHueView.vala:25
msgid ""
"Smart ZigBee lights by Philips Hue are supported. They must already be "
"connected to your Philips Hue Bridge."
msgstr ""
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
+#: src/onboarding/StartView.vala:25
+msgid "Control your smart home gadgets"
msgstr ""
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
+#: src/onboarding/StartView.vala:27
+#, c-format
+msgid "Welcome to %s!"
msgstr ""
-#: src/pages/ThingPage.vala:65
+#: src/pages/DevicePage.vala:62
msgid "ID: "
msgstr ""
-#: src/pages/ThingPage.vala:66
+#: src/pages/DevicePage.vala:63
msgid "Manufacturer: "
msgstr ""
-#: src/pages/ThingPage.vala:67
+#: src/pages/DevicePage.vala:64
msgid "Model: "
msgstr ""
-#: src/pages/ThingPage.vala:72
+#: src/pages/DevicePage.vala:73
msgid "Enabled"
msgstr ""
-#: src/pages/ThingPage.vala:76
+#: src/pages/DevicePage.vala:79
msgid "Disabled"
msgstr ""
-#: src/pages/ThingPage.vala:80
+#: src/pages/DevicePage.vala:83
msgid "Unknown"
msgstr ""
@@ -95,6 +92,26 @@ msgstr ""
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
-#: src/pages/HueBridgeOnboardingPage.vala:61
+#: src/pages/HueBridgeOnboardingPage.vala:59
msgid "The Hue bridge was successfully registered."
msgstr ""
+
+#: src/views/Overview.vala:30
+msgid "Devices"
+msgstr ""
+
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
+#: src/views/OnboardingView.vala:53
+msgid "Skip All"
+msgstr ""
+
+#: src/views/OnboardingView.vala:64 src/views/OnboardingView.vala:91
+msgid "Next"
+msgstr ""
+
+#: src/views/OnboardingView.vala:88
+msgid "Get Started"
+msgstr ""
diff --git a/po/de.po b/po/de.po
index 8e71f5f..dab54ef 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-23 09:20+0200\n"
+"POT-Creation-Date: 2019-07-04 19:19+0200\n"
"PO-Revision-Date: 2019-06-22 09:24+0200\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -25,71 +25,68 @@ msgstr "Heller Hintergrund"
msgid "Dark background"
msgstr "Dunkler Hintergrund"
-#: src/MainWindow.vala:84 src/MainWindow.vala:85
+#: src/MainWindow.vala:80 src/MainWindow.vala:85 src/MainWindow.vala:86
msgid "Overview"
msgstr "Übersicht"
-#: src/views/Overview.vala:30
-msgid "Devices"
-msgstr "Geräte"
-
-#: src/views/Overview.vala:65
-msgid "Hubs"
+#: src/onboarding/FinishView.vala:25
+msgid ""
+"You can control your smart home gadgets directly via your local network. A "
+"connection to the internet is not required."
msgstr ""
+"Du kannst deine Smart Home Gadgets direkt über dein lokales Netzwerk "
+"steuern. Eine Verbindung zum Internet ist nicht erforderlich."
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr "Steuer deine Smart Home Gadgets"
+#: src/onboarding/FinishView.vala:27
+msgid "Let's go"
+msgstr "Lass uns loslegen"
-#: src/views/WelcomeView.vala:30
+#: src/onboarding/LIFXView.vala:25
msgid ""
"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
"your Wi-Fi."
msgstr ""
"Intelligente WLAN-Leuchten von LIFX werden unterstützt. Sie müssen bereits "
-"mit Ihrem WLAN verbunden sein."
+"mit deinem WLAN verbunden sein."
-#: src/views/WelcomeView.vala:35
+#: src/onboarding/PhilipsHueView.vala:25
msgid ""
"Smart ZigBee lights by Philips Hue are supported. They must already be "
"connected to your Philips Hue Bridge."
msgstr ""
"Intelligente ZigBee-Leuchten von Philips Hue werden unterstützt. Sie müssen "
-"bereits an Ihre Philips Hue Bridge angeschlossen sein."
+"bereits an deine Philips Hue Bridge angeschlossen sein."
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr "Lass uns loslegen"
+#: src/onboarding/StartView.vala:25
+msgid "Control your smart home gadgets"
+msgstr "Steuer deine Smart Home Gadgets"
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
-msgstr ""
-"Du kannst deine Smart Home Gadgets direkt über dein lokales Netzwerk "
-"steuern. Eine Verbindung zum Internet ist nicht erforderlich."
+#: src/onboarding/StartView.vala:27
+#, c-format
+msgid "Welcome to %s!"
+msgstr "Willkommen zu %s!"
-#: src/pages/ThingPage.vala:65
+#: src/pages/DevicePage.vala:62
msgid "ID: "
msgstr "ID: "
-#: src/pages/ThingPage.vala:66
+#: src/pages/DevicePage.vala:63
msgid "Manufacturer: "
msgstr "Hersteller: "
-#: src/pages/ThingPage.vala:67
+#: src/pages/DevicePage.vala:64
msgid "Model: "
msgstr "Modell: "
-#: src/pages/ThingPage.vala:72
+#: src/pages/DevicePage.vala:73
msgid "Enabled"
msgstr "Aktiviert"
-#: src/pages/ThingPage.vala:76
+#: src/pages/DevicePage.vala:79
msgid "Disabled"
msgstr "Deaktiviert"
-#: src/pages/ThingPage.vala:80
+#: src/pages/DevicePage.vala:83
msgid "Unknown"
msgstr "Unbekannt"
@@ -101,6 +98,26 @@ msgstr "Suche nach steuerbaren Smart Home Gadgets."
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr "Drücke die Push-Link-Taste in der Mitte der Hue Bridge."
-#: src/pages/HueBridgeOnboardingPage.vala:61
+#: src/pages/HueBridgeOnboardingPage.vala:59
msgid "The Hue bridge was successfully registered."
msgstr "Die Hue Bridge wurde erfolgreich registriert."
+
+#: src/views/Overview.vala:30
+msgid "Devices"
+msgstr "Geräte"
+
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
+#: src/views/OnboardingView.vala:53
+msgid "Skip All"
+msgstr "Alles überspringen"
+
+#: src/views/OnboardingView.vala:64 src/views/OnboardingView.vala:91
+msgid "Next"
+msgstr "Weiter"
+
+#: src/views/OnboardingView.vala:88
+msgid "Get Started"
+msgstr "Beginnen"
diff --git a/po/fr.po b/po/fr.po
index c2388a5..cadfe21 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-23 09:20+0200\n"
+"POT-Creation-Date: 2019-07-04 19:19+0200\n"
"PO-Revision-Date: 2019-06-17 22:32+0400\n"
"Last-Translator: NathanBnm\n"
"Language-Team: none\n"
@@ -25,23 +25,23 @@ msgstr ""
msgid "Dark background"
msgstr ""
-#: src/MainWindow.vala:84 src/MainWindow.vala:85
+#: src/MainWindow.vala:80 src/MainWindow.vala:85 src/MainWindow.vala:86
msgid "Overview"
msgstr ""
-#: src/views/Overview.vala:30
-msgid "Devices"
-msgstr ""
-
-#: src/views/Overview.vala:65
-msgid "Hubs"
+#: src/onboarding/FinishView.vala:25
+msgid ""
+"You can control your smart home gadgets directly via your local network. A "
+"connection to the internet is not required."
msgstr ""
+"Vous pouvez contrôler vos objets connectés directement via votre réseau "
+"local. Une connexion Internet n'est pas nécessaire."
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr "Contrôlez vos objets connectés pour maison intelligente"
+#: src/onboarding/FinishView.vala:27
+msgid "Let's go"
+msgstr "C'est parti"
-#: src/views/WelcomeView.vala:30
+#: src/onboarding/LIFXView.vala:25
msgid ""
"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
"your Wi-Fi."
@@ -49,7 +49,7 @@ msgstr ""
"Les lampes Wi-Fi intelligentes de LIFX sont prises en charges. Elles doivent "
"déjà être connectées à votre Wi-Fi."
-#: src/views/WelcomeView.vala:35
+#: src/onboarding/PhilipsHueView.vala:25
msgid ""
"Smart ZigBee lights by Philips Hue are supported. They must already be "
"connected to your Philips Hue Bridge."
@@ -57,39 +57,36 @@ msgstr ""
"Les lampes intelligentes ZigBee de Philips Hue sont prises en charge. Elles "
"doivent déjà être connectées à votre Philips Hue Bridge."
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr "C'est parti"
+#: src/onboarding/StartView.vala:25
+msgid "Control your smart home gadgets"
+msgstr "Contrôlez vos objets connectés pour maison intelligente"
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
+#: src/onboarding/StartView.vala:27
+#, c-format
+msgid "Welcome to %s!"
msgstr ""
-"Vous pouvez contrôler vos objets connectés directement via votre réseau "
-"local. Une connexion Internet n'est pas nécessaire."
-#: src/pages/ThingPage.vala:65
+#: src/pages/DevicePage.vala:62
msgid "ID: "
msgstr "Identifiant : "
-#: src/pages/ThingPage.vala:66
+#: src/pages/DevicePage.vala:63
msgid "Manufacturer: "
msgstr "Fabricant : "
-#: src/pages/ThingPage.vala:67
+#: src/pages/DevicePage.vala:64
msgid "Model: "
msgstr "Modèle : "
-#: src/pages/ThingPage.vala:72
+#: src/pages/DevicePage.vala:73
msgid "Enabled"
msgstr "Activé"
-#: src/pages/ThingPage.vala:76
+#: src/pages/DevicePage.vala:79
msgid "Disabled"
msgstr "Désactivé"
-#: src/pages/ThingPage.vala:80
+#: src/pages/DevicePage.vala:83
msgid "Unknown"
msgstr "Inconnu"
@@ -101,6 +98,26 @@ msgstr "Recherche d'objets connectés à contrôler."
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
-#: src/pages/HueBridgeOnboardingPage.vala:61
+#: src/pages/HueBridgeOnboardingPage.vala:59
msgid "The Hue bridge was successfully registered."
msgstr ""
+
+#: src/views/Overview.vala:30
+msgid "Devices"
+msgstr ""
+
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
+#: src/views/OnboardingView.vala:53
+msgid "Skip All"
+msgstr ""
+
+#: src/views/OnboardingView.vala:64 src/views/OnboardingView.vala:91
+msgid "Next"
+msgstr ""
+
+#: src/views/OnboardingView.vala:88
+msgid "Get Started"
+msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 2b52c5e..5a1af44 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: com.github.manexim.home\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-23 09:20+0200\n"
+"POT-Creation-Date: 2019-07-04 19:19+0200\n"
"PO-Revision-Date: 2019-06-17 22:56+0400\n"
"Last-Translator: Andrey Kultyapov \n"
"Language-Team: none\n"
@@ -27,23 +27,23 @@ msgstr ""
msgid "Dark background"
msgstr ""
-#: src/MainWindow.vala:84 src/MainWindow.vala:85
+#: src/MainWindow.vala:80 src/MainWindow.vala:85 src/MainWindow.vala:86
msgid "Overview"
msgstr ""
-#: src/views/Overview.vala:30
-msgid "Devices"
-msgstr ""
-
-#: src/views/Overview.vala:65
-msgid "Hubs"
+#: src/onboarding/FinishView.vala:25
+msgid ""
+"You can control your smart home gadgets directly via your local network. A "
+"connection to the internet is not required."
msgstr ""
+"Вы можете управлять своими умными домашними устройствами непосредственно "
+"через локальную сеть. Подключение к интернету не требуется."
-#: src/views/WelcomeView.vala:26
-msgid "Control your smart home gadgets"
-msgstr "Управляйте своими умными домашними устройствами"
+#: src/onboarding/FinishView.vala:27
+msgid "Let's go"
+msgstr "Поехали"
-#: src/views/WelcomeView.vala:30
+#: src/onboarding/LIFXView.vala:25
msgid ""
"Smart Wi-Fi lights by LIFX are supported. They must already be connected to "
"your Wi-Fi."
@@ -51,7 +51,7 @@ msgstr ""
"Поддерживаются умные Wi-Fi лампы LIFX . Они уже должны быть подключены к Wi-"
"Fi."
-#: src/views/WelcomeView.vala:35
+#: src/onboarding/PhilipsHueView.vala:25
msgid ""
"Smart ZigBee lights by Philips Hue are supported. They must already be "
"connected to your Philips Hue Bridge."
@@ -59,39 +59,36 @@ msgstr ""
"Поддерживаются умные ZigBee лампы от Philips Hue. Они уже должны быть "
"подключены к Philips Hue Bridge."
-#: src/views/WelcomeView.vala:39
-msgid "Let's go"
-msgstr "Поехали"
+#: src/onboarding/StartView.vala:25
+msgid "Control your smart home gadgets"
+msgstr "Управляйте своими умными домашними устройствами"
-#: src/views/WelcomeView.vala:40
-msgid ""
-"You can control your smart home gadgets directly via your local network. A "
-"connection to the internet is not required."
+#: src/onboarding/StartView.vala:27
+#, c-format
+msgid "Welcome to %s!"
msgstr ""
-"Вы можете управлять своими умными домашними устройствами непосредственно "
-"через локальную сеть. Подключение к интернету не требуется."
-#: src/pages/ThingPage.vala:65
+#: src/pages/DevicePage.vala:62
msgid "ID: "
msgstr ""
-#: src/pages/ThingPage.vala:66
+#: src/pages/DevicePage.vala:63
msgid "Manufacturer: "
msgstr ""
-#: src/pages/ThingPage.vala:67
+#: src/pages/DevicePage.vala:64
msgid "Model: "
msgstr ""
-#: src/pages/ThingPage.vala:72
+#: src/pages/DevicePage.vala:73
msgid "Enabled"
msgstr ""
-#: src/pages/ThingPage.vala:76
+#: src/pages/DevicePage.vala:79
msgid "Disabled"
msgstr ""
-#: src/pages/ThingPage.vala:80
+#: src/pages/DevicePage.vala:83
msgid "Unknown"
msgstr ""
@@ -103,6 +100,26 @@ msgstr "Поиск умных домашних устройств."
msgid "Press the push-link button in the middle of the Hue bridge."
msgstr ""
-#: src/pages/HueBridgeOnboardingPage.vala:61
+#: src/pages/HueBridgeOnboardingPage.vala:59
msgid "The Hue bridge was successfully registered."
msgstr ""
+
+#: src/views/Overview.vala:30
+msgid "Devices"
+msgstr ""
+
+#: src/views/Overview.vala:65
+msgid "Hubs"
+msgstr ""
+
+#: src/views/OnboardingView.vala:53
+msgid "Skip All"
+msgstr ""
+
+#: src/views/OnboardingView.vala:64 src/views/OnboardingView.vala:91
+msgid "Next"
+msgstr ""
+
+#: src/views/OnboardingView.vala:88
+msgid "Get Started"
+msgstr ""
From d5b063a002394d12d66491d8e8b761a5a1ad20ba Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 4 Jul 2019 19:27:50 +0200
Subject: [PATCH 41/84] Update title of first onboarding page
---
src/config/Constants.vala | 1 +
src/onboarding/StartView.vala | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/config/Constants.vala b/src/config/Constants.vala
index ac99fb7..0f1d7bf 100644
--- a/src/config/Constants.vala
+++ b/src/config/Constants.vala
@@ -21,6 +21,7 @@
namespace Config {
public const string APP_ID = "com.github.manexim.home";
+ public const string APP_AUTHOR = "Manexim";
public const string APP_NAME = "Home";
public const string APP_VERSION = "0.2.0";
}
diff --git a/src/onboarding/StartView.vala b/src/onboarding/StartView.vala
index 8eea269..fc3e151 100644
--- a/src/onboarding/StartView.vala
+++ b/src/onboarding/StartView.vala
@@ -24,7 +24,7 @@ public class Onboarding.StartView : Onboarding.AbstractOnboardingView {
Object (
description: _("Control your smart home gadgets"),
icon_name: "com.github.manexim.home",
- title: _("Welcome to %s!").printf (Config.APP_NAME)
+ title: _("Welcome to %s!").printf (Config.APP_AUTHOR + " " + Config.APP_NAME)
);
}
}
From 62d3f12fa1e15b9945bb05a7d31b3ceaa7619db3 Mon Sep 17 00:00:00 2001
From: Marius Meisenzahl
Date: Thu, 4 Jul 2019 19:51:56 +0200
Subject: [PATCH 42/84] Release version 0.3.0
---
README.md | 10 +++++++
data/com.github.manexim.home.appdata.xml.in | 31 ++++++++++++++++++++
data/screenshots/000.png | Bin 37053 -> 30990 bytes
data/screenshots/001.png | Bin 18685 -> 40636 bytes
data/screenshots/002.png | Bin 51559 -> 40925 bytes
data/screenshots/003.png | Bin 50433 -> 36297 bytes
data/screenshots/004.png | Bin 50399 -> 44407 bytes
data/screenshots/005.png | Bin 0 -> 29804 bytes
debian/changelog | 29 ++++++++++++++++++
src/config/Constants.vala | 2 +-
10 files changed, 71 insertions(+), 1 deletion(-)
create mode 100644 data/screenshots/005.png
diff --git a/README.md b/README.md
index cf8de93..3995d50 100644
--- a/README.md
+++ b/README.md
@@ -39,10 +39,20 @@
|
+
+
+ |
+## Supported devices
+
+
+
## Installation
### Dependencies
diff --git a/data/com.github.manexim.home.appdata.xml.in b/data/com.github.manexim.home.appdata.xml.in
index 2dca9d8..ae0d737 100644
--- a/data/com.github.manexim.home.appdata.xml.in
+++ b/data/com.github.manexim.home.appdata.xml.in
@@ -11,6 +11,7 @@
Supported devices:
@@ -20,6 +21,32 @@
com.github.manexim.home
+
+
+ New:
+
+ - Add new UI
+ - Add initial support for Philips Hue devices
+ - Add discovery for Philips Hue bridges
+ - Add page to configure Philips Hue bridges
+ - Add service to save configurations
+
+ Improved:
+
+ - Update welcome view
+ - Add mode switch for dark theme if freedesktop schema is not available
+
+ Fixed:
+
+ Translations:
+
+ - French (by NathanBnm)
+ - German
+ - Russian (by camellan)
+
+
+
New:
@@ -67,6 +94,10 @@
https://raw.githubusercontent.com/manexim/home/master/data/screenshots/004.png
+
+
+ https://raw.githubusercontent.com/manexim/home/master/data/screenshots/005.png
+
Manexim
https://github.com/manexim
diff --git a/data/screenshots/000.png b/data/screenshots/000.png
index 0f75ec9b2fa252a98c8f7f03e766008fc6130b11..07e59b5f80adda33736fa392b3ad1260407f3200 100644
GIT binary patch
literal 30990
zcmeEuXH-*P5NE6)0)ljqE+V}NN=JI{MY{A3QbKPkO{6OzHS}I2K!89%Md`hh5Kwvx
zNC`;a7ykQkKkn{1d(OV|j=cA7n>#aiX6|op{GhF=L_|PK00M!CRFvg)L7>|#AkZxu
z{JX%H$^O)O;LmMuSrvVJ;0ngKjRAp}Kq~St_5HKA(SE_ESj5%du_$dC=I4+X{}6;S9Vbk1yz6s
z_%ycurcj=ogEP4_R<4w)fM@4{NBJgVYHP}ZLu=K$NdOW57cZF|nn}u>!ZBc6s-4*$+M?jv%?N8a82}kjIC(7uhz|
zekgVe_$I@_WqUtTYE-O%kGx0I(xwhk^2_&{pph(VuAUqzh;{2_Hs>_UWce0n(;AMB
zaNRY1QcL&Yr7vFGZw^8Kdt01$c|kIwov0u9DGHAD|%Dr
zMU%x0nbx6vD=$i3@@rl;e`fdru0++KuIbIwqXVuOuc!9jAw(@NEb5}EaV6S2u^j3>
z;5RZPI!wPPWyk}sti!HJi!pGn*8yIG8HY)WP2wok@RJ7vKKD11;adGJvZfhk9uGMS
zrq+qQ<0?S@H)Goqa
zz^Ymd;*rPKDRcYiG)0W7@$?zHef85QnS$X6(qiqeV&-4gpdaO-Zu_%>tYpQ1jsNRq
z-~90!luee`RR0CNGC7!9XZu&_r&|)M6_xS@Zu_El!L`H)3r8=(KQ;lB}4_UIlF;SUIoB|xEQYh79mWM3~|1^bE
z3NSg+;3NpbqbOjLhhk@=9-d@xu%@4_nF&zVXhx7|;*qrAvuC?9-^A65{4GD4qamYR
zCR0%LBgUFb^P^-$jCs1#zoh;Qq5VAuO4J&zp3Fv{5@~k-4p9d2E1Fi`than;`qVnE
zcN|34J`Edl>k=`=GJol@JqxD4R=5Sj7#gN*0)~e?!`QuX^b^LjReb@9tY6f!wsbPf
zTwj#!vaAC=t`(l_#9bxn<8S8Cef7I-+hkVqb>x+i1kAcbx4bB1$XUMjtc2p|OmfMf
z?2aU$9y8AEKT!6|3f|5l`=y(-TAw#0Layxay3e&q
z3l+1R2x^sc8E9m-lP>g2+i{gELb-|UWyuYBk$&BfdHt#4dJVDIKSH>P<~5MBMD+an
zmQsF~B!gGYZz|qQ<3?uXg;xP}?11`EKDBI&S=7Up9cc0(3^$Cna!V#DYgXN(eVS+F
za@3=x@A28?V)WC*DRh?$?kjn0L1!s(^$5Oikg)h>=vm3tv^swVc-ONyvB68zf{zy%
z^dXNLOkxt-g2d@B2%4PuLo^-Dvsm2}D5}W&1E2kUjO$UqYWW?~mM`ywe2rl@
zB9ecc`V6tpLT&qlOw;>AaLt(LT8LS^Bv<92-@a*Dg@_HOSIQLFnkbN0;DamF6yePB
z6^S-sPfQ>~Eu@OL2J81@IU6C3BDt=a=ir2lz;x$Rnnnm(M9m;DAN*?rn
zVv^<>;IZY^a=n&|3ctw3%)Dko%gFZCoGHTeLQCLMC``R!%woN^xu77?ZR_q3WuNTz
z5$2pVP2Y2$^kR7K2u{{Abv@WP(sFJ!O6te=nI5{OZ~xPbCRJGAEFgauV||Yq_~Mvl
zTg~h>Dai6EoMrObNPfFlPX7HQ+gixDImt1H!oj$}4JsP#pBQ91kAj=ILMTe_>$1ab
zZE0nT$XI{{(AP}bLJeUVU7AmGfYak9xvW-k=S{^gf7sHqB0&cEwh+O4LQo=BRoF*G
z4m{Eg7)g%;zSR?B$}_XQgk%ls2w@fAEZRUmgE
zNp^FI363DyGm(E3fN7l0JuGCrST}(TKQ~Na?+w5$P>`yTLr~D!5#)TC{dnFN<;JIi
ztXk$_$tGk~tuT-W)NIzLw+DmuCib!LeK
zLn0>^*RAJhpYf*MmbF|5pRacEQk^lbt&WGYOa&y>%(_l&q#mw#9FJswx|7i<56m`s
zENH#|{#zhl`)M!7H8FjW{VORbjD@&uPm<|l1iEo1!TTe3B9+)#WneQM{w=3Z*meV$2#xl#A6A3$W!8BvFsk?Tn@1Hn{o7ELfpn-2D~$&AB_(
zQSrBl5RpV5rq(#ko>nCN*bezrwZdZ7)1amZJ*%sKC7)6;gRN^){&??w+O^vqIrf=+
z7d;Vk&s}#o?KrmHf@4mrSV^XRb2po_gpzdD%oS#%{rD90^FH$gcKoYbmOBk@&{)NS
z)1Um=vx8Llz@Rl2`U*@r^3j@8g=Ej0s!3bwy1j(2FUdmVK
zm~!$wf=-%tWXk8u|5#}NqD8<`;wPK@gmMc%d*(O`wc9@l&J^`7QH-Z84!t;4Nii`o
zX>gh5tu}8p1jd((BGge(Q0RLr|CC&piDaZiBTL`dxZHE8t9R`{)boP^PlZd==NGoh
z!okXvs3^5JeKWd4mseoCz{#*JygZQ!on5h<)abz$Qr;~hCHS)bubuQQB#xVlqop4Y!`25
z43Jz=RizJ*gKTsWw)$}!ySpG=c)%-ELhMFLir|HbE6Tez#W|Myjy~NmBrT?tx2@myFgM1r({KE7a+@FgQNP5~?2N_U{0>j!HLvLBZB_4#evoeWDLzf~6v7+{BMdRL@i0DKd$BIV|TweSfX}k&16>
zqZCrZn(%_9m`~XaWoTfK8Y~5Yxy}{N(=!-KxGj(72>rMS_d*yO}~O5$d~dnO7+;E?$Ec=&Gn*~G}m2%@UIT;&+;2ie@(
z8W$x8fs6%LL>|-Bl!f6_du5~$3Z0XIl7ynH))znWO~Juif!rQWP8)mv7pGYGzr~NA
zqHZM{&Wii(=!3zH31XXNa`uDk7!lv?S0}+zjWC$+1D_1e#BNr|aH$MaURPJw=i{yI
z?TLQAjwVHO3{Eimi6`Zsrx1xu^u@pFxKZh
ztlFv$)mRJm;_!H@Q0F_?^LSPTR@L;D)22z~nW6l0d-=0gdx^cDWXSfARtEpyH$wJ4
zT7I@OhF@Kt8CY7@c3fg>;ro4DdSXDxYFv-msdfAj)*r~LH@)!uDxuiqa4rk^wNk+s
z%TF(SMwsKh_{yM(XBx8OulSv8cyc|_Vj6`qU1kt`=`AfRmviNB__67k@~y6|qWioP
z_X>jrZTmZHKIDcRX}HaxIScJSKN-xb^)8v})%#)u0zGKOeA0PZO0-
zBV_OM0J`z{^fVCdw-B;_b^)y4&kMWh6K5{8lftYIxg!b~ly!`#OL-^umA&l;%+0uZ3p>y`yovt(M&oi>KS26b
z4F#Vhci1m5e33d`J+k2f+tDwvp`Rn{lWO7bQk{zkt0&G1fDcJ{7G7Q=6%prS&h%%I
zvzxnNTEi0O*;AR25hp4JuC1K4!#+z!y~*D$K1i#97@|B6{JS`^aIB`}F)32xZIQR>
ziW`Nwp&DL)zZtTr2N}~*qE9`fPCjKNCvdvDyr31ZmhS?~o15n#Q78(6NH|`VdSh0U
zQ|7+EgtN1=>c+`}{}K@f5Q=VdP_$DfdV0~fb!E>Vev7hnt3cr+WjU~nZs8G6fTzt%
zQ@MJbdc%$iNK=)jA-i>w2aSI{iFt8D^et5m=6M
zPzedd^r8R$;1)f0yMFkHR$dveGv?^X7jTVsX3a*1hMeRC965YOtc0COPMMNjP0Fi)
z!eQDO3GZU}x*7cv`E<<9tBvdJIj9LM;Be#~+;OVPcs~#!w%c}~ucMRyNlQvJ$2-P|
zRk0~XSwHLv9UsdlLsGU<>i01|rq67Hw&zdRf6}qCU?@rRwUw)@t3A_2(dYP}k!~=!
zlOJzz5_@$?6AxB_nqrR_L-UlLt3Y|~m|PGbb=|HA?wp6xC^kBCK5ng6s5YE_y3u&C
z;^JY{>ejQA5_fsAa)39%+q)w0*c9rfc9|w}2a_Zf_(wCOHt4mNUgO)NztZ9N_h>=k
za_$`$zA9rpO>-6B(Ba6;D9GnWeQK;dl!vg
zu=pB7&qf&qg>o$CN=lwc9*)T2+-uYWMqU)G(P5YY9d>nbdcGzN(OuvKfxHUNw2YK5
zOB97OQ(Qa5Fn?81X`C(_n@}$C(h8g3eos-GymsX$WM~X5guc(Hed#UWt#cSX^fdi{N`Jk+U_l}HRa=r
zbzZ7E;UfCA&;nlCy|iLl5&3?*ze(vNg-JXtUKED5LPPRElz8gt%7xF-nW2~)xXD5P
z;*E@4H1VW?kvSU*1_m6X%R+ld;AVO0VI*HL^QX?6pd_kXPoZZmtCBod-Fl~Ls8<2L
z?UfkA$Sy5$lg6&JhJ+RR=jNYIYbPrxY8^iuQ%|;>JI|o1UUuhHJE@ZqpJb
zh2w?`0iuMdGMz$P)G2v!I1c~&<38CASwG+pCnnb4KakP}HXMp;jV{wQJH}jNfMJ@L
zpU>U*)`Ccx^R@r8PPC&Fam59OKm-EH@flMA^hXuBmRw_G5uo6Kz^2`N8-ADgQQ5(e
zIG<5;0w#eJEygk*{<-dWsaora(I1)bCaUB%({Z*b;C|&MVE`%FgMD~zFW5?o
z=r~{DgCCBm0lX&c9GNt-tX5(S(Wf%^A$@Of6O>JM@ti$yics7+BPe_5Vo|~C0&7=o
zQKz5Zm!Ijg8axP@*D}dR74m&;}PrOJF{ts}O7nDcdzLC}nT&Pv@c
zh%_i<@QZ+r&-Xi2>ycCzBlCzL10$nSAg0q+dgK}L?)&SpkV2QJe7R`n!AxO5(z=Rk
zbpZ$V0TOs?ysC{1b#A6PIXQrD6FdLgsfXN+Ak)Ng!-s_xP2&aT<;XPU9sjji!nX
zKpfK7r)us!C=A%1*#s3*5A_&%^GmYEz$B;(MY77r5AXWzsA7E*QKt7JZ4>o2yhwL%
zk%$vHEIVvp%w%z`wyTY`0p5EdL$#isLjvjw1ae3u5-z>Hmv#e`6y|O)rQcsk+$eHF
zap_RY>;aCim}5T4GM#W&iR$OFw2N%x)dLKZ`1wBGJ1Ajog-gXUF|542Q4S_iQBj@7
zzHH>J)>`$VJMmHfl3?eRE&;e_VbzE|>=JZH${76j?NqgCY5lO2DMO+X1qB5z6t2E6
zCN7Sh^B#6u{P_XL0Wt=5z;Xa)wzyb9Esc8=Fu%1niIO5KOyBtl-R9ej`_uWRlbGf7
z_4HVqP-sbSMGqiwotT^BPVX-+Oq3EU1_2cV5Eh8NE;^GIuVPwS+Gma#C`#)%F9rxHn+F8
z8L9-44Nl{S6M9-3z{Xv3#_k6{VT&2BfuW)E`M)q17{DB#{a*I1hH=eLPMJVJPft&u0ALGk
zC#zXdH`CJGK<66bj52UY!}?23Axx$YWi<=IBn!*vsVxu7nA;uFlMKgiy)yz#17FUf
zh+&~I>Rvm#FWNj+GMn5`FbKsa6%O!{*;t>hg#h*|afixp&NJG*{bY5g+r7zD3c|OM
zo|++o62@xZ+?ikvlhUXkwOHrOKQvr&PMSkEGEVs
zi0-IKH{u@XJY16h3_SLBMJvNJDvrtSu-XqStz(ExB
zvs_e}Wk)D5&=&E1mMtzWF5DIvyEUx^M1o5A$=oq9KDR#XWWN1cBgQ|kPLq6dRR4TY
za?+5r*M2mnw5aRD(^MuFIsghw?yh4jTE|#RzfRGGtX@NTUK|fuSIbj
zU&R5$Ps^0^Nba#LHX;*<8St6CDw<3LjL|bFLfYgNRVZ&NB}sV%Z2}%6Zk40mX*RaA
zs)7`Mq&@T*#LZcou%I*2|E1iap!1h)1@K^u^2*1pbua>4r`#a%DdeMO-E9ENBb;S;
zp6baQXgX~p`SLcLxonop}>%jS47W#&n5iJxeRi!*3od2a5>BgE0?lsXJp}5A<
zk}C8~6`l^kUE8zyT1*;WnaJC+91*EIX!pr?tE>?1w2!jjW&t|QeNk^;L`(T|%OZJ)
zDXl!=flh-Ly*#Q);&1+Ce`-$Mj5Tr~&j#u`Bf4An!i-fyOE$-iwR2EWg
z-@b&pQ|*Oz!K`Bt9*UA8t?qTlL@G69rrS1pe?V)?Q&UqYG7Apeuz9Y4CtP6J0IR%=
zEL|j2KySZD#MEG_UK~?^rT1UVU#xfUg&x7UM*+h+W({w3v`
zcsk|&^qT&2wPHhchw~VHh!Dz#+zh}sNfF>mWsz5Q+m~$EsOx-*stI%t-zFVvc#vi*
zX9DG#LU-4OzFDSLf(^+h3hUz
z>-#LaPVZ6%FI)WORN?oob4^U_UdD9xNCnnO8%l!<6W5pWf*FK;$$kGw_UtivYS;S7
zWUw)jymz-H&acgOICW^hKu`6hyu8>ggCpO#_3qn5*VDj(T}4n2=n9)rH>Ft2o5ef*
zE8Zhw*8*i)sg>ex6ccsRyh|F{HsT7&`h7jEBz4}+F5Q|ey|jL&f-e?dU01E`%u~d{;ISxI>yT;JG=$#9()JJtSy3P7iDIMA&7f9A*NDWilr{El~PqnNRx-Dgj3rkZ(qZx;g01~$tN`qYKnl2GI|tb^>saf
zNFC4xCNCY2w2%wq1OQ*u%jH*K$9?^#f|xAG(5%tc?GuPmery!t4V7fLu70=zH{2Ey
zwimrky3yd+W9vTcntKfuYqxtDJTK83PYaeb>0v5(g}2ERj%xubVzmU@)=do>b3{{;
zw#Yxf7M)B<8He6)-otz3A8a`&7_U>7G8JV!K`%dE^APm=i#0JzpxQ^MIfN*M8`qBv
z^VX2;)K6oMRVEg5O+=5vnf4D
zktR#>=P)Z}C;B>j1S;pp+V;KLI>>I5k>qmz9%KhK{$D9$o&w(UXPtWAp$II1YSyZn1KrUZ`wc>T2NvTm%
zlZ?3@0K^u-bX^8|QS#`0Ot7#{zUhCfB9jbkJv#|mq5hv_u_%yS^9=Mz?tk%+{A!j6
z|GJ|$gu-?=0aNno)RV@Y1j(0ix<9
z1%w`6v2pMvi?oNLPoy>L$!6qtyxvFw1SWif}`v
zF!v^y%wWIN04c*m`rEk9YTl^DXbLwx-$WyJH@pY^mRs
z79_|2LqfH<;jQ4t{V#v`0jzHpO40Ccvq5~)3CwA0Oi)T1WfsMexRKm_*y9Gbqm3&h
z0?D+n;uJqRrXj*{+jT56aeDm^`2K{WNY68PCcnIiFg1*@QyYQKi(Uv)hvYcA?0@a0
z)z;xk{FBUP`Zmcjo?Zjl?DxsHaa)&(JPA!9ub+`hYb-9SMEt1sM*EFFbx#P5Zqz;k
zQlE6VWxLKS7V!!Z)W~4mArr6oo^X79wwfi@iq?6ZfYo(2Q_MB?G|0tvmKo!YE>xP9
zC~1t}ny~WqX-vTvVmr|<@4fY8BSnSEm
z3irLCf%0(ZNWC`w!(X5iAGnO@eyq|xLC2G^s+P(dJS{tpYL`^SS0dn7eiPjMF_{W-_I5)
zP4SFWpm*0hS06NPE=>wb=qB!Q6<*%4R!%WBsdFec5i=ogco)zD93s(vbWP^m4mFYU
zIx(}ZwK9w+qa^=sp-$NBVMN-tS&0aWQA*y2#L92?VW^{WC|6$B(Gz1>YW)^qM1DmB
zHYr?+7tSXCBEr8)JVN<78Gpf#82dtnekqG5EpYo@<%f>cg0{W7rIQ@uE6YGE@R_9x
z5NzIqtwAf^)|nvz>eNA{^GOfHK11)T3*a+6q{DDkwK$WKxJD19AJUACXRtmZCdb|tF)D|;EWhTdf)gg3p
z3>`AN0cID6<8($a<&8Q%D*~X;E>
zePe{1Uo;hzjqCIG*PnE(qK+#VX1n
zZ|QY;wVJ268k^_8M^7$(hp`#snX1ae9p#_&e&y+fZI{{De#2)R<}Y?b)-1Gxn=)?>
zW>^AVR=fSmmf
z{~YD>RZVeXhSWS?&Nc&n^S)N360er;)j-TL2QNg8%eQ7=^A(O;Bsgw8G2=~#SSmAJ4+>0Tg)tM}dBG
z8}0Mgaoew_UlV`Wk9p=5Tk+PQqH2$xkbe8`w^TzTwV0h2@%S1~X84bozDubSXD+?4
z0*j$Zf>)V>+cOi1Krk3fd#&nuedfjE-8m(l64AZHNON=cZMjy*SDt=ajw3TKD>irI
zGf6u)H)}>GX@9`%jLo;WP3Kh;os}j_jvv>pO@Mb`Jdx+j8e7j595f_Y5jKF17pwq5
zF`%j20UEW$wKUb04rayEu#WseY}O>LbE?}6!7Ov*Of^BqpIGUfA-WPP=fBNj7>g#g
zeB#QWX8hJ5?Y^FH@~AnB^r$%cl%v-f$yGn?GBzFb`|X--XQC?1C&e&jdf-i+(z3Bn
ziuZwSrS`;sD#JTo%;}ffHNlW?^(m^4k)TXyq8#=*3nuI~UAW7WwBnq;eW(N_#JjKP
zudRwo;!%r=d!u$&4oV~^$ldE}_sk}mSx(S3fID$WdR2(lR7lZahcm#8A-+P28v_L7
z;fsp6wMWBm3%KhQL9>cC24x*~y-+#l`;F!02o+w1yU+nwF`~ktG(yv;at3oDR~kWE
zTLB%VW`#&KUZNW6BGSoDgO!RDr)EJZocXl4R!!1Qe5%7gG|wcUw!Joi@F^sXR>hwR
zpZ<0HJ`olhg$PK0nys(K*2asHp3r$Co7PGuG4pRFR;_dmP&
zpntqqHzY3O{5uPfqkFyoNlMvdzR;H}vdq`QIlmYG;W~iN!D&D4`rq-Oy$WR22+Oyw
zV)g&c5f*+K1{V7A&1)GU@)GwWGf@EfwY9#@8F_4t+tkpQ@
zr3P(HBiE|DC8ucg%(|basX}s60Sp`}WIFyYQca=*4k=(Tn9cQd?VzAm0BHp7VEf1}
zIvcF->vF(S=rqQDwd+qJC%7#7)$55s?3@>I^Q?>NJ-F`>c!#-qh90
zEAI~MrM2Spt*L~aofOX)APdNbX
zLETzgCuLe19>p|7y=g@YYIGs*g7Q9Jv&x?3mUy5L+D6#?_S3@*U|3qyV}JCU
z>0NA&_trl=-F#|>0Cbdug;xIXZBUZZdCr}1FWU*n)2e&Orr=25pDvgYxUAX~V}3b%
zZrQ9-TWOPF7oRH1kY_xKwEmelbr`SLp!-6(-_%Z8ef6eW2wpTW00@1s3
zl@wZ%MM{*2;zq_DBbiBB-wDE;z)|Tf@6rSvy9$bk$*RFH%RD7WfO(}zNYSm(@&fy>
z#B|aMrRJVFQsR;oY>M6PJVE=zf#<*2OwKN)8p~yGDTd0{YqrWj&PqQCiyhIOjRc}Y
zCh7M>cBjQUFrq-JTrUutgF#O3jDG86-zYk`G`5twdNrAeIbCN=+{#y?a_WuBao(;P
z`7NLa?qf6B=yym+4C662@38C-3o3LEvHnDSn|ro$cxvuy$7Cg=fR5obl9!$o8(JKM
zMj)1%^~i=qjg-s|8Z73(CA>5lPi>)-4gWj>5vQ&fyW~x|nj<0X6K&@G7NIZs+F|N+
zQghXb$4#n}oj%J0Lf{jlnvoBzHWjA;-4`p69&Ao4IN+Bx&%g0cfdRi1F*6HKP~tMI
zPX@+}je?ES>7`{oJIJ)Kjk_~NcUoF80+R+P|37r^|jxw;M|DHfwgA?MM&_
z!iO*)n;dtsiCZXk{|C7q?NUl7`V}2~QA!MnJc;RH1vh0xmpb-A+9d;{fRgldn!qa*
zsB#U+uo&yosSbo{JI%rrbvlR5k-EXGo
zfd|x+SU-+8ucKjAAzGK46+7OrETfHij}Rj*-|V8{kjvK7^bf3)T0BUE=ZD;r@vF_u
zbfe9V(9_4tJ|{(;`Zh4f?%0lv9m^1d1@~4pX~b*&;nnxXmSM&A7Ga6G%|{`U{+LD+
zzYQ`tW}vUx)IJ!E;8)5iKha|tu^D!sR4}41pULJpM}|~&@R`-H4k0v`=7JtR>NV`I
zhzxYrh)n2MuRJ|(PNo$rQ_Vje40QSKarh|=Rc;!3%#-tsY4z9FW2du)U4XgGW`)BY
zW|oLU%6M8cwnDq6Da2k(=rMv0d-*)9)MJ=#;=pvz$0BG~2Y#LfnTFDZ72vI&s~Txl
zYL;Uo$igQS_EEgU7R;*27hnoBNers4B
zJKmM_#ipsZaC7S-b#fp9gSzYpCpx+El+VB|nU)oOJsZSLPgF
z#ltH4B2t^uN5QVo*BiyJOcS#p<9wl>8C`zQQPgE`!G*$}M~~vqj)>rxqkE^FSHY^_
zQG+CO(KKYfJS*&qHN-xmGN|K5X{fPu8M2h?>VOVz_f6$=YPY?*1^sJZhUmpXV2EX_
z&kAGiMC*aa$mgAov=;a!xve)EA#iu&^MO=(P-u&GrF7V*62>tz8K{)M#jtBejoPJ4
zvpO3A3*lsL@OyW0QTx5GHa=b01-e!Mt
ztu>Y1Yd%@(SFoz?HU({xj>{Yy9h*<>Z}47xq>-4(+lf4AV+eF==IvN5Dl1^wr0F)#
zQ%gYArdtH_ZA=7B<*prmlhuQ?Y(RpdNcLdpy()YD208e@}fKii@J?t#i8Ckur*~
zsZY@ZHjd7}IjFX(NTWm7EQPTzG(?cX{~A6nkrzhY9XKgUsIe>sGb$lCMd6qFwti?t
zWv+LwrXQlJ12Or~Au5KrIwUZ8Q!BHUOpjw?NdV93w2HL>+?n>GHZuQ`-6DUOfxeb4
zraaku&H2aBqzUTH-vPlOj5%${cOJO!^2gH+G}nZ)8uVzhSUjw7kUdOedUyw7U6+L#
z*71U6Lau6t#LrxFat?hHcrP~|g1ffOPdoVj&1`cG{PMK~CP-GrTFMq)h#V
z&+n(_ALV_-sCy5T8$>$I;U34-j*q
z0h6DY)@CWTg0zSJ)k=Uq3l#do?HR$Pm+ir&Rrd<*kQyd?NA~fMgX*&I
z@7mb7C7(ljJ{RK)w$p*vas*YQD3@rbRRg)ghg(Tf$aXml-NI-iB!K^qH!{bKAi>2T
zi-#z|bUm`c2BjpJ@It9@iCA;Q8)eS8lOk{`0pxzFjY|chjhv_P#3{zs%e;NdVKA}p
z&nu&B^(!npZsUolw+tk`L#LY5)JRjzTKI9Q(|aBT(_?#NC9g(H!N1mf=3$$bXIYm5
z+j^&1cHMOg>qf_|t*}W;%kyZ%nuQuk?BKqi3AB|!ZP&B(=RFlO+81R{_MXp2ailwO
zkjLtm&LWQN(HroMN;My}mitJbcH~eCMp{_7I)V+yG-|=hyDrORI;srgv(5~!XuLI7
z{+?O)V6eSQE3Jb6Q@4f&tTKgNK8JSr6mRm;Reyi$*RYI8&J011Fep^&i0gTGT^OpR
zHLbVRpK>)@WlSArl^-O=@QS&fppeUF%SPbi`1++`N0L9~2`F-Luk7#zJ}mt?Xu>%!wvdN36p*9PH6$C3z(
zbTdEof0En*m=s9+#Sv=tZTKHTzGzHNJv|e@DCBws=<4;^_d|E2goM-+D;kd_XRAXmO6GG*OpB&xV?^R^8^1Z)da
zOhZ^eW3*a}K%c{Q;7j0m#HGvW1is!pE8qBY-sAN>Ms#iCWp=h1DF;sTE)p{fZR)pB
zw?R+6&W#vAeYskC_F5D3c3RGRN}qhrKi|Gsl2qDi-UzJ@K4)`#B(65T)KDy<1gY%T
zf*mf_?vACL4ydVnPXLxR<1}7NMJgi|L7udTl@ImTpO6KT5lF
z$8q_5Pd>Sz6gHY>l$wztVzAvR#4tXcPoEw#Zz|Vu7@A(zxQ{KBmMUMd8J-kXD*8Ko
z%lk{hi@8Fc-71}aW)CYFQ_8twsx302;4j~e?e~!=qQHY`KgV8n_Yn<;3GhW>cVS(6
zsGQN%xrX%R5@+K|Nw4DQ(~E`lq|K(9(UOpr8S6VBl9#w;Hmr>~oTcr+(!0@0D~+GB
zaT0}O3OYc2xkHp1h3uVPwRMnm$qcrhboeM>`cH?qI*MC!Eh+}Zk1Ok1bk6+TrdvID
zClJ!7H9Mvh+bf^%I__v(mG`%WO+K%=%H0XEN`+x+jN~pDLYnR3DX%auC0i;)=XAf7
zO=WL&RQ3-jfe+%P$2x1X(IMAGab9eIA3%XdQ2X26(w3RVDK>c$i-vpTV=<{u#x7Zkw^BlH%M*T
z(cGus=-KuO3Oo&6eFSFYcvyUSHg+1j(|mc?{OWxq@>3BC0iA`>_FO2cYuuQqLjPk90=@f>Hq
z6bfVijUQ&n;pNA8XP2LjU0qs?Q%V(dLz>OC&~-}jH%uumww^ivARN4ktvo~d6#nK@
z_yWK_*Z(iT=_~V-@t|iLz0w=WcQ+R-R&}S~BTe@(rhW1jeCKL@oPl~x;($Kb)=pAUSL%g`|?v7ec
zV49}akB{d|JtRXbX~iUHp9Q8!iC&3aY(q-Q?Z@4TdjF*FY_uIs&8Ht8Sh|mRE;OsL
z6UU6h*S?;dA{(zpz|t3u31{ezZgh!$>f!E3hp$o722LYA`CjYfH$Zoi`mcVniyO9q
z75R?!PMnJVz3>vU*-=_3NN<6=C!g(#yFimehl(ZaraF0q~CS9kfjy07#s6!^(;91!Q?u5SW3lH
zYjoh{@u8|xzE)As=asFoe4`F&%Y~rEDqaFmcpEOC@%e)<=2dXV=x+I!Wq
ziVy8ooAw-K{AhfvyPwMCy|e@SZ1i7bapE)~XyiE#;_M4AMt=;=%L=WtPzv4im2CSf
zDp~)#>2zvMb7IDs^<(GGME|jLIktK>f+mE#*8J2T$T@~Yw2lDBgJh<}3^)D+HEk7z
zbtt6|ml5zCOgjB&fbVD^VG`Ar=)Eu#Sd*OZFUP^wQ%ZAjzlb^dk6@IM#YBvr2BImj
z<9sk)FyXSTJz$(L^hvs3+)x3%ka#|@?zKXbW5Ys=X`~k=ii_=QWTSQdeEem
zmbyN(H#B*w9oGIQ3mG(sfO}>drH~`NYHJX}Wu~EFjfx&xZ>px&u#A?k@`ok%HRyMf
zi->vJu@4dc`!=VwTD+4FJYF2O1t+h$E|fTg`nFykUZGkK_L~Ad!V)YG2$Jv}>Oe
zXRrTiR8_oX71V_*EK(CT(~fRKf?$#GbBrtUEwn?HoKEKc~NN;??N26>c#
z0eBs~w!1m_K9J=$+GL-gA>B0545anef|qMhMn&wGrml9f=Uv^j^e$(VwJ(q0n^mo=
z^?S2Kd@)+*{d)q^Q@?H%!jdbURiT`c!T#fWdkX-YKGvy7nYs2(E@2a2ov5i~H3A3(k
zF28K-H}R7*yIL3ZJh}>U7%&Y}GdqX-{ao|#S8Urz%F0@(ESMJGP2bz-xKbVP{}s8n
zQpyvD*B)YcJ}7!cftP#6UZ;lc*K0Y>^8DU0oH#CZwD-b#XtQ}6Q5)Nz>#3O?_%|-5
zOeAzD@$#|M-sNsrjmM>a+wtFkx=Yw_7oBCRm~WuwM;rI%@;_in$%9Z+zuBNg#{C^S
zP}~bSArN&yszK%AXe8=a!QGC@C+-NAnp{7x^Vv^S3Zg9bya9&UUK5?3vlMU77H+t3c$R#JB&nk&Mq>0Fie)lw8NsUoNqJ5Pv~~}~JRO`BKSFQhH}8H|mH%x0-2$&W_n@Ctfa^%~@Y_@ALv7cmZ!XPj
z@Va`#g0%;@lzwi9EXLgG_gp}@Sld)i=l#ZN&K>be
z>eZrl2^c7tp4@N0@eO~R^=5doQSNg-``XYKhK4N9t!t}-pE4LXhq)flz`VGTRyq>U
z;9skEFWbHx&zL>@AML$YSW{cjH;%`4Jc{{q)L$>(m`5i38++QAwp=8phRj2IY2@Sfp6pc{xAP`-*4<2nU|1?uwh!U
zc0SG>FIGPLw1`Hq-|S7`ysnPK(?L<%Hu34L1yQh&Z2?zt
zG5*}$FNxD1?JA8EVCs?%T^pM=`6ysS{$o|eImTB_bmD6OM1>+0cAp{_Hqy)3?x=$b3YCdhSkO5kGq}vBiaKWaQq^A{)tcCVCEgM~}d!8X>
zm9X~q%!a)RHo{BQv2$0Z)0d_Yt++S;B|Q$!y%7d(@tb+BzAkL|ZcpkGA$F^V5j(Z(
zZP#`&TRe0iNv6x8e$OCmby352$=49`WAQ!}(m7DWh_j!<7uRWSv3sdUb#gB;SMMma
zN-y8n0D)%GTiFMy*jdqI>f-}oWpf0lC#A}FH=&B7Rsi(Z&ZE$%J)%M``0SBZNDWQV
z8aU9^MNABn){Y=Cz}ynW*F<_5HsXmcx$D1usH+m*qKd6QpQ|%)Jnd8Xe+S2~!`m8!
zvAsvWV+W_AD>;r9=F*OI`c#}DN}D*Hez`(^Ei)iuitC~J0_ebJ{ww04oDTN%!5SS<
zt~z_hml*CL-Q({#SC}Qj2;W$9tj{>wY2QlgSRwk`ODOLC+f+30K%^^Y7pv|}@bk?0
zEol&v7`%Qwhu0^Zu$Lf6e{8xl6@i?l(w-ofymEwO#9FTHGQ0}g$$<*>+LmWd6=wNf
z$1x@gyHt-0c9tDxck$&k`TsEcNy@-&uzi==t>Qt(eQ_Don6Q|4m!jVMJVkqk85Xch^HZl=qn9RZBe=nw{*MkJ}4J31<9!KQy}L+ohonUtbpN
z=+b6(2LBo_MIZv+-A7KBPHR;{6lOh1c@G1ZKG7AYv&?e%<_K9JWfunT(X5@G;NITc
z(`0byfPc=Z!q%DD&8`}Ik%$%t%S&UNdG+;qyXlJ4T|e^11DxSCtsxz1D_j14`^%~U
zzE1ZDEc-!8yPO((E%l#@QB+UH%y#Z}bydGk-HdQR?+jWf5$#%LT{A0@dCir}%`yBz
z5T$rUk&RN<-o%Lon4Cege5tQ0;|X3tE;tS$t>f#8yXSphyRapeU>BxFTRfu9RVJuF
zqU+E@q5f>h1|8(<>>0Bz4^nE}^2Ksp*c_iw>)CzH)ae4kIE%6
zsp(u-I)pM0aLL`JoXXW&V^C?m^|1*1wF-5Ymd=IGZ%=pnDniazunR{!i*rR1SH3%$
zyIhXWhqEHp8;6daW&7UYN_RZbe?l2|
zdL8#CK7MmQX9Y+N{F7G7^=3by4&=}7=ga)p4Dda;{$t607R7&30x;pfg#$3*KV1Sa
z;XkGDpHld5H{D+d|4%FhOqKf!0KJ8)J73ItKP~?MZ~wW|A&If)d!GK}5TKWkaud;J
z6&wwL7yCxe!<&CF&Yn8Kw9rMcjY;!~@u`3J3)ZAGeI(W~+>q~dq6yC*D+hG-l5YF^
zp)B2834lzo&!87UH&;h0Qs&S0|M7rs`{|HxgZDn@1Fhru>Ae^J*O`{T5kNliozIJcHD0@&eJ|3mz%&{_hf?-#reoEAzt%evuEEs^z#a&K
zr^5Wp9yDIPm~y*%Eg_NJR-E>7>a*;ApN{0iYtygTbUu^s1M~OmPHjv^*yHBN8|_`Y
zVTmnSdBy>;;?k@wTagZN5d8>W_95YN?+3PE*O{J_m3A3zr3*4L2tU8-e#1Np(CulU
z{=VzI;=%WM?|fP`T>3Kw01y(x)7n!{hVJ@KN6TE$u##tVX!KZvFJg+2qDmsj?Hq}m?EL0_$=-}R|7w%6
zFsOGFD${1$^hnv#AN4W5SRBf~z)c)@DLJ&*f8aVBV9?v%nR90kanA1?fqikR6A{=e
zU9{o(niZ&r4on0W+$oU62>RdR*8=J&KY#Z6=kC#Pf&9we(JLge^s7P0^cQH$FE{GR
z%}UM`KpsBNmsm<)e1opAC=~;XvA3q{H3RF(M_tnY2xw-JWr>NZTD}MAiTx9O&rHd;
zv&k>wW?L7ztvYpfR+_0tMNj3*&x9P{dYD;i&S5SVMrGDrHmC_7McXfX>IU@QVG^m^m*`-m%6gAad3?8jTj00x{HO6~JXF`6FsV}#@0(DA$2<)wv
zC{K6o(Ug4$)&k26s}>2QpE$1H$e+)SPGe#fVrZ4E+EP*{Axocv7Yyx14AT_oWDQ2^
z-mW@;#6tyucjD1#8J(?fzMaCZ?ZBMRW^qYh*lKSo@Y`X`^~JmDG^oJ?=+Lra0Uu>?
zhDOyH`^}NC^VTeKwh^(y+YQ4Qza0j2|ifEsB`$7q*qn+|s2i(@A5UTm|wtE(b
zz|&bn*cxqknCs;@$!Sd>TY5^=WYSe=?>C3Q%e-WQ*WOG9j??VBHHI?T-rb;5=2|3E
z=Zy~zrW_RymV|Q_t-4AqO2y@y7fVW~=XCZ$9t8h-Rn>M9!raN)n2LzNEjcTa7qimr
zQ6WDbw{fp57)NLZ{_r)JJ0x^A#a)$t21GJIv`v`44a@{7{&0{|fVV9CDB$MlXy5kp
zEb3b*3(_s-H;}j&UuR`O9XU{oLk>%0B)q=q4(JlWW_fbsMjNSti!);NCR^9dEwAzN
zFp$C5yf&;&GKxC;=yzs%;JPNM3JpfBIyE2MUJ|bptJt#UzcLh!9((MJV-zr=
zjqSoLaSPm)u~ymJtHHg66|n-11aHKToosnT*IcVwju!Rk$|Qsv^Vj@{zMx&Lgu}r9*IICTlJ?0@daZ2f)(?j$Ltd*OD^bg*sb=EqtF@Vd}ZIQwsWLKqm3-?X#LS
zSg}NK&NaoBe|JJwij%R?h&iu|_O#?@S2zxf<4?qZ}yEb#?;+sBHDGrSDG4vCTAnI
z6Prs|D>TIx83h{_W|M6tF20t}Zvu|PH0?|@IIqZ4vl1T&3EJ(ft1}~Os8p-+Z{p`1
zIfQAl4n^5W(>+&xH-p^CqlmwJVS8tX>toZzswiSYOQu1j_?Rfnl7F$JxO{;jCcFnTLWB&{s?iuP8tPgksBlbm$IEF!t}{o8F`b#-wM(eXG)<{!R{zr&YF`uWqXr=X|TDew4We$+=d~e>_n`E)~9(
zz4_{x+=1e&5p$u2%y*K2KxJIAoeE48FO
zKKtO!TU9?lySC?VP(*cX)rF5HTI8$v5E`Z-t#PVsA3j&Df-^x8YZVRNUn-RRSH8=p
zxwLP38^<0FrHdg*OoBY=a_lZERY-Wqxw>atL)sl&mEC#+=|>IKiN2%ixU0LeqpZVE
zi0H^(;Uu=oP*#`ge0SNog3acoAU>UFLWJKX$AxD~g%8G6mWyp@8YYv&0T;2+49&DKqL92&d$HsM62H$eaQeAZNpM^uL#^Y2{F9a8r+n{_wc@j)XEu9
zBKKFJ#Hw+G@3MdgwaqvaWM$u6eED9nWxmaX5M&wW6SjGNW=!RMD9Tg0@hZwv!Qi}0
z=NN8$#izBT-C&(#m$m+Hj*^