diff --git a/resources/js/langs/locales.js b/resources/js/langs/locales.js index e86c619e..1fcf70e6 100644 --- a/resources/js/langs/locales.js +++ b/resources/js/langs/locales.js @@ -38,7 +38,8 @@ export default { "profile": "Profile", "edit": "Edit", "delete": "Delete", - "save": "Save" + "save": "Save", + "close": "Close" }, "errors": { "resource_not_found": "Resource not found", @@ -293,7 +294,8 @@ export default { "profile": "Profil", "edit": "Modifier", "delete": "Supprimer", - "save": "Enregistrer" + "save": "Enregistrer", + "close": "Fermer" }, "errors": { "resource_not_found": "Ressource introuvable", diff --git a/resources/js/views/profile/Index.vue b/resources/js/views/profile/Index.vue index e775e4f3..9ab6795f 100644 --- a/resources/js/views/profile/Index.vue +++ b/resources/js/views/profile/Index.vue @@ -17,7 +17,7 @@

- {{ $t('commons.cancel') }} + {{ $t('commons.close') }}

diff --git a/resources/lang/en/commons.php b/resources/lang/en/commons.php index 616fea25..ef8af5dd 100644 --- a/resources/lang/en/commons.php +++ b/resources/lang/en/commons.php @@ -19,5 +19,6 @@ 'profile' => 'Profile', 'edit' => 'Edit', 'delete' => 'Delete', - 'save' => 'Save' + 'save' => 'Save', + 'close' => 'Close' ]; \ No newline at end of file diff --git a/resources/lang/fr/commons.php b/resources/lang/fr/commons.php index d51db00c..0d8f1d37 100644 --- a/resources/lang/fr/commons.php +++ b/resources/lang/fr/commons.php @@ -19,5 +19,6 @@ 'profile' => 'Profil', 'edit' => 'Modifier', 'delete' => 'Supprimer', - 'save' => 'Enregistrer' + 'save' => 'Enregistrer', + 'close' => 'Fermer' ]; \ No newline at end of file