diff options
Diffstat (limited to 'app')
27 files changed, 30 insertions, 1 deletions
diff --git a/app/Controller/TaskMovePositionController.php b/app/Controller/TaskMovePositionController.php index a655ca0a..cb4afd04 100644 --- a/app/Controller/TaskMovePositionController.php +++ b/app/Controller/TaskMovePositionController.php @@ -36,7 +36,7 @@ class TaskMovePositionController extends BaseController $values = $this->request->getJson(); if (! $this->helper->projectRole->canMoveTask($task['project_id'], $task['column_id'], $values['column_id'])) { - throw new AccessForbiddenException(e("You don't have the permission to move this task")); + throw new AccessForbiddenException(e('You are not allowed to move this task.')); } $result = $this->taskPositionModel->movePosition( diff --git a/app/Locale/bs_BA/translations.php b/app/Locale/bs_BA/translations.php index f4f457a1..cb9ad9d5 100644 --- a/app/Locale/bs_BA/translations.php +++ b/app/Locale/bs_BA/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/cs_CZ/translations.php b/app/Locale/cs_CZ/translations.php index 8dd5fb20..8541f303 100644 --- a/app/Locale/cs_CZ/translations.php +++ b/app/Locale/cs_CZ/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/da_DK/translations.php b/app/Locale/da_DK/translations.php index fa756b7f..78a6d35e 100644 --- a/app/Locale/da_DK/translations.php +++ b/app/Locale/da_DK/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/de_DE/translations.php b/app/Locale/de_DE/translations.php index fb6967c4..bef3df2c 100644 --- a/app/Locale/de_DE/translations.php +++ b/app/Locale/de_DE/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/el_GR/translations.php b/app/Locale/el_GR/translations.php index 44f5e0df..ad17b4ed 100644 --- a/app/Locale/el_GR/translations.php +++ b/app/Locale/el_GR/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/es_ES/translations.php b/app/Locale/es_ES/translations.php index cdd6c278..b3a68751 100644 --- a/app/Locale/es_ES/translations.php +++ b/app/Locale/es_ES/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/fi_FI/translations.php b/app/Locale/fi_FI/translations.php index 4f74cbf8..733625b6 100644 --- a/app/Locale/fi_FI/translations.php +++ b/app/Locale/fi_FI/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/fr_FR/translations.php b/app/Locale/fr_FR/translations.php index 89f46181..f525fff4 100644 --- a/app/Locale/fr_FR/translations.php +++ b/app/Locale/fr_FR/translations.php @@ -1278,4 +1278,5 @@ return array( 'This field is required' => 'Ce champ est requis', 'Moving a task is not permitted' => 'Déplaçer une tâche n\'est pas autorisé', 'This value must be in the range %d to %d' => 'Cette valeur doit être définie entre %d et %d', + 'You are not allowed to move this task.' => 'Vous n\'êtes pas autorisé à déplacer cette tâche.', ); diff --git a/app/Locale/hu_HU/translations.php b/app/Locale/hu_HU/translations.php index 7123d461..b5a23428 100644 --- a/app/Locale/hu_HU/translations.php +++ b/app/Locale/hu_HU/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/id_ID/translations.php b/app/Locale/id_ID/translations.php index ce52d328..e711a512 100644 --- a/app/Locale/id_ID/translations.php +++ b/app/Locale/id_ID/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/it_IT/translations.php b/app/Locale/it_IT/translations.php index e4f51b3a..1c671d47 100644 --- a/app/Locale/it_IT/translations.php +++ b/app/Locale/it_IT/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/ja_JP/translations.php b/app/Locale/ja_JP/translations.php index 20d2a145..b9feed07 100644 --- a/app/Locale/ja_JP/translations.php +++ b/app/Locale/ja_JP/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/ko_KR/translations.php b/app/Locale/ko_KR/translations.php index 5e9110ea..5339111b 100644 --- a/app/Locale/ko_KR/translations.php +++ b/app/Locale/ko_KR/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/my_MY/translations.php b/app/Locale/my_MY/translations.php index e3c852ac..048d8b4b 100644 --- a/app/Locale/my_MY/translations.php +++ b/app/Locale/my_MY/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/nb_NO/translations.php b/app/Locale/nb_NO/translations.php index ff819787..0d2a340d 100644 --- a/app/Locale/nb_NO/translations.php +++ b/app/Locale/nb_NO/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/nl_NL/translations.php b/app/Locale/nl_NL/translations.php index 22c76713..e1745c14 100644 --- a/app/Locale/nl_NL/translations.php +++ b/app/Locale/nl_NL/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/pl_PL/translations.php b/app/Locale/pl_PL/translations.php index be39d095..164abe0c 100644 --- a/app/Locale/pl_PL/translations.php +++ b/app/Locale/pl_PL/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/pt_BR/translations.php b/app/Locale/pt_BR/translations.php index eebfe9f4..637de30e 100644 --- a/app/Locale/pt_BR/translations.php +++ b/app/Locale/pt_BR/translations.php @@ -1277,4 +1277,5 @@ return array( 'This field is required' => 'Este campo é obrigatório', 'Moving a task is not permitted' => 'Mover uma tarefa não é permitido', 'This value must be in the range %d to %d' => 'Este valor precisa estar no intervalo %d até %d', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/pt_PT/translations.php b/app/Locale/pt_PT/translations.php index 073a68c5..94e1b731 100644 --- a/app/Locale/pt_PT/translations.php +++ b/app/Locale/pt_PT/translations.php @@ -1277,4 +1277,5 @@ return array( 'This field is required' => 'Este campo é obrigatório', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/ru_RU/translations.php b/app/Locale/ru_RU/translations.php index 2e486e40..1e5c02c2 100644 --- a/app/Locale/ru_RU/translations.php +++ b/app/Locale/ru_RU/translations.php @@ -1277,4 +1277,5 @@ return array( 'This field is required' => 'Заполните это поле', 'Moving a task is not permitted' => 'Перемещение задачи не разрешено', 'This value must be in the range %d to %d' => 'Значение должно находиться в диапазоне от %d до %d', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/sr_Latn_RS/translations.php b/app/Locale/sr_Latn_RS/translations.php index 6b5bd784..2f061260 100644 --- a/app/Locale/sr_Latn_RS/translations.php +++ b/app/Locale/sr_Latn_RS/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/sv_SE/translations.php b/app/Locale/sv_SE/translations.php index d8275616..f32728e7 100644 --- a/app/Locale/sv_SE/translations.php +++ b/app/Locale/sv_SE/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/th_TH/translations.php b/app/Locale/th_TH/translations.php index 3cf7e3e5..4025714a 100644 --- a/app/Locale/th_TH/translations.php +++ b/app/Locale/th_TH/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/tr_TR/translations.php b/app/Locale/tr_TR/translations.php index de88c1d6..30d3c0f8 100644 --- a/app/Locale/tr_TR/translations.php +++ b/app/Locale/tr_TR/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Locale/zh_CN/translations.php b/app/Locale/zh_CN/translations.php index 6dccd6cc..d0e7cab0 100644 --- a/app/Locale/zh_CN/translations.php +++ b/app/Locale/zh_CN/translations.php @@ -1277,4 +1277,5 @@ return array( // 'This field is required' => '', // 'Moving a task is not permitted' => '', // 'This value must be in the range %d to %d' => '', + // 'You are not allowed to move this task.' => '', ); diff --git a/app/Template/task_move_position/show.php b/app/Template/task_move_position/show.php index 5fadff09..c1a02484 100644 --- a/app/Template/task_move_position/show.php +++ b/app/Template/task_move_position/show.php @@ -28,6 +28,10 @@ <label><input type="radio" value="after" v-model="positionChoice"><?= t('Insert after this task') ?></label> </div> + <div v-if="errorMessage"> + <div class="alert alert-error">{{ errorMessage }}</div> + </div> + <submit-cancel label-button="<?= t('Save') ?>" label-or="<?= t('or') ?>" |