aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/http-files/src/file_provider.vala12
-rw-r--r--plugins/http-files/src/manager.vala28
-rw-r--r--plugins/http-files/src/plugin.vala2
-rw-r--r--plugins/notification-sound/src/plugin.vala2
-rw-r--r--plugins/omemo/po/LINGUAS3
-rw-r--r--plugins/omemo/po/ar.po63
-rw-r--r--plugins/omemo/po/ca.po2
-rw-r--r--plugins/omemo/po/de.po2
-rw-r--r--plugins/omemo/po/dino-omemo.pot2
-rw-r--r--plugins/omemo/po/en.po2
-rw-r--r--plugins/omemo/po/es.po2
-rw-r--r--plugins/omemo/po/eu.po2
-rw-r--r--plugins/omemo/po/fr.po7
-rw-r--r--plugins/omemo/po/gl.po58
-rw-r--r--plugins/omemo/po/hu.po58
-rw-r--r--plugins/omemo/po/it.po2
-rw-r--r--plugins/omemo/po/lb.po2
-rw-r--r--plugins/omemo/po/nb.po2
-rw-r--r--plugins/omemo/po/nl.po2
-rw-r--r--plugins/omemo/po/nl_BE.po2
-rw-r--r--plugins/omemo/po/pl.po2
-rw-r--r--plugins/omemo/po/ro.po2
-rw-r--r--plugins/omemo/po/ru.po2
-rw-r--r--plugins/omemo/po/zh_Hans.po2
-rw-r--r--plugins/openpgp/po/LINGUAS3
-rw-r--r--plugins/openpgp/po/ar.po55
-rw-r--r--plugins/openpgp/po/ca.po2
-rw-r--r--plugins/openpgp/po/de.po2
-rw-r--r--plugins/openpgp/po/dino-openpgp.pot2
-rw-r--r--plugins/openpgp/po/en.po2
-rw-r--r--plugins/openpgp/po/es.po2
-rw-r--r--plugins/openpgp/po/eu.po2
-rw-r--r--plugins/openpgp/po/fr.po2
-rw-r--r--plugins/openpgp/po/gl.po54
-rw-r--r--plugins/openpgp/po/hu.po54
-rw-r--r--plugins/openpgp/po/it.po2
-rw-r--r--plugins/openpgp/po/lb.po2
-rw-r--r--plugins/openpgp/po/nb.po2
-rw-r--r--plugins/openpgp/po/nl.po2
-rw-r--r--plugins/openpgp/po/nl_BE.po12
-rw-r--r--plugins/openpgp/po/pl.po2
-rw-r--r--plugins/openpgp/po/ro.po2
-rw-r--r--plugins/openpgp/po/ru.po2
-rw-r--r--plugins/openpgp/po/zh_Hans.po2
44 files changed, 414 insertions, 57 deletions
diff --git a/plugins/http-files/src/file_provider.vala b/plugins/http-files/src/file_provider.vala
index b647cdbb..6f4b19f4 100644
--- a/plugins/http-files/src/file_provider.vala
+++ b/plugins/http-files/src/file_provider.vala
@@ -26,8 +26,8 @@ public class FileProvider : Dino.FileProvider, Object {
private class ReceivedMessageListener : MessageListener {
- public string[] after_actions_const = new string[]{ };
- public override string action_group { get { return "DECRYPT"; } }
+ public string[] after_actions_const = new string[]{ "STORE" };
+ public override string action_group { get { return ""; } }
public override string[] after_actions { get { return after_actions_const; } }
private FileProvider outer;
@@ -90,7 +90,13 @@ public class FileProvider : Dino.FileProvider, Object {
file_transfer.state = FileTransfer.State.NOT_STARTED;
file_transfer.provider = 0;
file_transfer.info = message.id.to_string();
- file_incoming(file_transfer);
+ file_incoming(file_transfer, conversation);
+
+ ContentItem? content_item = stream_interactor.get_module(ContentItemStore.IDENTITY).get_item(conversation, 1, message.id);
+ if (content_item != null) {
+ stream_interactor.get_module(ContentItemStore.IDENTITY).set_item_hide(content_item, true);
+ }
+
success = true;
Idle.add((owned)callback);
});
diff --git a/plugins/http-files/src/manager.vala b/plugins/http-files/src/manager.vala
index 7335b89a..78697f9c 100644
--- a/plugins/http-files/src/manager.vala
+++ b/plugins/http-files/src/manager.vala
@@ -40,6 +40,11 @@ public class Manager : StreamInteractionModule, FileSender, Object {
message.encryption = Encryption.NONE;
stream_interactor.get_module(MessageProcessor.IDENTITY).send_message(message, conversation);
file_transfer.info = message.id.to_string();
+
+ ContentItem? content_item = stream_interactor.get_module(ContentItemStore.IDENTITY).get_item(conversation, 1, message.id);
+ if (content_item != null) {
+ stream_interactor.get_module(ContentItemStore.IDENTITY).set_item_hide(content_item, true);
+ }
},
(stream, error_str) => {
print(@"Failed getting upload url + $error_str\n");
@@ -81,28 +86,25 @@ public class Manager : StreamInteractionModule, FileSender, Object {
}
}
-public class FileMessageFilterDisplay : Plugins.MessageDisplayProvider, Object {
- public string id { get; set; default="file_message_filter"; }
- public double priority { get; set; default=10; }
-
+public class FileMessageFilter : ContentFilter, Object {
public Database db;
- public FileMessageFilterDisplay(Dino.Database db) {
+ public FileMessageFilter(Dino.Database db) {
this.db = db;
}
- public bool can_display(Entities.Message? message) {
- return message_is_file(db, message);
- }
-
- public Plugins.MetaConversationItem? get_item(Entities.Message message, Conversation conversation) {
- return null;
+ public bool discard(ContentItem content_item) {
+ if (content_item.type_ == MessageItem.TYPE) {
+ MessageItem message_item = content_item as MessageItem;
+ return message_is_file(db, message_item.message);
+ }
+ return false;
}
}
private bool message_is_file(Database db, Entities.Message message) {
- Qlite.QueryBuilder builder = db.file_transfer.select().with(db.file_transfer.info, "=", message.id.to_string());
- Qlite.QueryBuilder builder2 = db.file_transfer.select().with(db.file_transfer.info, "=", message.body);
+ Qlite.QueryBuilder builder = db.file_transfer.select({db.file_transfer.id}).with(db.file_transfer.info, "=", message.id.to_string());
+ Qlite.QueryBuilder builder2 = db.file_transfer.select({db.file_transfer.id}).with(db.file_transfer.info, "=", message.body);
return builder.count() > 0 || builder2.count() > 0;
}
diff --git a/plugins/http-files/src/plugin.vala b/plugins/http-files/src/plugin.vala
index 1fc0c9fd..bd136f31 100644
--- a/plugins/http-files/src/plugin.vala
+++ b/plugins/http-files/src/plugin.vala
@@ -19,7 +19,7 @@ public class Plugin : RootInterface, Object {
});
app.stream_interactor.get_module(FileManager.IDENTITY).add_provider(file_provider);
- app.plugin_registry.register_message_display(new FileMessageFilterDisplay(app.db));
+ app.stream_interactor.get_module(ContentItemStore.IDENTITY).add_filter(new FileMessageFilter(app.db));
}
public void shutdown() {
diff --git a/plugins/notification-sound/src/plugin.vala b/plugins/notification-sound/src/plugin.vala
index ba251434..081fd1c3 100644
--- a/plugins/notification-sound/src/plugin.vala
+++ b/plugins/notification-sound/src/plugin.vala
@@ -9,7 +9,7 @@ public class Plugin : RootInterface, Object {
this.app = app;
Canberra.Context.create(out sound_context);
- app.stream_interactor.get_module(NotificationEvents.IDENTITY).notify_message.connect((message, conversation) => {
+ app.stream_interactor.get_module(NotificationEvents.IDENTITY).notify_content_item.connect((item, conversation) => {
sound_context.play(0, Canberra.PROP_EVENT_ID, "message-new-instant", Canberra.PROP_EVENT_DESCRIPTION, "New Dino message");
});
}
diff --git a/plugins/omemo/po/LINGUAS b/plugins/omemo/po/LINGUAS
index ab999840..978c5744 100644
--- a/plugins/omemo/po/LINGUAS
+++ b/plugins/omemo/po/LINGUAS
@@ -1,9 +1,12 @@
+ar
ca
de
en
es
eu
fr
+gl
+hu
it
lb
nb
diff --git a/plugins/omemo/po/ar.po b/plugins/omemo/po/ar.po
new file mode 100644
index 00000000..cb7e0d1f
--- /dev/null
+++ b/plugins/omemo/po/ar.po
@@ -0,0 +1,63 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-10-23 17:22+0000\n"
+"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
+"Language-Team: Arabic <https://hosted.weblate.org/projects/dino/plugin-omemo/"
+"ar/>\n"
+"Language: ar\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Weblate 3.3-dev\n"
+
+#: plugins/omemo/src/account_settings_widget.vala:42
+#: plugins/omemo/src/account_settings_widget.vala:45
+#: plugins/omemo/data/account_settings_dialog.ui:19
+msgid "Own fingerprint"
+msgstr "بصمتك الخاصة"
+
+#: plugins/omemo/src/account_settings_widget.vala:42
+msgid "Will be generated on first connect"
+msgstr "سيتم توليدها عند أول اتصال"
+
+#: plugins/omemo/src/contact_details_provider.vala:31
+msgid "Encryption"
+msgstr "التشفير"
+
+#: plugins/omemo/src/contact_details_provider.vala:31
+#, c-format
+msgid "%d OMEMO device"
+msgid_plural "%d OMEMO devices"
+msgstr[0] ""
+msgstr[1] "%d جهاز أوميمو"
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] "%d أجهزة أوميمو"
+
+#: plugins/omemo/src/account_settings_dialog.vala:35
+#, c-format
+msgid "Unknown device (0x%.8x)"
+msgstr "جهاز مجهول (0x%.8x)"
+
+#: plugins/omemo/data/account_settings_dialog.ui:5
+msgid "OMEMO Keys"
+msgstr "مفاتيح أوميمو"
+
+#: plugins/omemo/data/account_settings_dialog.ui:88
+msgid "Other devices"
+msgstr "أجهزة أخرى"
+
+#: plugins/omemo/data/account_settings_dialog.ui:112
+msgid "- None -"
+msgstr "- لا شيء -"
diff --git a/plugins/omemo/po/ca.po b/plugins/omemo/po/ca.po
index 277a50da..f974fce7 100644
--- a/plugins/omemo/po/ca.po
+++ b/plugins/omemo/po/ca.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo 20180123\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-24 11:21+0100\n"
"Last-Translator: Jordi Mallach <jordi@mallach.net>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
diff --git a/plugins/omemo/po/de.po b/plugins/omemo/po/de.po
index 168cdc34..de39ec53 100644
--- a/plugins/omemo/po/de.po
+++ b/plugins/omemo/po/de.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-17 21:03+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: German <https://hosted.weblate.org/projects/dino/plugin-omemo/"
diff --git a/plugins/omemo/po/dino-omemo.pot b/plugins/omemo/po/dino-omemo.pot
index 042e2d64..3e96437a 100644
--- a/plugins/omemo/po/dino-omemo.pot
+++ b/plugins/omemo/po/dino-omemo.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/plugins/omemo/po/en.po b/plugins/omemo/po/en.po
index 8c059c72..0941effe 100644
--- a/plugins/omemo/po/en.po
+++ b/plugins/omemo/po/en.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/plugins/omemo/po/es.po b/plugins/omemo/po/es.po
index 45a6ed19..8f0b9b13 100644
--- a/plugins/omemo/po/es.po
+++ b/plugins/omemo/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-18 07:32+0000\n"
"Last-Translator: sergio <srg.dev@posteo.net>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/omemo/po/eu.po b/plugins/omemo/po/eu.po
index ce17cf87..8475ff48 100644
--- a/plugins/omemo/po/eu.po
+++ b/plugins/omemo/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-22 16:39+0000\n"
"Last-Translator: Aitor Beriain <beriain@bitmessage.ch>\n"
"Language-Team: Basque <https://hosted.weblate.org/projects/dino/plugin-omemo/"
diff --git a/plugins/omemo/po/fr.po b/plugins/omemo/po/fr.po
index 6b0b85be..fa2a9554 100644
--- a/plugins/omemo/po/fr.po
+++ b/plugins/omemo/po/fr.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
-"PO-Revision-Date: 2018-01-02 20:13+0000\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-10-22 04:29+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: French <https://hosted.weblate.org/projects/dino/plugin-omemo/"
"fr/>\n"
@@ -16,11 +16,12 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 2.19-dev\n"
+"X-Generator: Weblate 3.3-dev\n"
#: plugins/omemo/src/account_settings_widget.vala:42
#: plugins/omemo/src/account_settings_widget.vala:45
#: plugins/omemo/data/account_settings_dialog.ui:19
+#, fuzzy
msgid "Own fingerprint"
msgstr "Notre empreinte de clé"
diff --git a/plugins/omemo/po/gl.po b/plugins/omemo/po/gl.po
new file mode 100644
index 00000000..4b87ef0a
--- /dev/null
+++ b/plugins/omemo/po/gl.po
@@ -0,0 +1,58 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-09-29 03:26+0000\n"
+"Last-Translator: Xosé M <xosem@disroot.org>\n"
+"Language-Team: Galician <https://hosted.weblate.org/projects/dino/plugin-"
+"omemo/gl/>\n"
+"Language: gl\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"
+"X-Generator: Weblate 3.2-dev\n"
+
+#: plugins/omemo/src/account_settings_widget.vala:42
+#: plugins/omemo/src/account_settings_widget.vala:45
+#: plugins/omemo/data/account_settings_dialog.ui:19
+msgid "Own fingerprint"
+msgstr "Pegada propia"
+
+#: plugins/omemo/src/account_settings_widget.vala:42
+msgid "Will be generated on first connect"
+msgstr "Crearase na primeira conexión"
+
+#: plugins/omemo/src/contact_details_provider.vala:31
+msgid "Encryption"
+msgstr "Cifrado"
+
+#: plugins/omemo/src/contact_details_provider.vala:31
+#, c-format
+msgid "%d OMEMO device"
+msgid_plural "%d OMEMO devices"
+msgstr[0] "%d dispositivo OMEMO"
+msgstr[1] "%d dispositivos OMEMO"
+
+#: plugins/omemo/src/account_settings_dialog.vala:35
+#, c-format
+msgid "Unknown device (0x%.8x)"
+msgstr "Dispositivo descoñecido (0x%.8x)"
+
+#: plugins/omemo/data/account_settings_dialog.ui:5
+msgid "OMEMO Keys"
+msgstr "Chaves OMEMO"
+
+#: plugins/omemo/data/account_settings_dialog.ui:88
+msgid "Other devices"
+msgstr "Outros dispositivos"
+
+#: plugins/omemo/data/account_settings_dialog.ui:112
+msgid "- None -"
+msgstr "-Nada-"
diff --git a/plugins/omemo/po/hu.po b/plugins/omemo/po/hu.po
new file mode 100644
index 00000000..6b9c3608
--- /dev/null
+++ b/plugins/omemo/po/hu.po
@@ -0,0 +1,58 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-08-31 08:36+0000\n"
+"Last-Translator: notramo <notramo@vipmail.hu>\n"
+"Language-Team: Hungarian <https://hosted.weblate.org/projects/dino/plugin-"
+"omemo/hu/>\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"
+"X-Generator: Weblate 3.2-dev\n"
+
+#: plugins/omemo/src/account_settings_widget.vala:42
+#: plugins/omemo/src/account_settings_widget.vala:45
+#: plugins/omemo/data/account_settings_dialog.ui:19
+msgid "Own fingerprint"
+msgstr "Saját ujjlenyomat"
+
+#: plugins/omemo/src/account_settings_widget.vala:42
+msgid "Will be generated on first connect"
+msgstr "Az első csatlakozáskor lesz létrehozva"
+
+#: plugins/omemo/src/contact_details_provider.vala:31
+msgid "Encryption"
+msgstr "Titkosítás"
+
+#: plugins/omemo/src/contact_details_provider.vala:31
+#, c-format
+msgid "%d OMEMO device"
+msgid_plural "%d OMEMO devices"
+msgstr[0] "%d OMEMO eszköz"
+msgstr[1] "%d OMEMO eszköz"
+
+#: plugins/omemo/src/account_settings_dialog.vala:35
+#, c-format
+msgid "Unknown device (0x%.8x)"
+msgstr "Ismeretlen eszköz (0x%.8x)"
+
+#: plugins/omemo/data/account_settings_dialog.ui:5
+msgid "OMEMO Keys"
+msgstr "OMEMO kulcsok"
+
+#: plugins/omemo/data/account_settings_dialog.ui:88
+msgid "Other devices"
+msgstr "További eszközök"
+
+#: plugins/omemo/data/account_settings_dialog.ui:112
+msgid "- None -"
+msgstr "- Nincs -"
diff --git a/plugins/omemo/po/it.po b/plugins/omemo/po/it.po
index fe5ff9b5..0cbb8940 100644
--- a/plugins/omemo/po/it.po
+++ b/plugins/omemo/po/it.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-12-11 00:48+0000\n"
"Last-Translator: M <d.pitrolo@gmx.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/omemo/po/lb.po b/plugins/omemo/po/lb.po
index 21190b6f..2cbafcac 100644
--- a/plugins/omemo/po/lb.po
+++ b/plugins/omemo/po/lb.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-18 12:11+0000\n"
"Last-Translator: Dennis Fink <dennis.fink@c3l.lu>\n"
"Language-Team: Luxembourgish <https://hosted.weblate.org/projects/dino/"
diff --git a/plugins/omemo/po/nb.po b/plugins/omemo/po/nb.po
index 378916b7..0c11c3c0 100644
--- a/plugins/omemo/po/nb.po
+++ b/plugins/omemo/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-18 00:21+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/dino/"
diff --git a/plugins/omemo/po/nl.po b/plugins/omemo/po/nl.po
index ea893d5e..b33d9d24 100644
--- a/plugins/omemo/po/nl.po
+++ b/plugins/omemo/po/nl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-17 20:52+0000\n"
"Last-Translator: Nathan Follens <nathan@email.is>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/dino/plugin-omemo/"
diff --git a/plugins/omemo/po/nl_BE.po b/plugins/omemo/po/nl_BE.po
index 7194ed85..036439e7 100644
--- a/plugins/omemo/po/nl_BE.po
+++ b/plugins/omemo/po/nl_BE.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-06-18 12:37+0000\n"
"Last-Translator: Nathan Follens <nthn@unseen.is>\n"
"Language-Team: Flemish <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/omemo/po/pl.po b/plugins/omemo/po/pl.po
index 83de1c5b..30882060 100644
--- a/plugins/omemo/po/pl.po
+++ b/plugins/omemo/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-31 18:58+0000\n"
"Last-Translator: Andrzej Czerniak <andrzej.czerniak@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/dino/plugin-omemo/"
diff --git a/plugins/omemo/po/ro.po b/plugins/omemo/po/ro.po
index 13b84630..71afd33e 100644
--- a/plugins/omemo/po/ro.po
+++ b/plugins/omemo/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-12 23:09+0000\n"
"Last-Translator: Licaon Kter <licaon.kter@protonmail.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/omemo/po/ru.po b/plugins/omemo/po/ru.po
index a89ed150..41148209 100644
--- a/plugins/omemo/po/ru.po
+++ b/plugins/omemo/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-05-01 23:41+0000\n"
"Last-Translator: Alexander <ilabdsf@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/omemo/po/zh_Hans.po b/plugins/omemo/po/zh_Hans.po
index 5557c861..7ae0560d 100644
--- a/plugins/omemo/po/zh_Hans.po
+++ b/plugins/omemo/po/zh_Hans.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-05-08 09:39+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
diff --git a/plugins/openpgp/po/LINGUAS b/plugins/openpgp/po/LINGUAS
index ab999840..978c5744 100644
--- a/plugins/openpgp/po/LINGUAS
+++ b/plugins/openpgp/po/LINGUAS
@@ -1,9 +1,12 @@
+ar
ca
de
en
es
eu
fr
+gl
+hu
it
lb
nb
diff --git a/plugins/openpgp/po/ar.po b/plugins/openpgp/po/ar.po
new file mode 100644
index 00000000..e6953e95
--- /dev/null
+++ b/plugins/openpgp/po/ar.po
@@ -0,0 +1,55 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-10-23 17:22+0000\n"
+"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n"
+"Language-Team: Arabic <https://hosted.weblate.org/projects/dino/plugin-"
+"openpgp/ar/>\n"
+"Language: ar\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Weblate 3.3-dev\n"
+
+#: plugins/openpgp/src/account_settings_widget.vala:60
+#: plugins/openpgp/src/account_settings_widget.vala:64
+#: plugins/openpgp/src/account_settings_widget.vala:93
+msgid "Key publishing disabled"
+msgstr "نشر المفاتيح معطل"
+
+#: plugins/openpgp/src/account_settings_widget.vala:60
+msgid "Error in GnuPG"
+msgstr "خطأ في GnuPG"
+
+#: plugins/openpgp/src/account_settings_widget.vala:64
+msgid "No keys available. Generate one!"
+msgstr "لا مفتاح متوفر. قم بتوليد واحد !"
+
+#: plugins/openpgp/src/account_settings_widget.vala:93
+msgid "Select key"
+msgstr "اختيار مفتاح"
+
+#: plugins/openpgp/src/account_settings_widget.vala:106
+msgid "Loading…"
+msgstr "جارٍ التحميل…"
+
+#: plugins/openpgp/src/account_settings_widget.vala:106
+msgid "Querying GnuPG"
+msgstr "استعلام GnuPG"
+
+#: plugins/openpgp/src/contact_details_provider.vala:28
+msgid "Key not in keychain"
+msgstr "المفتاح ليس في سلسلة المفاتيح"
+
+#: plugins/openpgp/src/contact_details_provider.vala:30
+msgid "Encryption"
+msgstr "التشفير"
diff --git a/plugins/openpgp/po/ca.po b/plugins/openpgp/po/ca.po
index a1d2fd14..687bbae5 100644
--- a/plugins/openpgp/po/ca.po
+++ b/plugins/openpgp/po/ca.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-openpgp 20180123\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-24 11:24+0100\n"
"Last-Translator: Jordi Mallach <jordi@mallach.net>\n"
"Language-Team: Catalan <ca@dodds.net>\n"
diff --git a/plugins/openpgp/po/de.po b/plugins/openpgp/po/de.po
index 3db3049f..f8a619b3 100644
--- a/plugins/openpgp/po/de.po
+++ b/plugins/openpgp/po/de.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-openpgp-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-24 12:15+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: German <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/dino-openpgp.pot b/plugins/openpgp/po/dino-openpgp.pot
index c4d7c780..9222f6e1 100644
--- a/plugins/openpgp/po/dino-openpgp.pot
+++ b/plugins/openpgp/po/dino-openpgp.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/plugins/openpgp/po/en.po b/plugins/openpgp/po/en.po
index 5263ce0c..7a574d5e 100644
--- a/plugins/openpgp/po/en.po
+++ b/plugins/openpgp/po/en.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-openpgp-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
diff --git a/plugins/openpgp/po/es.po b/plugins/openpgp/po/es.po
index 07719c2d..af1cc477 100644
--- a/plugins/openpgp/po/es.po
+++ b/plugins/openpgp/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-04-13 21:39+0000\n"
"Last-Translator: mgueji <miguejim@mailbox.org>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/eu.po b/plugins/openpgp/po/eu.po
index cdc758b8..efb74cde 100644
--- a/plugins/openpgp/po/eu.po
+++ b/plugins/openpgp/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-04-03 15:27+0000\n"
"Last-Translator: Aitor Beriain <beriain@bitmessage.ch>\n"
"Language-Team: Basque <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/fr.po b/plugins/openpgp/po/fr.po
index 3784eb69..d57fa7f3 100644
--- a/plugins/openpgp/po/fr.po
+++ b/plugins/openpgp/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-24 12:13+0000\n"
"Last-Translator: Jean-Baptiste <jean-baptiste@holcroft.fr>\n"
"Language-Team: French <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/gl.po b/plugins/openpgp/po/gl.po
new file mode 100644
index 00000000..eec550c7
--- /dev/null
+++ b/plugins/openpgp/po/gl.po
@@ -0,0 +1,54 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-09-29 03:26+0000\n"
+"Last-Translator: Xosé M <xosem@disroot.org>\n"
+"Language-Team: Galician <https://hosted.weblate.org/projects/dino/plugin-"
+"openpgp/gl/>\n"
+"Language: gl\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"
+"X-Generator: Weblate 3.2-dev\n"
+
+#: plugins/openpgp/src/account_settings_widget.vala:60
+#: plugins/openpgp/src/account_settings_widget.vala:64
+#: plugins/openpgp/src/account_settings_widget.vala:93
+msgid "Key publishing disabled"
+msgstr "Desactivada a publicación de chaves"
+
+#: plugins/openpgp/src/account_settings_widget.vala:60
+msgid "Error in GnuPG"
+msgstr "Fallo en GnuPG"
+
+#: plugins/openpgp/src/account_settings_widget.vala:64
+msgid "No keys available. Generate one!"
+msgstr "Sen chaves dispoñibles. Crear unha!"
+
+#: plugins/openpgp/src/account_settings_widget.vala:93
+msgid "Select key"
+msgstr "Escolla chave"
+
+#: plugins/openpgp/src/account_settings_widget.vala:106
+msgid "Loading…"
+msgstr "Cargando…"
+
+#: plugins/openpgp/src/account_settings_widget.vala:106
+msgid "Querying GnuPG"
+msgstr "Consultando a GnuPG"
+
+#: plugins/openpgp/src/contact_details_provider.vala:28
+msgid "Key not in keychain"
+msgstr "A chave non está no anel de chaves"
+
+#: plugins/openpgp/src/contact_details_provider.vala:30
+msgid "Encryption"
+msgstr "Cifrado"
diff --git a/plugins/openpgp/po/hu.po b/plugins/openpgp/po/hu.po
new file mode 100644
index 00000000..dcd7b951
--- /dev/null
+++ b/plugins/openpgp/po/hu.po
@@ -0,0 +1,54 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-08-31 08:38+0000\n"
+"Last-Translator: notramo <notramo@vipmail.hu>\n"
+"Language-Team: Hungarian <https://hosted.weblate.org/projects/dino/plugin-"
+"openpgp/hu/>\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"
+"X-Generator: Weblate 3.2-dev\n"
+
+#: plugins/openpgp/src/account_settings_widget.vala:60
+#: plugins/openpgp/src/account_settings_widget.vala:64
+#: plugins/openpgp/src/account_settings_widget.vala:93
+msgid "Key publishing disabled"
+msgstr "A kulcs publikálása kikapcsolva"
+
+#: plugins/openpgp/src/account_settings_widget.vala:60
+msgid "Error in GnuPG"
+msgstr "Hiba a GnuPG-ben"
+
+#: plugins/openpgp/src/account_settings_widget.vala:64
+msgid "No keys available. Generate one!"
+msgstr "Nincs elérhető kulcs. Generálj egyet!"
+
+#: plugins/openpgp/src/account_settings_widget.vala:93
+msgid "Select key"
+msgstr "Válassz kulcsot"
+
+#: plugins/openpgp/src/account_settings_widget.vala:106
+msgid "Loading…"
+msgstr "Betöltés…"
+
+#: plugins/openpgp/src/account_settings_widget.vala:106
+msgid "Querying GnuPG"
+msgstr "A GnuPG lekérése"
+
+#: plugins/openpgp/src/contact_details_provider.vala:28
+msgid "Key not in keychain"
+msgstr "A kulcs nincs a kulcstartóban"
+
+#: plugins/openpgp/src/contact_details_provider.vala:30
+msgid "Encryption"
+msgstr "Titkosítás"
diff --git a/plugins/openpgp/po/it.po b/plugins/openpgp/po/it.po
index 9eb21c93..20b21644 100644
--- a/plugins/openpgp/po/it.po
+++ b/plugins/openpgp/po/it.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-openpgp-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-24 12:18+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/lb.po b/plugins/openpgp/po/lb.po
index 1e88ce84..d8ab6119 100644
--- a/plugins/openpgp/po/lb.po
+++ b/plugins/openpgp/po/lb.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-openpgp-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-24 12:20+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: Luxembourgish <https://hosted.weblate.org/projects/dino/"
diff --git a/plugins/openpgp/po/nb.po b/plugins/openpgp/po/nb.po
index c6f0513f..905f19f1 100644
--- a/plugins/openpgp/po/nb.po
+++ b/plugins/openpgp/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-18 00:23+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/dino/"
diff --git a/plugins/openpgp/po/nl.po b/plugins/openpgp/po/nl.po
index 5c3161c9..9a05fa51 100644
--- a/plugins/openpgp/po/nl.po
+++ b/plugins/openpgp/po/nl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-openpgp-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2017-11-17 20:52+0000\n"
"Last-Translator: Nathan Follens <nathan@email.is>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/nl_BE.po b/plugins/openpgp/po/nl_BE.po
index 743c5c47..7749eef1 100644
--- a/plugins/openpgp/po/nl_BE.po
+++ b/plugins/openpgp/po/nl_BE.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
-"PO-Revision-Date: 2018-06-18 12:37+0000\n"
-"Last-Translator: Nathan Follens <nthn@unseen.is>\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
+"PO-Revision-Date: 2018-10-04 12:26+0000\n"
+"Last-Translator: woutersj <woutersj@gmail.com>\n"
"Language-Team: Flemish <https://hosted.weblate.org/projects/dino/plugin-"
"openpgp/nl_BE/>\n"
"Language: nl_BE\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.0.1\n"
+"X-Generator: Weblate 3.2-dev\n"
#: plugins/openpgp/src/account_settings_widget.vala:60
#: plugins/openpgp/src/account_settings_widget.vala:64
@@ -31,11 +31,11 @@ msgstr "Fout in GnuPG"
#: plugins/openpgp/src/account_settings_widget.vala:64
msgid "No keys available. Generate one!"
-msgstr "Geen sleutels beschikbaar. Genereert der enen!"
+msgstr "Geen sleutels beschikbaar. Genereer er een!"
#: plugins/openpgp/src/account_settings_widget.vala:93
msgid "Select key"
-msgstr "Selecteert ne sleutel"
+msgstr "Selecteer een sleutel"
#: plugins/openpgp/src/account_settings_widget.vala:106
msgid "Loading…"
diff --git a/plugins/openpgp/po/pl.po b/plugins/openpgp/po/pl.po
index 9b07a6da..daba9452 100644
--- a/plugins/openpgp/po/pl.po
+++ b/plugins/openpgp/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-30 19:02+0000\n"
"Last-Translator: Andrzej Czerniak <andrzej.czerniak@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/ro.po b/plugins/openpgp/po/ro.po
index 090a68e9..55a5547a 100644
--- a/plugins/openpgp/po/ro.po
+++ b/plugins/openpgp/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-01-12 23:14+0000\n"
"Last-Translator: Licaon Kter <licaon.kter@protonmail.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/ru.po b/plugins/openpgp/po/ru.po
index 158a1943..092e6322 100644
--- a/plugins/openpgp/po/ru.po
+++ b/plugins/openpgp/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-03-23 18:26+0000\n"
"Last-Translator: ethylmorphine <desilent@icloud.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/dino/plugin-"
diff --git a/plugins/openpgp/po/zh_Hans.po b/plugins/openpgp/po/zh_Hans.po
index 7c09eb29..9c33bb10 100644
--- a/plugins/openpgp/po/zh_Hans.po
+++ b/plugins/openpgp/po/zh_Hans.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: dino-omemo-0.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-05 09:22-0600\n"
+"POT-Creation-Date: 2018-10-23 23:56+0200\n"
"PO-Revision-Date: 2018-05-08 09:42+0000\n"
"Last-Translator: fiaxh <weblate@mx.ax.lt>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"