1
0
Fork 0
Dieser Commit ist enthalten in:
o.pinke 2021-08-23 15:57:01 +02:00
Ursprung e8b0c80921
Commit f534968026
4 geänderte Dateien mit 195 neuen und 236 gelöschten Zeilen

Datei anzeigen

@ -143,7 +143,7 @@ function getTimeUnitSelector($listid, $default) {
$timeunits['Months'] = i18n("Months", "cl-workflow");
$timeunits['Years'] = i18n("Years", "cl-workflow");
$tpl2 = new Template;
$tpl2 = new Template();
$tpl2->set('s', 'NAME', 'time' . $listid);
$tpl2->set('s', 'CLASS', 'text_small');
$tpl2->set('s', 'OPTIONS', 'size=1');
@ -190,7 +190,7 @@ function getWorkflowList() {
$moveup->setCustom("idworkflow", $idworkflow);
$moveup->setCustom("position", $pos);
$moveup->setAlt(i18n("Move step up", "cl-workflow"));
$moveup->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/no_verschieben.gif" . '">');
$moveup->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/no_verschieben.gif" . '">');
$movedown = new Link;
$movedown->setCLink("workflow_steps", 4, "workflow_step_down");
@ -198,7 +198,7 @@ function getWorkflowList() {
$movedown->setCustom("idworkflow", $idworkflow);
$movedown->setCustom("position", $pos);
$movedown->setAlt(i18n("Move step down", "cl-workflow"));
$movedown->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/nu_verschieben.gif" . '">');
$movedown->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/nu_verschieben.gif" . '">');
@ -208,7 +208,7 @@ function getWorkflowList() {
$deletestep->setCustom("idworkflow", $idworkflow);
$deletestep->setCustom("position", $pos);
$deletestep->setAlt(i18n("Delete step", "cl-workflow"));
$deletestep->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/workflow_step_delete.gif" . '">');
$deletestep->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/workflow_step_delete.gif" . '">');
$ui->setTitle($id, "$pos. $name");
$ui->setLink($id, $edititem);
@ -250,7 +250,7 @@ function createNewWorkflow() {
#$ui->setLink("spacer", NULL);
$ui->setTitle("create", i18n("Create new step", "cl-workflow"));
$ui->setImage("create", $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/workflow_step_new.gif");
$ui->setImage("create", $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/workflow_step_new.gif");
$ui->setLink("create", $createstep);
$ui->setRowmark($rowmark);
$ui->setBgColor("create", $cfg['color']['table_header']);
@ -322,7 +322,7 @@ function getWorkflowUsers($idworkflowitem) {
$moveup->setCustom("position", $pos);
$moveup->setAlt(i18n("Move user up", "cl-workflow"));
#$moveup->setContent('<img border="0" style="padding-left: 2px" src="images/pfeil_hoch.gif">');
$moveup->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/no_verschieben.gif" . '">');
$moveup->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/no_verschieben.gif" . '">');
$movedown = new Link;
$movedown->setCLink("workflow_steps", 4, "workflow_user_down");
@ -330,7 +330,7 @@ function getWorkflowUsers($idworkflowitem) {
$movedown->setCustom("idworkflow", $idworkflow);
$movedown->setCustom("position", $pos);
$movedown->setAlt(i18n("Move user down", "cl-workflow"));
$movedown->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/nu_verschieben.gif" . '">');
$movedown->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/nu_verschieben.gif" . '">');
@ -341,15 +341,15 @@ function getWorkflowUsers($idworkflowitem) {
$deletestep->setCustom("position", $pos);
$deletestep->setCustom("idusersequence", $id);
$deletestep->setAlt(i18n("Delete user", "cl-workflow"));
$deletestep->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/workflow_step_delete.gif" . '">');
$deletestep->setContent('<img style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/workflow_step_delete.gif" . '">');
$title = "$pos. " . getUsers($id, $iduser);
$title .= formGenerateField("text", "wftimelimit" . $id, $timelimit, 3, 6);
$title .= getTimeUnitSelector($id, $timeunit);
$altmail = i18n("Notify this user via E-Mail", "cl-workflow");
$altnoti = i18n("Escalate to this user via E-Mail", "cl-workflow");
$title .= formGenerateCheckbox("wfemailnoti[" . $id . "]", "1", $email) . '<label for="wfemailnoti[' . $id . ']1"><img alt="' . $altmail . '" title="' . $altmail . '" style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/workflow_email_noti.gif" . '"></label>';
$title .= formGenerateCheckbox("wfescalnoti[" . $id . "]", "1", $escalation) . '<label for="wfescalnoti[' . $id . ']1"><img alt="' . $altnoti . '" title="' . $altnoti . '" style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/workflow_escal_noti.gif" . '"></label>';
$title .= formGenerateCheckbox("wfemailnoti[" . $id . "]", "1", $email) . '<label for="wfemailnoti[' . $id . ']1"><img alt="' . $altmail . '" title="' . $altmail . '" style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/workflow_email_noti.gif" . '"></label>';
$title .= formGenerateCheckbox("wfescalnoti[" . $id . "]", "1", $escalation) . '<label for="wfescalnoti[' . $id . ']1"><img alt="' . $altnoti . '" title="' . $altnoti . '" style="padding-left: 2px" border="0" src="' . $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/workflow_escal_noti.gif" . '"></label>';
$ui->setTitle($id, $title);
$ui->setLink($id, NULL);
@ -368,7 +368,7 @@ function getWorkflowUsers($idworkflowitem) {
$ui->setActions($id, "delete", $deletestep->render());
$ui->setImage($id, $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "workflow/images/workflow_user.gif");
$ui->setImage($id, $cfg["path"]["contenido_fullhtml"] . $cfg["path"]["plugins"] . "cl-workflow/images/workflow_user.gif");
}
$createstep = new Link;
@ -385,12 +385,13 @@ function getWorkflowUsers($idworkflowitem) {
return ($content);
}
$tpl = new Template;
$tpl = new Template();
$tpl->setDomain('cl-workflow');
$tpl->set('s', 'NEW', createNewWorkflow());
$tpl->set('s', 'STEPS', getWorkflowList());
$tpl->set('s', 'EDITSTEP', editWorkflowStep($idworkflowitem));
$tpl->set('s', 'BORDERCOLOR', $cfg["color"]["table_border"]);
$frame = $tpl->generate($cfg["path"]["contenido"] . $cfg["path"]["plugins"] . "workflow/templates/template.workflow_steps.html", true);
$frame = $tpl->generate($cfg["path"]["contenido"] . $cfg["path"]["plugins"] . "cl-workflow/templates/template.workflow_steps.html", true);
$page = new UI_Page;
$page->setContent($frame);

Binäre Datei nicht angezeigt.

Datei anzeigen

@ -2,33 +2,19 @@ msgid ""
msgstr ""
"Project-Id-Version: CL-Workflow V1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-20 18:04+0200\n"
"PO-Revision-Date: 2020-08-20 18:11+0200\n"
"POT-Creation-Date: 2020-08-20 19:27+0200\n"
"PO-Revision-Date: 2020-08-21 10:53+0200\n"
"Last-Translator: Ortwin Pinke <translation@dceonline.de>\n"
"Language-Team: CL-Dev <locale@conlite.org>\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Basepath: M:/Projekte_Persoenlich/timo.hummel/plugin_sources\n"
"X-Poedit-Basepath: ../../..\n"
"X-Poedit-KeywordsList: i18n\n"
"X-Generator: Poedit 2.0.6\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-SearchPath-0: workflow\n"
#: classes/class.workflowusersequence.php:105
msgid "Workflow item doesn't exist. Can't create entry."
msgstr "Workflow existiert nicht. Eintrag kann nicht erstellt werden."
#: classes/class.workflowusersequence.php:129
#: classes/class.workflowusersequence.php:137
#: classes/class.workflowitems.php:125 classes/class.workflowitems.php:133
msgid "Swapping items failed: Item doesn't exist"
msgstr "Tausch der Eintr&auml;ge fehlgeschlagen: Eintrag nicht vorhanden"
#: classes/class.workflowusersequence.php:212
msgid "Can't set user_id: User or group doesn't exist"
msgstr "Kann Benutzer-Id nicht zuweisen: Benutzer oder Gruppe nicht vorhanden"
"X-Poedit-SearchPath-0: .\n"
#: classes/class.workflowactions.php:69
msgid "Publish article"
@ -62,9 +48,23 @@ msgstr "Template bearbeiten"
msgid "Revise article"
msgstr "Artikel &uuml;berarbeiten"
#: classes/class.workflowallocation.php:106
#: classes/class.workflowallocation.php:203
msgid "Category already has a workflow assigned"
msgstr "Kategorie ist bereits Workflow zugeordnet"
#: classes/class.workflowallocation.php:114
#: classes/class.workflowallocation.php:181 classes/class.workflowitems.php:274
msgid "Workflow doesn't exist"
msgstr "Workflow existiert nicht"
#: classes/class.workflowallocation.php:212
msgid "Category doesn't exist, assignment failed"
msgstr "Kategorie existiert nicht, Zuordnung fehlgeschlagen"
#: classes/class.workflowartallocation.php:67
msgid "Article doesn't exist"
msgstr "Artikel existiert nicht."
msgstr "Artikel existiert nicht"
#: classes/class.workflowartallocation.php:74
msgid "Article is already assigned to a usersequence step."
@ -80,6 +80,12 @@ msgstr "Workflow Notifikation"
msgid "Workflow escalation"
msgstr "Workflow Steigerung"
#: classes/class.workflowitems.php:125 classes/class.workflowitems.php:133
#: classes/class.workflowusersequence.php:129
#: classes/class.workflowusersequence.php:137
msgid "Swapping items failed: Item doesn't exist"
msgstr "Tausch der Eintr&auml;ge fehlgeschlagen: Eintrag nicht vorhanden"
#: classes/class.workflowitems.php:158
msgid "Can't add item to workflow: Workflow doesn't exist"
msgstr ""
@ -94,100 +100,19 @@ msgstr "Kein Eintrag geladen"
msgid "Requested task doesn't exist, can't assign"
msgstr "Gew&uuml;nschte Aufgabe existiert nicht, Zuordnung nicht m&ouml;glich"
#: classes/class.workflowitems.php:274 classes/class.workflowallocation.php:114
#: classes/class.workflowallocation.php:181
msgid "Workflow doesn't exist"
msgstr "Workflow existiert nicht"
#: classes/class.workflowitems.php:281
msgid "Position in this workflow already exists."
msgstr "Position existiert bereits in diesem Workflow."
#: classes/class.workflowallocation.php:106
#: classes/class.workflowallocation.php:203
msgid "Category already has a workflow assigned"
msgstr "Kategorie ist bereits Workflow zugeordnet"
#: classes/class.workflowusersequence.php:105
msgid "Workflow item doesn't exist. Can't create entry."
msgstr "Workflow existiert nicht. Eintrag kann nicht erstellt werden."
#: classes/class.workflowallocation.php:212
msgid "Category doesn't exist, assignment failed"
msgstr "Kategorie existiert nicht, Zuordnung fehlgeschlagen"
#: classes/class.workflowusersequence.php:212
msgid "Can't set user_id: User or group doesn't exist"
msgstr "Kann Benutzer-Id nicht zuweisen: Benutzer oder Gruppe nicht vorhanden"
#: includes/include.workflow_tasks.php:124
msgid "Show users"
msgstr "Zeige Benutzer"
#: includes/include.workflow_tasks.php:132
msgid "Search results"
msgstr "Suchergebnis"
#: includes/include.workflow_tasks.php:132
msgid "Workflow tasks"
msgstr "Workflow Aufgaben"
#: includes/include.workflow_tasks.php:135
msgid "Article"
msgstr "Artikel"
#: includes/include.workflow_tasks.php:136
msgid "Template"
msgstr "Template"
#: includes/include.workflow_tasks.php:137
#: includes/include.workflow_steps.php:297
msgid "Actions"
msgstr "Aktionen"
#: includes/include.workflow_tasks.php:138
msgid "Title"
msgstr "Titel"
#: includes/include.workflow_tasks.php:139
msgid "Changed"
msgstr "Ge&auml;ndert"
#: includes/include.workflow_tasks.php:140
msgid "Published"
msgstr "Ver&ouml;ffentlichen"
#: includes/include.workflow_tasks.php:141 includes/functions.workflow.php:730
msgid "Workflow Step"
msgstr "Workflow Schritt"
#: includes/include.workflow_tasks.php:142 includes/functions.workflow.php:731
msgid "Workflow Action"
msgstr "Workflow Aktion"
#: includes/include.workflow_tasks.php:143 includes/functions.workflow.php:732
msgid "Workflow Editor"
msgstr "Workflow Bearbeiter"
#: includes/include.workflow_tasks.php:144 includes/functions.workflow.php:733
msgid "Last status"
msgstr "Letzter Status"
#: includes/include.workflow_tasks.php:205
msgid "Reminder"
msgstr "Wiedervorlage"
#: includes/include.workflow_tasks.php:206
msgid "Set reminder / add to todo list"
msgstr "Wiedervorlage / zur Todoliste hinzuf&uegen"
#: includes/include.workflow_tasks.php:213 includes/functions.workflow.php:43
#: includes/functions.workflow.php:311 includes/functions.workflow.php:611
#: includes/functions.workflow.php:841 includes/functions.workflow.php:847
msgid "None"
msgstr "Kein"
#: includes/include.workflow_tasks.php:242
msgid "No article found."
msgstr "Kein Artikel gefunden."
#: includes/include.workflow_left_top.php:37 includes/config.plugin.php:39
msgid "Create workflow"
msgstr "Neuer Workflow"
#: includes/config.plugin.php:36 includes/include.workflow_list.php:69
#: includes/config.plugin.php:36 includes/include.workflow_list.php:67
msgid "Delete workflow"
msgstr "Workflow l&ouml;schen"
@ -199,6 +124,10 @@ msgstr "Workflow-Aufgabe auswählen"
msgid "Show workflow"
msgstr "Workflow zeigen"
#: includes/config.plugin.php:39 includes/include.workflow_left_top.php:37
msgid "Create workflow"
msgstr "Neuer Workflow"
#: includes/config.plugin.php:40 includes/include.workflow_edit.php:89
msgid "Edit workflow"
msgstr "Workflow bearbeiten"
@ -212,7 +141,7 @@ msgstr "Workflow Schritt durchf&uuml;hren"
msgid "Inherit workflow down"
msgstr "Workflow nach unten vererben"
#: includes/config.plugin.php:44 includes/include.workflow_steps.php:289
#: includes/config.plugin.php:44 includes/include.workflow_steps.php:286
msgid "Edit workflow step"
msgstr "Workflow Schritt bearbeiten"
@ -256,6 +185,12 @@ msgstr "Workflowschrittbenutzer l&ouml;schen"
msgid "Associate workflow with category"
msgstr "Workflow zu Kategorien zuweisen"
#: includes/functions.workflow.php:43 includes/functions.workflow.php:311
#: includes/functions.workflow.php:611 includes/functions.workflow.php:841
#: includes/functions.workflow.php:847 includes/include.workflow_tasks.php:211
msgid "None"
msgstr "Kein"
#: includes/functions.workflow.php:154
msgid "Confirm"
msgstr "Best&auml;tigen"
@ -284,95 +219,21 @@ msgstr "Best&auml;tigt"
msgid "Workflow"
msgstr "Workflow"
#: includes/include.workflow_steps.php:43
#: includes/include.workflow_steps.php:385
msgid "Add User"
msgstr "Benutzer hinzuf&uuml;gen"
#: includes/functions.workflow.php:730 includes/include.workflow_tasks.php:139
msgid "Workflow Step"
msgstr "Workflow Schritt"
#: includes/include.workflow_steps.php:75
msgid "New Workflow Step"
msgstr "Neuer Workflow Schritt"
#: includes/functions.workflow.php:731 includes/include.workflow_tasks.php:140
msgid "Workflow Action"
msgstr "Workflow Aktion"
#: includes/include.workflow_steps.php:139
msgid "Seconds"
msgstr "Sekunden"
#: includes/functions.workflow.php:732 includes/include.workflow_tasks.php:141
msgid "Workflow Editor"
msgstr "Workflow Bearbeiter"
#: includes/include.workflow_steps.php:140
msgid "Minutes"
msgstr "Minuten"
#: includes/include.workflow_steps.php:141
msgid "Hours"
msgstr "Stunden"
#: includes/include.workflow_steps.php:142
msgid "Days"
msgstr "Tage"
#: includes/include.workflow_steps.php:143
msgid "Weeks"
msgstr "Wochen"
#: includes/include.workflow_steps.php:144
msgid "Months"
msgstr "Monate"
#: includes/include.workflow_steps.php:145
msgid "Years"
msgstr "Jahre"
#: includes/include.workflow_steps.php:194
msgid "Move step up"
msgstr "Schritt nach oben bewegen"
#: includes/include.workflow_steps.php:202
msgid "Move step down"
msgstr "Schritt nach unten verschieben"
#: includes/include.workflow_steps.php:212
msgid "Delete step"
msgstr "Schritt l&ouml;schen"
#: includes/include.workflow_steps.php:254
msgid "Create new step"
msgstr "Neuen Schritt erzeugen"
#: includes/include.workflow_steps.php:290
msgid "Step name"
msgstr "Name des Schritts"
#: includes/include.workflow_steps.php:291
msgid "Step description"
msgstr "Beschreibung des Schritts"
#: includes/include.workflow_steps.php:298
msgid "Assigned users"
msgstr "Zugeordnete Benutzer"
#: includes/include.workflow_steps.php:326
msgid "Move user up"
msgstr "Benutzer nach oben verschieben"
#: includes/include.workflow_steps.php:335
msgid "Move user down"
msgstr "Benutzer nach unten verschieben"
#: includes/include.workflow_steps.php:346
msgid "Delete user"
msgstr "Benutzer l&ouml;schen"
#: includes/include.workflow_steps.php:352
msgid "Notify this user via E-Mail"
msgstr "Diesen Benutzer per e-Mail benachrichtigen"
#: includes/include.workflow_steps.php:353
msgid "Escalate to this user via E-Mail"
msgstr "An diesen Benutzer per e-Mail eskalieren"
#: includes/include.workflow_list.php:70
#, php-format
msgid "Do you really want to delete the following workflow:<br><br>%s<br>"
msgstr "Wollen Sie wirklich den folgenden Workflow l&ouml;schen:<br><br>%s<br>"
#: includes/functions.workflow.php:733 includes/include.workflow_tasks.php:142
msgid "Last status"
msgstr "Letzter Status"
#: includes/include.workflow_edit.php:86
msgid "New Workflow"
@ -398,44 +259,141 @@ msgstr "Autor"
msgid "Created"
msgstr "Erstellt"
#~ msgid "Recently edited articles"
#~ msgstr "Zuletzt bearbeitete Artikel"
#: includes/include.workflow_list.php:68
#, php-format
msgid "Do you really want to delete the following workflow:<br><br>%s<br>"
msgstr "Wollen Sie wirklich den folgenden Workflow l&ouml;schen:<br><br>%s<br>"
#~ msgid "Change client"
#~ msgstr "Mandanten wechseln"
#: includes/include.workflow_steps.php:43
#: includes/include.workflow_steps.php:381
msgid "Add User"
msgstr "Benutzer hinzuf&uuml;gen"
#~ msgid "Welcome"
#~ msgstr "Willkommen"
#: includes/include.workflow_steps.php:75
msgid "New Workflow Step"
msgstr "Neuer Workflow Schritt"
#~ msgid "You are logged in as"
#~ msgstr "Sie sind angemeldet als"
#: includes/include.workflow_steps.php:138
msgid "Seconds"
msgstr "Sekunden"
#~ msgid "Last login"
#~ msgstr "Letzter Login"
#: includes/include.workflow_steps.php:139
msgid "Minutes"
msgstr "Minuten"
#~ msgid "Article is online"
#~ msgstr "Artikel ist online"
#: includes/include.workflow_steps.php:140
msgid "Hours"
msgstr "Stunden"
#~ msgid "Article is offline"
#~ msgstr "Artikel ist offline"
#: includes/include.workflow_steps.php:141
msgid "Days"
msgstr "Tage"
#~ msgid "Current workflow tasks"
#~ msgstr "Aktuelle Workflow Aufgaben"
#: includes/include.workflow_steps.php:142
msgid "Weeks"
msgstr "Wochen"
#~ msgid "Client"
#~ msgstr "Mandant"
#: includes/include.workflow_steps.php:143
msgid "Months"
msgstr "Monate"
#~ msgid "Language"
#~ msgstr "Sprache"
#: includes/include.workflow_steps.php:144
msgid "Years"
msgstr "Jahre"
#~ msgid "No tasks found"
#~ msgstr "Keine Aufgabe gefunden"
#: includes/include.workflow_steps.php:192
msgid "Move step up"
msgstr "Schritt nach oben bewegen"
#~ msgid "Status"
#~ msgstr "Status"
#: includes/include.workflow_steps.php:200
msgid "Move step down"
msgstr "Schritt nach unten verschieben"
#~ msgid "Step"
#~ msgstr "Schritt"
#: includes/include.workflow_steps.php:210
msgid "Delete step"
msgstr "Schritt l&ouml;schen"
#~ msgid "Assign workflow to category"
#~ msgstr "Workflow einer Kategorie zuordnen"
#: includes/include.workflow_steps.php:252
msgid "Create new step"
msgstr "Neuen Schritt erzeugen"
#: includes/include.workflow_steps.php:287
msgid "Step name"
msgstr "Name des Schritts"
#: includes/include.workflow_steps.php:288
msgid "Step description"
msgstr "Beschreibung des Schritts"
#: includes/include.workflow_steps.php:294
#: includes/include.workflow_tasks.php:135
msgid "Actions"
msgstr "Aktionen"
#: includes/include.workflow_steps.php:295
msgid "Assigned users"
msgstr "Zugeordnete Benutzer"
#: includes/include.workflow_steps.php:323
msgid "Move user up"
msgstr "Benutzer nach oben verschieben"
#: includes/include.workflow_steps.php:332
msgid "Move user down"
msgstr "Benutzer nach unten verschieben"
#: includes/include.workflow_steps.php:343
msgid "Delete user"
msgstr "Benutzer l&ouml;schen"
#: includes/include.workflow_steps.php:349
msgid "Notify this user via E-Mail"
msgstr "Diesen Benutzer per e-Mail benachrichtigen"
#: includes/include.workflow_steps.php:350
msgid "Escalate to this user via E-Mail"
msgstr "An diesen Benutzer per e-Mail eskalieren"
#: includes/include.workflow_tasks.php:122
msgid "Show users"
msgstr "Zeige Benutzer"
#: includes/include.workflow_tasks.php:130
msgid "Search results"
msgstr "Suchergebnis"
#: includes/include.workflow_tasks.php:130
msgid "Workflow tasks"
msgstr "Workflow Aufgaben"
#: includes/include.workflow_tasks.php:133
msgid "Article"
msgstr "Artikel"
#: includes/include.workflow_tasks.php:134
msgid "Template"
msgstr "Template"
#: includes/include.workflow_tasks.php:136
msgid "Title"
msgstr "Titel"
#: includes/include.workflow_tasks.php:137
msgid "Changed"
msgstr "Ge&auml;ndert"
#: includes/include.workflow_tasks.php:138
msgid "Published"
msgstr "Ver&ouml;ffentlichen"
#: includes/include.workflow_tasks.php:203
msgid "Reminder"
msgstr "Wiedervorlage"
#: includes/include.workflow_tasks.php:204
msgid "Set reminder / add to todo list"
msgstr "Wiedervorlage / zur Todoliste hinzuf&uegen"
#: includes/include.workflow_tasks.php:240
msgid "No article found."
msgstr "Kein Artikel gefunden."

Datei anzeigen

@ -9,5 +9,5 @@
{EDITSTEP}
</div>
<div class="right_list">
i18n('Warning: Changes will reset active Workflows', 'cl-workflow')
i18n("Warning: Changes will reset active Workflows")
</div>