aboutsummaryrefslogtreecommitdiff
path: root/plugins/openpgp
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-11-17 16:06:54 +0100
committerfiaxh <git@mx.ax.lt>2017-11-17 17:24:03 +0100
commit2a514d0969f5c25d5e2d14421125a47df6b14974 (patch)
treefd95c1ee569b2e30dd3c7311b6fa32c7e46a50d0 /plugins/openpgp
parent48cd057bd569efdaf8f8a759365fa9079b732159 (diff)
downloaddino-2a514d0969f5c25d5e2d14421125a47df6b14974.tar.gz
dino-2a514d0969f5c25d5e2d14421125a47df6b14974.zip
Fix unit tests using async + read message marker
Diffstat (limited to 'plugins/openpgp')
-rw-r--r--plugins/openpgp/src/account_settings_widget.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/openpgp/src/account_settings_widget.vala b/plugins/openpgp/src/account_settings_widget.vala
index e5f5aaf1..b71a1eda 100644
--- a/plugins/openpgp/src/account_settings_widget.vala
+++ b/plugins/openpgp/src/account_settings_widget.vala
@@ -95,7 +95,7 @@ private class AccountSettingsWidget : Stack, Plugins.AccountSettingsWidget {
TreeIter iter;
list_store.clear();
list_store.append(out iter);
- label.set_markup(build_markup_string(_("Loading..."), _("Querying GnuPG")));
+ label.set_markup(build_markup_string(_("Loading…"), _("Querying GnuPG")));
new Thread<void*> (null, () => { // Querying GnuPG might take some time
try {
keys = GPGHelper.get_keylist(null, true);