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 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
|
# --
# Kernel/Language/bb.pm - provides bavarian language translation
# Copyright (C) 2001-2008 OTRS AG, http://otrs.org/
# --
# $Id: bb.pm,v 1.25.2.4 2008/05/28 08:03:42 tr Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl-2.0.txt.
# --
package Kernel::Language::bb;
use strict;
use vars qw($VERSION);
$VERSION = '$Revision: 1.25.2.4 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
sub Data {
my $Self = shift;
my %Param = @_;
# $$START$$
# Last translation file sync: Tue May 29 15:05:19 2007
# possible charsets
$Self->{Charset} = ['iso-8859-1', 'iso-8859-15', ];
# date formats (%A=WeekDay;%B=LongMonth;%T=Time;%D=Day;%M=Month;%Y=Jear;)
$Self->{DateFormat} = '%D.%M.%Y %T';
$Self->{DateFormatLong} = '%T - %D.%M.%Y';
$Self->{DateFormatShort} = '%D.%M.%Y';
$Self->{DateInputFormat} = '%D.%M.%Y';
$Self->{DateInputFormatLong} = '%D.%M.%Y - %T';
$Self->{Translation} = {
# Template: AAABase
'Yes' => 'Ja',
'No' => 'Naaa',
'yes' => 'ja',
'no' => 'kein',
'Off' => 'Aus',
'off' => 'aus',
'On' => 'Ein',
'on' => 'ein',
'top' => 'hoch',
'end' => 'runter',
'Done' => 'Basst',
'Cancel' => 'Mog nimma',
'Reset' => 'zruck',
'last' => 'letzten',
'before' => 'vor',
'day' => 'Tag',
'days' => 'Tage',
'day(s)' => 'Tag(e)',
'hour' => 'Stunde',
'hours' => 'Stunden',
'hour(s)' => 'Stunde(n)',
'minute' => 'Minute',
'minutes' => 'Minuten',
'minute(s)' => 'Minute(n)',
'month' => 'Monat',
'months' => 'Monate',
'month(s)' => 'Monat(e)',
'week' => 'Woche',
'week(s)' => 'Woche(n)',
'year' => 'Jahr',
'years' => 'Jahre',
'year(s)' => 'Jahr(e)',
'second(s)' => 'Sekunde(n)',
'seconds' => 'Sekunden',
'second' => 'Sekunde',
'wrote' => 'schrieb',
'Message' => 'Nachricht',
'Error' => 'Fehler',
'Bug Report' => 'Fehler berichten',
'Attention' => 'Achtung',
'Warning' => 'Warnung',
'Module' => 'Modul',
'Modulefile' => 'Moduldatei',
'Subfunction' => 'Unterfunktion',
'Line' => 'Zeile',
'Example' => 'Beispiel',
'Examples' => 'Beispiele',
'valid' => 'gltig',
'invalid' => 'ungltig',
'* invalid' => '* ungltig',
'invalid-temporarily' => 'ungltig-temporr',
' 2 minutes' => ' 2 Minuten',
' 5 minutes' => ' 5 Minuten',
' 7 minutes' => ' 7 Minuten',
'10 minutes' => '10 Minuten',
'15 minutes' => '15 Minuten',
'Mr.' => 'Herr',
'Mrs.' => 'Frau',
'Next' => 'Weida',
'Back' => 'Umme',
'Next...' => 'Weida...',
'...Back' => '...Umme',
'-none-' => '-keine-',
'none' => 'keine',
'none!' => 'keine Angabe!',
'none - answered' => 'keine - beantwortet',
'please do not edit!' => 'Bitte nicht ndern!',
'AddLink' => 'Link dazua doa',
'Link' => 'Verknpfen',
'Linked' => 'Verknpft',
'Link (Normal)' => 'Verknpft (Normal)',
'Link (Parent)' => 'Verknpft (Eltern)',
'Link (Child)' => 'Verknpft (Kinder)',
'Normal' => 'Normal',
'Parent' => 'Eltern',
'Child' => 'Kinder',
'Hit' => 'Treffer',
'Hits' => 'Treffer',
'Text' => 'Text',
'Lite' => 'Einfach',
'User' => 'Leid',
'Username' => 'Leidname',
'Language' => 'Sprache',
'Languages' => 'Sprachen',
'Password' => 'Passwort',
'Salutation' => 'Anrede',
'Signature' => 'Signatur',
'Customer' => 'Kunda',
'CustomerID' => 'Kundan#',
'CustomerIDs' => 'Kundan-Nummern',
'customer' => 'Kunda',
'agent' => 'Agent',
'system' => 'System',
'Customer Info' => 'Kundan-Info',
'Customer Company' => 'Kundan-Firma',
'Company' => 'Firma',
'go!' => 'Start!',
'go' => 'Start',
'All' => 'Alle',
'all' => 'alle',
'Sorry' => 'Bedauere',
'update!' => 'Aktualisieren!',
'update' => 'Aktualisieren',
'Update' => 'Aktualisieren',
'submit!' => 'bermitteln!',
'submit' => 'bermitteln',
'Submit' => 'bermitteln',
'change!' => 'ndern!',
'Change' => 'ndern',
'change' => 'ndern',
'click here' => 'hier klicken',
'Comment' => 'Kommentar',
'Valid' => 'Gltig',
'Invalid Option!' => 'Ungltige Option!',
'Invalid time!' => 'Ungltige Zeitangabe!',
'Invalid date!' => 'Ungltige Zeitangabe!',
'Name' => 'Name',
'Group' => 'Gruppe',
'Description' => 'Beschreibung',
'description' => 'Beschreibung',
'Theme' => 'Schema',
'Created' => 'Erstellt',
'Created by' => 'Erstellt von',
'Changed' => 'Gendert',
'Changed by' => 'Gendert von',
'Search' => 'Suche',
'and' => 'und',
'between' => 'zwischen',
'Fulltext Search' => 'Volltextsuche',
'Data' => 'Daten',
'Options' => 'Optionen',
'Title' => 'Titel',
'Item' => 'Punkt',
'Delete' => 'Weg rama',
'Edit' => 'Bearbeiten',
'View' => 'Ansehen',
'Number' => 'Nummer',
'System' => 'System',
'Contact' => 'Kontakt',
'Contacts' => 'Kontakte',
'Export' => 'Export',
'Up' => 'Auf',
'Down' => 'Ab',
'Add' => 'Dazua doa',
'Category' => 'Kategorie',
'Viewer' => 'Betrachter',
'New message' => 'Nei Nachricht',
'New message!' => 'Nei Nachricht!',
'Please answer this ticket(s) to get back to the normal queue view!' => 'Bitte beantworten Sie dieses Ticket, um in die normale Queue-Ansicht umme zum kommen!',
'You got new message!' => 'Sie haben eine neue Nachricht bekommen!',
'You have %s new message(s)!' => 'Sie haben %s neue Nachricht(en) bekommen!',
'You have %s reminder ticket(s)!' => 'Sie haben %s Erinnerungs-Ticket(s)!',
'The recommended charset for your language is %s!' => 'Der empfohlene Zeichensatz fr Ihre Sprache ist %s!',
'Passwords doesn\'t match! Please try it again!' => 'Passwrter stimmen nicht berein! Bitte wiederholen!',
'Password is already in use! Please use an other password!' => 'Dieses Password wird bereits benutzt, es kann nicht verwendet werden!',
'Password is already used! Please use an other password!' => 'Dieses Password wurde bereits benutzt, es kann nicht verwendet werden!',
'You need to activate %s first to use it!' => '%s muss zuerst aktiviert werden um es zum benutzen!',
'No suggestions' => 'Keine Vorschlge',
'Word' => 'Wort',
'Ignore' => 'Ignorieren',
'replace with' => 'ersetzen mit',
'There is no account with that login name.' => 'Es existiert kein Leidkonto mit diesem Namen.',
'Login failed! Your username or password was entered incorrectly.' => 'Anmeldung fehlgeschlagen! Leidname oder Passwort falsch.',
'Please contact your admin' => 'Bitte kontaktieren Sie Ihren Administrator',
'Logout successful. Thank you for using OTRS!' => 'Abmeldung erfolgreich! Danke fr die Benutzung von OTRS!',
'Invalid SessionID!' => 'Ungltige SessionID!',
'Feature not active!' => 'Funktion nicht aktiviert!',
'Login is needed!' => 'Login wird bentigt!',
'Password is needed!' => 'Passwort wird bentigt!',
'License' => 'Lizenz',
'Take this Customer' => 'Kundan bernehmen',
'Take this User' => 'Leid bernehmen',
'possible' => 'mglich',
'reject' => 'ablehnen',
'reverse' => 'umgekehrt',
'Facility' => 'Einrichtung',
'Timeover' => 'Zeitberschreitung',
'Pending till' => 'Warten bis',
'Don\'t work with UserID 1 (System account)! Create new users!' => 'Bitte nicht mit UserID 1 (System Account) arbeiten! Erstelle neue Leid!',
'Dispatching by email To: field.' => 'Verteilung nach To: Feld.',
'Dispatching by selected Queue.' => 'Verteilung nach ausgewhlter Queue.',
'No entry found!' => 'Kein Eintrag gefunden!',
'Session has timed out. Please log in again.' => 'Zeitberschreitung der Session. Bitte neu anmelden.',
'No Permission!' => 'Keine Zugriffsrechte!',
'To: (%s) replaced with database email!' => 'An: (%s) ersetzt mit Datenbank E-Mail!',
'Cc: (%s) added database email!' => 'Cc: (%s) Datenbank E-Mail hinzugefgt!',
'(Click here to add)' => '(Hier klicken um hinzuzufgen)',
'Preview' => 'Vorschau',
'Package not correctly deployed! You should reinstall the Package again!' => 'Paket nicht korrekt installiert! Sie sollten es erneut installieren!',
'Added User "%s"' => 'Leid "%s" hinzugefgt.',
'Contract' => 'Vertrag',
'Online Customer: %s' => 'Online Kunda: %s',
'Online Agent: %s' => 'Online Agent: %s',
'Calendar' => 'Kalender',
'File' => 'Datei',
'Filename' => 'Dateiname',
'Type' => 'Typ',
'Size' => 'Gre',
'Upload' => 'Hinaufladen',
'Directory' => 'Verzeichnis',
'Signed' => 'Signiert',
'Sign' => 'Signieren',
'Crypted' => 'Verschlsselt',
'Crypt' => 'Verschlsseln',
'Office' => 'Bro',
'Phone' => 'Telefon',
'Fax' => 'Fax',
'Mobile' => 'Mobile',
'Zip' => 'PLZ',
'City' => 'Stadt',
'Country' => 'Land',
'installed' => 'installiert',
'uninstalled' => 'nicht installiert',
'Security Note: You should activate %s because application is already running!' => 'Sicherheitshinweis: Sie sollten den %s aktivieren, da die Anwendung bereits in Betrieb ist!',
'Unable to parse Online Repository index document!' => 'Nicht mglich den Online Repository Index zum verarbeiten!',
'No Packages for requested Framework in this Online Repository, but Packages for other Frameworks!' => 'Kein Paket fr den bentigten Framework vorhanden, aber fr andere Frameworks.',
'No Packages or no new Packages in selected Online Repository!' => 'Kein Paket oder keine neuen Pakete in ausgewhlten Online Repository vorhanden!',
'printed at' => 'gedruckt am',
# Template: AAAMonth
'Jan' => 'Jan',
'Feb' => 'Feb',
'Mar' => 'Mr',
'Apr' => 'Apr',
'May' => 'Mai',
'Jun' => 'Jun',
'Jul' => 'Jul',
'Aug' => 'Aug',
'Sep' => 'Sep',
'Oct' => 'Okt',
'Nov' => 'Nov',
'Dec' => 'Dez',
'January' => 'Januar',
'February' => 'Februar',
'March' => 'Mrz',
'April' => 'April',
'June' => 'Juni',
'July' => 'Juli',
'August' => 'August',
'September' => 'September',
'October' => 'Oktober',
'November' => 'November',
'December' => 'Dezember',
# Template: AAANavBar
'Admin-Area' => 'Admin-Bereich',
'Agent-Area' => 'Agent-Bereich',
'Ticket-Area' => 'Ticket-Bereich',
'Logout' => 'Abmelden',
'Agent Preferences' => 'Leid Einstellungen',
'Preferences' => 'Einstellungen',
'Agent Mailbox' => 'Agent Mailbox',
'Stats' => 'Statistik',
'Stats-Area' => 'Statistik-Bereich',
'Admin' => 'Admin',
'Customer Users' => 'Kundan Leid',
'Customer Users <-> Groups' => 'Kundan Leid <-> Gruppen',
'Customer Users <-> Services' => 'Kundan Leid <-> Services',
'Users <-> Groups' => 'Leid <-> Gruppen',
'Roles' => 'Rollen',
'Roles <-> Users' => 'Rollen <-> Leid',
'Roles <-> Groups' => 'Rollen <-> Gruppen',
'Salutations' => 'Anreden',
'Signatures' => 'Signaturen',
'Email Addresses' => 'E-Mail Adressen',
'Notifications' => 'Benachrichtigungen',
'Category Tree' => 'Kategorie Baum',
'Admin Notification' => 'Admin-Benachrichtigung',
# Template: AAAPreferences
'Preferences updated successfully!' => 'Leideinstellungen erfolgreich aktualisiert!',
'Mail Management' => 'Mail Management',
'Frontend' => 'Oberflche',
'Other Options' => 'Andere Optionen',
'Change Password' => 'Passwort ndern',
'New password' => 'Neues Passwort',
'New password again' => 'Neues Passwort (wiederholen)',
'Select your QueueView refresh time.' => 'Queue-Ansicht Aktualisierungszeit auswhlen.',
'Select your frontend language.' => 'Oberflchen-Sprache auswhlen.',
'Select your frontend Charset.' => 'Zeichensatz fr Darstellung auswhlen.',
'Select your frontend Theme.' => 'Anzeigeschema auswhlen.',
'Select your frontend QueueView.' => 'Queue-Ansicht auswhlen.',
'Spelling Dictionary' => 'Rechtschreib-Wrterbuch',
'Select your default spelling dictionary.' => 'Standard Rechtschreib-Wrterbuch auswhlen.',
'Max. shown Tickets a page in Overview.' => 'Maximale Anzahl angezeigter Tickets pro Seite in der bersicht.',
'Can\'t update password, passwords doesn\'t match! Please try it again!' => 'Passwrter sind nicht identisch! Bitte erneut versuchen!',
'Can\'t update password, invalid characters!' => 'Passwort konnte nicht aktualisiert werden, Zeichen unglig.',
'Can\'t update password, need min. 8 characters!' => 'Passwort konnte nicht aktualisiert werden, bentige min. 8 Zeichen.',
'Can\'t update password, need 2 lower and 2 upper characters!' => 'Passwort konnte nicht aktualisiert werden, bentige min. einen grogeschriebener und einen kleingeschriebener Buchstaben.',
'Can\'t update password, need min. 1 digit!' => 'Passwort konnte nicht aktualisiert werden, Passwort muss mit eine Zahl enthalten!',
'Can\'t update password, need min. 2 characters!' => 'Passwort konnte nicht aktualisiert werden, Passwort muss zwei Buchstaben enthalten!',
# Template: AAAStats
'Stat' => 'Statistik',
'Please fill out the required fields!' => 'Bitte fllen Sie olle Pflichtfelder aus!',
'Please select a file!' => 'Bitte whlen Sie eine Datei aus!',
'Please select an object!' => 'Bitte whlen Sie ein Statistik-Objekt aus!',
'Please select a graph size!' => 'Bitte legen Sie die Graphikgre fest!',
'Please select one element for the X-axis!' => 'Bitte whlen Sie ein Element fr die X-Achse aus!',
'You have to select two or more attributes from the select field!' => 'Sie mssen mindestens zwei Attribute des Auswahlfelds auswhlen!',
'Please select only one element or turn off the button \'Fixed\' where the select field is marked!' => 'Bitte whlen Sie nur ein Element aus oder entfernen Sie das Hkchen der Checkbox \'Fixed\'!',
'If you use a checkbox you have to select some attributes of the select field!' => 'Wenn Sie Inhalte eines Auswahlfelds auswhlen mssen Sie mindestens zwei Attribute auswhlen!',
'Please insert a value in the selected input field or turn off the \'Fixed\' checkbox!' => 'Tragen Sie bitte etwas in die Eingabezeile ein oder entfernen Sie das Hkchen aus der Checkbox \'Fixed\'!',
'The selected end time is before the start time!' => 'Die ausgewhlte Endzeit ist vor der Startzeit!',
'You have to select one or more attributes from the select field!' => 'Bitte whlen Sie bitte ein oder mehrere Attribute aus dem Auswahlfeld aus!',
'The selected Date isn\'t valid!' => 'Sie haben ein ungltiges Datum ausgewhlt!',
'Please select only one or two elements via the checkbox!' => 'Bitte whlen Sie nur ein oder zwei Elemente aus!',
'If you use a time scale element you can only select one element!' => 'Wenn Sie ein Zeit-Element ausgewhlt haben, knnen Sie nur kein weiteres Element mehr auswhlen!',
'You have an error in your time selection!' => 'Sie haben einen Fehler in Ihrer Zeitauswahl!',
'Your reporting time interval is too small, please use a larger time scale!' => 'Die Zeitskalierung ist zum klein gewhlt, bitte whlen Sie eine grere Zeitskalierung!',
'The selected start time is before the allowed start time!' => 'Die gewhlte Startzeit ist auerhalb des erlaubten Bereichs!',
'The selected end time is after the allowed end time!' => 'Die gewhlte Endzeit ist auerhalb des erlaubten Bereichs!',
'The selected time period is larger than the allowed time period!' => 'Der gewhlt Zeitraum ist grer als der erlaubte Zeitraum!',
'Common Specification' => 'Allgemeine Angaben',
'Xaxis' => 'X-Achse',
'Value Series' => 'Wertereihen',
'Restrictions' => 'Einschrnkungen',
'graph-lines' => 'Liniendiagramm',
'graph-bars' => 'Balkendiagramm',
'graph-hbars' => 'Balkendiagramm (horizontal)',
'graph-points' => 'Punktdiagramm',
'graph-lines-points' => 'Linienpunktdiagramm',
'graph-area' => 'Flchendiagramm',
'graph-pie' => 'Tortendiagramm',
'extended' => 'erweitert',
'Agent/Owner' => 'Agent/Besitzer',
'Created by Agent/Owner' => 'Erstellt von Agent/Besitzer',
'Created Priority' => 'Erstellt mit der Prioritt',
'Created State' => 'Erstellt mit dem Status',
'Create Time' => 'Erstellt',
'CustomerUserLogin' => 'Kundanlogin',
'Close Time' => 'Ticket geschlossen',
# Template: AAATicket
'Lock' => 'Sperren',
'Unlock' => 'Freigeben',
'History' => 'Historie',
'Zoom' => 'Inhalt',
'Age' => 'Alter',
'Bounce' => 'Umleiten',
'Forward' => 'Weidaleiten',
'From' => 'Von',
'To' => 'An',
'Cc' => 'Cc',
'Bcc' => 'Bcc',
'Subject' => 'Betreff',
'Move' => 'Verschieben',
'Queue' => 'Queue',
'Priority' => 'Prioritt',
'State' => 'Status',
'Compose' => 'Verfassen',
'Pending' => 'Warten',
'Owner' => 'Besitzer',
'Owner Update' => 'Besitzer aktualisiert',
'Responsible' => 'Verantwortlicher',
'Responsible Update' => 'Verantwortlichen aktualisieren',
'Sender' => 'Sender',
'Article' => 'Artikel',
'Ticket' => 'Ticket',
'Createtime' => 'Erstellt am',
'plain' => 'klar',
'Email' => 'E-Mail',
'email' => 'E-Mail',
'Close' => 'Schlieen',
'Action' => 'Aktion',
'Attachment' => 'Anlage',
'Attachments' => 'Anlagen',
'This message was written in a character set other than your own.' => 'Diese Nachricht wurde in einem Zeichensatz eschtaid, der nicht Ihrem eigenen entspricht.',
'If it is not displayed correctly,' => 'Wenn sie nicht korrekt angezeigt wird,',
'This is a' => 'Dies ist eine',
'to open it in a new window.' => 'um sie in einem neuen Fenster angezeigt zum bekommen',
'This is a HTML email. Click here to show it.' => 'Dies ist eine HTML E-Mail. Hier klicken, um sie anzuzeigen.',
'Free Fields' => 'Freie Felder',
'Merge' => 'Zusammenfassen',
'merged' => 'zusammengefgt',
'closed successful' => 'erfolgreich geschlossen',
'closed unsuccessful' => 'erfolglos geschlossen',
'new' => 'neu',
'open' => 'offen',
'closed' => 'geschlossen',
'removed' => 'entfernt',
'pending reminder' => 'warten zur Erinnerung',
'pending auto' => 'warten auto',
'pending auto close+' => 'warten auf erfolgreich schlieen',
'pending auto close-' => 'warten auf erfolglos schlieen',
'email-external' => 'E-Mail an extern',
'email-internal' => 'E-Mail an intern',
'note-external' => 'Notiz fr extern',
'note-internal' => 'Notiz fr intern',
'note-report' => 'Notiz fr reporting',
'phone' => 'Telefon',
'sms' => 'sms',
'webrequest' => 'Webanfrage',
'lock' => 'gesperrt',
'unlock' => 'frei',
'very low' => 'sehr niedrig',
'low' => 'niedrig',
'normal' => 'normal',
'high' => 'hoch',
'very high' => 'sehr hoch',
'1 very low' => '1 sehr niedrig',
'2 low' => '2 niedrig',
'3 normal' => '3 normal',
'4 high' => '4 hoch',
'5 very high' => '5 sehr hoch',
'Ticket "%s" created!' => 'Ticket "%s" eschtaid!',
'Ticket Number' => 'Ticket Nummer',
'Ticket Object' => 'Ticket Objekt',
'No such Ticket Number "%s"! Can\'t link it!' => 'Ticketnummer "%s" nicht gefunden! Ticket konnte nicht verknpft werden!',
'Don\'t show closed Tickets' => 'Geschlossene Tickets nicht zeigen',
'Show closed Tickets' => 'Geschlossene Tickets anzeigen',
'New Article' => 'Neia Artikel',
'Email-Ticket' => 'E-Mail-Ticket',
'Create new Email Ticket' => 'Ein neues E-Mail-Ticket erstellen',
'Phone-Ticket' => 'Telefon-Ticket',
'Search Tickets' => 'Ticket-Suche',
'Edit Customer Users' => 'Kundan-Leid bearbeiten',
'Bulk-Action' => 'Sammel-Aktion',
'Bulk Actions on Tickets' => 'Sammel-Action an Tickets',
'Send Email and create a new Ticket' => 'E-Mail senden und neues Ticket erstellen',
'Create new Email Ticket and send this out (Outbound)' => 'Neues Ticket wird eschtaid und Email versendet',
'Create new Phone Ticket (Inbound)' => 'Neues Ticket wird ber einkommenden Anruf eschtaid',
'Overview of all open Tickets' => 'bersicht ber olle offaen Tickets',
'Locked Tickets' => 'Gesperrte Tickets',
'Watched Tickets' => 'Beobachtete Tickets',
'Watched' => 'Beobachtet',
'Subscribe' => 'Abonnieren',
'Unsubscribe' => 'Ababonnieren',
'Lock it to work on it!' => 'Sperren um es zum bearbeiten!',
'Unlock to give it back to the queue!' => 'Freigeben um es in die Queue umme zum geben!',
'Shows the ticket history!' => 'Ticket Historie anzeigen!',
'Print this ticket!' => 'Ticket drucken!',
'Change the ticket priority!' => 'ndern der Ticket-Prioritt',
'Change the ticket free fields!' => 'ndern der Ticket-Frei-Felder',
'Link this ticket to an other objects!' => 'Ticket zum anderen Objekten verknpfen!',
'Change the ticket owner!' => 'ndern des Ticket-Besitzers!',
'Change the ticket customer!' => 'ndern des Ticket-Kundan!',
'Add a note to this ticket!' => 'Dazua doa einer Notiz!',
'Merge this ticket!' => 'Ticket mit einem anderen vereinen!',
'Set this ticket to pending!' => 'Setzen des Tickets auf -warten auf-!',
'Close this ticket!' => 'Ticket schlieen!',
'Look into a ticket!' => 'Ticket genauer ansehen!',
'Delete this ticket!' => 'Ticket weg rama!',
'Mark as Spam!' => 'Als Spam makieren!',
'My Queues' => 'Meine Queues',
'Shown Tickets' => 'Gezeigte Tickets',
'Your email with ticket number "<OTRS_TICKET>" is merged to "<OTRS_MERGE_TO_TICKET>".' => 'Ihre E-Mail mit Ticket-Nummer "<OTRS_TICKET>" wurde zum Ticket-Nummer "<OTRS_MERGE_TO_TICKET>" gemerged!',
'Ticket %s: first response time is over (%s)!' => 'Ticket %s: Reaktionszeit ist abgelaufen (%s)!',
'Ticket %s: first response time will be over in %s!' => 'Ticket %s: Reaktionszeit wird ablaufen in %s!',
'Ticket %s: update time is over (%s)!' => 'Ticket %s: Aktualisierungszeit ist abgelaufen (%s)!',
'Ticket %s: update time will be over in %s!' => 'Ticket %s: Aktualisierungszeit wird ablaufen in %s!',
'Ticket %s: solution time is over (%s)!' => 'Ticket %s: Lsungszeit ist abgelaufen (%s)!',
'Ticket %s: solution time will be over in %s!' => 'Ticket %s: Lsungszeit wird ablaufen in %s!',
'There are more escalated tickets!' => 'Mehr eskalierte Tickets!',
'New ticket notification' => 'Mitteilung bei neuem Ticket',
'Send me a notification if there is a new ticket in "My Queues".' => 'Zusenden einer Mitteilung bei neuem Ticket in "Meine Queues".',
'Follow up notification' => 'Mitteilung bei Nachfragen',
'Send me a notification if a customer sends a follow up and I\'m the owner of this ticket.' => 'Zusenden einer Mitteilung, wenn ein Kunda eine Nachfrage stellt und ich der Besitzer bin.',
'Ticket lock timeout notification' => 'Mitteilung bei berschreiten der Sperrzeit',
'Send me a notification if a ticket is unlocked by the system.' => 'Zusenden einer Mitteilung, wenn ein Ticket vom System freigegeben ("unlocked") wird.',
'Move notification' => 'Mitteilung bei Queue-Wechsel',
'Send me a notification if a ticket is moved into one of "My Queues".' => 'Zusenden einer Mitteilung beim Verschieben eines Tickets in "Meine Queues".',
'Your queue selection of your favourite queues. You also get notified about those queues via email if enabled.' => 'Queue Auswahl der bevorzugten Queues. Es werden E-Mail-Benachrichtigungen ber diese ausgewhlten Queues versendet.',
'Custom Queue' => 'Bevorzugte Queue',
'QueueView refresh time' => 'Queue-Ansicht Aktualisierungszeit',
'Screen after new ticket' => 'Fenster nach neuem Ticket',
'Select your screen after creating a new ticket.' => 'Auswahl des Fensters, das nach der Erstellung eines neuen Tickets angezeigt werden soll.',
'Closed Tickets' => 'Geschlossene Tickets',
'Show closed tickets.' => 'Geschlossene Tickets anzeigen.',
'Max. shown Tickets a page in QueueView.' => 'Maximale Anzahl angezeigter Tickets pro Seite in der Queue-Ansicht.',
'CompanyTickets' => 'Firmen Ticket',
'MyTickets' => 'Meine Tickets',
'New Ticket' => 'Neues Ticket',
'Create new Ticket' => 'Neues Ticket erstellen',
'Customer called' => 'Kundan angerufen',
'phone call' => 'Telefonanruf',
'Responses' => 'Antworten',
'Responses <-> Queue' => 'Antworten <-> Queues',
'Auto Responses' => 'Auto Antworten',
'Auto Responses <-> Queue' => 'Auto Antworten <-> Queues',
'Attachments <-> Responses' => 'Anlagen <-> Antworten',
'History::Move' => 'Ticket verschoben in Queue "%s" (%s) von Queue "%s" (%s).',
'History::TypeUpdate' => 'Typ aktualisiert "%s" (ID=%s).',
'History::ServiceUpdate' => 'Service aktualisiert "%s" (ID=%s).',
'History::SLAUpdate' => 'SLA aktualisiert "%s" (ID=%s).',
'History::NewTicket' => 'Neues Ticket [%s] eschtaid (Q=%s;P=%s;S=%s).',
'History::FollowUp' => 'FollowUp fr [%s]. %s',
'History::SendAutoReject' => 'AutoReject an "%s" versandt.',
'History::SendAutoReply' => 'AutoReply an "%s" versandt.',
'History::SendAutoFollowUp' => 'AutoFollowUp an "%s" versandt.',
'History::Forward' => 'Weidageleitet an "%s".',
'History::Bounce' => 'Bounced an "%s".',
'History::SendAnswer' => 'E-Mail versandt an "%s".',
'History::SendAgentNotification' => '"%s"-Benachrichtigung versandt an "%s".',
'History::SendCustomerNotification' => 'Benachrichtigung versandt an "%s".',
'History::EmailAgent' => 'E-Mail an Kundan versandt.',
'History::EmailCustomer' => 'E-Mail hinzugefgt. %s',
'History::PhoneCallAgent' => 'Kundan angerufen.',
'History::PhoneCallCustomer' => 'Kunda hat angerufen.',
'History::AddNote' => 'Notiz hinzugefgt (%s)',
'History::Lock' => 'Ticket gesperrt.',
'History::Unlock' => 'Ticketsperre aufgehoben.',
'History::TimeAccounting' => '%s Zeiteinheit(en) gezhlt. Insgesamt %s Zeiteinheit(en).',
'History::Remove' => '%s',
'History::CustomerUpdate' => 'Aktualisiert: %s',
'History::PriorityUpdate' => 'Prioritt aktualisiert von "%s" (%s) nach "%s" (%s).',
'History::OwnerUpdate' => 'Neia Besitzer ist "%s" (ID=%s).',
'History::LoopProtection' => 'Loop-Protection! Keine Auto-Antwort versandt an "%s".',
'History::Misc' => '%s',
'History::SetPendingTime' => 'Aktualisiert: %s',
'History::StateUpdate' => 'Alt: "%s" Neu: "%s"',
'History::TicketFreeTextUpdate' => 'Aktualisiert: %s=%s;%s=%s;',
'History::WebRequestCustomer' => 'Kunda stellte Anfrage ber Web.',
'History::TicketLinkAdd' => 'Verknpfung zum "%s" hergestellt.',
'History::TicketLinkDelete' => 'Verknpfung zum "%s" gelscht.',
# Template: AAAWeekDay
'Sun' => 'Son',
'Mon' => 'Mon',
'Tue' => 'Die',
'Wed' => 'Mit',
'Thu' => 'Don',
'Fri' => 'Fre',
'Sat' => 'Sam',
# Template: AdminAttachmentForm
'Attachment Management' => 'Anlagen Verwaltung',
# Template: AdminAutoResponseForm
'Auto Response Management' => 'Auto-Antworten Verwaltung',
'Response' => 'Antwort',
'Auto Response From' => 'Auto-Antwort-Absender',
'Note' => 'Notiz',
'Useable options' => 'Verfgbare Optionen',
'To get the first 20 character of the subject.' => 'Die ersten 20 Zeichen des Betreffs',
'To get the first 5 lines of the email.' => 'Die ersten fnf Zeilen der Nachricht',
'To get the realname of the sender (if given).' => 'Der Name des Leids (soweit bekannt)',
'To get the article attribute (e. g. (<OTRS_CUSTOMER_From>, <OTRS_CUSTOMER_To>, <OTRS_CUSTOMER_Cc>, <OTRS_CUSTOMER_Subject> and <OTRS_CUSTOMER_Body>).' => 'Die Artikel Attribute (z. B. (<OTRS_CUSTOMER_From>, <OTRS_CUSTOMER_To>, <OTRS_CUSTOMER_Cc>, <OTRS_CUSTOMER_Subject> and <OTRS_CUSTOMER_Body>).',
'Options of the current customer user data (e. g. <OTRS_CUSTOMER_DATA_UserFirstname>).' => 'Details zum aktuellen Kundan (z. B. <OTRS_CUSTOMER_DATA_UserFirstname>)',
'Ticket owner options (e. g. <OTRS_OWNER_UserFirstname>).' => 'Details zum Ticket-Besizter (z. B. <OTRS_OWNER_UserFirstname>).',
'Ticket responsible options (e. g. <OTRS_RESPONSIBLE_UserFirstname>).' => 'Details zum Ticket-Verantwortlichen (z. B.<OTRS_RESPONSIBLE_UserFirstname>).',
'Options of the current user who requested this action (e. g. <OTRS_CURRENT_UserFirstname>).' => 'Details zum aktuellen Leid, der diese Aktion veranlasst hat (z. B. <OTRS_CURRENT_UserFirstname).',
'Options of the ticket data (e. g. <OTRS_TICKET_TicketNumber>, <OTRS_TICKET_TicketID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>).' => 'Detailinformation zum Ticket (z. B. <OTRS_TICKET_TicketNumber>, <OTRS_TICKET_TicketID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>).',
'Config options (e. g. <OTRS_CONFIG_HttpType>).' => 'Konfigurations Optionen (z. B. <OTRS_CONFIG_HttpType).',
# Template: AdminCustomerCompanyForm
'Customer Company Management' => 'Kundan-Firma Verwaltung',
'Add Customer Company' => 'Kundan-Firma dazua doa',
'Add a new Customer Company.' => 'Eine neue Kundan-Firma dazua doa.',
'List' => 'Liste',
'This values are required.' => 'Diese Inhalte werden bentigt.',
'This values are read only.' => 'Diese Inhalte sind schreibgeschtzt.',
# Template: AdminCustomerUserForm
'Customer User Management' => 'Kundan-Leid Verwaltung',
'Search for' => 'Suche nach',
'Add Customer User' => 'Kundan-Leid dazua doa',
'Source' => 'Quelle',
'Create' => 'Erstellen',
'Customer user will be needed to have a customer history and to login via customer panel.' => 'Kundan-Leid werden fr Kundan-Historien und fr die Benutzung von Kundan-Weboberflche bentigt.',
# Template: AdminCustomerUserGroupChangeForm
'Customer Users <-> Groups Management' => 'Kundanbenutzer <-> Gruppen Verwaltung',
'Change %s settings' => 'ndern der %s Einstellungen',
'Select the user:group permissions.' => 'Auswahl der Leid/Gruppen Berechtigungen.',
'If nothing is selected, then there are no permissions in this group (tickets will not be available for the user).' => 'Ist nichts ausgewhlt, sind keine Rechte vergeben (diese Tickets sind fr den Leid nicht verfgbar).',
'Permission' => 'Rechte',
'ro' => 'ro',
'Read only access to the ticket in this group/queue.' => 'Nur-Lesen-Zugriff auf Tickets in diesen Gruppen/Queues.',
'rw' => 'rw',
'Full read and write access to the tickets in this group/queue.' => 'Voller Schreib- und Lesezugriff auf Tickets in der Queue/Gruppe.',
# Template: AdminCustomerUserGroupForm
# Template: AdminCustomerUserServiceChangeForm
'Customer Users <-> Services Management' => 'Kundanbenutzer <-> Services Verwaltung',
'Select the customeruser:service relations.' => 'Auswahl der Kundanbenutzer:Service Beziehungen.',
'Allocate services to CustomerUser' => '',
'Allocate CustomerUser to service' => '',
# Template: AdminCustomerUserServiceForm
'Edit default services.' => '',
# Template: AdminEmail
'Message sent to' => 'Nachricht gesendet an',
'Recipents' => 'Empfnger',
'Body' => 'Text',
'Send' => 'Senden',
# Template: AdminGenericAgent
'GenericAgent' => 'GenericAgent',
'Job-List' => 'Job-Liste',
'Last run' => 'Letzte Ausfhrung',
'Run Now!' => 'Jetzt ausfhren!',
'x' => 'x',
'Save Job as?' => 'Speichere Job als?',
'Is Job Valid?' => 'Ist Job gltig?',
'Is Job Valid' => 'Ist Job gltig',
'Schedule' => 'Zeitplan',
'Fulltext-Search in Article (e. g. "Mar*in" or "Baue*")' => 'Volltextsuche in Artikel (z. B. "Mar*in" oder "Baue*")',
'(e. g. 10*5155 or 105658*)' => 'z .B. 10*5144 oder 105658*',
'(e. g. 234321)' => 'z. B. 234321',
'Customer User Login' => 'Kundan-Leid-Login',
'(e. g. U5150)' => 'z. B. U5150',
'Agent' => 'Agent',
'Ticket Lock' => 'Ticket sperren',
'TicketFreeFields' => 'TicketFreiFelder',
'Create Times' => 'Erstell-Zeiten',
'No create time settings.' => 'Keine Erstell-Zeiten',
'Ticket created' => 'Ticket eschtaid',
'Ticket created between' => 'Ticket eschtaid zwischen',
'Pending Times' => 'Warten-Zeiten',
'No pending time settings.' => 'Keine Warten-Zeiten',
'Ticket pending time reached' => 'Ticket Warten-Zeit erreicht',
'Ticket pending time reached between' => 'Ticket Warten-Zeit erreicht zwischen',
'New Priority' => 'Nei Prioritt',
'New Queue' => 'Nei Queue',
'New State' => 'Neia Status',
'New Agent' => 'Neia Besitzer',
'New Owner' => 'Neia Besitzer',
'New Customer' => 'Neia Kunda',
'New Ticket Lock' => 'Neues Ticket Lock',
'CustomerUser' => 'Kundanbenutzer',
'New TicketFreeFields' => 'Nei TicketFreiFelder',
'Add Note' => 'Notiz dazua doa',
'CMD' => 'CMD',
'This command will be executed. ARG[0] will be the ticket number. ARG[1] the ticket id.' => 'Dieses Kommando wird mit ARG[0] (die Ticket Nummer) und ARG[1] die TicketID ausgefhrt.',
'Delete tickets' => 'Tickets Weg rama',
'Warning! This tickets will be removed from the database! This tickets are lost!' => 'Warnung! Alle diese Tickets werden von der Datenbank entfernt! Diese Tickets sind nicht wiederherstellbar!',
'Send Notification' => 'Senden der Benachrichtigung',
'Param 1' => 'Param 1',
'Param 2' => 'Param 2',
'Param 3' => 'Param 3',
'Param 4' => 'Param 4',
'Param 5' => 'Param 5',
'Param 6' => 'Param 6',
'Send no notifications' => 'Keine Benachrichtigung senden',
'Yes means, send no agent and customer notifications on changes.' => 'Ja bedeutet, es werden keine Benachrichtigungen an Kundan und Agents gesendet.',
'No means, send agent and customer notifications on changes.' => 'Naaa bedeutet, es werden die Kundan und Agents durch eine Benachrichtigung ber die nderung informiert.',
'Save' => 'Speichern',
'%s Tickets affected! Do you really want to use this job?' => '%s Tickets sind betroffen! Wollen Sie diesen Job wirklich benutzen?',
# Template: AdminGroupForm
'Group Management' => 'Gruppen Verwaltung',
'Add Group' => 'Gruppe dazua doa',
'Add a new Group.' => 'Eine neue Gruppe dazua doa.',
'The admin group is to get in the admin area and the stats group to get stats area.' => 'Die \'admin\'-Gruppe wird fr den Admin-Bereich bentigt, die \'stats\'-Gruppe fr den Statistik-Bereich.',
'Create new groups to handle access permissions for different groups of agent (e. g. purchasing department, support department, sales department, ...).' => 'Erstellen Sie neue Gruppen, um die Zugriffe fr verschiedene Agenten-Gruppen zum definieren (z. B. Einkaufs-Abteilung, Support-Abteilung, Verkaufs-Abteilung,...).',
'It\'s useful for ASP solutions.' => 'Ntzlich fr ASP-Lsungen.',
# Template: AdminLog
'System Log' => 'System Log',
'Time' => 'Zeit',
# Template: AdminNavigationBar
'Users' => 'Leid',
'Groups' => 'Gruppen',
'Misc' => 'Sonstiges',
# Template: AdminNotificationForm
'Notification Management' => 'Benachrichtigungs Verwaltung',
'Notification' => 'Benachrichtigung',
'Notifications are sent to an agent or a customer.' => 'Benachrichtigungen werden an Agenten und Kundan gesendet.',
# Template: AdminPackageManager
'Package Manager' => 'Paket Verwaltung',
'Uninstall' => 'Deinstallieren',
'Version' => 'Version',
'Do you really want to uninstall this package?' => 'Soll das Paket wirklich deinstalliert werden?',
'Reinstall' => 'Erneut installieren',
'Do you really want to reinstall this package (all manual changes get lost)?' => 'Soll das Paket wirklich erneut installiert werden (manuelle nderungen gehen verloren)?',
'Continue' => 'Weida',
'Install' => 'Installieren',
'Package' => 'Paket',
'Online Repository' => 'Online Repository',
'Vendor' => 'Anbieter',
'Upgrade' => 'Erneuern',
'Local Repository' => 'Lokales Repository',
'Status' => 'Status',
'Overview' => 'bersicht',
'Download' => 'Herunterladen',
'Rebuild' => 'Rebuild',
'ChangeLog' => 'ChangeLog',
'Date' => 'Datum',
'Filelist' => 'Dateiliste',
'Download file from package!' => 'Datei aus dem Paket herunterladen!',
'Required' => 'Bentigt',
'PrimaryKey' => 'PrimaryKey',
'AutoIncrement' => 'AutoIncrement',
'SQL' => 'SQL',
'Diff' => 'Diff',
# Template: AdminPerformanceLog
'Performance Log' => 'Performance Log',
'This feature is enabled!' => 'Dieses Feature ist aktiv!',
'Just use this feature if you want to log each request.' => 'Nur aktivieren wenn jede Anfrage protokolliert werden soll.',
'Of couse this feature will take some system performance it self!' => 'Wenn dieses Feature aktiv ist, ist mit Leistungsdefizit zum rechnen.',
'Disable it here!' => 'Hier deaktivieren!',
'This feature is disabled!' => 'Dieses Feature ist inaktiv!',
'Enable it here!' => 'Hier aktivieren!',
'Logfile too large!' => 'Logdatei zum gro!',
'Logfile too large, you need to reset it!' => 'Die Logdatei ist zum gro, bitte ummesetzen!',
'Range' => 'Bereich',
'Interface' => 'Interface',
'Requests' => 'Anfragen',
'Min Response' => 'Min. Antwortzeit',
'Max Response' => 'Max. Antwortzeit',
'Average Response' => 'Durchschnittliche Antwortzeit',
# Template: AdminPGPForm
'PGP Management' => 'PGP Verwaltung',
'Result' => 'Ergebnis',
'Identifier' => 'Identifikator',
'Bit' => 'Bit',
'Key' => 'Schlssel',
'Fingerprint' => 'Fingerabdruck',
'Expires' => 'Erlischt',
'In this way you can directly edit the keyring configured in SysConfig.' => 'ber diesen Weg kann man den Schlsselring (konfiguriert in SysConfig) direkt bearbeiten.',
# Template: AdminPOP3
'POP3 Account Management' => 'POP3-Konten Verwaltung',
'Host' => 'Host',
'Trusted' => 'Vertraut',
'Dispatching' => 'Verteilung',
'All incoming emails with one account will be dispatched in the selected queue!' => 'Einkommende E-Mails von POP3-Konten werden in die ausgewhlte Queue einsortiert!',
'If your account is trusted, the already existing X-OTRS header at arrival time (for priority, ...) will be used! PostMaster filter will be used anyway.' => 'Wird dem Konto vertraut, werden die X-OTRS Header benutzt! PostMaster Filter werden trotzdem benutzt.',
# Template: AdminPostMasterFilter
'PostMaster Filter Management' => 'PostMaster Filter Verwaltung',
'Filtername' => 'Filtername',
'Match' => 'Treffer',
'Header' => 'Kopf',
'Value' => 'Wert',
'Set' => 'Setzen',
'Do dispatch or filter incoming emails based on email X-Headers! RegExp is also possible.' => 'Verteilt oder Filtern einkommende E-Mail anhand der X-Headers! RegExp ist auch mglich.',
'If you want to match only the email address, use EMAILADDRESS:info@example.com in From, To or Cc.' => 'Wenn nur eine Email-Adresse gesucht wird, dann benutz EMAILADDRESS:info@example.com in Von, An oder Cc.',
'If you use RegExp, you also can use the matched value in () as [***] in \'Set\'.' => 'Ist RegExp benutzt, knnen Sie auch den Inhalt von () als [***] in \'Setzen\' benutzen.',
# Template: AdminQueueAutoResponseForm
'Queue <-> Auto Responses Management' => 'Queue <-> Auto Antworten Verwaltung',
# Template: AdminQueueForm
'Queue Management' => 'Queue Verwaltung',
'Sub-Queue of' => 'Unterqueue von',
'Unlock timeout' => 'Freigabe-Zeitintervall',
'0 = no unlock' => '0 = keine Freigabe',
'Escalation - First Response Time' => 'Eskalation - Reaktionszeit',
'0 = no escalation' => '0 = keine Eskalation',
'Escalation - Update Time' => 'Eskalation - Aktualisierungszeit',
'Escalation - Solution Time' => 'Eskalation - Lsungszeit',
'Follow up Option' => 'Nachfrage Option',
'Ticket lock after a follow up' => 'Ticket sperren nach einem Follow-Up',
'Systemaddress' => 'Systemadresse',
'Customer Move Notify' => 'Kundaninfo Verschieben',
'Customer State Notify' => 'Kundaninfo Status',
'Customer Owner Notify' => 'Kundaninfo Besitzer',
'If an agent locks a ticket and he/she will not send an answer within this time, the ticket will be unlock automatically. So the ticket is viewable for all other agents.' => 'Wird ein Ticket durch einen Agent gesperrt, jedoch nicht in dieser Zeit beantwortet, wird das Ticket automatisch freigegeben.',
'Escalation time' => 'Eskalationszeit',
'If a ticket will not be answered in this time, just only this ticket will be shown.' => 'Wird ein Ticket nicht in dieser Zeit beantwortet, wird nur noch dieses Ticket gezeigt.',
'If a ticket is closed and the customer sends a follow up the ticket will be locked for the old owner.' => 'Wenn ein Ticket geschlossen ist und der Kunda ein Follow-Up sendet, wird das Ticket fr den alten Besitzer gesperrt.',
'Will be the sender address of this queue for email answers.' => 'Absenderadresse fr E-Mails aus dieser Queue.',
'The salutation for email answers.' => 'Die Anrede fr E-Mail-Antworten.',
'The signature for email answers.' => 'Die Signatur fr E-Mail-Antworten.',
'OTRS sends an notification email to the customer if the ticket is moved.' => 'OTRS sendet eine Info-E-Mail an Kundan beim Verschieben des Tickets.',
'OTRS sends an notification email to the customer if the ticket state has changed.' => 'OTRS sendet eine Info E-Mail an Kundan beim ndern des Status.',
'OTRS sends an notification email to the customer if the ticket owner has changed.' => 'OTRS sendet eine Info E-Mail an Kundan beim ndern des Besitzers.',
# Template: AdminQueueResponsesChangeForm
'Responses <-> Queue Management' => 'Antworten <-> Queue Verwaltung',
# Template: AdminQueueResponsesForm
'Answer' => 'Antwort',
# Template: AdminResponseAttachmentChangeForm
'Responses <-> Attachments Management' => 'Antwort <-> Anlagen Verwaltung',
# Template: AdminResponseAttachmentForm
# Template: AdminResponseForm
'Response Management' => 'Antworten Verwaltung',
'A response is default text to write faster answer (with default text) to customers.' => 'Eine Antwort ist ein vordefinierter Text, um Kundan schneller antworten zum knnen.',
'Don\'t forget to add a new response a queue!' => 'Eine neue Antwort muss einer Queue zugewiesen werden!',
'The current ticket state is' => 'Der aktuelle Ticket-Status ist',
'Your email address is new' => 'Deine E-Mail-Adresse ist neu',
# Template: AdminRoleForm
'Role Management' => 'Rollen Verwaltung',
'Add Role' => 'Rolle dazua doa',
'Add a new Role.' => 'Eine neue Rolle dazua doa.',
'Create a role and put groups in it. Then add the role to the users.' => 'Erstelle eine Rolle und weise Gruppen hinzu. Danach fge Leid zum den Rollen hinzu.',
'It\'s useful for a lot of users and groups.' => 'Es ist sehr ntzlich wenn man viele Gruppen und Leid hat.',
# Template: AdminRoleGroupChangeForm
'Roles <-> Groups Management' => 'Rollen <-> Gruppen Verwaltung',
'move_into' => 'Verschieben in',
'Permissions to move tickets into this group/queue.' => 'Rechte, um Tickets in eine Gruppe/Queue zum verschieben.',
'create' => 'Erstellen',
'Permissions to create tickets in this group/queue.' => 'Rechte, um in einer Gruppe/Queue Tickets zum erstellen.',
'owner' => 'Besitzer',
'Permissions to change the ticket owner in this group/queue.' => 'Rechte, um den Besitzer eines Ticket in einer Gruppe/Queue zum ndern.',
'priority' => 'Prioritt',
'Permissions to change the ticket priority in this group/queue.' => 'Rechte, um die Prioritt eines Tickets in einer Gruppe/Queue zum ndern.',
# Template: AdminRoleGroupForm
'Role' => 'Rolle',
# Template: AdminRoleUserChangeForm
'Roles <-> Users Management' => 'Rollen <-> Leid Verwaltung',
'Active' => 'Aktiv',
'Select the role:user relations.' => 'Auswahl der Rollen:Leid Beziehungen.',
# Template: AdminRoleUserForm
# Template: AdminSalutationForm
'Salutation Management' => 'Anreden Verwaltung',
'Add Salutation' => 'Anrede dazua doa',
'Add a new Salutation.' => 'Eine neue Anrede dazua doa.',
# Template: AdminSelectBoxForm
'Select Box' => 'Select Box',
'Limit' => 'Limit',
'Go' => 'Go',
'Select Box Result' => 'Select Box Ergebnis',
# Template: AdminService
'Service Management' => 'Service Verwaltung',
'Add Service' => 'Service dazua doa',
'Add a new Service.' => 'Einen neuen Service dazua doa.',
'Service' => 'Service',
'Sub-Service of' => 'Unterservice von',
# Template: AdminSession
'Session Management' => 'Sitzungsverwaltung',
'Sessions' => 'Sitzung',
'Uniq' => 'Uniq',
'Kill all sessions' => 'Weg rama oller Sessions',
'Session' => 'Session',
'Content' => 'Inhalt',
'kill session' => 'Sitzung weg rama',
# Template: AdminSignatureForm
'Signature Management' => 'Signatur Verwaltung',
'Add Signature' => 'Signatur dazua doa',
'Add a new Signature.' => 'Eine neue Signatur dazua doa.',
# Template: AdminSLA
'SLA Management' => 'SLA Verwaltung',
'Add SLA' => 'SLA dazua doa',
'Add a new SLA.' => 'Einen neuen SLA dazua doa.',
'SLA' => 'SLA',
'First Response Time' => 'Reaktionszeit',
'Update Time' => 'Aktualisierungszeit',
'Solution Time' => 'Lsungszeit',
# Template: AdminSMIMEForm
'S/MIME Management' => 'S/MIME Verwaltung',
'Add Certificate' => 'Zertifikat dazua doa',
'Add Private Key' => 'Privaten Schlssel dazua doa',
'Secret' => 'Secret',
'Hash' => 'Hash',
'In this way you can directly edit the certification and private keys in file system.' => 'ber diesen Weg knnen die Zertifikate und privaten Schlssel im Dateisystem bearbeitet werden.',
# Template: AdminStateForm
'State Management' => 'Status Verwaltung',
'Add State' => 'Status dazua doa',
'Add a new State.' => 'Einen neuen Status dazua doa.',
'State Type' => 'Status-Typ',
'Take care that you also updated the default states in you Kernel/Config.pm!' => 'Beachte, dass auch der default-Status in Kernel/Config.pm gendert werden muss!',
'See also' => 'Siehe auch',
# Template: AdminSysConfig
'SysConfig' => 'SysConfig',
'Group selection' => 'Gruppenauswahl',
'Show' => 'Zeigen',
'Download Settings' => 'Einstellungen herunterladen',
'Download all system config changes.' => 'Herunterladen oller nderungen der Konfiguration.',
'Load Settings' => 'Einstellungen hinaufladen',
'Subgroup' => 'Untergruppe',
'Elements' => 'Elemente',
# Template: AdminSysConfigEdit
'Config Options' => 'Config Einstellungen',
'Default' => 'Default',
'New' => 'Neu',
'New Group' => 'Nei Gruppe',
'Group Ro' => 'Gruppe Ro',
'New Group Ro' => 'Nei Gruppe Ro',
'NavBarName' => 'NavBarName',
'NavBar' => 'NavBar',
'Image' => 'Image',
'Prio' => 'Prio',
'Block' => 'Block',
'AccessKey' => 'AccessKey',
# Template: AdminSystemAddressForm
'System Email Addresses Management' => 'E-Mail-Adressen Verwaltung',
'Add System Address' => 'System Adresse dazua doa',
'Add a new System Address.' => 'Eine neue Systemadresse dazua doa.',
'Realname' => 'Tatschlicher Name',
'All incoming emails with this "Email" (To:) will be dispatched in the selected queue!' => 'Alle eingehenden E-Mails mit diesem Empfnger (To:) werden in die ausgewhlte Queue einsortiert.',
# Template: AdminTypeForm
'Type Management' => 'Typ Verwaltung',
'Add Type' => 'Typ dazua doa',
'Add a new Type.' => 'Einen neuen Typ dazua doa.',
# Template: AdminUserForm
'User Management' => 'Leid Verwaltung',
'Add User' => 'Leid dazua doa',
'Add a new Agent.' => 'Einen neuen Agenten dazua doa.',
'Login as' => 'Anmelden als',
'Firstname' => 'Vorname',
'Lastname' => 'Nachname',
'User will be needed to handle tickets.' => 'Leid werden bentigt, um Tickets zum bearbeiten.',
'Don\'t forget to add a new user to groups and/or roles!' => 'Ein neuer Leid muss einer Gruppe und/oder Rollen zugewiesen werden!',
# Template: AdminUserGroupChangeForm
'Users <-> Groups Management' => 'Leid <-> Gruppen Verwaltung',
# Template: AdminUserGroupForm
# Template: AgentBook
'Address Book' => 'Adressbuch',
'Return to the compose screen' => 'Umme zum Verfassen-Fenster',
'Discard all changes and return to the compose screen' => 'Alle nderungen verwerfen und umme zum Verfassen-Fenster',
# Template: AgentCalendarSmall
# Template: AgentCalendarSmallIcon
# Template: AgentCustomerTableView
# Template: AgentInfo
'Info' => 'Info',
# Template: AgentLinkObject
'Link Object' => 'Verknpfe Objekt',
'Select' => 'Auswahl',
'Results' => 'Ergebnis',
'Total hits' => 'Treffer gesamt',
'Page' => 'Seite',
'Detail' => 'Detail',
# Template: AgentLookup
'Lookup' => 'Lookup',
# Template: AgentNavigationBar
# Template: AgentPreferencesForm
# Template: AgentSpelling
'Spell Checker' => 'Rechtschreibprfung',
'spelling error(s)' => 'Rechtschreibfehler',
'or' => 'oder',
'Apply these changes' => 'nderungen bernehmen',
# Template: AgentStatsDelete
'Do you really want to delete this Object?' => 'Soll das Objekt wirklich gelscht werden?',
# Template: AgentStatsEditRestrictions
'Select the restrictions to characterise the stat' => 'Auswahl der Einschrnkungen zur Charaktarisierung der Statistik',
'Fixed' => 'Fixiert',
'Please select only one element or turn off the button \'Fixed\'.' => 'Bitte whlen Sie nur ein Attribut aus oder entfernen Sie das Hkchen der Checkbox \'Fixiert\'!',
'Absolut Period' => 'Absoluter Zeitraum',
'Between' => 'Zwischen',
'Relative Period' => 'Relativer Zeitraum',
'The last' => 'Die letzten',
'Finish' => 'Abschlieen',
'Here you can make restrictions to your stat.' => 'Dieses Formular wird dazu verwendet die Einschrnkungen fr die Statistik zum definieren.',
'If you remove the hook in the "Fixed" checkbox, the agent generating the stat can change the attributes of the corresponding element.' => 'Wenn Sie den Haken in der "Fixiert" Checkbox entfernen, kann der Agent der die Statistik eschtaid, die Attribute des entsprechenden Elements verndern.',
# Template: AgentStatsEditSpecification
'Insert of the common specifications' => 'Eingabe der allgemeinen Angaben',
'Permissions' => 'Rechtevergabe',
'Format' => 'Format',
'Graphsize' => 'Graphikgre',
'Sum rows' => 'Zeilensummierung',
'Sum columns' => 'Spaltensummierung',
'Cache' => 'Cache',
'Required Field' => 'Pflichtfeld',
'Selection needed' => 'Auswahl ntig',
'Explanation' => 'Erklrung',
'In this form you can select the basic specifications.' => 'Diese Eingabeoberflche ist fr die Eingabe der allgemeinen Angaben.',
'Attribute' => 'Attribut',
'Title of the stat.' => 'Titel der Statistik.',
'Here you can insert a description of the stat.' => 'An dieser Stelle mu die Beschreibung eingegeben werden.',
'Dynamic-Object' => 'Dynamisches Objekt',
'Here you can select the dynamic object you want to use.' => 'Hier kann das zum benutzende dynamische Objekt ausgewhlt werden.',
'(Note: It depends on your installation how many dynamic objects you can use)' => '(Anmerkung: Es ist installationsabhngig wieviele dynamische Objekte angezeigt werden)',
'Static-File' => 'Statische Datei',
'For very complex stats it is possible to include a hardcoded file.' => 'Bei sehr komplexen Statistiken ist es mglich Programmdateien zum integrieren.',
'If a new hardcoded file is available this attribute will be shown and you can select one.' => 'Sind neue Programmdateien verfgbar, werden diese angezeigt.',
'Permission settings. You can select one or more groups to make the configurated stat visible for different agents.' => 'Rechtevergabe: Sie knnen eine oder mehrere Gruppen auswhlen, um die Statistiken fr die entsprechenden Agents sichtbar zum machen.',
'Multiple selection of the output format.' => 'Auswahl der mglichen Ausgabeformate.',
'If you use a graph as output format you have to select at least one graph size.' => 'Wenn Sie als Ausgabeformat eine Graphik ausgewhlt haben, mssen Sie hier die Graphikgre auswhlen.',
'If you need the sum of every row select yes' => 'Wenn die eine Summierung der Reihen bentigen, whlen Sie bitte \'Yes\'.',
'If you need the sum of every column select yes.' => 'Wenn Sie eine Summierung der Spalten bentigen, whlen Sie bitte \'Yes\'.',
'Most of the stats can be cached. This will speed up the presentation of this stat.' => 'Die meisten der Statistiken knnen gecached werden. Diese beschleunigt das wiederholte aufrufen einer Statistik.',
'(Note: Useful for big databases and low performance server)' => '(Anmerkung: Dies ist sinnvoll fr groe Datenbanken und langsame Server)',
'With an invalid stat it isn\'t feasible to generate a stat.' => 'Durch das Setzen einer Statistik auf \'ungltig\', kann man es fr die Benutzung sperren.',
'This is useful if you want that no one can get the result of the stat or the stat isn\'t ready configurated.' => 'Dies ist sinnvoll, wenn man nicht will, dass diese Statistik aktuell genutzt wird oder die Statistik noch nicht fertig konfiguriert ist.',
# Template: AgentStatsEditValueSeries
'Select the elements for the value series' => 'Auswahl der Elemente fr die Wertereihen',
'Scale' => 'Skalierung',
'minimal' => 'minimal',
'Please remember, that the scale for value series has to be larger than the scale for the X-axis (e.g. X-Axis => Month, ValueSeries => Year).' => 'Bitte bedenken Sie, dass die Zeitskalierung fr die Wertereihen grer sein muss als fr die X-Achse (z. B. X-Achse => Monat; Wertereihe => Jahr).',
'Here you can the value series. You have the possibility to select one or two elements. Then you can select the attributes of elements. Each attribute will be shown as single value series. If you don\'t select any attribute all attributes of the element will be used if you generate a stat. As well a new attribute is added since the last configuration.' => 'Auf dieser Seite werden die Wertereihen festgelegt. Jedes Attribut wird als einzelne Wertereihe dargestellt. Wenn Sie keine Attribute auswhlen werden olle Attribute bei der Generierung einer Statistik verwendet. Auch, wenn ein neues Attribut nach der Statistikkonfiguration hinzugefgt wird.',
# Template: AgentStatsEditXaxis
'Select the element, which will be used at the X-axis' => 'Auswahl des Elements, welches fr die X-Achse genutzt wird.',
'maximal period' => 'maximaler Zeitraum',
'minimal scale' => 'minimale Skalierung',
'Here you can define the x-axis. You can select one element via the radio button. Then you you have to select two or more attributes of the element. If you make no selection all attributes of the element will be used if you generate a stat. As well a new attribute is added since the last configuration.' => 'Auf dieser Seite wird die X-Achse definert. Sie knnen ein Element per Optionsfeld auswhlen. Anschlieend mssen zwei oder mehr Attribute des Elements ausgewhlt werden. Wenn Sie keine Attribute des Elements auswhlen werden olle Attribute verwendet. Auch solche die nach der Konfiguration der Statistik erst hinzukommen.',
# Template: AgentStatsImport
'Import' => 'Import',
'File is not a Stats config' => 'Diese Datei ist keine Statistik-Konfiguration',
'No File selected' => 'Keine Datei ausgewhlt',
# Template: AgentStatsOverview
'Object' => 'Objekt',
# Template: AgentStatsPrint
'Print' => 'Drucken',
'No Element selected.' => 'Kein Element ausgewhlt.',
# Template: AgentStatsView
'Export Config' => 'Konfiguration exportieren',
'Information about the Stat' => 'Informationen ber die Statistik',
'Exchange Axis' => 'Achsen vertauschen',
'Configurable params of static stat' => 'Konfigurierbare Parameter der statischen Statistik',
'No element selected.' => 'Es wurde kein Element ausgewhlt.',
'maximal period from' => 'maximaler Zeitraum von',
'to' => 'bis',
'Start' => 'Start',
'With the input and select fields you can configurate the stat at your needs. Which elements of a stat you can edit depends on your stats administrator who configurated the stat.' => 'Mit Hilfe der Auswahl- und Eingabefelder kann die Statistik Ihren Bedrfnissen angepasst werden. Welche Elemente der Statistik Sie verndern drfen ist von der Vorkonfiguration der Statistik abhngig.',
# Template: AgentTicketBounce
'Bounce ticket' => 'Bounce Ticket',
'Ticket locked!' => 'Ticket gesperrt!',
'Ticket unlock!' => 'Ticket freigeben!',
'Bounce to' => 'Bounce an',
'Next ticket state' => 'Nchster Status des Tickets',
'Inform sender' => 'Sender informieren',
'Send mail!' => 'Mail senden!',
# Template: AgentTicketBulk
'Ticket Bulk Action' => 'Ticket Sammelaktion',
'Spell Check' => 'Rechtschreibprfung',
'Note type' => 'Notiztyp',
'Unlock Tickets' => 'Freigeben der Tickets',
# Template: AgentTicketClose
'Close ticket' => 'Ticket schlieen',
'Previous Owner' => 'Vorheriger Besitzer',
'Inform Agent' => 'Agenten informieren',
'Optional' => 'Optional',
'Inform involved Agents' => 'Involvierte Agenten informieren',
'Attach' => 'Anhngen',
'Next state' => 'Nchster Status',
'Pending date' => 'Warten bis',
'Time units' => 'Zeiteinheiten',
# Template: AgentTicketCompose
'Compose answer for ticket' => 'Antwort erstellen fr',
'Pending Date' => 'Warten bis',
'for pending* states' => 'fr warten* Status',
# Template: AgentTicketCustomer
'Change customer of ticket' => 'ndern des Kundan des Tickets',
'Set customer user and customer id of a ticket' => 'Kundanbenutzer und Kundannummer des Tickets auswhlen',
'Customer User' => 'Kundan-Leid',
'Search Customer' => 'Kundan suchen',
'Customer Data' => 'Kundan-Daten',
'Customer history' => 'Kundan-Historie',
'All customer tickets.' => 'Alle Tickets des Kundan.',
# Template: AgentTicketCustomerMessage
'Follow up' => 'Nachfrage',
# Template: AgentTicketEmail
'Compose Email' => 'E-Mail erstellen',
'new ticket' => 'Neues Ticket',
'Refresh' => 'Aktualisieren',
'Clear To' => 'An: weg rama',
# Template: AgentTicketForward
'Article type' => 'Artikeltyp',
# Template: AgentTicketFreeText
'Change free text of ticket' => 'ndern der Freifelder des Tickets',
# Template: AgentTicketHistory
'History of' => 'Historie von',
# Template: AgentTicketLocked
# Template: AgentTicketMailbox
'Mailbox' => 'Mailbox',
'Tickets' => 'Tickets',
'of' => 'von',
'Filter' => 'Filter',
'New messages' => 'Nei Nachrichten',
'Reminder' => 'Erinnernd',
'Sort by' => 'Sortieren nach',
'Order' => 'Sortierung',
'up' => 'aufwrts',
'down' => 'abwrts',
# Template: AgentTicketMerge
'Ticket Merge' => 'Ticket zusammenfassen',
'Merge to' => 'Zusammenfassen zu',
# Template: AgentTicketMove
'Move Ticket' => 'Ticket Verschieben',
# Template: AgentTicketNote
'Add note to ticket' => 'Notiz an Ticket hngen',
# Template: AgentTicketOwner
'Change owner of ticket' => 'Ticket-Besitzer ndern',
# Template: AgentTicketPending
'Set Pending' => 'Setze wartend',
# Template: AgentTicketPhone
'Phone call' => 'Anruf',
'Clear From' => 'Von: weg rama',
# Template: AgentTicketPhoneOutbound
# Template: AgentTicketPlain
'Plain' => 'Klar',
# Template: AgentTicketPrint
'Ticket-Info' => 'Ticket-Info',
'Accounted time' => 'Zugewiesene Zeit',
'Escalation in' => 'Eskalation in',
'Linked-Object' => 'Verknpfte-Objekte',
'Parent-Object' => 'Eltern-Objekte',
'Child-Object' => 'Kinder-Objekte',
'by' => 'von',
# Template: AgentTicketPriority
'Change priority of ticket' => 'Prioritt des Tickets ndern',
# Template: AgentTicketQueue
'Tickets shown' => 'Tickets angezeigt',
'Tickets available' => 'Tickets verfgbar',
'All tickets' => 'Alle Tickets',
'Queues' => 'Queues',
'Ticket escalation!' => 'Ticket-Eskalation!',
# Template: AgentTicketQueueTicketView
'Service Time' => 'Service Zeit',
'Your own Ticket' => 'Ihr eigenes Ticket',
'Compose Follow up' => 'Ergnzung schreiben',
'Compose Answer' => 'Antwort erstellen',
'Contact customer' => 'Kundan kontaktieren',
'Change queue' => 'Queue wechseln',
# Template: AgentTicketQueueTicketViewLite
# Template: AgentTicketResponsible
'Change responsible of ticket' => 'Verantwortlichen des Tickets ndern',
# Template: AgentTicketSearch
'Ticket Search' => 'Ticket-Suche',
'Profile' => 'Profil',
'Search-Template' => 'Such-Vorlage',
'TicketFreeText' => 'TicketFreeText',
'Created in Queue' => 'Erstellt in Queue',
'Result Form' => 'Ergebnis-Ansicht',
'Save Search-Profile as Template?' => 'Speichere Such-Profil als Vorlage?',
'Yes, save it with name' => 'Ja, speichere unter dem Namen',
# Template: AgentTicketSearchResult
'Search Result' => 'Such-Ergebnis',
'Change search options' => 'Such-Optionen ndern',
# Template: AgentTicketSearchResultShort
'U' => 'U',
'D' => 'D',
# Template: AgentTicketStatusView
'Ticket Status View' => 'Ticket Status Ansicht',
'Open Tickets' => 'Offene Tickets',
'Locked' => 'Sperre',
# Template: AgentTicketZoom
# Template: AgentWindowTab
# Template: Copyright
# Template: css
# Template: customer-css
# Template: CustomerAccept
# Template: CustomerCalendarSmallIcon
# Template: CustomerError
'Traceback' => 'Traceback',
# Template: CustomerFooter
'Powered by' => 'Powered by',
# Template: CustomerFooterSmall
# Template: CustomerHeader
# Template: CustomerHeaderSmall
# Template: CustomerLogin
'Login' => 'Login',
'Lost your password?' => 'Passwort verloren?',
'Request new password' => 'Neues Passwort beantragen',
'Create Account' => 'Zugang erstellen',
# Template: CustomerNavigationBar
'Welcome %s' => 'Griasde %s',
# Template: CustomerPreferencesForm
# Template: CustomerStatusView
# Template: CustomerTicketMessage
# Template: CustomerTicketPrint
# Template: CustomerTicketSearch
'Times' => 'Zeiten',
'No time settings.' => 'Keine Zeit-Einstellungen.',
# Template: CustomerTicketSearchResultCSV
# Template: CustomerTicketSearchResultPrint
# Template: CustomerTicketSearchResultShort
# Template: CustomerTicketZoom
# Template: CustomerWarning
# Template: Error
'Click here to report a bug!' => 'Klicken Sie hier, um einen Fehler zum berichten!',
# Template: Footer
'Top of Page' => 'Seitenanfang',
# Template: FooterSmall
# Template: Header
# Template: HeaderSmall
# Template: Installer
'Web-Installer' => 'Web-Installer',
'Accept license' => 'Lizenz akzeptieren',
'Don\'t accept license' => 'Lizenz _nicht_ akzeptieren',
'Admin-User' => 'Admin-Leid',
'Admin-Password' => 'Admin-Passwort',
'your MySQL DB should have a root password! Default is empty!' => 'Deine MySQL DB sollte ein Root Passwort haben! Voreingestellt ist keines!',
'Database-User' => 'Datenbank-Leid',
'default \'hot\'' => 'voreingestellt \'hot\'',
'DB connect host' => 'DB Verbindungs-Host',
'Database' => 'Datenbank',
'false' => 'false',
'SystemID' => 'SystemID',
'(The identify of the system. Each ticket number and each http session id starts with this number)' => '(Das Kennzeichnen des Systems. Jede Ticketnummer und http-Sitzung beginnt mit dieser Kennung)',
'System FQDN' => 'System FQDN',
'(Full qualified domain name of your system)' => '(Voll qualifizierter Domain-Name des Systems)',
'AdminEmail' => 'AdminE-Mail',
'(Email of the system admin)' => '(E-Mail des System-Administrators)',
'Organization' => 'Organisation',
'Log' => 'Log',
'LogModule' => 'LogModule',
'(Used log backend)' => '(Benutztes Log Backend)',
'Logfile' => 'Logdatei',
'(Logfile just needed for File-LogModule!)' => '(Logfile nur bentigt fr File-LogModule!)',
'Webfrontend' => 'Web-Oberflche',
'Default Charset' => 'Standard-Zeichensatz',
'Use utf-8 it your database supports it!' => 'Benutzen Sie utf-8 nur, wenn Ihre Datenbank es untersttzt!',
'Default Language' => 'Standard-Sprache',
'(Used default language)' => '(Standardwert fr die Sprache)',
'CheckMXRecord' => 'CheckMXRecord',
'(Checks MX recordes of used email addresses by composing an answer. Don\'t use CheckMXRecord if your OTRS machine is behinde a dial-up line $!)' => '(berprfen des MX-Eintrags der benutzen E-Mail-Adressen im Verfassen-Fenster. Benutzen Sie CheckMXRecord nicht, wenn Ihr OTRS hinter einer Whlleitung ist!)',
'To be able to use OTRS you have to enter the following line in your command line (Terminal/Shell) as root.' => 'Um OTRS nutzen zum knnen, mssen die die folgenden Zeilen als root in die Befehlszeile (Terminal/Shell) eingeben.',
'Restart your webserver' => 'Starte Deinen Webserver neu.',
'After doing so your OTRS is up and running.' => 'Danach luft Dein OTRS.',
'Start page' => 'Startseite',
'Have a lot of fun!' => 'Viel Spa!',
'Your OTRS Team' => 'Dein OTRS-Team',
# Template: Login
'Welcome to %s' => 'Griasde zum %s',
# Template: Motd
# Template: NoPermission
'No Permission' => 'Keine Berechtigung',
# Template: Notify
'Important' => 'Wichtig',
# Template: PrintFooter
'URL' => 'URL',
# Template: PrintHeader
'printed by' => 'gedruckt von',
# Template: Redirect
# Template: Test
'OTRS Test Page' => 'OTRS Testseite',
'Counter' => 'Zhler',
# Template: Warning
# Misc
'Create Database' => 'Datenbank erstellen',
'verified' => 'verifiziert',
'File-Name' => 'Datei-Dateiname',
'Ticket Number Generator' => 'Ticketnummer Generator',
'(Ticket identifier. Some people want toset this to e. g. \'Ticket#\', \'Call#\' or \'MyTicket#\')' => '(Ticket Kennzeichnen. Z.B. \'Ticket#\', \'Call#\' oder \'MyTicket#\')',
'Create new Phone Ticket' => 'Neues Telefon-Ticket erstellen',
'In this way you can directly edit the keyring configured in Kernel/Config.pm.' => 'Auf diesem Wege knnen Sie den Keyring in Kernel/Config.pm direkt verndern',
'A message should have a To: recipient!' => 'Eine Nachricht sollte einen Empfnger im Feld An: haben!',
'Site' => 'Seite',
'Customer history search (e. g. "ID342425").' => 'Kundan-Historie-Suche (z. B. "ID342425").',
'for agent firstname' => 'fr Vorname des Agents',
'Close!' => 'Schlieen!',
'Reporter' => 'Melder',
'Process-Path' => 'Prozess-Path',
'The message being composed has been closed. Exiting.' => 'Die eschtaide Nachricht wurde geschlossen.',
'to get the realname of the sender (if given)' => 'Um den Realnamen des Senders zum erhalten (wenn mglich)',
'FAQ Search Result' => 'FAQ Suchergebnis',
'Notification (Customer)' => 'Benachrichtigung (Kunda)',
'Select Source (for add)' => 'Quelle auswhlen (zum Dazua doa)',
'Node-Name' => 'Node-Name',
'Options of the ticket data (e. g. <OTRS_TICKET_Number>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)' => 'EInstellungen der Ticketdaten (z. B. <OTRS_TICKET_Number>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)',
'Home' => 'Home',
'Workflow Groups' => 'Workflow Gruppen',
'Current Impact Rating' => 'aktuelles Schadenspotential',
'Config options (e. g. <OTRS_CONFIG_HttpType>)' => 'Konfig Optionen (z. B. <OTRS_CONFIG_HttpType>)',
'FAQ System History' => 'FAQ System Historie',
'customer realname' => 'Wirklicher Kundanname',
'Pending messages' => 'Wartende Nachrichten',
'Modules' => 'Module',
'for agent login' => 'fr Agent Login',
'Keyword' => 'Schlsselwort',
'Reference' => 'Referenz(en)',
'with' => 'mit',
'Close type' => 'Art des Schlieens',
'DB Admin User' => 'DB Admin Leid',
'for agent user id' => 'fr Agent UserID',
'sort upward' => 'aufwrts sortieren',
'Classification' => 'Klassifizierung',
'Change user <-> group settings' => 'ndern der Leid <-> Gruppen Einstellungen',
'next step' => 'Nchster Schritt',
'Customer history search' => 'Kundan-Historie-Suche',
'not verified' => 'nicht verifiziert',
'Stat#' => 'Statistik Nr.',
'Create new database' => 'Nei Datenbank erstellen',
'Year' => 'Jahr',
'A message must be spell checked!' => 'Eine Nachricht muss auf Rechtschreibung berprft werden!',
'X-axis' => 'X-Achse',
'Your email with ticket number "<OTRS_TICKET>" is bounced to "<OTRS_BOUNCE_TO>". Contact this address for further information.' => 'Die E-Mail mit der Ticketnummer "<OTRS_TICKET>" ist an "<OTRS_BOUNCE_TO>" gebounced. Kontaktieren Sie diese Adresse fr weitere Nachfragen.',
'A message should have a body!' => 'Eine Nachricht sollte einen Body haben!',
'All Agents' => 'Alle Agenten',
'Keywords' => 'Schlsselwrter',
'No * possible!' => 'Kein "*" mglich!',
'Load' => 'Laden',
'Change Time' => 'Gendert',
'Options of the current user who requested this action (e. g. <OTRS_CURRENT_USERFIRSTNAME>)' => 'Einstellungen fr den Leid, der diese Aktion ausgelst hat (z. B. <OTRS_CURRENT_USERFIRSTNAME>)',
'Message for new Owner' => 'Nachricht an neuen Besitzer',
'to get the first 5 lines of the email' => 'Um die ersten 5 Zeilen der E-Mail zum erhalten',
'OTRS DB Password' => 'OTRS DB Passwort',
'Last update' => 'Letzte nderungen',
'not rated' => 'nicht bewertet',
'to get the first 20 character of the subject' => 'Um die ersten 20 Zeichen des Betreffs zum erhalten',
'DB Admin Password' => 'DB Admin Passwort',
'Drop Database' => 'Datenbank weg rama',
'Options of the current customer user data (e. g. <OTRS_CUSTOMER_DATA_UserFirstname>)' => 'Die Daten der Kundanbenutzer (z. B. <OTRS_CUSTOMER_DATA_UserFirstname>)',
'Pending type' => 'Warten auf',
'Comment (internal)' => 'Kommentar (intern)',
'Ticket owner options (e. g. <OTRS_OWNER_USERFIRSTNAME>)' => 'Ticket Besitzer Einstellungen (z. B. <OTRS_OWNER_USERFIRSTNAME>)',
'This window must be called from compose window' => 'Dieses Fenster muss ber das Verfassen-Fenster aufgerufen werden',
'User-Number' => 'Leid-Nummer',
'You need min. one selected Ticket!' => 'Bentigt min. ein ausgewhltes Ticket!',
'Options of the ticket data (e. g. <OTRS_TICKET_Number>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)' => 'Optionen von Ticket Daten (z. B. <OTRS_TICKET_Number>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)',
'(Used ticket number format)' => '(Benutztes Format fr die Ticketnummer)',
'Fulltext' => 'Volltext',
'Month' => 'Monat',
'Node-Address' => 'Node-Adresse',
'All Agent variables.' => 'Alle Agentenvariabln',
' (work units)' => ' (Arbeitseinheiten)',
'You use the DELETE option! Take care, all deleted Tickets are lost!!!' => 'Sie benutzen die LSCHEN Option! Bitte bedenken Sie, dass dann diese Tickets verloren sind!',
'All Customer variables like defined in config option CustomerUser.' => 'Alle Kundanvariablen wie definiert im den Konfigoptionen CustomerUser.',
'for agent lastname' => 'fr Nachname des Agents',
'Options of the current user who requested this action (e. g. <OTRS_CURRENT_UserFirstname>)' => 'Informationen ber den Leid, der die Aktion gerade anfragt (z. B. <OTRS_CURRENT_UserFirstname>)',
'Reminder messages' => 'Nachrichten zur Erinnerung',
'A message should have a subject!' => 'Eine Nachricht sollte einen Betreff haben!',
'TicketZoom' => 'Ticket Inhalt',
'Don\'t forget to add a new user to groups!' => 'Ein neuer Leid muss einer Gruppe zugewiesen werden!',
'You need a email address (e. g. customer@example.com) in To:!' => 'Im Feld An: wird eine E-Mail-Adresse (z. B. kunde@example.com) bentigt!',
'CreateTicket' => 'Ticket Erstellen',
'unknown' => 'unbekannt',
'You need to account time!' => 'Zeit muss berechnet werden!',
'System Settings' => 'System Einstellungen',
'Finished' => 'Basst',
'Imported' => 'Importiert',
'unread' => 'ungelesen',
'Split' => 'Teilen',
'All messages' => 'Alle Nachrichten',
'System Status' => 'System Status',
'Options of the ticket data (e. g. <OTRS_TICKET_TicketNumber>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)' => 'Optionen des Tickets (z. B. <OTRS_TICKET_TicketNumber>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)',
'A article should have a title!' => 'Ein Artikel sollte einen Titel haben!',
'Event' => 'Ereignis',
'Config options (e. g. <OTRS_CONFIG_HttpType>)' => 'Einstellungen (z. B.<OTRS_CONFIG_HttpType>)',
'Imported by' => 'Importiert von',
'Ticket owner options (e. g. <OTRS_OWNER_UserFirstname>)' => 'Informationen ber den Besitzer des Tickets (z. B. <OTRS_OWNER_UserFirstname>)',
'read' => 'gelesen',
'Product' => 'Produkt(e)',
'Name is required!' => 'Name wird bentigt!',
'kill all sessions' => 'Alle Sitzungen weg rama',
'to get the from line of the email' => 'Um die From: Zeile zum erhalten',
'Solution' => 'Lsung',
'QueueView' => 'Queue-Ansicht',
'My Queue' => 'Meine Queue',
'Instance' => 'Instanz',
'Day' => 'Tag',
'Service-Name' => 'Service-Name',
'Welcome to OTRS' => 'Griasde zum OTRS',
'tmp_lock' => 'gesperrt (temporr)',
'modified' => 'gendert',
'Delete old database' => 'Alte Datenbank weg rama',
'sort downward' => 'abwrts sortieren',
'You need to use a ticket number!' => 'Bitte Ticket-Nummer benutzen!',
'Watcher' => 'Beobachter',
'send' => 'Senden',
'Note Text' => 'Notiztext',
'Options of the current customer user data (e. g. <OTRS_CUSTOMER_DATA_USERFIRSTNAME>)' => 'Einstellungen der Leiddaten des aktuellen Leids ((z. B. <OTRS_CUSTOMER_DATA_USERFIRSTNAME>).',
'System State Management' => 'Status Verwaltung',
'PhoneView' => 'Telefon-Ansicht',
'User-Name' => 'Leid-Name',
'File-Path' => 'Datei-Dateipfad',
'Modified' => 'Verndert',
'Ticket selected for bulk action!' => 'Ticket fr Bulk-Aktion Ausgewhlt',
};
# $$STOP$$
return;
}
1;
|