From 38f0023419b4bb7251e7d106ea557ed3f95bbafc Mon Sep 17 00:00:00 2001 From: Edouard Denommee <edouard.denommee@savoirfairelinux.com> Date: Fri, 16 Oct 2020 14:41:35 -0400 Subject: [PATCH] typo: registred -> registered Associated daemon changes linked: https://review.jami.net/c/ring-daemon/+/16111 Change-Id: Ia2d05c3b814617bd44c93ce9fc108efbddc23049 --- src/MigrateRingAccountsWC.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MigrateRingAccountsWC.mm b/src/MigrateRingAccountsWC.mm index ffbbec55..d94a9340 100644 --- a/src/MigrateRingAccountsWC.mm +++ b/src/MigrateRingAccountsWC.mm @@ -96,11 +96,11 @@ QMetaObject::Connection stateChanged; NSDictionary *attrs = @{ NSFontAttributeName:[NSFont boldSystemFontOfSize:fontSize] }; - auto registredName = accountInfo.registeredName; - if(!registredName.isEmpty()) { + auto registeredName = accountInfo.registeredName; + if(!registeredName.isEmpty()) { [infoMessage appendAttributedString:[[NSAttributedString alloc] initWithString:NSLocalizedString(@"Registered name: ",@"Text shown to the user") attributes:attrs]]; - [infoMessage appendAttributedString:[[NSAttributedString alloc] initWithString:registredName.toNSString() attributes:attrs]]; + [infoMessage appendAttributedString:[[NSAttributedString alloc] initWithString:registeredName.toNSString() attributes:attrs]]; } else if(!accountInfo.profileInfo.uri.isEmpty()) { [infoMessage appendAttributedString:[[NSAttributedString alloc] initWithString:NSLocalizedString(@"ID: ",@"Text shown to the user") attributes:attrs]]; -- GitLab