Commit 3601f4f585122213ecdf22d7dff95c5b27d86e42

Authored by Alexandre
1 parent d6960faf

Traduction message confirmation/erreur add/edit/delete

src/Controller/DocumentsController.php
... ... @@ -55,10 +55,10 @@ class DocumentsController extends AppController
55 55 if ($this->request->is('post')) {
56 56 $document = $this->Documents->patchEntity($document, $this->request->data);
57 57 if ($this->Documents->save($document)) {
58   - $this->Flash->success(__('The document has been saved.'));
  58 + $this->Flash->success(__('Le fichier a bien été ajouté.'));
59 59 return $this->redirect(['action' => 'index']);
60 60 } else {
61   - $this->Flash->error(__('The document could not be saved. Please, try again.'));
  61 + $this->Flash->error(__('Le fichier n\'a pas pu être ajouté.'));
62 62 }
63 63 }
64 64 $materiels = $this->Documents->Materiels->find('list', ['limit' => 200]);
... ... @@ -82,10 +82,10 @@ class DocumentsController extends AppController
82 82 if ($this->request->is(['patch', 'post', 'put'])) {
83 83 $document = $this->Documents->patchEntity($document, $this->request->data);
84 84 if ($this->Documents->save($document)) {
85   - $this->Flash->success(__('The document has been saved.'));
  85 + $this->Flash->success(__('Le fichier a bien été édité.'));
86 86 return $this->redirect(['action' => 'index']);
87 87 } else {
88   - $this->Flash->error(__('The document could not be saved. Please, try again.'));
  88 + $this->Flash->error(__('Le fichier n\'a pas pu être édité.'));
89 89 }
90 90 }
91 91 $materiels = $this->Documents->Materiels->find('list', ['limit' => 200]);
... ... @@ -106,9 +106,9 @@ class DocumentsController extends AppController
106 106 $this->request->allowMethod(['post', 'delete']);
107 107 $document = $this->Documents->get($id);
108 108 if ($this->Documents->delete($document)) {
109   - $this->Flash->success(__('The document has been deleted.'));
  109 + $this->Flash->success(__('Le fichier a bien été supprimé.'));
110 110 } else {
111   - $this->Flash->error(__('The document could not be deleted. Please, try again.'));
  111 + $this->Flash->error(__('Le fichier n\'a pas pu être supprimé.'));
112 112 }
113 113 return $this->redirect(['action' => 'index']);
114 114 }
... ...
src/Controller/EmpruntsController.php
... ... @@ -55,10 +55,10 @@ class EmpruntsController extends AppController
55 55 if ($this->request->is('post')) {
56 56 $emprunt = $this->Emprunts->patchEntity($emprunt, $this->request->data);
57 57 if ($this->Emprunts->save($emprunt)) {
58   - $this->Flash->success(__('The emprunt has been saved.'));
  58 + $this->Flash->success(__('L\'emprunt a bien été ajouté.'));
59 59 return $this->redirect(['action' => 'index']);
60 60 } else {
61   - $this->Flash->error(__('The emprunt could not be saved. Please, try again.'));
  61 + $this->Flash->error(__('L\'emprunt n\'a pas pu être ajouté..'));
62 62 }
63 63 }
64 64 $materiels = $this->Emprunts->Materiels->find('list', ['limit' => 200]);
... ... @@ -81,10 +81,10 @@ class EmpruntsController extends AppController
81 81 if ($this->request->is(['patch', 'post', 'put'])) {
82 82 $emprunt = $this->Emprunts->patchEntity($emprunt, $this->request->data);
83 83 if ($this->Emprunts->save($emprunt)) {
84   - $this->Flash->success(__('The emprunt has been saved.'));
  84 + $this->Flash->success(__('L\'emprunt a bien été édité.'));
85 85 return $this->redirect(['action' => 'index']);
86 86 } else {
87   - $this->Flash->error(__('The emprunt could not be saved. Please, try again.'));
  87 + $this->Flash->error(__('L\'emprunt n\'a pas pu être édité.'));
88 88 }
89 89 }
90 90 $materiels = $this->Emprunts->Materiels->find('list', ['limit' => 200]);
... ... @@ -104,9 +104,9 @@ class EmpruntsController extends AppController
104 104 $this->request->allowMethod(['post', 'delete']);
105 105 $emprunt = $this->Emprunts->get($id);
106 106 if ($this->Emprunts->delete($emprunt)) {
107   - $this->Flash->success(__('The emprunt has been deleted.'));
  107 + $this->Flash->success(__('L\'emprunt a bien été supprimé.'));
108 108 } else {
109   - $this->Flash->error(__('The emprunt could not be deleted. Please, try again.'));
  109 + $this->Flash->error(__('L\'emprunt n\'a pas pu être supprimé.'));
110 110 }
111 111 return $this->redirect(['action' => 'index']);
112 112 }
... ...
src/Controller/MaterielsController.php
... ... @@ -58,10 +58,10 @@ class MaterielsController extends AppController
58 58 if ($this->request->is('post')) {
59 59 $materiel = $this->Materiels->patchEntity($materiel, $this->request->data);
60 60 if ($this->Materiels->save($materiel)) {
61   - $this->Flash->success(__('The materiel has been saved.'));
  61 + $this->Flash->success(__('Le matériel a bien été ajouté.'));
62 62 return $this->redirect(['action' => 'index']);
63 63 } else {
64   - $this->Flash->error(__('The materiel could not be saved. Please, try again.'));
  64 + $this->Flash->error(__('Le matériel n\'a pas pu être ajouté.'));
65 65 }
66 66 }
67 67 $surCategories = $this->Materiels->SurCategories->find('list', ['limit' => 200]);
... ... @@ -90,10 +90,10 @@ class MaterielsController extends AppController
90 90 if ($this->request->is(['patch', 'post', 'put'])) {
91 91 $materiel = $this->Materiels->patchEntity($materiel, $this->request->data);
92 92 if ($this->Materiels->save($materiel)) {
93   - $this->Flash->success(__('The materiel has been saved.'));
  93 + $this->Flash->success(__('Le matériel a bien été édité.'));
94 94 return $this->redirect(['action' => 'index']);
95 95 } else {
96   - $this->Flash->error(__('The materiel could not be saved. Please, try again.'));
  96 + $this->Flash->error(__('Le matériel n\'a pas pu être édité.'));
97 97 }
98 98 }
99 99 $surCategories = $this->Materiels->SurCategories->find('list', ['limit' => 200]);
... ... @@ -119,9 +119,9 @@ class MaterielsController extends AppController
119 119 $this->request->allowMethod(['post', 'delete']);
120 120 $materiel = $this->Materiels->get($id);
121 121 if ($this->Materiels->delete($materiel)) {
122   - $this->Flash->success(__('The materiel has been deleted.'));
  122 + $this->Flash->success(__('Le matériel a bien été supprimé.'));
123 123 } else {
124   - $this->Flash->error(__('The materiel could not be deleted. Please, try again.'));
  124 + $this->Flash->error(__('Le matériel n\'a pas pu être supprimé.'));
125 125 }
126 126 return $this->redirect(['action' => 'index']);
127 127 }
... ...
src/Controller/SuivisController.php
... ... @@ -55,10 +55,10 @@ class SuivisController extends AppController
55 55 if ($this->request->is('post')) {
56 56 $suivi = $this->Suivis->patchEntity($suivi, $this->request->data);
57 57 if ($this->Suivis->save($suivi)) {
58   - $this->Flash->success(__('The suivi has been saved.'));
  58 + $this->Flash->success(__('Le suivi a bien été ajouté.'));
59 59 return $this->redirect(['action' => 'index']);
60 60 } else {
61   - $this->Flash->error(__('The suivi could not be saved. Please, try again.'));
  61 + $this->Flash->error(__('Le suivi n\'a pas pu être ajouté.'));
62 62 }
63 63 }
64 64 $materiels = $this->Suivis->Materiels->find('list', ['limit' => 200]);
... ... @@ -81,10 +81,10 @@ class SuivisController extends AppController
81 81 if ($this->request->is(['patch', 'post', 'put'])) {
82 82 $suivi = $this->Suivis->patchEntity($suivi, $this->request->data);
83 83 if ($this->Suivis->save($suivi)) {
84   - $this->Flash->success(__('The suivi has been saved.'));
  84 + $this->Flash->success(__('Le suivi a bien été édité.'));
85 85 return $this->redirect(['action' => 'index']);
86 86 } else {
87   - $this->Flash->error(__('The suivi could not be saved. Please, try again.'));
  87 + $this->Flash->error(__('Le suivi n\'a pas pu être édité.'));
88 88 }
89 89 }
90 90 $materiels = $this->Suivis->Materiels->find('list', ['limit' => 200]);
... ... @@ -104,9 +104,9 @@ class SuivisController extends AppController
104 104 $this->request->allowMethod(['post', 'delete']);
105 105 $suivi = $this->Suivis->get($id);
106 106 if ($this->Suivis->delete($suivi)) {
107   - $this->Flash->success(__('The suivi has been deleted.'));
  107 + $this->Flash->success(__('Le suivi a bien été supprimé.'));
108 108 } else {
109   - $this->Flash->error(__('The suivi could not be deleted. Please, try again.'));
  109 + $this->Flash->error(__('Le suivi n\'a pas pu être supprimé.'));
110 110 }
111 111 return $this->redirect(['action' => 'index']);
112 112 }
... ...
src/Controller/UsersController.php
... ... @@ -80,13 +80,13 @@ class UsersController extends AppController
80 80 if ($this->request->is('post')) {
81 81 $user = $this->Users->patchEntity($user, $this->request->data);
82 82 if ($this->Users->save($user)) {
83   - $this->Flash->success(__('The user has been saved.'));
  83 + $this->Flash->success(__('L\'utilisateur a bien été ajouté.'));
84 84 return $this->redirect([
85 85 'controller' => 'Pages',
86 86 'action' => 'display'
87 87 ]);
88 88 } else {
89   - $this->Flash->error(__('The user could not be saved. Please, try again.'));
  89 + $this->Flash->error(__('L\utilisateur n\'a pas pu être ajouté.'));
90 90 }
91 91 }
92 92 $groupesMetiers = $this->Users->GroupesMetiers->find('list', ['limit' => 200]);
... ... @@ -109,10 +109,10 @@ class UsersController extends AppController
109 109 if ($this->request->is(['patch', 'post', 'put'])) {
110 110 $user = $this->Users->patchEntity($user, $this->request->data);
111 111 if ($this->Users->save($user)) {
112   - $this->Flash->success(__('The user has been saved.'));
  112 + $this->Flash->success(__('L\utilisateur a bien été édité.'));
113 113 return $this->redirect(['action' => 'index']);
114 114 } else {
115   - $this->Flash->error(__('The user could not be saved. Please, try again.'));
  115 + $this->Flash->error(__('L\utilisateur n\'a pas pu être édité.'));
116 116 }
117 117 }
118 118 $groupesMetiers = $this->Users->GroupesMetiers->find('list', ['limit' => 200]);
... ... @@ -132,9 +132,9 @@ class UsersController extends AppController
132 132 $this->request->allowMethod(['post', 'delete']);
133 133 $user = $this->Users->get($id);
134 134 if ($this->Users->delete($user)) {
135   - $this->Flash->success(__('The user has been deleted.'));
  135 + $this->Flash->success(__('L\utilisateur a bien été supprimé.'));
136 136 } else {
137   - $this->Flash->error(__('The user could not be deleted. Please, try again.'));
  137 + $this->Flash->error(__('L\utilisateur n\'a pas pu être supprimé.'));
138 138 }
139 139 return $this->redirect(['action' => 'index']);
140 140 }
... ...