Skip to content
Snippets Groups Projects
Commit 6e0ddf2e authored by Michael's avatar Michael
Browse files

Update ajax.tasks.php

Too much splitting here... just realized it when I looked at Crowdin that the German translations sounds like a Google Translation - so basically ok, but obviously wrong.
Reason is that you often don't know what %s stands for and here %s was splitted up into another string with antoher %s which is definitely too much for good :/
parent 83e0da53
No related branches found
No related tags found
No related merge requests found
...@@ -688,8 +688,8 @@ class TasksAjaxAPI extends AjaxController { ...@@ -688,8 +688,8 @@ class TasksAjaxAPI extends AjaxController {
if (($m=$task->isCloseable()) !== true) if (($m=$task->isCloseable()) !== true)
$errors['err'] = $info['error'] = $m; $errors['err'] = $info['error'] = $m;
else else
$info['warn'] = sprintf(__('Are you sure you want to %s?'), $info['warn'] = sprintf(__('Are you sure you want to change status of %s?'),
sprintf(__('change status of %s'), __('this task'))); sprintf(__('this task'));
break; break;
default: default:
Http::response(404, __('Unknown status')); Http::response(404, __('Unknown status'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment