summaryrefslogtreecommitdiff
path: root/app/Locale/de_DE/translations.php
blob: 51f544e8ea99fd045921df85ab8dbf67132f34b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
<?php

return array(
    'number.decimals_separator' => ',',
    'number.thousands_separator' => '.',
    'None' => 'Keines',
    'Edit' => 'Bearbeiten',
    'Remove' => 'Entfernen',
    'Yes' => 'Ja',
    'No' => 'Nein',
    'cancel' => 'Abbrechen',
    'or' => 'oder',
    'Yellow' => 'Gelb',
    'Blue' => 'Blau',
    'Green' => 'Grün',
    'Purple' => 'Violett',
    'Red' => 'Rot',
    'Orange' => 'Orange',
    'Grey' => 'Grau',
    'Brown' => 'Braun',
    'Deep Orange' => 'Dunkelorange',
    'Dark Grey' => 'Dunkelgrau',
    'Pink' => 'Pink',
    'Teal' => 'Türkis',
    'Cyan' => 'Cyan',
    'Lime' => 'Limette',
    'Light Green' => 'Hellgrün',
    'Amber' => 'Bernstein',
    'Save' => 'Speichern',
    'Login' => 'Anmelden',
    'Official website:' => 'Offizielle Webseite:',
    'Unassigned' => 'Nicht zugeordnet',
    'View this task' => 'Aufgabe ansehen',
    'Remove user' => 'Benutzer löschen',
    'Do you really want to remove this user: "%s"?' => 'Soll dieser Benutzer wirklich gelöscht werden: "%s"?',
    'All users' => 'Alle Benutzer',
    'Username' => 'Benutzername',
    'Password' => 'Passwort',
    'Administrator' => 'Administrator',
    'Sign in' => 'Anmelden',
    'Users' => 'Benutzer',
    'Forbidden' => 'Verboten',
    'Access Forbidden' => 'Zugriff verboten',
    'Edit user' => 'Benutzer bearbeiten',
    'Logout' => 'Abmelden',
    'Bad username or password' => 'Falscher Benutzername oder Passwort',
    'Edit project' => 'Projekt bearbeiten',
    'Name' => 'Name',
    'Projects' => 'Projekte',
    'No project' => 'Keine Projekte',
    'Project' => 'Projekt',
    'Status' => 'Status',
    'Tasks' => 'Aufgaben',
    'Board' => 'Pinnwand',
    'Actions' => 'Aktionen',
    'Inactive' => 'Inaktiv',
    'Active' => 'Aktiv',
    'Unable to update this board.' => 'Ändern dieser Pinnwand nicht möglich.',
    'Disable' => 'Deaktivieren',
    'Enable' => 'Aktivieren',
    'New project' => 'Neues Projekt',
    'Do you really want to remove this project: "%s"?' => 'Soll dieses Projekt wirklich gelöscht werden: "%s"?',
    'Remove project' => 'Projekt löschen',
    'Edit the board for "%s"' => 'Pinnwand für "%s" bearbeiten',
    'Add a new column' => 'Neue Spalte hinzufügen',
    'Title' => 'Titel',
    'Assigned to %s' => 'Zuständig: %s',
    'Remove a column' => 'Spalte löschen',
    'Unable to remove this column.' => 'Löschen dieser Spalte nicht möglich.',
    'Do you really want to remove this column: "%s"?' => 'Soll diese Spalte wirklich gelöscht werden: "%s"?',
    'Settings' => 'Einstellungen',
    'Application settings' => 'Anwendungskonfiguration',
    'Language' => 'Sprache',
    'Webhook token:' => 'Webhook Token:',
    'API token:' => 'API Token:',
    'Database size:' => 'Datenbankgröße:',
    'Download the database' => 'Datenbank herunterladen',
    'Optimize the database' => 'Datenbank optimieren',
    '(VACUUM command)' => '(VACUUM Befehl)',
    '(Gzip compressed Sqlite file)' => '(Gzip-komprimierte SQLite-Datei)',
    'Close a task' => 'Aufgabe abschließen',
    'Column' => 'Spalte',
    'Color' => 'Farbe',
    'Assignee' => 'Zuständiger',
    'Create another task' => 'Weitere Aufgabe erstellen',
    'New task' => 'Neue Aufgabe',
    'Open a task' => 'Öffne eine Aufgabe',
    'Do you really want to open this task: "%s"?' => 'Soll diese Aufgabe wirklich wieder geöffnet werden: "%s"?',
    'Back to the board' => 'Zurück zur Pinnwand',
    'There is nobody assigned' => 'Die Aufgabe wurde niemandem zugewiesen',
    'Column on the board:' => 'Spalte:',
    'Close this task' => 'Aufgabe schließen',
    'Open this task' => 'Aufgabe wieder öffnen',
    'There is no description.' => 'Keine Beschreibung vorhanden.',
    'Add a new task' => 'Neue Aufgabe hinzufügen',
    'The username is required' => 'Der Benutzername wird benötigt',
    'The maximum length is %d characters' => 'Die maximale Länge beträgt %d Zeichen',
    'The minimum length is %d characters' => 'Die minimale Länge beträgt %d Zeichen',
    'The password is required' => 'Das Passwort wird benötigt',
    'This value must be an integer' => 'Dieser Wert muss eine ganze Zahl sein',
    'The username must be unique' => 'Der Benutzername muss eindeutig sein',
    'The user id is required' => 'Die Benutzer-ID ist anzugeben',
    'Passwords don\'t match' => 'Passwörter nicht gleich',
    'The confirmation is required' => 'Die Bestätigung ist erforderlich',
    'The project is required' => 'Das Projekt ist anzugeben',
    'The id is required' => 'Die ID ist anzugeben',
    'The project id is required' => 'Die Projekt ID ist anzugeben',
    'The project name is required' => 'Der Projektname ist anzugeben',
    'The title is required' => 'Der Titel ist anzugeben',
    'Settings saved successfully.' => 'Einstellungen erfolgreich gespeichert.',
    'Unable to save your settings.' => 'Speichern der Einstellungen nicht möglich.',
    'Database optimization done.' => 'Optimieren der Datenbank abgeschlossen.',
    'Your project have been created successfully.' => 'Das Projekt wurde erfolgreich erstellt.',
    'Unable to create your project.' => 'Erstellen des Projekts nicht möglich.',
    'Project updated successfully.' => 'Projekt erfolgreich geändert.',
    'Unable to update this project.' => 'Änderung des Projekts nicht möglich.',
    'Unable to remove this project.' => 'Löschen des Projekts nicht möglich.',
    'Project removed successfully.' => 'Projekt erfolgreich gelöscht.',
    'Project activated successfully.' => 'Projekt erfolgreich aktiviert.',
    'Unable to activate this project.' => 'Aktivieren des Projekts nicht möglich.',
    'Project disabled successfully.' => 'Projekt erfolgreich deaktiviert.',
    'Unable to disable this project.' => 'Deaktivieren des Projekts nicht möglich.',
    'Unable to open this task.' => 'Wiedereröffnung der Aufgabe nicht möglich.',
    'Task opened successfully.' => 'Aufgabe erfolgreich wieder geöffnet.',
    'Unable to close this task.' => 'Abschließen der Aufgabe nicht möglich.',
    'Task closed successfully.' => 'Aufgabe erfolgreich geschlossen.',
    'Unable to update your task.' => 'Aktualisieren der Aufgabe nicht möglich.',
    'Task updated successfully.' => 'Aufgabe erfolgreich aktualisiert.',
    'Unable to create your task.' => 'Erstellen der Aufgabe nicht möglich.',
    'Task created successfully.' => 'Aufgabe erfolgreich erstellt.',
    'User created successfully.' => 'Benutzer erfolgreich erstellt.',
    'Unable to create your user.' => 'Erstellen des Benutzers nicht möglich.',
    'User updated successfully.' => 'Benutzer erfolgreich geändert.',
    'User removed successfully.' => 'Benutzer erfolgreich gelöscht.',
    'Unable to remove this user.' => 'Löschen des Benutzers nicht möglich.',
    'Board updated successfully.' => 'Pinnwand erfolgreich geändert.',
    'Ready' => 'Bereit',
    'Backlog' => 'Ideen',
    'Work in progress' => 'In Arbeit',
    'Done' => 'Erledigt',
    'Application version:' => 'Version:',
    'Id' => 'ID',
    'Public link' => 'Öffentlicher Link',
    'Timezone' => 'Zeitzone',
    'Sorry, I didn\'t find this information in my database!' => 'Diese Information wurde in der Datenbank nicht gefunden!',
    'Page not found' => 'Seite nicht gefunden',
    'Complexity' => 'Komplexität',
    'Task limit' => 'Maximale Anzahl von Aufgaben',
    'Task count' => 'Aufgabenanzahl',
    'User' => 'Benutzer',
    'Comments' => 'Kommentare',
    'Comment is required' => 'Ein Kommentar wird benötigt',
    'Comment added successfully.' => 'Kommentar erfolgreich hinzugefügt.',
    'Unable to create your comment.' => 'Hinzufügen eines Kommentars nicht möglich.',
    'Due Date' => 'Fällig am',
    'Invalid date' => 'Ungültiges Datum',
    'Automatic actions' => 'Automatische Aktionen',
    'Your automatic action have been created successfully.' => 'Die automatische Aktion wurde erfolgreich erstellt.',
    'Unable to create your automatic action.' => 'Erstellen der automatischen Aktion nicht möglich.',
    'Remove an action' => 'Aktion löschen',
    'Unable to remove this action.' => 'Löschen der Aktion nicht möglich.',
    'Action removed successfully.' => 'Aktion erfolgreich gelöscht.',
    'Automatic actions for the project "%s"' => 'Automatische Aktionen für das Projekt "%s"',
    'Add an action' => 'Aktion hinzufügen',
    'Event name' => 'Ereignisname',
    'Action' => 'Aktion',
    'Event' => 'Ereignis',
    'When the selected event occurs execute the corresponding action.' => 'Wenn das gewählte Ereignis eintritt, führe die zugehörige Aktion aus.',
    'Next step' => 'Weiter',
    'Define action parameters' => 'Aktionsparameter definieren',
    'Do you really want to remove this action: "%s"?' => 'Soll diese Aktion wirklich gelöscht werden: "%s"?',
    'Remove an automatic action' => 'Löschen einer automatischen Aktion',
    'Assign the task to a specific user' => 'Aufgabe einem Benutzer zuordnen',
    'Assign the task to the person who does the action' => 'Aufgabe dem Benutzer zuordnen, der die Aktion ausgeführt hat',
    'Duplicate the task to another project' => 'Aufgabe in ein anderes Projekt kopieren',
    'Move a task to another column' => 'Aufgabe in andere Spalte verschieben',
    'Task modification' => 'Aufgabe ändern',
    'Task creation' => 'Aufgabe erstellen',
    'Closing a task' => 'Aufgabe abschließen',
    'Assign a color to a specific user' => 'Einem Benutzer eine Farbe zuordnen',
    'Position' => 'Position',
    'Duplicate to another project' => 'In ein anderes Projekt duplizieren',
    'Duplicate' => 'Duplizieren',
    'Link' => 'Link',
    'Comment updated successfully.' => 'Kommentar erfolgreich aktualisiert.',
    'Unable to update your comment.' => 'Aktualisierung des Kommentars nicht möglich.',
    'Remove a comment' => 'Kommentar löschen',
    'Comment removed successfully.' => 'Kommentar erfolgreich gelöscht.',
    'Unable to remove this comment.' => 'Löschen des Kommentars nicht möglich.',
    'Do you really want to remove this comment?' => 'Soll dieser Kommentar wirklich gelöscht werden?',
    'Current password for the user "%s"' => 'Aktuelles Passwort des Benutzers "%s"',
    'The current password is required' => 'Das aktuelle Passwort wird benötigt',
    'Wrong password' => 'Falsches Passwort',
    'Unknown' => 'Unbekannt',
    'Last logins' => 'Letzte Anmeldungen',
    'Login date' => 'Anmeldedatum',
    'Authentication method' => 'Authentisierungsmethode',
    'IP address' => 'IP-Adresse',
    'User agent' => 'User-Agent',
    'Persistent connections' => 'Bestehende Verbindungen',
    'No session.' => 'Keine Sitzung.',
    'Expiration date' => 'Ablaufdatum',
    'Remember Me' => 'Angemeldet bleiben',
    'Creation date' => 'Erstellungsdatum',
    'Everybody' => 'Alle',
    'Open' => 'Offen',
    'Closed' => 'Abgeschlossen',
    'Search' => 'Suchen',
    'Nothing found.' => 'Nichts gefunden.',
    'Due date' => 'Fälligkeitsdatum',
    'Description' => 'Beschreibung',
    '%d comments' => '%d Kommentare',
    '%d comment' => '%d Kommentar',
    'Email address invalid' => 'Ungültige E-Mail-Adresse',
    'Your external account is not linked anymore to your profile.' => 'Dein externer Account ist nicht mehr mit deinem Profil verbunden.',
    'Unable to unlink your external account.' => 'Externer Account konnte nicht getrennt werden.',
    'External authentication failed' => 'Externe Authentifizierung fehlgeschlagen',
    'Your external account is linked to your profile successfully.' => 'Dein externer Account wurde erfolgreich mit deinem Profil verbunden',
    'Email' => 'E-Mail',
    'Task removed successfully.' => 'Aufgabe erfolgreich gelöscht.',
    'Unable to remove this task.' => 'Löschen der Aufgabe nicht möglich.',
    'Remove a task' => 'Aufgabe löschen',
    'Do you really want to remove this task: "%s"?' => 'Soll diese Aufgabe wirklich gelöscht werden: "%s"?',
    'Assign automatically a color based on a category' => 'Automatisch eine Farbe anhand der Kategorie zuweisen',
    'Assign automatically a category based on a color' => 'Automatisch eine Kategorie anhand der Farbe zuweisen',
    'Task creation or modification' => 'Aufgabe erstellen oder ändern',
    'Category' => 'Kategorie',
    'Category:' => 'Kategorie:',
    'Categories' => 'Kategorien',
    'Your category have been created successfully.' => 'Kategorie erfolgreich erstellt.',
    'This category has been updated successfully.' => 'Kategorie erfolgreich aktualisiert.',
    'Unable to update this category.' => 'Änderung der Kategorie nicht möglich.',
    'Remove a category' => 'Kategorie löschen',
    'Category removed successfully.' => 'Kategorie erfolgreich gelöscht.',
    'Unable to remove this category.' => 'Löschen der Kategorie nicht möglich.',
    'Category modification for the project "%s"' => 'Kategorie für das Projekt "%s" bearbeiten',
    'Category Name' => 'Kategoriename',
    'Add a new category' => 'Neue Kategorie',
    'Do you really want to remove this category: "%s"?' => 'Soll diese Kategorie wirklich gelöscht werden: "%s"?',
    'All categories' => 'Alle Kategorien',
    'No category' => 'Keine Kategorie',
    'The name is required' => 'Der Name ist erforderlich',
    'Remove a file' => 'Datei löschen',
    'Unable to remove this file.' => 'Löschen der Datei nicht möglich.',
    'File removed successfully.' => 'Datei erfolgreich gelöscht.',
    'Attach a document' => 'Dokument anhängen',
    'Do you really want to remove this file: "%s"?' => 'Soll diese Datei wirklich gelöscht werden: "%s"?',
    'Attachments' => 'Anhänge',
    'Edit the task' => 'Aufgabe bearbeiten',
    'Add a comment' => 'Kommentar hinzufügen',
    'Edit a comment' => 'Kommentar bearbeiten',
    'Summary' => 'Zusammenfassung',
    'Time tracking' => 'Zeiterfassung',
    'Estimate:' => 'Geschätzt:',
    'Spent:' => 'Aufgewendet:',
    'Do you really want to remove this sub-task?' => 'Soll diese Teilaufgabe wirklich gelöscht werden?',
    'Remaining:' => 'Verbleibend:',
    'hours' => 'Stunden',
    'spent' => 'aufgewendet',
    'estimated' => 'geschätzt',
    'Sub-Tasks' => 'Teilaufgaben',
    'Add a sub-task' => 'Teilaufgabe anlegen',
    'Original estimate' => 'Geschätzter Aufwand',
    'Create another sub-task' => 'Weitere Teilaufgabe anlegen',
    'Time spent' => 'Aufgewendete Zeit',
    'Edit a sub-task' => 'Teilaufgabe bearbeiten',
    'Remove a sub-task' => 'Teilaufgabe löschen',
    'The time must be a numeric value' => 'Zeit nur als nummerische Angabe',
    'Todo' => 'Nicht gestartet',
    'In progress' => 'In Bearbeitung',
    'Sub-task removed successfully.' => 'Teilaufgabe erfolgreich gelöscht.',
    'Unable to remove this sub-task.' => 'Löschen der Teilaufgabe nicht möglich.',
    'Sub-task updated successfully.' => 'Teilaufgabe erfolgreich aktualisiert.',
    'Unable to update your sub-task.' => 'Aktualisieren der Teilaufgabe nicht möglich.',
    'Unable to create your sub-task.' => 'Erstellen der Teilaufgabe nicht möglich.',
    'Sub-task added successfully.' => 'Teilaufgabe erfolgreich angelegt.',
    'Maximum size: ' => 'Maximalgröße: ',
    'Display another project' => 'Zu Projekt wechseln',
    'Created by %s' => 'Erstellt durch %s',
    'Tasks Export' => 'Aufgaben exportieren',
    'Start Date' => 'Anfangsdatum',
    'Execute' => 'Ausführen',
    'Task Id' => 'Aufgaben ID',
    'Creator' => 'Erstellt von',
    'Modification date' => 'Änderungsdatum',
    'Completion date' => 'Abschlussdatum',
    'Clone' => 'duplizieren',
    'Project cloned successfully.' => 'Projekt wurde dupliziert.',
    'Unable to clone this project.' => 'Duplizieren dieses Projekts schlug fehl.',
    'Enable email notifications' => 'E-Mail-Benachrichtigungen einschalten',
    'Task position:' => 'Position der Aufgabe:',
    'The task #%d have been opened.' => 'Die Aufgabe #%d wurde geöffnet.',
    'The task #%d have been closed.' => 'Die Aufgabe #%d wurde geschlossen.',
    'Sub-task updated' => 'Teilaufgabe aktualisiert',
    'Title:' => 'Titel:',
    'Status:' => 'Status:',
    'Assignee:' => 'Zuständigkeit:',
    'Time tracking:' => 'Zeittracking:',
    'New sub-task' => 'Neue Teilaufgabe',
    'New attachment added "%s"' => 'Neuer Anhang "%s" wurde hinzugefügt.',
    'New comment posted by %s' => 'Neuer Kommentar verfasst durch %s',
    'New comment' => 'Neuer Kommentar',
    'Comment updated' => 'Kommentar wurde aktualisiert',
    'New subtask' => 'Neue Teilaufgabe',
    'I want to receive notifications only for those projects:' => 'Ich möchte nur für diese Projekte Benachrichtigungen erhalten:',
    'view the task on Kanboard' => 'diese Aufgabe auf dem Kanboard zeigen',
    'Public access' => 'Öffentlicher Zugriff',
    'Disable public access' => 'Öffentlichen Zugriff deaktivieren',
    'Enable public access' => 'Öffentlichen Zugriff aktivieren',
    'Public access disabled' => 'Öffentlicher Zugriff deaktiviert',
    'Move the task to another project' => 'Aufgabe in ein anderes Projekt verschieben',
    'Move to another project' => 'In anderes Projekt verschieben',
    'Do you really want to duplicate this task?' => 'Möchten Sie diese Aufgabe wirklich duplizieren?',
    'Duplicate a task' => 'Aufgabe duplizieren',
    'External accounts' => 'Externe Accounts',
    'Account type' => 'Accounttyp',
    'Local' => 'Lokal',
    'Remote' => 'Remote',
    'Enabled' => 'angeschaltet',
    'Disabled' => 'abgeschaltet',
    'Login:' => 'Benutzername:',
    'Full Name:' => 'Vollständiger Name:',
    'Email:' => 'E-Mail:',
    'Notifications:' => 'Benachrichtigungen:',
    'Notifications' => 'Benachrichtigungen',
    'Account type:' => 'Accounttyp:',
    'Edit profile' => 'Profil bearbeiten',
    'Change password' => 'Passwort ändern',
    'Password modification' => 'Passwortänderung',
    'External authentications' => 'Externe Authentisierungsmethoden',
    'Never connected.' => 'Noch nie verbunden.',
    'No external authentication enabled.' => 'Es sind keine externen Authentisierungsmethoden aktiv.',
    'Password modified successfully.' => 'Passwort wurde erfolgreich geändert.',
    'Unable to change the password.' => 'Passwort konnte nicht geändert werden.',
    'Change category' => 'Kategorie ändern',
    '%s updated the task %s' => '%s hat die Aufgabe %s aktualisiert',
    '%s opened the task %s' => '%s hat die Aufgabe %s geöffnet',
    '%s moved the task %s to the position #%d in the column "%s"' => '%s hat die Aufgabe %s auf die Position #%d in der Spalte "%s" verschoben',
    '%s moved the task %s to the column "%s"' => '%s hat die Aufgabe %s in die Spalte "%s" verschoben',
    '%s created the task %s' => '%s hat die Aufgabe %s angelegt',
    '%s closed the task %s' => '%s hat die Aufgabe %s geschlossen',
    '%s created a subtask for the task %s' => '%s hat eine Teilaufgabe für die Aufgabe %s angelegt',
    '%s updated a subtask for the task %s' => '%s hat eine Teilaufgabe der Aufgabe %s verändert',
    'Assigned to %s with an estimate of %s/%sh' => 'An %s zugewiesen mit einer Schätzung von %s/%s Stunden',
    'Not assigned, estimate of %sh' => 'Nicht zugewiesen, Schätzung von %s Stunden',
    '%s updated a comment on the task %s' => '%s hat einen Kommentar der Aufgabe %s aktualisiert',
    '%s commented the task %s' => '%s hat die Aufgabe %s kommentiert',
    '%s\'s activity' => '%s\'s Aktivität',
    'RSS feed' => 'RSS Feed',
    '%s updated a comment on the task #%d' => '%s hat einen Kommentar der Aufgabe #%d aktualisiert',
    '%s commented on the task #%d' => '%s hat die Aufgabe #%d kommentiert',
    '%s updated a subtask for the task #%d' => '%s hat eine Teilaufgabe der Aufgabe #%d aktualisiert',
    '%s created a subtask for the task #%d' => '%s hat eine Teilaufgabe der Aufgabe #%d angelegt',
    '%s updated the task #%d' => '%s hat die Aufgabe #%d aktualisiert',
    '%s created the task #%d' => '%s hat die Aufgabe #%d angelegt',
    '%s closed the task #%d' => '%s hat die Aufgabe #%d geschlossen',
    '%s opened the task #%d' => '%s hat die Aufgabe #%d geöffnet',
    'Activity' => 'Aktivität',
    'Default values are "%s"' => 'Die Standardwerte sind "%s"',
    'Default columns for new projects (Comma-separated)' => 'Standardspalten für neue Projekte (komma-getrennt)',
    'Task assignee change' => 'Zuständigkeit geändert',
    '%s changed the assignee of the task #%d to %s' => '%s hat die Zuständigkeit der Aufgabe #%d geändert zu %s',
    '%s changed the assignee of the task %s to %s' => '%s hat die Zuständigkeit der Aufgabe %s geändert zu %s',
    'New password for the user "%s"' => 'Neues Passwort des Benutzers "%s"',
    'Choose an event' => 'Aktion wählen',
    'Create a task from an external provider' => 'Eine Aufgabe durch einen externen Provider hinzufügen',
    'Change the assignee based on an external username' => 'Zuordnung ändern basierend auf externem Benutzernamen',
    'Change the category based on an external label' => 'Kategorie basierend auf einer externen Kennzeichnung ändern',
    'Reference' => 'Referenz',
    'Label' => 'Kennzeichnung',
    'Database' => 'Datenbank',
    'About' => 'Über',
    'Database driver:' => 'Datenbanktreiber:',
    'Board settings' => 'Pinnwandeinstellungen',
    'Webhook settings' => 'Webhook-Einstellungen',
    'Reset token' => 'Token zurücksetzen',
    'API endpoint:' => 'API-Endpunkt:',
    'Refresh interval for private board' => 'Aktualisierungsintervall für private Pinnwände',
    'Refresh interval for public board' => 'Aktualisierungsintervall für öffentliche Pinnwände',
    'Task highlight period' => 'Aufgaben-Hervorhebungsdauer',
    'Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)' => 'Dauer (in Sekunden), wie lange eine Aufgabe als kürzlich verändert gilt (0 um diese Funktion zu deaktivieren, standardmäßig 2 Tage)',
    'Frequency in second (60 seconds by default)' => 'Frequenz in Sekunden (standardmäßig 60 Sekunden)',
    'Frequency in second (0 to disable this feature, 10 seconds by default)' => 'Frequenz in Sekunden (0 um diese Funktion zu deaktivieren, standardmäßig 10 Sekunden)',
    'Application URL' => 'Applikations-URL',
    'Token regenerated.' => 'Token wurde neu generiert.',
    'Date format' => 'Datumsformat',
    'ISO format is always accepted, example: "%s" and "%s"' => 'ISO Format wird immer akzeptiert, z.B.: "%s" und "%s"',
    'New private project' => 'Neues privates Projekt',
    'This project is private' => 'Dieses Projekt ist privat',
    'Add' => 'Hinzufügen',
    'Start date' => 'Startdatum',
    'Time estimated' => 'Geschätzte Zeit',
    'There is nothing assigned to you.' => 'Ihnen ist nichts zugewiesen.',
    'My tasks' => 'Meine Aufgaben',
    'Activity stream' => 'Letzte Aktivitäten',
    'Dashboard' => 'Dashboard',
    'Confirmation' => 'Wiederholung',
    'Allow everybody to access to this project' => 'Jedem Zugriff zu diesem Projekt gewähren',
    'Everybody have access to this project.' => 'Jeder hat Zugriff zu diesem Projekt',
    'Webhooks' => 'Webhooks',
    'API' => 'API',
    'Create a comment from an external provider' => 'Kommentar eines externen Providers hinzufügen',
    'Project management' => 'Projektmanagement',
    'Columns' => 'Spalten',
    'Task' => 'Aufgabe',
    'Percentage' => 'Prozentsatz',
    'Number of tasks' => 'Anzahl an Aufgaben',
    'Task distribution' => 'Aufgabenverteilung',
    'Analytics' => 'Analyse',
    'Subtask' => 'Teilaufgabe',
    'User repartition' => 'Benutzerverteilung',
    'Clone this project' => 'Projekt kopieren',
    'Column removed successfully.' => 'Spalte erfolgreich entfernt.',
    'Not enough data to show the graph.' => 'Nicht genügend Daten, um die Grafik zu zeigen.',
    'Previous' => 'Vorherige',
    'The id must be an integer' => 'Die ID muss eine ganze Zahl sein',
    'The project id must be an integer' => 'Der Projekt-ID muss eine ganze Zahl sein',
    'The status must be an integer' => 'Der Status muss eine ganze Zahl sein',
    'The subtask id is required' => 'Die Teilaufgaben-ID ist benötigt',
    'The subtask id must be an integer' => 'Die Teilaufgaben-ID muss eine ganze Zahl sein',
    'The task id is required' => 'Die Aufgaben-ID ist benötigt',
    'The task id must be an integer' => 'Die Aufgaben ID muss eine ganze Zahl sein',
    'The user id must be an integer' => 'Die Benutzer ID muss eine ganze Zahl sein',
    'This value is required' => 'Dieser Wert ist erforderlich',
    'This value must be numeric' => 'Dieser Wert muss nummerisch sein',
    'Unable to create this task.' => 'Diese Aufgabe kann nicht erstellt werden',
    'Cumulative flow diagram' => 'Kumulatives Flussdiagramm',
    'Daily project summary' => 'Tägliche Projektzusammenfassung',
    'Daily project summary export' => 'Export der täglichen Projektzusammenfassung',
    'Exports' => 'Exporte',
    'This export contains the number of tasks per column grouped per day.' => 'Dieser Export enthält die Anzahl der Aufgaben pro Spalte nach Tagen gruppiert.',
    'Active swimlanes' => 'Aktive Swimlane',
    'Add a new swimlane' => 'Eine neue Swimlane hinzufügen',
    'Default swimlane' => 'Standard-Swimlane',
    'Do you really want to remove this swimlane: "%s"?' => 'Diese Swimlane wirklich ändern: "%s"?',
    'Inactive swimlanes' => 'Inaktive Swimlane',
    'Remove a swimlane' => 'Swimlane entfernen',
    'Swimlane modification for the project "%s"' => 'Swimlane-Änderung für das Projekt "%s"',
    'Swimlane removed successfully.' => 'Swimlane erfolgreich entfernt.',
    'Swimlanes' => 'Swimlanes',
    'Swimlane updated successfully.' => 'Swimlane erfolgreich geändert.',
    'Unable to remove this swimlane.' => 'Es ist nicht möglich, die Swimlane zu entfernen.',
    'Unable to update this swimlane.' => 'Es ist nicht möglich, die Swimlane zu ändern.',
    'Your swimlane have been created successfully.' => 'Die Swimlane wurde erfolgreich angelegt.',
    'Example: "Bug, Feature Request, Improvement"' => 'Beispiel: "Bug, Funktionswünsche, Verbesserung"',
    'Default categories for new projects (Comma-separated)' => 'Standard-Kategorien für neue Projekte (Komma-getrennt)',
    'Integrations' => 'Integration',
    'Integration with third-party services' => 'Integration von externen Diensten',
    'Subtask Id' => 'Teilaufgaben-ID',
    'Subtasks' => 'Teilaufgaben',
    'Subtasks Export' => 'Export von Teilaufgaben',
    'Task Title' => 'Aufgaben-Titel',
    'Untitled' => 'unbetitelt',
    'Application default' => 'Anwendungsstandard',
    'Language:' => 'Sprache:',
    'Timezone:' => 'Zeitzone:',
    'All columns' => 'Alle Spalten',
    'Next' => 'Nächste',
    '#%d' => 'Nr %d',
    'All swimlanes' => 'Alle Swimlanes',
    'All colors' => 'Alle Farben',
    'Moved to column %s' => 'In Spalte %s verschoben',
    'User dashboard' => 'Benutzer-Dashboard',
    'Allow only one subtask in progress at the same time for a user' => 'Erlaube nur eine Teilaufgabe pro Benutzer zu bearbeiten',
    'Edit column "%s"' => 'Spalte "%s" bearbeiten',
    'Select the new status of the subtask: "%s"' => 'Wähle einen neuen Status für Teilaufgabe: "%s"',
    'Subtask timesheet' => 'Teilaufgaben Zeiterfassung',
    'There is nothing to show.' => 'Es ist nichts zum Anzeigen vorhanden.',
    'Time Tracking' => 'Zeiterfassung',
    'You already have one subtask in progress' => 'Bereits eine Teilaufgabe in Bearbeitung',
    'Which parts of the project do you want to duplicate?' => 'Welcher Teil des Projekts soll kopiert werden?',
    'Disallow login form' => 'Verbiete Login-Formular',
    'Start' => 'Start',
    'End' => 'Ende',
    'Task age in days' => 'Aufgabenalter in Tagen',
    'Days in this column' => 'Tage in dieser Spalte',
    '%dd' => '%dT',
    'Add a new link' => 'Neue Verbindung hinzufügen',
    'Do you really want to remove this link: "%s"?' => 'Die Verbindung "%s" wirklich löschen?',
    'Do you really want to remove this link with task #%d?' => 'Die Verbindung mit der Aufgabe #%d wirklich löschen?',
    'Field required' => 'Feld erforderlich',
    'Link added successfully.' => 'Verbindung erfolgreich hinzugefügt.',
    'Link updated successfully.' => 'Verbindung erfolgreich aktualisiert.',
    'Link removed successfully.' => 'Verbindung erfolgreich gelöscht.',
    'Link labels' => 'Verbindungsbeschriftung',
    'Link modification' => 'Verbindung ändern',
    'Links' => 'Verbindungen',
    'Opposite label' => 'Gegenteil',
    'Remove a link' => 'Verbindung entfernen',
    'The labels must be different' => 'Die Beschriftung muss unterschiedlich sein',
    'There is no link.' => 'Es gibt keine Verbindung',
    'This label must be unique' => 'Die Beschriftung muss einzigartig sein',
    'Unable to create your link.' => 'Verbindung kann nicht erstellt werden.',
    'Unable to update your link.' => 'Verbindung kann nicht aktualisiert werden.',
    'Unable to remove this link.' => 'Verbindung kann nicht entfernt werden',
    'relates to' => 'gehört zu',
    'blocks' => 'blockiert',
    'is blocked by' => 'ist blockiert von',
    'duplicates' => 'doppelt',
    'is duplicated by' => 'ist gedoppelt von',
    'is a child of' => 'ist ein untergeordnetes Element von',
    'is a parent of' => 'ist ein übergeordnetes Element von',
    'targets milestone' => 'betrifft Meilenstein',
    'is a milestone of' => 'ist ein Meilenstein von',
    'fixes' => 'behebt',
    'is fixed by' => 'wird behoben von',
    'This task' => 'Diese Aufgabe',
    '<1h' => '<1Std',
    '%dh' => '%dStd',
    'Expand tasks' => 'Aufgaben aufklappen',
    'Collapse tasks' => 'Aufgaben zusammenklappen',
    'Expand/collapse tasks' => 'Aufgaben auf/zuklappen',
    'Close dialog box' => 'Dialog schließen',
    'Submit a form' => 'Formular abschicken',
    'Board view' => 'Pinnwand Ansicht',
    'Keyboard shortcuts' => 'Tastaturkürzel',
    'Open board switcher' => 'Pinnwandauswahl öffnen',
    'Application' => 'Anwendung',
    'Compact view' => 'Kompaktansicht',
    'Horizontal scrolling' => 'Horizontales Scrollen',
    'Compact/wide view' => 'Kompakt/Breite-Ansicht',
    'Currency' => 'Währung',
    'Private project' => 'privates Projekt',
    'AUD - Australian Dollar' => 'AUD - Australische Dollar',
    'CAD - Canadian Dollar' => 'CAD - Kanadische Dollar',
    'CHF - Swiss Francs' => 'CHF - Schweizer Franken',
    'Custom Stylesheet' => 'benutzerdefiniertes Stylesheet',
    'download' => 'Download',
    'EUR - Euro' => 'EUR - Euro',
    'GBP - British Pound' => 'GBP - Britische Pfund',
    'INR - Indian Rupee' => 'INR - Indische Rupien',
    'JPY - Japanese Yen' => 'JPY - Japanische Yen',
    'NZD - New Zealand Dollar' => 'NZD - Neuseeland-Dollar',
    'RSD - Serbian dinar' => 'RSD - Serbische Dinar',
    // 'CNY - Chinese Yuan' => '',
    'USD - US Dollar' => 'USD - US-Dollar',
    'Destination column' => 'Zielspalte',
    'Move the task to another column when assigned to a user' => 'Aufgabe in eine andere Spalte verschieben, wenn ein Benutzer zugeordnet wurde.',
    'Move the task to another column when assignee is cleared' => 'Aufgabe in eine andere Spalte verschieben, wenn die Zuordnung gelöscht wurde.',
    'Source column' => 'Quellspalte',
    'Transitions' => 'Übergänge',
    'Executer' => 'Ausführender',
    'Time spent in the column' => 'Zeit in Spalte verbracht',
    'Task transitions' => 'Aufgaben-Übergänge',
    'Task transitions export' => 'Aufgaben-Übergänge exportieren',
    'This report contains all column moves for each task with the date, the user and the time spent for each transition.' => 'Diese Auswertung enthält alle Spaltenbewegungen für jede Aufgabe mit Datum, Benutzer und Zeit vor jedem Wechsel.',
    'Currency rates' => 'Währungskurse',
    'Rate' => 'Kurse',
    'Change reference currency' => 'Referenzwährung ändern',
    'Reference currency' => 'Referenzwährung',
    'The currency rate have been added successfully.' => 'Der Währungskurs wurde erfolgreich hinzugefügt.',
    'Unable to add this currency rate.' => 'Währungskurs konnte nicht hinzugefügt werden',
    'Webhook URL' => 'Webhook-URL',
    '%s removed the assignee of the task %s' => '%s Zuordnung für die Aufgabe %s entfernen',
    'Information' => 'Information',
    'Check two factor authentication code' => 'Prüfe Zwei-Faktor-Authentifizierungscode',
    'The two factor authentication code is not valid.' => 'Der Zwei-Faktor-Authentifizierungscode ist ungültig.',
    'The two factor authentication code is valid.' => 'Der Zwei-Faktor-Authentifizierungscode ist gültig.',
    'Code' => 'Code',
    'Two factor authentication' => 'Zwei-Faktor-Authentifizierung',
    'This QR code contains the key URI: ' => 'Dieser QR-Code beinhaltet die Schlüssel-URI: ',
    'Check my code' => 'Überprüfe meinen Code',
    'Secret key: ' => 'Geheimer Schlüssel: ',
    'Test your device' => 'Teste dein Gerät',
    'Assign a color when the task is moved to a specific column' => 'Weise eine Farbe zu, wenn die Aufgabe zu einer bestimmten Spalte bewegt wird',
    '%s via Kanboard' => '%s via Kanboard',
    'Burndown chart' => 'Burndown-Diagramm',
    'This chart show the task complexity over the time (Work Remaining).' => 'Dieses Diagramm zeigt die Aufgabenkomplexität über den Faktor Zeit (Verbleibende Arbeit).',
    'Screenshot taken %s' => 'Screenshot aufgenommen %s',
    'Add a screenshot' => 'Screenshot hinzufügen',
    'Take a screenshot and press CTRL+V or ⌘+V to paste here.' => 'Nimm einen Screenshot auf und drücke STRG+V oder ⌘+V um ihn hier einzufügen.',
    'Screenshot uploaded successfully.' => 'Screenshot erfolgreich hochgeladen.',
    'SEK - Swedish Krona' => 'SEK - Schwedische Kronen',
    'Identifier' => 'Identifikator',
    'Disable two factor authentication' => 'Deaktiviere Zwei-Faktor-Authentifizierung',
    'Do you really want to disable the two factor authentication for this user: "%s"?' => 'Willst du wirklich für folgenden Benutzer die Zwei-Faktor-Authentifizierung deaktivieren: "%s"?',
    'Edit link' => 'Verbindung bearbeiten',
    'Start to type task title...' => 'Beginne mit der Titeleingabe...',
    'A task cannot be linked to itself' => 'Eine Aufgabe kann nicht mit sich selber verbunden werden',
    'The exact same link already exists' => 'Diese Verbindung existiert bereits',
    'Recurrent task is scheduled to be generated' => 'Wiederkehrende Aufgabe ist zur Generierung eingeplant',
    'Score' => 'Wertung',
    'The identifier must be unique' => 'Der Schlüssel muss einzigartig sein',
    'This linked task id doesn\'t exists' => 'Die verbundene Aufgabe existiert nicht',
    'This value must be alphanumeric' => 'Der Wert muss alphanumerisch sein',
    'Edit recurrence' => 'Wiederholung bearbeiten',
    'Generate recurrent task' => 'Wiederkehrende Aufgabe generieren',
    'Trigger to generate recurrent task' => 'Auslöser für wiederkehrende Aufgabe',
    'Factor to calculate new due date' => 'Faktor zur Berechnung für neues Ablaufdatum',
    'Timeframe to calculate new due date' => 'Zeitfenster zur Berechnung für neues Ablaufdatum',
    'Base date to calculate new due date' => 'Basisdatum zur Berechnung für neues Ablaufdatum',
    'Action date' => 'Aktionsdatum',
    'Base date to calculate new due date: ' => 'Basisdatum zur Berechnung für neues Ablaufdatum: ',
    'This task has created this child task: ' => 'Diese Aufgabe hat diese Teilaufgabe erstellt: ',
    'Day(s)' => 'Tag(e)',
    'Existing due date' => 'Existierendes Ablaufdatum',
    'Factor to calculate new due date: ' => 'Faktor zur Berechnung für neues Ablaufdatum: ',
    'Month(s)' => 'Monat(e)',
    'Recurrence' => 'Wiederholung',
    'This task has been created by: ' => 'Diese Aufgabe wurde erstellt von: ',
    'Recurrent task has been generated:' => 'Wiederkehrende Aufgabe wurde erstellt:',
    'Timeframe to calculate new due date: ' => 'Zeitfenster zur Berechnung für neues Ablaufdatum: ',
    'Trigger to generate recurrent task: ' => 'Auslöser für wiederkehrende Aufgabe: ',
    'When task is closed' => 'Wenn Aufgabe geschlossen wird',
    'When task is moved from first column' => 'Wenn Aufgabe von erster Spalte verschoben wird',
    'When task is moved to last column' => 'Wenn Aufgabe in letzte Spalte verschoben wird',
    'Year(s)' => 'Jahr(e)',
    'Project settings' => 'Projekteinstellungen',
    'Automatically update the start date' => 'Beginndatum automatisch aktualisieren',
    'iCal feed' => 'iCal Feed',
    'Preferences' => 'Einstellungen',
    'Security' => 'Sicherheit',
    'Two factor authentication disabled' => 'Zwei-Faktor-Authentifizierung deaktiviert',
    'Two factor authentication enabled' => 'Zwei-Faktor-Authentifizierung aktiviert',
    'Unable to update this user.' => 'Benutzer kann nicht bearbeitet werden',
    'There is no user management for private projects.' => 'Es gibt keine Benutzerverwaltung für private Projekte',
    'User that will receive the email' => 'Empfänger der E-Mail',
    'Email subject' => 'E-Mail-Betreff',
    'Date' => 'Datum',
    'Add a comment log when moving the task between columns' => 'Kommentar hinzufügen, wenn Aufgabe in andere Spalte verschoben wird',
    'Move the task to another column when the category is changed' => 'Aufgabe in andere Spalte verschieben, wenn Kategorie geändert wird',
    'Send a task by email to someone' => 'Aufgabe per E-Mail versenden',
    'Reopen a task' => 'Aufgabe wieder öffnen',
    'Notification' => 'Benachrichtigungen',
    '%s moved the task #%d to the first swimlane' => '%s hat die Aufgabe #%d in die erste Swimlane verschoben',
    'Swimlane' => 'Swimlane',
    '%s moved the task %s to the first swimlane' => '%s hat die Aufgabe %s in die erste Swimlane verschoben',
    '%s moved the task %s to the swimlane "%s"' => '%s hat die Aufgaben %s in die Swimlane "%s" verschoben',
    'This report contains all subtasks information for the given date range.' => 'Der Bericht beinhaltet alle Teilaufgaben im gewählten Zeitraum',
    'This report contains all tasks information for the given date range.' => 'Der Bericht beinhaltet alle Aufgaben im gewählten Zeitraum',
    'Project activities for %s' => 'Projektaktivitäten für %s',
    'view the board on Kanboard' => 'Pinnwand in Kanboard anzeigen',
    'The task have been moved to the first swimlane' => 'Die Aufgabe wurde in die erste Swimlane verschoben',
    'The task have been moved to another swimlane:' => 'Die Aufgaben wurde in eine andere Swimlane verschoben:',
    'New title: %s' => 'Neuer Titel: %s',
    'The task is not assigned anymore' => 'Die Aufgabe ist nicht mehr zugewiesen',
    'New assignee: %s' => 'Neue Zuordnung: %s',
    'There is no category now' => 'Es gibt keine Kategorie im Moment',
    'New category: %s' => 'Neue Kategorie: %s',
    'New color: %s' => 'Neue Farbe: %s',
    'New complexity: %d' => 'Neue Komplexität: %d',
    'The due date have been removed' => 'Das Ablaufdatum wurde entfernt',
    'There is no description anymore' => 'Es gibt keine Beschreibung mehr',
    'Recurrence settings have been modified' => 'Die Einstellungen für Wiederholung wurden geändert',
    'Time spent changed: %sh' => 'Verbrauchte Zeit geändert: %sh',
    'Time estimated changed: %sh' => 'Geschätzte Zeit geändert: %sh',
    'The field "%s" have been updated' => 'Das Feld "%s" wurde verändert',
    'The description has been modified:' => 'Die Beschreibung wurde geändert:',
    'Do you really want to close the task "%s" as well as all subtasks?' => 'Soll die Aufgabe "%s" wirklich geschlossen werden? (einschließlich Teilaufgaben)',
    'I want to receive notifications for:' => 'Ich möchte Benachrichtigungen erhalten für:',
    'All tasks' => 'Alle Aufgaben',
    'Only for tasks assigned to me' => 'nur mir zugeordnete Aufgane',
    'Only for tasks created by me' => 'nur von mir erstellte Aufgaben',
    'Only for tasks created by me and assigned to me' => 'nur mir zugeordnete und von mir erstellte Aufgaben',
    '%%Y-%%m-%%d' => '%%d.%%m.%%Y',
    'Total for all columns' => 'Gesamt für alle Spalten',
    'You need at least 2 days of data to show the chart.' => 'Es werden mindestens 2 Tage zur Darstellung benötigt',
    '<15m' => '<15min',
    '<30m' => '<30min',
    'Stop timer' => 'Stoppe Timer',
    'Start timer' => 'Starte Timer',
    'My activity stream' => 'Aktivitätsstream',
    'Search tasks' => 'Suche nach Aufgaben',
    'Reset filters' => 'Filter zurücksetzen',
    'My tasks due tomorrow' => 'Meine morgen fälligen Aufgaben',
    'Tasks due today' => 'Heute fällige Aufgaben',
    'Tasks due tomorrow' => 'Morgen fällige Aufgaben',
    'Tasks due yesterday' => 'Gestern fällige Aufgaben',
    'Closed tasks' => 'Abgeschlossene Aufgaben',
    'Open tasks' => 'Offene Aufgaben',
    'Not assigned' => 'Nicht zugewiesen',
    'View advanced search syntax' => 'Zur erweiterten Suchsyntax',
    'Overview' => 'Überblick',
    'Board/Calendar/List view' => 'Board-/Kalender-/Listen-Ansicht',
    'Switch to the board view' => 'Zur Board-Ansicht',
    'Switch to the list view' => 'Zur Listen-Ansicht',
    'Go to the search/filter box' => 'Zum Such- und Filterfeld',
    'There is no activity yet.' => 'Es gibt bislang keine Aktivitäten.',
    'No tasks found.' => 'Keine Aufgaben gefunden.',
    'Keyboard shortcut: "%s"' => 'Tastaturkürzel: "%s"',
    'List' => 'Liste',
    'Filter' => 'Filter',
    'Advanced search' => 'Fortgeschrittene Suche',
    'Example of query: ' => 'Beispiel einer Abfrage: ',
    'Search by project: ' => 'Suche nach Projekt: ',
    'Search by column: ' => 'Suche nach Spalte: ',
    'Search by assignee: ' => 'Suche nach zugeordnetem Benutzer: ',
    'Search by color: ' => 'Suche nach Farbe: ',
    'Search by category: ' => 'Suche nach Kategorie: ',
    'Search by description: ' => 'Suche nach Beschreibung: ',
    'Search by due date: ' => 'Suche nach Fälligkeitsdatum: ',
    'Average time spent into each column' => 'Durchschnittszeit in jeder Spalte',
    'Average time spent' => 'Durchschnittlicher Zeitverbrauch',
    'This chart show the average time spent into each column for the last %d tasks.' => 'Dieses Diagramm zeigt die durchschnittliche Zeit in jeder Spalte der letzten %d Aufgaben.',
    'Average Lead and Cycle time' => 'Durchschnittliche Zyklus- und Durchlaufzeit',
    'Average lead time: ' => 'Durchschnittliche Durchlaufzeit: ',
    'Average cycle time: ' => 'Durchschnittliche Zykluszeit: ',
    'Cycle Time' => 'Zykluszeit',
    'Lead Time' => 'Durchlaufzeit',
    'This chart show the average lead and cycle time for the last %d tasks over the time.' => 'Das Diagramm zeigt die durchschnittliche Durchlauf- und Zykluszeit der letzten %d Aufgaben über die Zeit an.',
    'Average time into each column' => 'Durchschnittzeit in jeder Spalte',
    'Lead and cycle time' => 'Durchlauf- und Zykluszeit',
    'Lead time: ' => 'Durchlaufzeit: ',
    'Cycle time: ' => 'Zykluszeit: ',
    'Time spent into each column' => 'zeit verbracht in jeder Spalte',
    'The lead time is the duration between the task creation and the completion.' => 'Die Durchlaufzeit ist die Dauer zwischen Erstellung und Fertigstellung.',
    'The cycle time is the duration between the start date and the completion.' => 'Die Zykluszeit ist die Dauer zwischen Start und Fertigstellung.',
    'If the task is not closed the current time is used instead of the completion date.' => 'Wenn die Aufgabe nicht geschlossen ist, wird die aktuelle Zeit statt der Fertigstellung verwendet.',
    'Set automatically the start date' => 'Setze Startdatum automatisch',
    'Edit Authentication' => 'Authentifizierung bearbeiten',
    'Remote user' => 'Remote-Benutzer',
    'Remote users do not store their password in Kanboard database, examples: LDAP, Google and Github accounts.' => 'Remote-Benutzer haben kein Passwort in der Kanboard Datenbank, Beispiel: LDAP, Google und Github Accounts',
    'If you check the box "Disallow login form", credentials entered in the login form will be ignored.' => 'Wenn die Box "Verbiete Login-Formular" angeschaltet ist, werden Eingaben in das Login Formular ignoriert.',
    'Default task color' => 'Voreingestellte Aufgabenfarbe',
    'This feature does not work with all browsers.' => 'Diese Funktion funktioniert nicht mit allen Browsern',
    'There is no destination project available.' => 'Es ist kein Zielprojekt vorhanden.',
    'Trigger automatically subtask time tracking' => 'Teilaufgaben Zeiterfassung automatisch starten',
    'Include closed tasks in the cumulative flow diagram' => 'Geschlossen Aufgaben ins kumulative Flussdiagramm einschließen',
    'Current swimlane: %s' => 'Aktuelle Swimlane: %s',
    'Current column: %s' => 'Aktuelle Spalte: %s',
    'Current category: %s' => 'Aktuelle Kategorie: %s',
    'no category' => 'keine Kategorie',
    'Current assignee: %s' => 'Aktuelle Zuordnung: %s',
    'not assigned' => 'nicht zugeordnet',
    'Author:' => 'Autor:',
    'contributors' => 'Mitwirkende',
    'License:' => 'Lizenz:',
    'License' => 'Lizenz',
    'Enter the text below' => 'Text unten eingeben',
    'Start date:' => 'Startdatum:',
    'Due date:' => 'Ablaufdatum:',
    'People who are project managers' => 'Benutzer die Projektmanager sind',
    'People who are project members' => 'Benutzer die Projektmitglieder sind',
    'NOK - Norwegian Krone' => 'NOK - Norwegische Kronen',
    'Show this column' => 'Spalte anzeigen',
    'Hide this column' => 'Spalte verstecken',
    'open file' => 'Datei öffnen',
    'End date' => 'Endedatum',
    'Users overview' => 'Benutzerübersicht',
    'Members' => 'Mitglieder',
    'Shared project' => 'Geteiltes Projekt',
    'Project managers' => 'Projektmanager',
    'Projects list' => 'Projektliste',
    'End date:' => 'Endedatum:',
    'Change task color when using a specific task link' => 'Aufgabefarbe ändern bei bestimmter Aufgabenverbindung',
    'Task link creation or modification' => 'Aufgabenverbindung erstellen oder bearbeiten',
    'Milestone' => 'Meilenstein',
    'Documentation: %s' => 'Dokumentation: %s',
    'Reset the search/filter box' => 'Suche/Filter-Box zurücksetzen',
    'Documentation' => 'Dokumentation',
    'Table of contents' => 'Inhaltsverzeichnis',
    'Author' => 'Autor',
    'Version' => 'Version',
    'Plugins' => 'Plugins',
    'There is no plugin loaded.' => 'Es ist kein Plugin geladen.',
    'My notifications' => 'Meine Benachrichtigungen',
    'Custom filters' => 'Benutzerdefinierte Filter',
    'Your custom filter have been created successfully.' => 'Benutzerdefinierten Filter erfolgreich erstellt.',
    'Unable to create your custom filter.' => 'Benutzerdefinierter Filter konnte nicht erstellt werden.',
    'Custom filter removed successfully.' => 'Benutzerdefinierten Filter erfolgreich entfernt.',
    'Unable to remove this custom filter.' => 'Benutzerdefinierten Filter konnte nicht entfernt werden.',
    'Edit custom filter' => 'Benutzerdefinierten Filter bearbeiten',
    'Your custom filter have been updated successfully.' => 'Benutzerdefinierten Filter erfolgreich bearbeitet.',
    'Unable to update custom filter.' => 'Benutzerdefinierter Filter konnte nicht geändert werden.',
    'Web' => 'Web',
    'New attachment on task #%d: %s' => 'Neuer Anhang für Aufgabe #%d: %s',
    'New comment on task #%d' => 'Neuer Kommentar für Aufgabe #%d',
    'Comment updated on task #%d' => 'Kommentar geändert für Aufgabe #%d',
    'New subtask on task #%d' => 'Neue Teilaufgabe für Aufgabe #%d',
    'Subtask updated on task #%d' => 'Teilaufgabe geändert für Aufgabe #%d',
    'New task #%d: %s' => 'Neue Aufgabe #%d: %s',
    'Task updated #%d' => 'Aufgabe bearbeitet #%d',
    'Task #%d closed' => 'Aufgabe #%d geschlossen',
    'Task #%d opened' => 'Aufgabe #%d eröffnet',
    'Column changed for task #%d' => 'Spalte geändert von Aufgabe #%d',
    'New position for task #%d' => 'Neue Position für Aufgabe #%d',
    'Swimlane changed for task #%d' => 'Neue Swimlane für Aufgabe #%d',
    'Assignee changed on task #%d' => 'Neue Zuordnung für Aufgabe #%d ',
    '%d overdue tasks' => '%d überfällige Aufgaben',
    'Task #%d is overdue' => 'Aufgabe #%d ist überfällig',
    'No notification.' => 'Keine neuen Benachrichtigungen',
    'Mark all as read' => 'Alles als gelesen markieren',
    'Mark as read' => 'Als gelesen markieren',
    'Total number of tasks in this column across all swimlanes' => 'Anzahl an Aufgaben in dieser Spalte über alle Swimlanes',
    'Collapse swimlane' => 'Swimlane einklappen',
    'Expand swimlane' => 'Swimlane ausklappen',
    'Add a new filter' => 'Neuen Filter hinzufügen',
    'Share with all project members' => 'Mit allen Projektmitgliedern teilen.',
    'Shared' => 'Geteilt',
    'Owner' => 'Eigentümer',
    'Unread notifications' => 'Ungelesene Benachrichtigungen',
    'Notification methods:' => 'Benachrichtigungs-Methoden:',
    'Unable to read your file' => 'Die Datei kann nicht gelesen werden',
    '%d task(s) have been imported successfully.' => '%d Aufgabe(n) wurde(n) erfolgreich importiert',
    'Nothing have been imported!' => 'Es wurde nichts importiert!',
    'Import users from CSV file' => 'Importiere Benutzer aus CSV Datei',
    '%d user(s) have been imported successfully.' => '%d Benutzer wurde(n) erfolgreich importiert.',
    'Comma' => 'Komma',
    'Semi-colon' => 'Semikolon',
    'Tab' => 'Tabulator',
    'Vertical bar' => 'senkrechter Strich',
    'Double Quote' => 'Doppelte Anführungszeichen',
    'Single Quote' => 'Einfache Anführungszeichen',
    '%s attached a file to the task #%d' => '%s hat eine Datei zur Aufgabe #%d hinzugefügt',
    'There is no column or swimlane activated in your project!' => 'Es ist keine Spalte oder Swimlane in Ihrem Projekt aktiviert!',
    'Append filter (instead of replacement)' => 'Filter anhängen (statt zu ersetzen)',
    'Append/Replace' => 'Anhängen/Ersetzen',
    'Append' => 'Anhängen',
    'Replace' => 'Ersetzen',
    'Import' => 'Import',
    'Change sorting' => 'Sortierung ändern',
    'Tasks Importation' => 'Aufgaben Import',
    'Delimiter' => 'Trennzeichen',
    'Enclosure' => 'Textbegrenzer',
    'CSV File' => 'CSV Datei',
    'Instructions' => 'Anweisungen',
    'Your file must use the predefined CSV format' => 'Ihre Datei muss das vorgegebene CSV Format haben',
    'Your file must be encoded in UTF-8' => 'Ihre Datei muss UTF-8 kodiert sein',
    'The first row must be the header' => 'Die erste Zeile muss die Kopfzeile sein',
    'Duplicates are not verified for you' => 'Duplikate werden nicht für Sie geprüft',
    'The due date must use the ISO format: YYYY-MM-DD' => 'Das Fälligkeitsdatum muss das ISO Format haben: YYYY-MM-DD',
    'Download CSV template' => 'CSV Vorlage herunterladen',
    'No external integration registered.' => 'Keine externe Integration registriert',
    'Duplicates are not imported' => 'Duplikate wurden nicht importiert',
    'Usernames must be lowercase and unique' => 'Benutzernamen müssen in Kleinbuschstaben und eindeutig sein',
    'Passwords will be encrypted if present' => 'Passwörter werden verschlüsselt wenn vorhanden',
    '%s attached a new file to the task %s' => '%s hat eine neue Datei zur Aufgabe %s hinzufgefügt',
    'Link type' => 'Verbindungstyp',
    'Assign automatically a category based on a link' => 'Linkbasiert eine Kategorie automatisch zuordnen',
    'BAM - Konvertible Mark' => 'BAM - Konvertible Mark',
    'Assignee Username' => 'Benutzername des Zuständigen',
    'Assignee Name' => 'Name des Zuständigen',
    'Groups' => 'Gruppen',
    'Members of %s' => 'Mitglied von %s',
    'New group' => 'Neue Gruppe',
    'Group created successfully.' => 'Gruppe erfolgreich angelegt.',
    'Unable to create your group.' => 'Gruppe konnte nicht angelegt werden',
    'Edit group' => 'Gruppe bearbeiten',
    'Group updated successfully.' => 'Gruppe erfolgreich aktualisiert',
    'Unable to update your group.' => 'Gruppe konnte nicht aktualisiert werden',
    'Add group member to "%s"' => 'Gruppenmitglied zu "%s" hinzufügen',
    'Group member added successfully.' => 'Gruppenmitglied erfolgreich hinzugefügt',
    'Unable to add group member.' => 'Gruppenmitglied konnte nicht hinzugefügt werden.',
    'Remove user from group "%s"' => 'Benutzer aus Gruppe "%s" löschen',
    'User removed successfully from this group.' => 'Benutzer erfolgreich aus dieser Gruppe gelöscht.',
    'Unable to remove this user from the group.' => 'Benutzer konnte nicht aus dieser Gruppe gelöscht werden.',
    'Remove group' => 'Gruppe löschen',
    'Group removed successfully.' => 'Gruppe erfolgreich gelöscht.',
    'Unable to remove this group.' => 'Gruppe konnte nicht gelöscht werden.',
    'Project Permissions' => 'Projekt Berechtigungen',
    'Manager' => 'Manager',
    'Project Manager' => 'Projekt Manager',
    'Project Member' => 'Projekt Mitglied',
    'Project Viewer' => 'Projekt Betrachter',
    'Your account is locked for %d minutes' => 'Ihr Zugang wurde für %d Minuten gesperrt',
    'Invalid captcha' => 'Ungültiges Captcha',
    'The name must be unique' => 'Der Name muss eindeutig sein',
    'View all groups' => 'Alle Gruppen anzeigen',
    'There is no user available.' => 'Es ist kein Benutzer verfügbar.',
    'Do you really want to remove the user "%s" from the group "%s"?' => 'Wollen Sie den Benutzer "%s" wirklich aus der Gruppe "%s" löschen?',
    'There is no group.' => 'Es gibt keine Gruppe.',
    'Add group member' => 'Gruppenmitglied hinzufügen',
    'Do you really want to remove this group: "%s"?' => 'Wollen Sie die Gruppe "%s" wirklich löschen?',
    'There is no user in this group.' => 'Es gibt keinen Benutzer in dieser Gruppe.',
    'Permissions' => 'Berechtigungen',
    'Allowed Users' => 'Berechtigte Benutzer',
    'No user have been allowed specifically.' => 'Keine Benutzer mit ausdrücklicher Berechtigung.',
    'Role' => 'Rolle',
    'Enter user name...' => 'Geben Sie den Benutzernamem ein...',
    'Allowed Groups' => 'Berechtigte Gruppen',
    'No group have been allowed specifically.' => 'Keine Gruppen mit ausdrücklicher Berechtigung.',
    'Group' => 'Gruppe',
    'Group Name' => 'Gruppenname',
    'Enter group name...' => 'Geben Sie den Gruppennamen ein...',
    'Role:' => 'Rolle:',
    'Project members' => 'Projektmitglieder',
    '%s mentioned you in the task #%d' => '%s erwähnte Sie in Aufgabe #%d',
    '%s mentioned you in a comment on the task #%d' => '%s erwähnte Sie in einem Kommentar zur Aufgabe #%d',
    'You were mentioned in the task #%d' => 'Sie wurden in der Aufgabe #%d erwähnt',
    'You were mentioned in a comment on the task #%d' => 'Sie wurden in einem Kommentar zur Aufgabe #%d erwähnt',
    'Estimated hours: ' => 'Erwarteter Zeitaufwand (Stunden): ',
    'Actual hours: ' => 'Tatsächlich aufgewändete Stunden: ',
    'Hours Spent' => 'Stunden aufgewändet',
    'Hours Estimated' => 'Stunden erwartet',
    'Estimated Time' => 'Erwartete Zeit',
    'Actual Time' => 'Aktuelle Zeit',
    'Estimated vs actual time' => 'Erwarteter vs. tatsächlicher Zeitaufwand',
    'RUB - Russian Ruble' => 'Russischer Rubel',
    'Assign the task to the person who does the action when the column is changed' => 'Aufgabe der Person zuordnen, die die Aktion durchführt, wenn die Spalte geändert wird',
    'Close a task in a specific column' => 'Schliesse eine Aufgabe in einer bestimmten Spalte',
    'Time-based One-time Password Algorithm' => 'Zeitbasierter Einmalpasswort Algorithmus',
    'Two-Factor Provider: ' => '2FA Anbieter: ',
    'Disable two-factor authentication' => 'Zwei-Faktor-Authentifizierung deaktivieren',
    'Enable two-factor authentication' => 'Zwei-Faktor-Authentifizierung aktivieren',
    'There is no integration registered at the moment.' => 'Derzeit ist kein externer Dienst registriert.',
    'Password Reset for Kanboard' => 'Zurücksetzen des Passwortes für Kanboard',
    'Forgot password?' => 'Passwort vergessen?',
    'Enable "Forget Password"' => 'Passwortrücksetzung aktivieren',
    'Password Reset' => 'Passwort zurücksetzen',
    'New password' => 'Neues Passwort',
    'Change Password' => 'Passwort ändern',
    'To reset your password click on this link:' => 'Bitte auf den Link klicken, um Ihr Passwort zurückzusetzen.',
    'Last Password Reset' => 'Verlauf der Passwortrücksetzung',
    'The password has never been reinitialized.' => 'Das Passwort wurde noch nie zurückgesetzt.',
    'Creation' => 'Erstellung',
    'Expiration' => 'Ablauf',
    'Password reset history' => 'Verlauf Passwortrücksetzung',
    'All tasks of the column "%s" and the swimlane "%s" have been closed successfully.' => 'Alle Aufgaben der Spalte "%s" und der Swimlane "%s" wurden erfolgreich geschlossen',
    'Do you really want to close all tasks of this column?' => 'Wollen Sie wirklich alle Aufgaben in dieser Spalte schließen?',
    '%d task(s) in the column "%s" and the swimlane "%s" will be closed.' => '%d Aufgabe(n) in der Spalte "%s" und in der Swimlane "%s" werden geschlossen.',
    'Close all tasks of this column' => 'Alle Aufgaben in dieser Spalte schließen',
    'No plugin has registered a project notification method. You can still configure individual notifications in your user profile.' => 'Kein Plugin hat eine Projekt-Benachrichtigungsmethode registriert. Sie können individuelle Meldungen in Ihrem Benutzerprofil konfigurieren',
    'My dashboard' => 'Mein Dashboard',
    'My profile' => 'Mein Profil',
    'Project owner: ' => 'Projekt-Besitzer: ',
    'The project identifier is optional and must be alphanumeric, example: MYPROJECT.' => 'Die Projekt-Kennung ist optional und muss alphanumerisch sein, beispielsweise: MYPROJECT.',
    'Project owner' => 'Projekt-Besitzer',
    'Private projects do not have users and groups management.' => 'Private Projekte haben kein Benutzer- und Gruppen-Management.',
    'There is no project member.' => 'Es gibt kein Projekt-Mitglied.',
    'Priority' => 'Priorität',
    'Task priority' => 'Aufgaben-Priorität',
    'General' => 'Allgemein',
    'Dates' => 'Daten',
    'Default priority' => 'Standard-Priorität',
    'Lowest priority' => 'Niedrigste Priorität',
    'Highest priority' => 'Höchste Priorität',
    'Close a task when there is no activity' => 'Schliesse eine Aufgabe, wenn keine Aktivitäten vorhanden sind',
    'Duration in days' => 'Dauer in Tagen',
    'Send email when there is no activity on a task' => 'Versende eine Email, wenn keine Aktivitäten an einer Aufgabe vorhanden sind',
    'Unable to fetch link information.' => 'Kann keine Informationen über Verbindungen holen',
    'Daily background job for tasks' => 'Tägliche Hintergrundarbeit für Aufgaben',
    'Auto' => 'Auto',
    'Related' => 'Verbunden',
    'Attachment' => 'Anhang',
    'Title not found' => 'Titel nicht gefunden',
    'Web Link' => 'Weblink',
    'External links' => 'Externe Verbindungen',
    'Add external link' => 'Externe Verbindung hinzufügen',
    'Type' => 'Typ',
    'Dependency' => 'Abhängigkeit',
    'Add internal link' => 'Interne Verbindung hinzufügen',
    'Add a new external link' => 'Füge eine neue externe Verbindung hinzu',
    'Edit external link' => 'Externe Verbindung bearbeiten',
    'External link' => 'Externe Verbindung',
    'Copy and paste your link here...' => 'Kopieren Sie Ihren Link hierher...',
    'URL' => 'URL',
    'Internal links' => 'Interne Verbindungen',
    'Assign to me' => 'Mir zuweisen',
    'Me' => 'Mich',
    'Do not duplicate anything' => 'Nichts duplizieren',
    'Projects management' => 'Projektmanagement',
    'Users management' => 'Benutzermanagement',
    'Groups management' => 'Gruppenmanagement',
    'Create from another project' => 'Von einem anderen Projekt erstellen',
    'open' => 'offen',
    'closed' => 'geschlossen',
    'Priority:' => 'Priorität:',
    'Reference:' => 'Bezug:',
    'Complexity:' => 'Komplexität:',
    'Swimlane:' => 'Swimlane:',
    'Column:' => 'Spalte:',
    'Position:' => 'Position:',
    'Creator:' => 'Ersteller:',
    'Time estimated:' => 'Geschätzte Zeit:',
    '%s hours' => '%s Stunden',
    'Time spent:' => 'Aufgewendete Zeit:',
    'Created:' => 'Erstellt:',
    'Modified:' => 'Geändert:',
    'Completed:' => 'Abgeschlossen:',
    'Started:' => 'Gestarted:',
    'Moved:' => 'Verschoben:',
    'Task #%d' => 'Aufgabe #%d',
    'Time format' => 'Zeitformat',
    'Start date: ' => 'Anfangsdatum: ',
    'End date: ' => 'Enddatum: ',
    'New due date: ' => 'Neues Fälligkeitsdatum: ',
    'Start date changed: ' => 'Anfangsdatum geändert: ',
    'Disable private projects' => 'Private Projekte deaktivieren',
    'Do you really want to remove this custom filter: "%s"?' => 'Wollen Sie diesen benutzerdefinierten Filter wirklich entfernen: "%s"?',
    'Remove a custom filter' => 'Benutzerdefinierten Filter entfernen',
    'User activated successfully.' => 'Benutzer erfolgreich aktiviert.',
    'Unable to enable this user.' => 'Dieser Benutzer kann nicht aktiviert werden.',
    'User disabled successfully.' => 'Benutzer erfolgreich deaktiviert.',
    'Unable to disable this user.' => 'Dieser Benutzer kann nicht deaktiviert werden.',
    'All files have been uploaded successfully.' => 'Alle Dateien wurden erfolgreich hochgeladen.',
    'The maximum allowed file size is %sB.' => 'Die maximal erlaubte Dateigröße ist %sB.',
    'Drag and drop your files here' => 'Ziehen Sie Ihre Dateien hier hin',
    'choose files' => 'Dateien auswählen',
    'View profile' => 'Profil ansehen',
    'Two Factor' => 'Zwei-Faktor',
    'Disable user' => 'Benutzer deaktivieren',
    'Do you really want to disable this user: "%s"?' => 'Wollen Sie diesen Benutzer wirklich deaktivieren: "%s"?',
    'Enable user' => 'Benutzer aktivieren',
    'Do you really want to enable this user: "%s"?' => 'Wollen Sie diesen Benutzer wirklich aktivieren: "%s"?',
    'Download' => 'Runterladen',
    'Uploaded: %s' => 'Heraufgeladen: %s',
    'Size: %s' => 'Größe: %s',
    'Uploaded by %s' => 'Heraufgeladen von %s',
    'Filename' => 'Dateiname',
    'Size' => 'Größe',
    'Column created successfully.' => 'Spalte erfolgreich erstellt.',
    'Another column with the same name exists in the project' => 'Es gibt bereits eine Spalte mit demselben Namen im Projekt',
    'Default filters' => 'Standard-Filter',
    'Your board doesn\'t have any columns!' => 'Es gibt keine Spalten in diesem Projekt!',
    'Change column position' => 'Position der Spalte ändern',
    'Switch to the project overview' => 'Zur Projektübersicht wechseln',
    'User filters' => 'Benutzer-Filter',
    'Category filters' => 'Kategorie-Filter',
    'Upload a file' => 'Eine Datei hochladen',
    'View file' => 'Datei ansehen',
    'Last activity' => 'Letzte Aktivität',
    'Change subtask position' => 'Position der Teilaufgabe ändern',
    'This value must be greater than %d' => 'Dieser Wert muss größer als %d sein',
    'Another swimlane with the same name exists in the project' => 'Es gibt bereits eine Swimlane mit diesem Namen im Projekt',
    'Example: http://example.kanboard.net/ (used to generate absolute URLs)' => 'Beispiel: http://example.kanboard.net (wird zum Erstellen absoluter URLs genutzt)',
    'Actions duplicated successfully.' => 'Aktionen erfolgreich dupliziert',
    'Unable to duplicate actions.' => 'Aktionen können nicht dupliziert werden.',
    'Add a new action' => 'Neue Aktion hinzufügen',
    'Import from another project' => 'Von einem anderen Projekt importieren',
    'There is no action at the moment.' => 'Es gibt zur Zeit keine Aktionen.',
    'Import actions from another project' => 'Aktionen von einem anderen Projekt importieren',
    'There is no available project.' => 'Es ist kein Projekt verfügbar.',
    'Local File' => 'Lokale Datei',
    'Configuration' => 'Konfiguration',
    'PHP version:' => 'PHP Version:',
    'PHP SAPI:' => 'PHP SAPI:',
    'OS version:' => 'OS Version:',
    'Database version:' => 'Datenbank Version:',
    'Browser:' => 'Browser:',
    'Task view' => 'Aufgaben Ansicht',
    'Edit task' => 'Aufgabe bearbeiten',
    'Edit description' => 'Beschreibung bearbeiten',
    'New internal link' => 'Neue interne Verbindung',
    'Display list of keyboard shortcuts' => 'Liste der Tastaturkürzel anzeigen',
    'Menu' => 'Menü',
    'Set start date' => 'Anfangsdatum setzen',
    'Avatar' => 'Avatar',
    'Upload my avatar image' => 'Mein Avatar Bild hochladen',
    'Remove my image' => 'Mein Bild entfernen',
    'The OAuth2 state parameter is invalid' => 'Der OAuth2 Statusparameter ist ungültig',
    'User not found.' => 'Benutzer nicht gefunden',
    'Search in activity stream' => 'Im Aktivitätenstrom suchen',
    'My activities' => 'Meine Aktivitäten',
    'Activity until yesterday' => 'Aktivitäten bis gestern',
    'Activity until today' => 'Aktivitäten bis heute',
    'Search by creator: ' => 'nach Ersteller suchen:',
    'Search by creation date: ' => 'nach Datum suchen:',
    'Search by task status: ' => 'nach Aufgabenstatus suchen:',
    'Search by task title: ' => 'nach Titel suchen:',
    'Activity stream search' => 'Im Aktivitätenstrom suchen',
    'Projects where "%s" is manager' => 'Projekte in denen "%s" Manager ist',
    'Projects where "%s" is member' => 'Projekte in denen "%s" Mitglied ist',
    'Open tasks assigned to "%s"' => 'Offene Aufgaben, die "%s" zugeteilt sind',
    'Closed tasks assigned to "%s"' => 'Geschlossene Aufgaben, die "%s" zugeteilt sind',
    'Assign automatically a color based on a priority' => 'Eine Farbe basierend auf einer Priorität automatisch zuordnen',
    'Overdue tasks for the project(s) "%s"' => 'Überfällige Aufgaben des/der Projekt/e "%s"',
    'Upload files' => 'Dateien hochladen',
    'Installed Plugins' => 'Installierte Plugins',
    'Plugin Directory' => 'Plugin Verzeichnis',
    'Plugin installed successfully.' => 'Plugin erfolgreich installiert.',
    'Plugin updated successfully.' => 'Plugin erfolgreich aktualisiert.',
    'Plugin removed successfully.' => 'Plugin erfolgreich entfernt.',
    'Subtask converted to task successfully.' => 'Teilaufgabe erfolgreich in Aufgabe umgewandelt.',
    'Unable to convert the subtask.' => 'Teilaufgabe kann nicht umgewandelt werden.',
    'Unable to extract plugin archive.' => 'Plugin Archiv kann nicht entpackt werden.',
    'Plugin not found.' => 'Plugin nicht gefunden.',
    'You don\'t have the permission to remove this plugin.' => 'Sie dürfen dieses Plugin nicht entfernen.',
    'Unable to download plugin archive.' => 'Plugin Archiv kann nicht herunter geladen werden.',
    'Unable to write temporary file for plugin.' => 'Temporäre Dateien für das Plugin können nicht geschrieben werden.',
    'Unable to open plugin archive.' => 'Kann das Plugin Archiv nicht öffenen.',
    'There is no file in the plugin archive.' => 'Es gibt keine Datei im Plugin Archiv.',
    'Create tasks in bulk' => 'Viele Aufgaben auf einmal erstellen',
    'Your Kanboard instance is not configured to install plugins from the user interface.' => 'Ihre Kanboard Installation ist nicht dafür konfiguriert, Plugins mit dem Benutzerinterface zu installieren.',
    'There is no plugin available.' => 'Es gibt kein Plugin.',
    'Install' => 'Installieren',
    'Update' => 'Aktualisieren',
    'Up to date' => 'Aktuell',
    'Not available' => 'Nicht verfügbar',
    'Remove plugin' => 'Plugin entfernen',
    'Do you really want to remove this plugin: "%s"?' => 'Wollen Sie das Plugin "%s" wirklich entfernen?',
    'Uninstall' => 'Deinstallieren',
    'Listing' => 'Auflistung',
    'Metadata' => 'Metadaten',
    'Manage projects' => 'Projekte verwalten',
    'Convert to task' => 'In Aufgabe umwandeln',
    'Convert sub-task to task' => 'Teilaufgabe in Aufgabe umwandeln',
    'Do you really want to convert this sub-task to a task?' => 'Wollen Sie diese Teilaufgabe wirklich in eine Aufgabe umwandeln?',
    'My task title' => 'Mein Aufgabentitel',
    'Enter one task by line.' => 'Geben Sie eine Aufgabe pro Zeile ein.',
    'Number of failed login:' => 'Anzahl fehlgeschlagener Anmeldungen:',
    'Account locked until:' => 'Konto gesperrt bis:',
    'Email settings' => 'E-Mail Einstellungen',
    'Email sender address' => 'E-Mail Absender Adresse',
    'Email transport' => 'E-Mail Verkehr',
    'Webhook token' => 'Webhook Token',
    'Project tags management' => 'Projektbezogenes Schlagwort-Management',
    'Tag created successfully.' => 'Schlagwort erfolgreich erstellt.',
    'Unable to create this tag.' => 'Das Schlagwort kann nicht erstellt werden.',
    'Tag updated successfully.' => 'Schlagwort erfolgreich aktualisiert.',
    'Unable to update this tag.' => 'Das Schlagwort kann nicht aktualisiert werden.',
    'Tag removed successfully.' => 'Schlagwort erfolgreich entfernt.',
    'Unable to remove this tag.' => 'Das Schlagwort kann nicht entfernt werden.',
    'Global tags management' => 'Globales Schlagwort-Management',
    'Tags' => 'Schlagworte',
    'Tags management' => 'Schlagwort-Management',
    'Add new tag' => 'Neues Schlagwort hinzufügen',
    'Edit a tag' => 'Schlagwort bearbeiten',
    'Project tags' => 'Projektbezogene Schlagwörter',
    'There is no specific tag for this project at the moment.' => 'Es gibt zur Zeit kein spezifisches Schlagwort.',
    'Tag' => 'Schlagwort',
    'Remove a tag' => 'Schlagwort entfernen',
    'Do you really want to remove this tag: "%s"?' => 'Soll dieses Schlagwort wirklich entfernt werden: "%s"?',
    'Global tags' => 'Globale Schlagwörter',
    'There is no global tag at the moment.' => 'Es gibt zur Zeit kein globales Schlagwort',
    'This field cannot be empty' => 'Dieses Feld kann nicht leer sein',
    'Close a task when there is no activity in an specific column' => 'Aufgabe schließen wenn es keine Aktivität in einer bestimmten Spalte gibt',
    '%s removed a subtask for the task #%d' => '%s hat eine Teilaufgabe der Aufgabe #%d entfernt',
    '%s removed a comment on the task #%d' => '%s hat einen Kommentar der Aufgabe #%d entfernt',
    'Comment removed on task #%d' => 'Kommentar der Aufgabe #%d entfernt',
    'Subtask removed on task #%d' => 'Teilaufgabe der Aufgabe #%d entfernt',
    'Hide tasks in this column in the dashboard' => 'Aufgaben in dieser Spalte im Dashboard ausblenden',
    '%s removed a comment on the task %s' => '%s hat einen Kommentar in der Aufgabe %s entfernt',
    '%s removed a subtask for the task %s' => '%s hat eine Teilaufgabe in der Aufgabe %s entfernt',
    'Comment removed' => 'Kommentar entfernt',
    'Subtask removed' => 'Teilaufgabe entfernt',
    '%s set a new internal link for the task #%d' => '%s hat eine neue interne Verbindung in der Aufgabe #%d erstellt',
    '%s removed an internal link for the task #%d' => '%s hat eine interne Verbindung von der Aufgabe #%d entfernt',
    'A new internal link for the task #%d have been defined' => 'Eine neue interne Verbindung für die Aufgabe #%d wurde definiert',
    'Internal link removed for the task #%d' => 'Interne Verbindung in der Aufgabe #%d wurde entfernt',
    '%s set a new internal link for the task %s' => '%s hat eine neue interne Verbindung in der Aufgabe %s erstellt',
    '%s removed an internal link for the task %s' => '%s hat eine interne Verbindung von der Aufgabe %s entfernt',
    'Automatically set the due date on task creation' => 'Ablaufdatum automatisch bei Erstellung einer Aufgabe setzen',
    'Move the task to another column when closed' => 'Aufgabe in eine andere Spalte verschieben, wenn diese geschlossen wird',
    'Move the task to another column when not moved during a given period' => 'Aufgabe in eine andere Spalte verschieben, wenn diese in einer bestimmten Zeit nicht verschoben wurde',
    'Dashboard for %s' => 'Dashboard für %s',
    'Tasks overview for %s' => 'Aufgaben-Übersicht für %s',
    'Subtasks overview for %s' => 'Teilaufgaben-Übersicht für %s',
    'Projects overview for %s' => 'Projekt-Übersicht für %s',
    'Activity stream for %s' => 'Aktivitätenstrom für %s',
    'Assign a color when the task is moved to a specific swimlane' => 'Einer Aufgabe eine Farbe zuweisen, wenn diese in eine bestimmte Swimlane verschoben wird',
    'Assign a priority when the task is moved to a specific swimlane' => 'Einer Aufgabe eine Priorität zuweisen, wenn diese in eine bestimmte Swimlane verschoben wird',
    'User unlocked successfully.' => 'Benutzer erfolgreich entsperrt.',
    'Unable to unlock the user.' => 'Benutzer kann nicht entsperrt werden.',
    'Move a task to another swimlane' => 'Aufgabe in eine andere Swimlane verschieben',
    'Creator Name' => 'Name des Erstellers',
    'Time spent and estimated' => 'Aufgewendete und erwartete Zeit',
    'Move position' => 'Position verschieben',
    'Move task to another position on the board' => 'Aufgabe an eine andere Position im Board verschieben',
    'Insert before this task' => 'Vor dieser Aufgabe einfügen',
    'Insert after this task' => 'Nach dieser Aufgabe einfügen',
    'Unlock this user' => 'Diesen Benutzer entsperren',
    'Custom Project Roles' => 'Benutzerdefinierte Projekt Rollen',
    'Add a new custom role' => 'Neue benutzerdefinierte Rolle erstellen',
    'Restrictions for the role "%s"' => 'Einschränkungen für Rolle "%s"',
    'Add a new project restriction' => 'Neue projektbezogene Einschränkung erstellen',
    'Add a new drag and drop restriction' => 'Neue drag and drop Einschränkung erstellen',
    'Add a new column restriction' => 'Neue spaltenbezogene Einschränkung erstellen',
    'Edit this role' => 'Diese Rolle bearbeiten',
    'Remove this role' => 'Diese Rolle entfernen',
    'There is no restriction for this role.' => 'Für diese Rolle gibt es keine Einschränkungen.',
    'Only moving task between those columns is permitted' => 'Verschieben von Aufgaben ist nur zwischen diesen Spalten erlaubt',
    'Close a task in a specific column when not moved during a given period' => 'Aufgabe in einer bestimmten Spalte schliessen, wenn sie im angegebenen Zeitraum nicht verschoben wurde',
    'Edit columns' => 'Spalten bearbeiten',
    'The column restriction has been created successfully.' => 'Die spaltenbezogene Einschränkung wurde erfolgreich erstellt.',
    'Unable to create this column restriction.' => 'Erstellen der spaltenbezogenen Einschränkung fehlgeschlagen.',
    'Column restriction removed successfully.' => 'Spaltenbezogene Einschränkung erfolgreich entfernt.',
    'Unable to remove this restriction.' => 'Entfernen der spaltenbezogenen Einschränkung fehlgeschlagen.',
    'Your custom project role has been created successfully.' => 'Benutzerdefinierte Projekt Rolle erfolgreich erstellt.',
    'Unable to create custom project role.' => 'Erstellen der benutzerdefinierten Projekt Rolle fehlgeschlagen.',
    'Your custom project role has been updated successfully.' => 'Benutzerdefinierte Projekt Rolle wurde erfolgreich geändert.',
    'Unable to update custom project role.' => 'Ändern der benutzerdefinierten Projekt Rolle fehlgeschlagen.',
    'Custom project role removed successfully.' => 'Benutzerdefinierte Projekt Rolle erfolgreich entfernt.',
    'Unable to remove this project role.' => 'Entfernen der benutzerdefinierten Projekt Rolle fehlgeschlagen.',
    'The project restriction has been created successfully.' => 'Projektbezogene Einschränkung erfolgreich erstellt.',
    'Unable to create this project restriction.' => 'Erstellen der projektbezogenen Einschränkung fehlgeschlagen.',
    'Project restriction removed successfully.' => 'Projektbezogene Einschränkung erfolgreich entfernt.',
    'You cannot create tasks in this column.' => 'Sie können in dieser spalte keine Aufgaben erzeugen.',
    'Task creation is permitted for this column' => 'Erzeugen von Aufgaben ist für diese Spalte erlaubt.',
    'Closing or opening a task is permitted for this column' => 'Öffnen und Schliessen von Aufgaben ist für diese Spalte erlaubt.',
    'Task creation is blocked for this column' => 'Erzeugen von Aufgaben ist für diese Spalte blockiert.',
    'Closing or opening a task is blocked for this column' => 'Öffnen und Schliessen von Aufgaben ist für diese Spalte blockiert.',
    'Task creation is not permitted' => 'Erzeugen von Aufgaben ist nicht erlaubt.',
    'Closing or opening a task is not permitted' => 'Öffnen und Schliessen von Aufgaben ist nicht erlaubt.',
    'New drag and drop restriction for the role "%s"' => 'Neue drag and drop Einschränkung für Rolle "%s"',
    'People belonging to this role will be able to move tasks only between the source and the destination column.' => 'Benutzer mit dieser Rolle können Aufgaben nur zwischen Quell- und Zielspalte verschieben.',
    'Remove a column restriction' => 'Spaltenbezogene Einschränkung entfernen',
    'Do you really want to remove this column restriction: "%s" to "%s"?' => 'Wollen Sie diese spaltenbezogene Einschränkung wirklich löschen:  "%s" nach "%s"?',
    'New column restriction for the role "%s"' => 'Neue spaltenbezogene Einschränkung für Rolle "%s"',
    'Rule' => 'Regel',
    'Do you really want to remove this column restriction?' => 'Wollen Sie diese spaltenbezogene Einschränkung wirklich entfernen?',
    'Custom roles' => 'Benutzerdefinierte Rollen',
    'New custom project role' => 'Neue benutzerdefinierte Projekt Rolle',
    'Edit custom project role' => 'Benutzerdefinierte Projekt Rolle bearbeiten',
    'Remove a custom role' => 'Benutzerdefinierte Projekt Rolle entfernen',
    'Do you really want to remove this custom role: "%s"? All people assigned to this role will become project member.' => 'Wollen sie diese benutzerdefinierte Rolle wirklich entfernen: "%s"? Alle Benutzer mit dieser Rolle werden zu Projekt-Mitgliedern.',
    'There is no custom role for this project.' => 'Für dieses Projekt gibt es keine benutzerdefinierten Rollen.',
    'New project restriction for the role "%s"' => 'Neue projektbezogene Einschränkung für Rolle "%s"',
    'Restriction' => 'Einschränkung',
    'Remove a project restriction' => 'Projektbezogene Einschränkung entfernen',
    'Do you really want to remove this project restriction: "%s"?' => 'Wollen Sie diese projektbezogene Einschränkung wirklich entfernen: "%s"?',
    'Duplicate to multiple projects' => 'In mehrere Projekte duplizieren',
    'This field is required' => 'Dies ist ein Pflichtfeld',
    'Moving a task is not permitted' => 'Verschieben einer Aufgabe ist nicht erlaubt',
    'This value must be in the range %d to %d' => 'Dieser Wert muss im Bereich %d bis %d sein',
    'You are not allowed to move this task.' => 'Sie haben nicht die Berechtigung, diese Aufgabe zu verschieben.',
    'API User Access' => 'API Benutzerzugriff',
    'Preview' => 'Vorschau',
    'Write' => 'Schreiben',
    'Write your text in Markdown' => 'Schreiben Sie Ihren Text in Markdown',
    'New External Task: %s' => 'Neue externe Aufgabe: %s',
    'No personal API access token registered.' => 'Keine persönlichen API-Zugriffsinformationen registriert',
    'Your personal API access token is "%s"' => 'Ihre persönlichen API-Zugriffsinformationen: "%s"',
    'Remove your token' => 'Ihre Zugriffsinformationen entfernen',
    'Generate a new token' => 'Neue Zugriffsinformationen generieren',
    'Showing %d-%d of %d' => 'Zeige %d-%d of %d',
    'Outgoing Emails' => 'Ausgehende E-Mails',
    'Add or change currency rate' => 'Wechselkurs hinzufügen oder ändern',
    'Reference currency: %s' => 'Referenzwährung: %s',
    'Add custom filters' => 'Benutzerdefinierten Filter hinzufügen',
    'Export' => 'Exportieren',
    'Add link label' => 'Linkbeschreibung hinzufügen',
    'Incompatible Plugins' => 'Nicht-kompatible Plugins',
    'Compatibility' => 'Kompatibilität',
    'Permissions and ownership' => 'Berechtigungen und Besitz',
    'Priorities' => 'Prioritäten',
    'Close this window' => 'Dieses Fenster schließen',
    'Unable to upload this file.' => 'Diese Datei kann nicht hochgeladen werden',
    'Import tasks' => 'Aufgaben importieren',
    'Choose a project' => 'Wählen Sie ein Projekt',
    'Profile' => 'Profil',
    'Application role' => 'Anwendungsrolle',
    '%d invitations were sent.' => '%d Einladungen wurden gesendet.',
    '%d invitation was sent.' => '%d Einladung wurde gesendet.',
    'Unable to create this user.' => 'Dieser Benutzer kann nicht erstellt werden.',
    'Kanboard Invitation' => 'Kanboard Einladung',
    'Visible on dashboard' => 'Sichtbar auf dem Dashboard',
    'Created at:' => 'Erstellt am:',
    'Updated at:' => 'Aktualisiert am:',
    'There is no custom filter.' => 'Es gibt keinen benutzerdefinierten Filter.',
    'New User' => 'Neuer Benutzer',
    'Authentication' => 'Authentifizierung',
    'If checked, this user will use a third-party system for authentication.' => 'Wenn aktiviert, verwendet dieser Benutzer ein Drittanbieter-System für die Authentifizierung.',
    'The password is necessary only for local users.' => 'Das Passwort ist nur für lokale Benutzer erforderlich.',
    'You have been invited to register on Kanboard.' => 'Sie wurden eingeladen, sich auf Kanboard zu registrieren.',
    'Click here to join your team' => 'Klicken Sie hier, um Ihrem Team beizutreten',
    'Invite people' => 'Leute einladen',
    'Emails' => 'E-Mail',
    'Enter one email address by line.' => 'Geben Sie eine E-Mail-Adresse pro Zeile ein.',
    'Add these people to this project' => 'Füge diese Personen diesem Projekt hinzu',
    'Add this person to this project' => 'Füge diese Persone diesem Projekt hinzu',
    'Sign-up' => 'Anmelden',
    'Credentials' => 'Anmeldeinformationen',
    'New user' => 'Neuer Benutzer',
    'This username is already taken' => 'Dieser Benutzername ist bereits vergeben',
    'A link to reset your password has been sent by email.' => 'Ein Link zum Zurücksetzen Ihres Passworts wurde per E-Mail gesendet.',
    'Your profile must have a valid email address.' => 'Ihr Profil muss eine gültige E-Mail-Adresse haben.',
    'Unfortunately, we are unable to reset your password. Did you entered a valid username? Do you have an email address in your profile?' => 'Leider können wir Ihr Passwort nicht zurücksetzen. Haben Sie einen gültigen Benutzernamen eingegeben? Haben Sie eine E-Mail-Adresse in Ihrem Profil?',
    'TRL - Turkish Lira' => 'TRL - Türkische Lira',
    'The project email is optional and could be used by several plugins.' => 'Die Projekt-E-Mail ist optional und kann von mehreren Plugins verwendet werden.',
    'The project email must be unique across all projects' => 'Die Projekt-E-Mail muss für alle Projekte eindeutig sein',
    'The email configuration has been disabled by the administrator.' => 'Die E-Mail-Konfiguration wurde vom Administrator deaktiviert.',
    'Close this project' => 'Dieses Projekt schließen',
    'Open this project' => 'Dieses Projekt öffnen',
    'Close a project' => 'Ein Projekt schließen',
    'Do you really want to close this project: "%s"?' => 'Möchten Sie dieses Projekt wirklich schließen: "%s"?',
    'Reopen a project' => 'Ein Projekt wieder öffnen',
    'Do you really want to reopen this project: "%s"?' => 'Möchten Sie dieses Projekt wirklich wieder öffnen: "%s"?',
    'This project is open' => 'Dieses Projekt ist offen',
    'This project is closed' => 'Dieses Projekt ist geschlossen',
    'Unable to upload files, check the permissions of your data folder.' => 'Dateien können nicht hochgeladen werden, überprüfen Sie die Berechtigungen Ihres Datenordners.',
    'Another category with the same name exists in this project' => 'Eine weitere Kategorie mit demselben Namen existiert in diesem Projekt',
    'Comment sent by email successfully.' => 'Kommentar wurde erfolgreich per E-Mail gesendet.',
    'Sent by email to [%s](mailto:%s) (%s)' => 'Wurde per E-Mail an [%s] gesendet (mailto:%s) (%s)',
    'Unable to read uploaded file.' => 'Die hochgeladene Datei konnte nicht gelesen werden.',
    'Database uploaded successfully.' => 'Die Datenbank wurde erfolgreich hochgeladen.',
    'Task sent by email successfully.' => 'Aufgabe wurde erfolgreich per E-Mail gesendet.',
    'There is no category in this project.' => 'Es gibt keine Kategorie in diesem Projekt',
    'Send by email' => 'Per E-Mail senden',
    'Create and send a comment by email' => 'Erstellen und senden Sie einen Kommentar per E-Mail',
    'Subject' => 'Betreff',
    'Upload the database' => 'Datenbank hochladen',
    'You could upload the previously downloaded Sqlite database (Gzip format).' => 'Sie können die zuvor heruntergeladene Sqlite-Datenbank (Gzip-Format) hochladen.',
    'Database file' => 'Datenbankdatei',
    'Upload' => 'Hochladen',
    'Your project must have at least one active swimlane.' => 'Ihr Projekt muss mindestens eine aktive Swimlane haben.',
    'Project: %s' => 'Projekt: %s',
    'Automatic action not found: "%s"' => 'Automatische Aktion nicht gefunden: "%s"',
    '%d projects' => '%d Projekte',
    '%d project' => '%d Projekt',
    'There is no project.' => 'Es gibt kein Projekt.',
    'Sort' => 'Sortieren',
    'Project ID' => 'Projekt ID',
    'Project name' => 'Projekt Name',
    'Public' => 'Öffentlich',
    'Private' => 'Privat',
    '%d tasks' => '%d Aufgaben',
    '%d task' => '%d Aufgabe',
    'Task ID' => 'Aufgaben ID',
    'Assign automatically a color when due date is expired' => 'Automatisch eine Farbe zuweisen, wenn das Fälligkeitsdatum abgelaufen ist',
    'Total score in this column across all swimlanes' => 'Gesamtpunktzahl in dieser Spalte über alle Swimlanes',
    'HRK - Kuna' => 'HRK - Kuna',
    'ARS - Argentine Peso' => 'ARS - Argentinische Peso',
    'COP - Colombian Peso' => 'COP - Kolumbianische Peso',
    '%d groups' => '%d Gruppen',
    '%d group' => '%d Gruppe',
    'Group ID' => 'Gruppen ID',
    'External ID' => 'Externe ID',
    '%d users' => '%d Benutzer',
    '%d user' => '%d Benutzer',
    'Hide subtasks' => 'Teilaufgaben verstecken',
    'Show subtasks' => 'Teilaufgaben anzeigen',
    'Authentication Parameters' => 'Authentifizierungsparameter',
    'API Access' => 'API-Zugriff',
    'No users found.' => 'Keine Benutzer gefunden.',
    'User ID' => 'Benutzer ID',
    'Notifications are activated' => 'Benachrichtigungen sind aktiviert',
    'Notifications are disabled' => 'Benachrichtigungen sind deaktiviert',
    'User disabled' => 'Benutzer deaktiviert',
    '%d notifications' => '%d Benachrichtigungen',
    '%d notification' => '%d Benachrichtigung',
    'There is no external integration installed.' => 'Es ist keine externe Integration installiert.',
    'You are not allowed to update tasks assigned to someone else.' => 'Sie sind nicht berechtigt, Aufgaben zu aktualisieren, die jemand anderem zugewiesen wurden.',
    'You are not allowed to change the assignee.' => 'Sie dürfen den Zuständigen nicht ändern.',
    'Task suppression is not permitted' => 'Taskausblendung ist nicht zulässig',
    'Changing assignee is not permitted' => 'Änderung des Zuständigen ist nicht zulässig',
    'Update only assigned tasks is permitted' => 'Nur zugeordnete Aufgaben dürfen aktualisiert werden',
    'Only for tasks assigned to the current user' => 'Nur für Aufgaben, die dem aktuellen Benutzer zugeordnet sind',
    'My projects' => 'Meine Projekte',
    'Your are not member of any project.' => 'Sie sind nicht Mitglied eines Projektes.',
    'My subtasks' => 'Meine Teilaufgaben',
    '%d subtasks' => '%d Teilaufgaben',
    '%d subtask' => '%d Teilaufgabe',
    'Only moving task between those columns is permitted for tasks assigned to the current user' => 'Das Bewegen einer Aufgabe zwischen diesen Spalten ist nur für Aufgaben zulässig, die dem aktuellen Benutzer zugewiesen sind',
    '[DUPLICATE]' => '[DUPLIKAT]',
    'DKK - Danish Krona' => 'DKK - Dänische Krone',
    'Remove user from group' => 'Benutzer aus Gruppe löschen',
    'Assign the task to its creator' => 'Aufgabe dem Ersteller zuordnen',
    'This task was sent by email to "%s" with subject "%s".' => 'Diese Aufgabe wurde per Mail an "%s" mit dem Betreff "%s" gesendet.',
    'Predefined Email Subjects' => 'Vordefinierte E-Mail Betreffzeilen',
    'Write one subject by line.' => 'Schreibe ein Betreff pro Zeile.',
    // 'Create another link' => '',
    // 'BRL - Brazilian Real' => '',
);