Funky 'dismiss' button for app notification ... let's go for 'understood' instead ...

This commit is contained in:
Alexandre Aubin 2023-05-28 22:31:05 +02:00
parent da75347810
commit a3558f54e3
3 changed files with 5 additions and 5 deletions

View file

@ -67,7 +67,7 @@
"title": "Admin doc" "title": "Admin doc"
}, },
"notifications": { "notifications": {
"dismiss": "Dismiss", "understood": "Understood",
"title": "Notifications", "title": "Notifications",
"post_upgrade": "Post-upgrade notes", "post_upgrade": "Post-upgrade notes",
"post_install": "Post-install notes" "post_install": "Post-install notes"

View file

@ -501,7 +501,7 @@
"change_url": "Modifier l'URL d'accès de '{name}'", "change_url": "Modifier l'URL d'accès de '{name}'",
"change_label": "Changer le libellé de '{prevName}' par '{nextName}'", "change_label": "Changer le libellé de '{prevName}' par '{nextName}'",
"action_config": "Exécuter l'action '{action}' de configuration de l'application '{name}'", "action_config": "Exécuter l'action '{action}' de configuration de l'application '{name}'",
"dismiss_notification": "Notification de rejet pour '{name}'" "dismiss_notification": "Congédier la notification pour '{name}'"
}, },
"reconnecting": "Reconnexion", "reconnecting": "Reconnexion",
"settings": { "settings": {
@ -626,7 +626,7 @@
"title": "Documentation de l'administrateur" "title": "Documentation de l'administrateur"
}, },
"notifications": { "notifications": {
"dismiss": "Rejeter/Annuler", "understood": "Compris",
"title": "Notifications", "title": "Notifications",
"post_upgrade": "Remarques suite à la mise à niveau", "post_upgrade": "Remarques suite à la mise à niveau",
"post_install": "Remarques suite à l'installation" "post_install": "Remarques suite à l'installation"

View file

@ -13,7 +13,7 @@
@click="dismissNotification('post_install')" @click="dismissNotification('post_install')"
> >
<icon iname="check" /> <icon iname="check" />
{{ $t('app.doc.notifications.dismiss') }} {{ $t('app.doc.notifications.understood') }}
</b-button> </b-button>
</div> </div>
@ -33,7 +33,7 @@
@click="dismissNotification('post_upgrade')" @click="dismissNotification('post_upgrade')"
> >
<icon iname="check" /> <icon iname="check" />
{{ $t('app.doc.notifications.dismiss') }} {{ $t('app.doc.notifications.understood') }}
</b-button> </b-button>
</div> </div>