Skip to content

Commit

Permalink
ProConnect - Message d'avertissement précisant que ProConnect n'est p…
Browse files Browse the repository at this point in the history
…as disponible sur toutes les instances actuellement.
  • Loading branch information
Nicolas Buquet committed Nov 14, 2024
1 parent 3b77374 commit 40fb229
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tchap/Assets/Localizations/fr.lproj/Tchap.strings
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
"authentication_error_limit_exceeded" = "Vos trois dernières tentatives de connexion ont échoué. Veuillez réessayer dans 30 minutes";
"authentication_choose_password_signout_all_devices" = "Déconnecter mes appareils et verrouiller mes messages (en cas de piratage de votre compte ou de la perte d'un appareil)";

"authentication_sso_warning" = "**Attention** : la connexion à Tchap avec **ProConnect** n'est actuellement disponible que sur les instances suivantes :\n     - DINUM\n     - Agents\n     - Éducation"; // Markdown string for SwiftUI Text()

////////////////////////////////////////////////////////////////////////////////
// MARK: Forgot password
"forgot_password_title" = "Connexion Tchap";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ struct TchapAuthenticationLoginScreen: View {
passwordLoginSection
} else if case .sso = viewModel.viewState.tchapAuthenticationMode {
ssoLoginSection
Spacer(minLength: 32.0)
ssoInformation
}
}
}
Expand Down Expand Up @@ -148,6 +150,13 @@ struct TchapAuthenticationLoginScreen: View {
}
}

var ssoInformation: some View {
Text(LocalizedStringKey(TchapL10n.authenticationSsoWarning))
.padding(.horizontal, 16.0)
.font(.footnote)
.foregroundColor(Color(UIColor(rgb: 0x000091)))
}

/// Parses the username for a homeserver.
func usernameEditingChanged(isEditing: Bool) {
guard !isEditing, !viewModel.username.isEmpty else { return }
Expand Down
1 change: 1 addition & 0 deletions changelog.d/1100.change
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ProConnect - Message d'avertissement précisant que ProConnect n'est pas disponible sur toutes les instances actuellement.

0 comments on commit 40fb229

Please sign in to comment.