Fix FLEXIAPI-346 Complete the supporting text for the provisioning ini field

This commit is contained in:
Timothée Jaussoin 2025-07-03 10:05:17 +00:00
parent a8a90e197b
commit c6170f5f07
5 changed files with 16 additions and 7 deletions

View file

@ -58,6 +58,7 @@ v2.0
- Fix FLEXIAPI-340 Fix the space resolution when getting the realm on Accounts
- Fix FLEXIAPI-341 Allow realm to be empty when creating a Space
- Fix FLEXIAPI-342 Enforce password change when the External Account domain is changed
- Fix FLEXIAPI-346 Complete the supporting text for the provisioning ini field
v1.6
----

View file

@ -44,12 +44,13 @@
"Change your email": "Changer votre email",
"Change your phone number": "Changer votre numéro de téléphone",
"Check the README.md documentation": "Voir la documentation dans README.md",
"Checkout the cheatsheets to know how to format things correctly.": "Jetez un œil à l'aide-mémoire pour découvrir comment formater correctement ce champ.",
"Clear to never expire": "Laisser vide pour ne jamais expirer",
"Configure your Linphone application": "Configurer votre application Linphone",
"Click the button below to choose a new password:": "Cliquez sur le bouton ci-dessous pour définir un nouveau mot de passe :",
"Code Verification" : "Vérification du code",
"Code": "Code",
"Configuration": "Configuration",
"Configure your Linphone application": "Configurer votre application Linphone",
"Configure": "Configurer",
"Confirm email": "Confirmer l'email",
"Confirm password": "Confirmer le mot de passe",
@ -76,8 +77,8 @@
"Dictionary": "Dictionnaire",
"Display name": "Nom d'affichage",
"Domain": "Domaine",
"Download Linphone" : "Télécharger Linphone",
"Dont have the app yet?": "Vous navez pas encore lapplication ?",
"Download Linphone" : "Télécharger Linphone",
"Edit": "Éditer",
"Email Server": "Serveur Mail",
"Email": "Email",
@ -106,7 +107,7 @@
"If you have any questions or need assistance, feel free to contact our support team.":"Si vous avez des questions ou besoin dassistance, notre équipe reste à votre disposition",
"Import": "Importer",
"In :days days": "Dans :days jours",
"In ini format, will complete the other settings": "Au format ini, complètera les autres paramètres",
"In ini format, will complete the other settings.": "Au format ini, complètera les autres paramètres.",
"In lowercase letters": "En minuscules",
"Incorrect username or password": "Nom d'utilisateur ou mot de passe incorrect",
"Information": "Informations",
@ -164,7 +165,7 @@
"Registrar": "Registrar",
"Registration confirmed": "Confirmation de l'inscription",
"Registration introduction": "Présentation lors de l'inscription",
"Remote provisioning": "configuration distante",
"Remote provisioning": "Configuration distante",
"Remove": "Remove",
"Renew": "Renouveller",
"Requests": "Requêtes",
@ -222,6 +223,7 @@
"Update": "Mettre à jour",
"Updated on": "Mis à jour le",
"Updated": "Mise à jour",
"Use ; to comment, key=\"value\" to declare a complex string.": "Utilisez ; pour commenter, clef=\"valeur\" pour déclarer une chaine complexe.",
"Use the mobile app to recover your account using your phone number": "Utilisez l'application mobile pour récupérer votre compte avec votre numéro de téléphone",
"Used on": "Utilisé le",
"User": "Utilisateur",

View file

@ -228,14 +228,18 @@ form div.search:after {
}
form div span.supporting {
line-height: 2rem;
font-size: 1.25rem;
color: var(--grey-4);
display: block;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
form div span.supporting,
form div span.supporting a {
line-height: 2rem;
font-size: 1.25rem;
}
form div input[disabled],
form div textarea[disabled] {
border-color: var(--grey-4);

View file

@ -164,6 +164,7 @@ code {
p>a:not(.btn),
ul:not(.tabs)>li>a,
table tr td a:not(.btn):hover,
form div span.supporting a,
label>a {
text-decoration: underline;
color: var(--main-5);

View file

@ -72,7 +72,8 @@
<div class="large">
<textarea style="min-height: 200px;" name="custom_provisioning_entries" id="custom_provisioning_entries">{{ $space->custom_provisioning_entries }}</textarea>
<label for="custom_provisioning_entries">{{ __('Custom entries') }}</label>
<span class="supporting">{{ __('In ini format, will complete the other settings') }}</span>
<span class="supporting">{{ __('In ini format, will complete the other settings.') }}</span>
<span class="supporting">{{ __('Use ; to comment, key="value" to declare a complex string.') }} <a target="_blank" href="https://cheatsheets.zip/ini.html">{{ __('Checkout the cheatsheets to know how to format things correctly.') }}</a></span>
@include('parts.errors', ['name' => 'custom_provisioning_entries'])
</div>