From b2c7e9dfff2e00549fc23ad8e531d77daa6c2738 Mon Sep 17 00:00:00 2001 From: Translations Date: Tue, 10 Nov 2020 14:04:57 +0100 Subject: Make some strings translatable, update translations --- main/src/ui/manage_accounts/add_account_dialog.vala | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'main/src/ui/manage_accounts') diff --git a/main/src/ui/manage_accounts/add_account_dialog.vala b/main/src/ui/manage_accounts/add_account_dialog.vala index c715bb23..dc3b6678 100644 --- a/main/src/ui/manage_accounts/add_account_dialog.vala +++ b/main/src/ui/manage_accounts/add_account_dialog.vala @@ -242,15 +242,15 @@ public class AddAccountDialog : Gtk.Dialog { } else { jid_entry.sensitive = true; if (server_status.error_flags != null) { - string error_desc = "The server could not prove that it is %s.".printf("" + login_jid.domainpart + ""); + string error_desc = _("The server could not prove that it is %s.").printf("" + login_jid.domainpart + ""); if (TlsCertificateFlags.UNKNOWN_CA in server_status.error_flags) { - error_desc += " " + "Its security certificate is not trusted by your computer's operating system."; + error_desc += " " + _("Its security certificate is not trusted by your operating system."); } else if (TlsCertificateFlags.BAD_IDENTITY in server_status.error_flags) { - error_desc += " " + "Its security certificate is issued to another domain."; + error_desc += " " + _("Its security certificate is issued to another domain."); } else if (TlsCertificateFlags.NOT_ACTIVATED in server_status.error_flags) { - error_desc += " " + "Its security certificate will only become valid in the future."; + error_desc += " " + _("Its security certificate will only become valid in the future."); } else if (TlsCertificateFlags.EXPIRED in server_status.error_flags) { - error_desc += " " + "Its security certificate is expired."; + error_desc += " " + _("Its security certificate is expired."); } sign_in_tls_label.label = error_desc; show_tls_error(); -- cgit v1.2.3-54-g00ecf