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
|
# --
# Kernel/Language/bb.pm - provides bavarian language translation
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: bb.pm,v 1.11 2005/07/28 20:32:31 martin 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.txt.
# --
package Kernel::Language::bb;
use strict;
use vars qw($VERSION);
$VERSION = '$Revision: 1.11 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
# --
sub Data {
my $Self = shift;
my %Param = @_;
my %Hash = ();
# $$START$$
# Last translation file sync: Thu Jul 28 22:31:25 2005
# 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} = '%A %D %B %T %Y';
$Self->{DateInputFormat} = '%D.%M.%Y';
$Self->{DateInputFormatLong} = '%D.%M.%Y - %T';
$Self->{Translation} = {
# Template: AAABase
'Yes' => 'Ja',
'No' => 'Nein',
'yes' => 'ja',
'no' => 'kein',
'Off' => 'Aus',
'off' => 'aus',
'On' => 'Ein',
'on' => 'ein',
'top' => 'hoch',
'end' => 'runter',
'Done' => 'Fertig',
'Cancel' => 'Abbrechen',
'Reset' => 'Rcksetzen',
'last' => '',
'before' => '',
'day' => 'Tag',
'days' => 'Tage',
'day(s)' => '',
'hour' => 'Stunde',
'hours' => 'Stunden',
'hour(s)' => '',
'minute' => 'Minute',
'minutes' => 'Minutn',
'minute(s)' => '',
'month' => '',
'months' => '',
'month(s)' => '',
'week' => '',
'week(s)' => '',
'year' => '',
'years' => '',
'year(s)' => '',
'wrote' => 'schrieb',
'Message' => 'Nachricht',
'Error' => 'Fehler',
'Bug Report' => 'Fehla berichten',
'Attention' => 'Achtung',
'Warning' => 'Warnung',
'Module' => 'Modul',
'Modulefile' => 'Moduldatei',
'Subfunction' => 'Unterfunktion',
'Line' => 'Zeile',
'Example' => 'Beispiel',
'Examples' => 'Beispiele',
'valid' => '',
'invalid' => '',
'invalid-temporarily' => '',
' 2 minutes' => ' 2 Minutn',
' 5 minutes' => ' 5 Minutn',
' 7 minutes' => ' 7 Minutn',
'10 minutes' => '10 Minutn',
'15 minutes' => '15 Minutn',
'Mr.' => '',
'Mrs.' => '',
'Next' => '',
'Back' => 'zurck',
'Next...' => '',
'...Back' => '',
'-none-' => '',
'none' => 'koane',
'none!' => 'koane Angabe!',
'none - answered' => 'koane - beantwortet',
'please do not edit!' => 'Bitte nicht verndern!',
'AddLink' => 'Link hinzufgen',
'Link' => '',
'Linked' => '',
'Link (Normal)' => '',
'Link (Parent)' => '',
'Link (Child)' => '',
'Normal' => '',
'Parent' => '',
'Child' => '',
'Hit' => 'Treffa',
'Hits' => 'Treffa',
'Text' => '',
'Lite' => 'Einfach',
'User' => 'Benutzer',
'Username' => 'Benutzername',
'Language' => 'Sprache',
'Languages' => 'Sprachen',
'Password' => 'Passwort',
'Salutation' => 'Anrede',
'Signature' => 'Signatur',
'Customer' => 'Kunde',
'CustomerID' => 'Kunden#',
'CustomerIDs' => '',
'customer' => '',
'agent' => '',
'system' => '',
'Customer Info' => 'Kunden Info',
'go!' => 'start!',
'go' => 'start',
'All' => '',
'all' => 'alle',
'Sorry' => 'Bedauere',
'update!' => 'aktualisieren!',
'update' => 'aktualisieren',
'Update' => '',
'submit!' => 'bermitteln!',
'submit' => 'bermitteln',
'Submit' => '',
'change!' => 'ndern!',
'Change' => 'ndern',
'change' => 'ndern',
'click here' => 'klick hier',
'Comment' => 'Kommentar',
'Valid' => 'Gltig',
'Invalid Option!' => '',
'Invalid time!' => '',
'Invalid date!' => '',
'Name' => '',
'Group' => 'Gruppe',
'Description' => 'Beschreibung',
'description' => 'Beschreibung',
'Theme' => '',
'Created' => 'Erstellt',
'Created by' => '',
'Changed' => '',
'Changed by' => '',
'Search' => '',
'and' => '',
'between' => '',
'Fulltext Search' => '',
'Data' => '',
'Options' => 'Optionen',
'Title' => '',
'Item' => '',
'Delete' => '',
'Edit' => '',
'View' => 'Ansicht',
'Number' => '',
'System' => '',
'Contact' => 'Kontakt',
'Contacts' => '',
'Export' => '',
'Up' => '',
'Down' => '',
'Add' => '',
'Category' => '',
'Viewer' => '',
'New message' => 'Neue Nachricht',
'New message!' => 'Neue Nachricht!',
'Please answer this ticket(s) to get back to the normal queue view!' => 'Bitte beantworten Sie dieses Ticket um in die normale queue view zurck zu kommen!',
'You got new message!' => '',
'You have %s new message(s)!' => '%s neue Nachricht(en) bekommen!',
'You have %s reminder ticket(s)!' => '%s Erinnerungs-Ticket(s)!',
'The recommended charset for your language is %s!' => 'Der empfohlene Charset fr Ihre Sprache ist %s!',
'Passwords dosn\'t match! Please try it again!' => '',
'Password is already in use! Please use an other password!' => '',
'Password is already used! Please use an other password!' => '',
'You need to activate %s first to use it!' => '',
'No suggestions' => 'koane Vorschlge',
'Word' => 'Wort',
'Ignore' => 'Ignorieren',
'replace with' => 'ersetzen mit',
'Welcome to OTRS' => 'Willkommen zu OTRS',
'There is no account with that login name.' => 'Es existiert kein Login mit diesen Namen.',
'Login failed! Your username or password was entered incorrectly.' => 'Login fehlgeschlagen! Benutzername oder Passwort falsch.',
'Please contact your admin' => 'Bitte kontaktieren Sie Ihren Admin',
'Logout successful. Thank you for using OTRS!' => 'Abmelden erfolgreich! Danke fr die Benutzung von OTRS!',
'Invalid SessionID!' => '',
'Feature not active!' => '',
'License' => '',
'Take this Customer' => '',
'Take this User' => '',
'possible' => '',
'reject' => '',
'Facility' => '',
'Timeover' => '',
'Pending till' => '',
'Don\'t work with UserID 1 (System account)! Create new users!' => '',
'Dispatching by email To: field.' => '',
'Dispatching by selected Queue.' => '',
'No entry found!' => '',
'Session has timed out. Please log in again.' => '',
'No Permission!' => '',
'To: (%s) replaced with database email!' => '',
'Cc: (%s) added database email!' => '',
'(Click here to add)' => '',
'Preview' => '',
'Added User "%s"' => '',
'Contract' => '',
'Online Customer: %s' => '',
'Online Agent: %s' => '',
'Calendar' => '',
'File' => '',
'Filename' => '',
'Type' => '',
'Size' => '',
'Upload' => '',
'Directory' => '',
'Signed' => '',
'Sign' => '',
'Crypted' => '',
'Crypt' => '',
# Template: AAAMonth
'Jan' => '',
'Feb' => '',
'Mar' => 'Mr',
'Apr' => '',
'May' => 'Mai',
'Jun' => '',
'Jul' => '',
'Aug' => '',
'Sep' => '',
'Oct' => 'Okt',
'Nov' => '',
'Dec' => 'Dez',
# Template: AAANavBar
'Admin-Area' => 'Admin-Bereich',
'Agent-Area' => '',
'Ticket-Area' => '',
'Logout' => 'Abmelden',
'Agent Preferences' => '',
'Preferences' => 'Einstellungen',
'Agent Mailbox' => '',
'Stats' => 'Statistik',
'Stats-Area' => '',
'FAQ-Area' => '',
'FAQ' => '',
'FAQ-Search' => '',
'FAQ-Article' => '',
'New Article' => '',
'FAQ-State' => '',
'Admin' => '',
'A web calendar' => '',
'WebMail' => '',
'A web mail client' => '',
'FileManager' => '',
'A web file manager' => '',
'Artefact' => '',
'Incident' => '',
'Advisory' => '',
'WebWatcher' => '',
'Customer Users' => '',
'Customer Users <-> Groups' => '',
'Users <-> Groups' => '',
'Roles' => '',
'Roles <-> Users' => '',
'Roles <-> Groups' => '',
'Salutations' => '',
'Signatures' => '',
'Email Addresses' => 'Email-Adressen',
'Notifications' => '',
'Category Tree' => '',
'Admin Notification' => '',
# Template: AAAPreferences
'Preferences updated successfully!' => 'Update der Benutzereinstellungen erfolgreich!',
'Mail Management' => '',
'Frontend' => '',
'Other Options' => 'Andere Optionen',
'Change Password' => 'Passwort ndern',
'New password' => 'Neis Passwort',
'New password again' => 'Neis 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' => '',
'Select your default spelling dictionary.' => '',
'Max. shown Tickets a page in Overview.' => '',
'Can\'t update password, passwords dosn\'t match! Please try it again!' => '',
'Can\'t update password, invalid characters!' => '',
'Can\'t update password, need min. 8 characters!' => '',
'Can\'t update password, need 2 lower and 2 upper characters!' => '',
'Can\'t update password, need min. 1 digit!' => '',
'Can\'t update password, need min. 2 characters!' => '',
'Password is needed!' => '',
# Template: AAATicket
'Lock' => 'Ziehen',
'Unlock' => 'Freigeben',
'History' => '',
'Zoom' => 'Inhalt',
'Age' => 'Alter',
'Bounce' => '',
'Forward' => 'Weiterleiten',
'From' => 'Von',
'To' => 'An',
'Cc' => '',
'Bcc' => '',
'Subject' => 'Betreff',
'Move' => 'Verschieben',
'Queue' => '',
'Priority' => 'Prioritt',
'State' => 'Status',
'Compose' => 'Verfassen',
'Pending' => 'Warten',
'Owner' => 'Besitzer',
'Owner Update' => '',
'Sender' => '',
'Article' => 'Artikel',
'Ticket' => '',
'Createtime' => 'Erstellt am',
'plain' => 'klar',
'eMail' => '',
'email' => 'eMail',
'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 erstellt, 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 zu bekommen',
'This is a HTML email. Click here to show it.' => 'Dies ist eine HTML eMail. Do klicken um sie anzusehen.',
'Free Fields' => '',
'Merge' => '',
'closed successful' => 'erfolgreich geschlossen',
'closed unsuccessful' => 'erfolglos geschlossen',
'new' => 'neu',
'open' => 'offen',
'closed' => '',
'removed' => 'entfernt',
'pending reminder' => '',
'pending auto close+' => '',
'pending auto close-' => '',
'email-external' => 'Email an extern',
'email-internal' => 'Email an intern',
'note-external' => 'Notiz fr extern',
'note-internal' => 'Notiz fr intern',
'note-report' => 'Notiz fr reporting',
'phone' => 'Telefon',
'sms' => '',
'webrequest' => 'Webanfrage',
'lock' => '',
'unlock' => 'freigeben',
'very low' => 'sehr niedrig',
'low' => 'niedrig',
'normal' => '',
'high' => 'hoch',
'very high' => 'sehr hoch',
'1 very low' => '',
'2 low' => '',
'3 normal' => '',
'4 high' => '',
'5 very high' => '',
'Ticket "%s" created!' => '',
'Ticket Number' => '',
'Ticket Object' => '',
'No such Ticket Number "%s"! Can\'t link it!' => '',
'Don\'t show closed Tickets' => '',
'Show closed Tickets' => '',
'Email-Ticket' => '',
'Create new Email Ticket' => '',
'Phone-Ticket' => '',
'Create new Phone Ticket' => '',
'Search Tickets' => '',
'Edit Customer Users' => '',
'Bulk-Action' => '',
'Bulk Actions on Tickets' => '',
'Send Email and create a new Ticket' => '',
'Overview of all open Tickets' => '',
'Locked Tickets' => 'Eigene Tickets',
'Lock it to work on it!' => '',
'Unlock to give it back to the queue!' => '',
'Shows the ticket history!' => '',
'Print this ticket!' => '',
'Change the ticket priority!' => '',
'Change the ticket free fields!' => '',
'Link this ticket to an other objects!' => '',
'Change the ticket owner!' => '',
'Change the ticket customer!' => '',
'Add a note to this ticket!' => '',
'Merge this ticket!' => '',
'Set this ticket to pending!' => '',
'Close this ticket!' => '',
'Look into a ticket!' => '',
'Delete this ticket!' => '',
'Mark as Spam!' => '',
'My Queues' => '',
'Shown Tickets' => '',
'New ticket notification' => 'Mitteilung bei neuem Ticket',
'Send me a notification if there is a new ticket in "My 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 Kunden eine Nachfrage stellt uns ich der Eigner bin.',
'Ticket lock timeout notification' => 'Mitteilung bei lock Zeitberschreitung',
'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' => 'Move Mitteilung',
'Send me a notification if a ticket is moved into one of "My Queues".' => '',
'Your queue selection of your favorite queues. You also get notified about this queues via email if enabled.' => '',
'Custom Queue' => '',
'QueueView refresh time' => 'Queue-Ansicht refresh Zeit',
'Screen after new ticket' => '',
'Select your screen after creating a new ticket.' => '',
'Closed Tickets' => '',
'Show closed tickets.' => '',
'Max. shown Tickets a page in QueueView.' => '',
'Responses' => 'Antworten',
'Responses <-> Queue' => 'Antworten <-> Queues',
'Auto Responses' => 'Auto-Antworten',
'Auto Responses <-> Queue' => '',
'Attachments <-> Responses' => '',
'History::Move' => 'Ticket moved into Queue "%s" (%s) from Queue "%s" (%s).',
'History::NewTicket' => 'New Ticket [%s] created (Q=%s;P=%s;S=%s).',
'History::FollowUp' => 'FollowUp for [%s]. %s',
'History::SendAutoReject' => 'AutoReject sent to "%s".',
'History::SendAutoReply' => 'AutoReply sent to "%s".',
'History::SendAutoFollowUp' => 'AutoFollowUp sent to "%s".',
'History::Forward' => 'Forwarded to "%s".',
'History::Bounce' => 'Bounced to "%s".',
'History::SendAnswer' => 'Email sent to "%s".',
'History::SendAgentNotification' => '"%s"-notification sent to "%s".',
'History::SendCustomerNotification' => 'Notification sent to "%s".',
'History::EmailAgent' => 'Email sent to customer.',
'History::EmailCustomer' => 'Added email. %s',
'History::PhoneCallAgent' => 'Agent called customer.',
'History::PhoneCallCustomer' => 'Customer called us.',
'History::AddNote' => 'Added note (%s)',
'History::Lock' => 'Locked ticket.',
'History::Unlock' => 'Unlocked ticket.',
'History::TimeAccounting' => '%s time unit(s) accounted. Now total %s time unit(s).',
'History::Remove' => '%s',
'History::CustomerUpdate' => 'Updated: %s',
'History::PriorityUpdate' => 'Changed priority from "%s" (%s) to "%s" (%s).',
'History::OwnerUpdate' => 'New owner is "%s" (ID=%s).',
'History::LoopProtection' => 'Loop-Protection! No auto-response sent to "%s".',
'History::Misc' => '%s',
'History::SetPendingTime' => 'Updated: %s',
'History::StateUpdate' => 'Old: "%s" New: "%s"',
'History::TicketFreeTextUpdate' => 'Updated: %s=%s;%s=%s;',
'History::WebRequestCustomer' => 'Customer request via web.',
'History::TicketLinkAdd' => '',
'History::TicketLinkDelete' => '',
# Template: AAAWeekDay
'Sun' => 'Son',
'Mon' => '',
'Tue' => 'Die',
'Wed' => 'Mit',
'Thu' => 'Don',
'Fri' => 'Fre',
'Sat' => 'Sam',
# Template: AdminAttachmentForm
'Attachment Management' => '',
# Template: AdminAutoResponseForm
'Auto Response Management' => 'Auto-Antworten Verwaltung',
'Response' => 'Antwort',
'Auto Response From' => 'Auto-Antwort Form',
'Note' => 'Notiz',
'Useable options' => 'Benutzbare Optionen',
'to get the first 20 character of the subject' => 'Um die ersten 20 Zeichen des Betreffs zu bekommen',
'to get the first 5 lines of the email' => 'Um die ersten 5 Zeilen der eMail zu bekommen',
'to get the from line of the email' => '',
'to get the realname of the sender (if given)' => '',
'Options of the ticket data (e. g. <OTRS_TICKET_Number>, <OTRS_TICKET_ID>, <OTRS_TICKET_Queue>, <OTRS_TICKET_State>)' => '',
# Template: AdminCustomerUserForm
'The message being composed has been closed. Exiting.' => 'Die erstellte Nachricht wurde geschlossen.',
'This window must be called from compose window' => 'Dieses Fenster muss ber das Verfassen-Fenster aufgerufen werden',
'Customer User Management' => 'Kunden-Benutzer Management',
'Search for' => '',
'Result' => '',
'Select Source (for add)' => '',
'Source' => '',
'This values are read only.' => '',
'This values are required.' => '',
'Customer user will be needed to have an customer histor and to to login via customer panels.' => '',
# Template: AdminCustomerUserGroupChangeForm
'Customer Users <-> Groups Management' => '',
'Change %s settings' => 'ndern der %s Einstellungen',
'Select the user:group permissions.' => '',
'If nothing is selected, then there are no permissions in this group (tickets will not be available for the user).' => '',
'Permission' => '',
'ro' => '',
'Read only access to the ticket in this group/queue.' => '',
'rw' => '',
'Full read and write access to the tickets in this group/queue.' => '',
# Template: AdminCustomerUserGroupForm
# Template: AdminEmail
'Message sent to' => 'Nachricht gesendet an',
'Recipents' => 'Empfnger',
'Body' => '',
'send' => '',
# Template: AdminGenericAgent
'GenericAgent' => '',
'Job-List' => '',
'Last run' => '',
'Run Now!' => '',
'x' => '',
'Save Job as?' => '',
'Is Job Valid?' => '',
'Is Job Valid' => '',
'Schedule' => '',
'Fulltext-Search in Article (e. g. "Mar*in" or "Baue*")' => '',
'(e. g. 10*5155 or 105658*)' => '',
'(e. g. 234321)' => '',
'Customer User Login' => '',
'(e. g. U5150)' => '',
'Agent' => '',
'TicketFreeText' => '',
'Ticket Lock' => '',
'Times' => '',
'No time settings.' => '',
'Ticket created' => '',
'Ticket created between' => '',
'New Priority' => '',
'New Queue' => '',
'New State' => '',
'New Agent' => '',
'New Owner' => '',
'New Customer' => '',
'New Ticket Lock' => '',
'CustomerUser' => 'Kunden-Benutzer',
'Add Note' => 'Notiz anheften',
'CMD' => '',
'This command will be executed. ARG[0] will be the ticket number. ARG[1] the ticket id.' => '',
'Delete tickets' => '',
'Warning! This tickets will be removed from the database! This tickets are lost!' => '',
'Modules' => '',
'Param 1' => '',
'Param 2' => '',
'Param 3' => '',
'Param 4' => '',
'Param 5' => '',
'Param 6' => '',
'Save' => '',
# Template: AdminGroupForm
'Group Management' => 'Gruppen Verwaltung',
'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, ...).' => 'Erstelle neue Gruppen um die Zugriffe fr verschieden Agent-Gruppen zu definieren (z. B. Einkaufs-Abteilung, Support-Abteilung, Verkaufs-Abteilung, ...).',
'It\'s useful for ASP solutions.' => 'Sehr ntzlich fr ASP-Lsungen.',
# Template: AdminLog
'System Log' => '',
'Time' => '',
# Template: AdminNavigationBar
'Users' => '',
'Groups' => 'Gruppen',
'Misc' => '',
# Template: AdminNotificationForm
'Notification Management' => '',
'Notification' => '',
'Notifications are sent to an agent or a customer.' => '',
'Config options (e. g. <OTRS_CONFIG_HttpType>)' => '',
'Ticket owner options (e. g. <OTRS_OWNER_USERFIRSTNAME>)' => '',
'Options of the current user who requested this action (e. g. <OTRS_CURRENT_USERFIRSTNAME>)' => '',
'Options of the current customer user data (e. g. <OTRS_CUSTOMER_DATA_USERFIRSTNAME>)' => '',
# Template: AdminPackageManager
'Package Manager' => '',
'Uninstall' => '',
'Verion' => '',
'Do you really want to uninstall this package?' => '',
'Install' => '',
'Package' => '',
'Online Repository' => '',
'Version' => '',
'Vendor' => '',
'Upgrade' => '',
'Local Repository' => '',
'Status' => '',
'Overview' => '',
'Download' => '',
'Rebuild' => '',
'Reinstall' => '',
# Template: AdminPGPForm
'PGP Management' => '',
'Identifier' => '',
'Bit' => '',
'Key' => 'Schlssel',
'Fingerprint' => '',
'Expires' => '',
'In this way you can directly edit the keyring configured in SysConfig.' => '',
# Template: AdminPOP3Form
'POP3 Account Management' => '',
'Host' => 'Rechner',
'Trusted' => '',
'Dispatching' => '',
'All incoming emails with one account will be dispatched in the selected queue!' => 'Einkommende emails von POP3 Accounts 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.' => '',
# Template: AdminPostMasterFilter
'PostMaster Filter Management' => '',
'Filtername' => '',
'Match' => '',
'Header' => '',
'Value' => '',
'Set' => '',
'Do dispatch or filter incoming emails based on email X-Headers! RegExp is also possible.' => '',
'If you use RegExp, you also can use the matched value in () as [***] in \'Set\'.' => '',
# Template: AdminQueueAutoResponseForm
'Queue <-> Auto Responses Management' => '',
# Template: AdminQueueAutoResponseTable
# Template: AdminQueueForm
'Queue Management' => 'Queue Verwaltung',
'Sub-Queue of' => '',
'Unlock timeout' => 'Freigabe Zeitberschreitung',
'0 = no unlock' => '0 = kein Unlock',
'Escalation time' => 'Eskalationszeit',
'0 = no escalation' => '0 = koane Eskalation',
'Follow up Option' => '',
'Ticket lock after a follow up' => 'Ticket locken nache einem follow up',
'Systemaddress' => 'System-Adresse',
'Customer Move Notify' => '',
'Customer State Notify' => '',
'Customer Owner Notify' => '',
'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 gelocked jedoch nicht in dieser Zeit beantwortet, wird das Ticket automatisch unlocked.',
'If a ticket will not be answered in thos time, just only this ticket will be shown.' => 'Wird ein Ticket nicht in jener Zeit beantortet, 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 Kunde jedoch ein follow up sendet, wird das ticket fr den alten Eigner gelocked.',
'Will be the sender address of this queue for email answers.' => 'Absende Adresse fr eMails aus dieser Queue.',
'The salutation for email answers.' => 'Die Anrede fr eMail Antworten.',
'The signature for email answers.' => 'Die Signatur fr eMail Antworten.',
'OTRS sends an notification email to the customer if the ticket is moved.' => '',
'OTRS sends an notification email to the customer if the ticket state has changed.' => '',
'OTRS sends an notification email to the customer if the ticket owner has changed.' => '',
# Template: AdminQueueResponsesChangeForm
'Responses <-> Queue Management' => '',
# Template: AdminQueueResponsesForm
'Answer' => 'Antwort',
# Template: AdminResponseAttachmentChangeForm
'Responses <-> Attachments Management' => '',
# 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 vorgegebener Text um schneller Antworten an Kundern schreiben zu knnen.',
'Don\'t forget to add a new response a queue!' => 'Eine neue Antwort muss auch einer Queue zugewiesen werden!',
'Next state' => '',
'All Customer variables like defined in config option CustomerUser.' => '',
'The current ticket state is' => '',
'Your email address is new' => '',
# Template: AdminRoleForm
'Role Management' => '',
'Create a role and put groups in it. Then add the role to the users.' => '',
'It\'s useful for a lot of users and groups.' => '',
# Template: AdminRoleGroupChangeForm
'Roles <-> Groups Management' => '',
'move_into' => '',
'Permissions to move tickets into this group/queue.' => '',
'create' => '',
'Permissions to create tickets in this group/queue.' => '',
'owner' => '',
'Permissions to change the ticket owner in this group/queue.' => '',
'priority' => '',
'Permissions to change the ticket priority in this group/queue.' => '',
# Template: AdminRoleGroupForm
'Role' => '',
# Template: AdminRoleUserChangeForm
'Roles <-> Users Management' => '',
'Active' => '',
'Select the role:user relations.' => '',
# Template: AdminRoleUserForm
# Template: AdminSalutationForm
'Salutation Management' => 'Anreden Verwaltung',
'customer realname' => 'echter Kundenname',
'for agent firstname' => 'fr Vorname des Agents',
'for agent lastname' => 'fr Nachname des Agents',
'for agent user id' => '',
'for agent login' => '',
# Template: AdminSelectBoxForm
'Select Box' => '',
'SQL' => '',
'Limit' => '',
'Select Box Result' => 'Select Box Ergebnis',
# Template: AdminSession
'Session Management' => 'Sitzungs Verwaltung',
'Sessions' => '',
'Uniq' => '',
'kill all sessions' => 'Lschen alles Sitzungen',
'Session' => '',
'kill session' => 'Sitzung lschen',
# Template: AdminSignatureForm
'Signature Management' => 'Signatur Verwaltung',
# Template: AdminSMIMEForm
'SMIME Management' => '',
'Add Certificate' => '',
'Add Private Key' => '',
'Secret' => '',
'Hash' => '',
'In this way you can directly edit the certification and private keys in file system.' => '',
# Template: AdminStateForm
'System State Management' => 'System-State Verwaltung',
'State Type' => '',
'Take care that you also updated the default states in you Kernel/Config.pm!' => '',
'See also' => '',
# Template: AdminSysConfig
'SysConfig' => '',
'Group selection' => '',
'Show' => '',
'Download Settings' => '',
'Download all system config changes.' => '',
'Load Settings' => '',
'Subgroup' => '',
'Elements' => '',
# Template: AdminSysConfigEdit
'Config Options' => '',
'Default' => '',
'Content' => '',
'New' => '',
'New Group' => '',
'Group Ro' => '',
'New Group Ro' => '',
'NavBarName' => '',
'Image' => '',
'Prio' => '',
'Block' => '',
'NavBar' => '',
'AccessKey' => '',
# Template: AdminSystemAddressForm
'System Email Addresses Management' => 'System-Email-Adressen Verwaltung',
'Email' => 'eMail',
'Realname' => '',
'All incoming emails with this "Email" (To:) will be dispatched in the selected queue!' => 'Alle eingehenden Emails mit dem "To:" werden in die ausgewhlte Queue einsortiert.',
# Template: AdminUserForm
'User Management' => 'Benutzer Verwaltung',
'Firstname' => 'Vorname',
'Lastname' => 'Nachname',
'User will be needed to handle tickets.' => 'Benutzer werden bentigt um Tickets zu bearbeietn.',
'Don\'t forget to add a new user to groups and/or roles!' => '',
# Template: AdminUserGroupChangeForm
'Users <-> Groups Management' => '',
# Template: AdminUserGroupForm
# Template: AgentBook
'Address Book' => '',
'Return to the compose screen' => 'Zurck zum Verfassen-Fenster',
'Discard all changes and return to the compose screen' => 'Verwerfen aller nderungen und zurck zum Verfassen-Fenster',
# Template: AgentCalendarSmall
# Template: AgentCalendarSmallIcon
# Template: AgentCustomerTableView
# Template: AgentInfo
'Info' => '',
# Template: AgentLinkObject
'Link Object' => '',
'Select' => '',
'Results' => 'Ergebnis',
'Total hits' => 'Treffa gesamt',
'Site' => 'Seite',
'Detail' => '',
# Template: AgentLookup
'Lookup' => '',
# Template: AgentNavigationBar
'Ticket selected for bulk action!' => '',
'You need min. one selected Ticket!' => '',
# Template: AgentPreferencesForm
# Template: AgentSpelling
'Spell Checker' => 'Rechtschreibkontrolle',
'spelling error(s)' => 'Rechtschreibfehler',
'or' => '',
'Apply these changes' => 'nderungen bernehmen',
# Template: AgentTicketBounce
'A message should have a To: recipient!' => 'Eine Nachricht sollte einen Empfnger im An: haben!',
'You need a email address (e. g. customer@example.com) in To:!' => 'Im An-Feld wird eine eMail-Adresse (z. B. kunde@beispiel.de) bentigt!',
'Bounce ticket' => '',
'Bounce to' => 'Bounce an',
'Next ticket state' => 'Nchster Status des Tickets',
'Inform sender' => 'Sender informieren',
'Your email with ticket number "<OTRS_TICKET>" is bounced to "<OTRS_BOUNCE_TO>". Contact this address for further informations.' => '',
'Send mail!' => 'Mail senden!',
# Template: AgentTicketBulk
'A message should have a subject!' => 'Eine Nachricht sollte ein Betreff haben!',
'Ticket Bulk Action' => '',
'Spell Check' => 'Rechtschreibkontrolle',
'Note type' => 'Notiz-Typ',
'Unlock Tickets' => '',
# Template: AgentTicketClose
'A message should have a body!' => '',
'You need to account time!' => '',
'Close ticket' => 'Ticket schlieen',
'Note Text' => 'Notiz Text',
'Close type' => 'Schlieen Type',
'Time units' => 'Zeit-Einheiten',
' (work units)' => ' (arbeits Einheiten)',
# Template: AgentTicketCompose
'A message must be spell checked!' => '',
'Compose answer for ticket' => 'Antwort erstellen fr',
'Attach' => 'Anhngen',
'Pending Date' => '',
'for pending* states' => '',
# Template: AgentTicketCustomer
'Change customer of ticket' => 'ndern des Kunden von Ticket',
'Set customer user and customer id of a ticket' => '',
'Customer User' => 'Kunden Benutzer',
'Search Customer' => '',
'Customer Data' => 'Kunden Daten',
'Customer history' => 'Kunden History',
'All customer tickets.' => '',
# Template: AgentTicketCustomerMessage
'Follow up' => '',
# Template: AgentTicketEmail
'Compose Email' => '',
'new ticket' => 'Neis Ticket',
'Clear To' => '',
'All Agents' => '',
'Termin1' => '',
# Template: AgentTicketForward
'Article type' => 'Artikel-Typ',
# Template: AgentTicketFreeText
'Change free text of ticket' => '',
# Template: AgentTicketHistory
'History of' => 'History von',
# Template: AgentTicketLocked
'Ticket locked!' => 'Ticket gesperrt!',
'Ticket unlock!' => '',
# Template: AgentTicketMailbox
'Mailbox' => '',
'Tickets' => '',
'All messages' => '',
'New messages' => '',
'Pending messages' => '',
'Reminder messages' => '',
'Reminder' => '',
'Sort by' => '',
'Order' => '',
'up' => '',
'down' => '',
# Template: AgentTicketMerge
'You need to use a ticket number!' => '',
'Ticket Merge' => '',
'Merge to' => '',
'Your email with ticket number "<OTRS_TICKET>" is merged to "<OTRS_MERGE_TO_TICKET>".' => '',
# Template: AgentTicketMove
'Queue ID' => '',
'Move Ticket' => '',
'Previous Owner' => '',
# Template: AgentTicketNote
'Add note to ticket' => 'Anheften einer Notiz an Ticket',
'Inform Agent' => '',
'Optional' => '',
'Inform involved Agents' => '',
# Template: AgentTicketOwner
'Change owner of ticket' => 'ndern Eigners von Ticket',
'Message for new Owner' => 'Nachricht an neuen Eigner',
# Template: AgentTicketPending
'Set Pending' => '',
'Pending type' => '',
'Pending date' => '',
# Template: AgentTicketPhone
'Phone call' => 'Angrufa',
# Template: AgentTicketPhoneNew
'Clear From' => '',
# Template: AgentTicketPlain
'Plain' => '',
'TicketID' => '',
'ArticleID' => '',
# Template: AgentTicketPrint
'Ticket-Info' => '',
'Accounted time' => 'Zugewiesene Zeit',
'Escalation in' => '',
'Linked-Object' => '',
'Parent-Object' => '',
'Child-Object' => '',
'by' => '',
# Template: AgentTicketPriority
'Change priority of ticket' => 'Prioritt ndern fr Ticket',
# Template: AgentTicketQueue
'Tickets shown' => 'Tickets gezeigt',
'Page' => '',
'Tickets available' => 'Ticket verfgbar',
'All tickets' => 'Alle Tickets',
'Queues' => '',
'Ticket escalation!' => 'Ticket Eskalation!',
# Template: AgentTicketQueueTicketView
'Your own Ticket' => '',
'Compose Follow up' => '',
'Compose Answer' => 'Antwort erstellen',
'Contact customer' => 'Kunden kontaktieren',
'Change queue' => 'Wechsle Queue',
# Template: AgentTicketQueueTicketViewLite
# Template: AgentTicketSearch
'Ticket Search' => '',
'Profile' => '',
'Search-Template' => '',
'Created in Queue' => '',
'Result Form' => '',
'Save Search-Profile as Template?' => '',
'Yes, save it with name' => '',
'Customer history search' => 'Kunden-History-Suche',
'Customer history search (e. g. "ID342425").' => 'Kunden History Suche (z. B. "ID342425").',
'No * possible!' => 'Kein * mglich!',
# Template: AgentTicketSearchResult
'Search Result' => '',
'Change search options' => '',
# Template: AgentTicketSearchResultPrint
'"}' => '',
# Template: AgentTicketSearchResultShort
'sort upward' => 'Sortierung aufwrts',
'U' => '',
'sort downward' => 'Sortierung abwrts',
'D' => '',
# Template: AgentTicketStatusView
'Ticket Status View' => '',
'Open Tickets' => '',
# Template: AgentTicketZoom
'Split' => '',
# Template: AgentTicketZoomStatus
'Locked' => '',
# Template: AgentWindowTabStart
# Template: AgentWindowTabStop
# Template: Copyright
# Template: css
# Template: customer-css
# Template: CustomerAccept
# Template: CustomerCalendarSmallIcon
# Template: CustomerError
'Traceback' => '',
# Template: CustomerFAQ
'Print' => '',
'Keywords' => '',
'Symptom' => '',
'Problem' => '',
'Solution' => '',
'Modified' => '',
'Last update' => '',
'FAQ System History' => '',
'modified' => '',
'FAQ Search' => '',
'Fulltext' => '',
'Keyword' => '',
'FAQ Search Result' => '',
'FAQ Overview' => '',
# Template: CustomerFooter
'Powered by' => '',
# Template: CustomerFooterSmall
# Template: CustomerHeader
# Template: CustomerHeaderSmall
# Template: CustomerLogin
'Login' => '',
'Lost your password?' => 'Passwort verschmissn?',
'Request new password' => 'Neis Passwort beantragen',
'Create Account' => 'Account erstellen',
# Template: CustomerNavigationBar
'Welcome %s' => 'Willkommen %s',
# Template: CustomerPreferencesForm
# Template: CustomerStatusView
'of' => 'von',
# Template: CustomerTicketMessage
# Template: CustomerTicketMessageNew
# Template: CustomerTicketSearch
# Template: CustomerTicketSearchResultCSV
# Template: CustomerTicketSearchResultPrint
# Template: CustomerTicketSearchResultShort
# Template: CustomerTicketZoom
# Template: CustomerWarning
# Template: Error
'Click here to report a bug!' => 'Klicken Sie Do um einen Fehla zu berichten!',
# Template: FAQ
'Comment (internal)' => '',
'A article should have a title!' => '',
'New FAQ Article' => '',
'Do you really want to delete this Object?' => '',
'System History' => '',
# Template: FAQCategoryForm
'Name is required!' => '',
'FAQ Category' => '',
# Template: FAQLanguageForm
'FAQ Language' => '',
# Template: Footer
'QueueView' => 'Queue-Ansicht',
'PhoneView' => 'Telefon-Ansicht',
'Top of Page' => '',
# Template: FooterSmall
# Template: Header
'Home' => '',
# Template: HeaderSmall
# Template: Installer
'Web-Installer' => '',
'accept license' => '',
'don\'t accept license' => '',
'Admin-User' => '',
'Admin-Password' => '',
'your MySQL DB should have a root password! Default is empty!' => '',
'Database-User' => '',
'default \'hot\'' => '',
'DB connect host' => '',
'Database' => '',
'Create' => 'Erstellen',
'false' => '',
'SystemID' => '',
'(The identify of the system. Each ticket number and each http session id starts with this number)' => '',
'System FQDN' => '',
'(Full qualified domain name of your system)' => '',
'AdminEmail' => '',
'(Email of the system admin)' => '',
'Organization' => '',
'Log' => '',
'LogModule' => '',
'(Used log backend)' => '',
'Logfile' => '',
'(Logfile just needed for File-LogModule!)' => '',
'Webfrontend' => '',
'Default Charset' => '',
'Use utf-8 it your database supports it!' => '',
'Default Language' => '',
'(Used default language)' => '',
'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 $!)' => '',
'To be able to use OTRS you have to enter the following line in your command line (Terminal/Shell) as root.' => '',
'Restart your webserver' => '',
'After doing so your OTRS is up and running.' => '',
'Start page' => '',
'Have a lot of fun!' => '',
'Your OTRS Team' => '',
# Template: Login
# Template: Motd
# Template: NoPermission
'No Permission' => 'koane Erlaubnis',
# Template: Notify
'Important' => '',
# Template: PrintFooter
'URL' => '',
# Template: PrintHeader
'printed by' => '',
# Template: Redirect
# Template: SystemStats
'Format' => '',
# Template: Test
'OTRS Test Page' => 'OTRS Test Seite',
'Counter' => '',
# Template: Warning
# Misc
'Change signature settings' => 'ndern einer Signatur',
'Change system address setting' => 'ndere System-Adresse',
'Products' => 'Produkt',
'Change group settings' => 'ndern einer Gruppe',
'search (e. g. 10*5155 or 105658*)' => 'Suche (z. B. 10*5155 or 105658*)',
'User <-> Group Management' => 'Benutzer <-> Gruppe Verwaltung',
'tickets' => 'Tickets',
'Forwarded message from' => '',
'User <-> Groups' => 'Benutzer <-> Gruppen',
'Charsets' => '',
'Ticket Number Generator' => '',
'(Ticket identifier. Some people want toset this to e. g. \'Ticket#\', \'Call#\' or \'MyTicket#\')' => '',
'Time till escalation' => 'Zeit bis zur Escalation',
'Update queue' => 'Queue aktualisieren',
'Create new Ticket' => 'Neis Ticket erstellen',
'Send me a notification if there is a new ticket in my custom queues.' => 'Zusenden einer Mitteilung bei neuem Ticket in der/den individuellen Queue(s).',
'(Click here to add charset)' => '(Hier klicken - Charset hinzufgen',
'Update signature' => 'Signatur aktualisieren',
'POP3 Account' => '',
'(Click here to add a system email address)' => '(Hier klicken - System-Email-Adresse hinzufgen)',
'Add user' => 'Benutzer hinzufgen',
'Add signature' => 'Signatur hinzufgen',
'Article free text' => 'Artikel frei Text',
'Ticket Hook' => '',
'Close!' => 'Schlieen!',
'Change queue settings' => 'ndern einer Queue',
'Add language' => 'Sprache hinzufgen',
'Add queue' => 'Queue hinzufgen',
'Add group' => 'Gruppe hinzufgen',
'Don\'t forget to add a new user to groups!' => 'Eine neuer Benutzer muss auch einer Gruppe zugewiesen werden!',
'(Click here to add a signature)' => '(Hier klicken - Signatur hinzufgen)',
'phone call' => 'Angrufaen',
'Update charset' => 'Charset aktualisieren',
'Change customer user settings' => 'mdern der Kunden-Benutzers einstellungen',
'Status defs' => '',
'Update state' => 'State aktualisieren',
'BackendMessage' => 'Backend-Nachricht',
'Add salutation' => 'Anrede hinzufgen',
'open tickets' => 'offene Tickets',
'Fulltext search' => 'Volltext-Suche',
'New ticket via call.' => 'Neis Ticket durch Angrufa.',
'Change attachment settings' => '',
'Ticket-Overview' => 'Ticket-bersicht',
'Is the ticket answered' => 'Ist das Ticket beantwortet',
'(Click here to add a queue)' => '(Hier klicken - Queue hinzufgen)',
'New Ticket' => 'Neis Ticket',
'Update language' => 'Sprache aktualisieren',
'Forward article of ticket' => 'Weiterleitung des Artikels vom Ticket',
'Add charset' => 'Charset hinzufgen',
'SessionID' => '',
'(Click here to add a user)' => '(Hier klicken - Benutzer hinzufgen)',
'A message should have a From: recipient!' => 'Eine Nachricht sollte einen Absender im Von: haben!',
'System Language Management' => 'System-Sprache Verwaltung',
'Add system address' => 'System-Email-Adresse hinzufgen',
'Add response' => 'Antwort hinzufgen',
'Update user' => 'Benutzer aktualisieren',
'Update system address' => 'System-Email-Adresse aktualisieren',
'Send me a notification if a ticket is moved into a custom queue.' => ' Zusenden einer Mitteilung beim verschieben eines Ticket in meine individuellen Queue(s).',
'Std. Responses <-> Queue Management' => 'Std. Antworten <-> Queue Verwaltung',
'to get the ticket number of the ticket' => '',
'Add customer user' => 'Hinzufgen eines Kunden-Benutzers',
'(Click here to add state)' => '(Hier klicken - state hinzufgen)',
'(Click here to add a salutation)' => '(Hier klicken - Anrede hinzufgen)',
'Reply-To' => '',
'My Tickets' => 'Meine Tickets',
'Online-Support' => '',
'Change system state setting' => 'ndere System-State',
'Change user <-> group settings' => 'ndern der Benutzer <-> Gruppe Beziehung',
'Update group' => 'Gruppe aktualisieren',
'You need a email address (e. g. customer@example.com) in From:!' => 'Im From-Feld wird eine eMail-Adresse (z. B. kunde@beispiel.de) bentigt!',
'Backend' => '',
'next step' => 'Nchster Schritt',
'Change system language setting' => 'ndere System-Sprache',
'If your account is trusted, the x-otrs header (for priority, ...) will be used!' => 'Ist der Account trusted, werden die x-otrs Header benutzt!',
'Admin-Email' => '',
'(Click here to add an auto response)' => '(Hier klicken - Auto-Antwort hinzufgen)',
'Search in' => 'Suche in',
'OTRS-Admin Info!' => '',
'Fulltext search (e. g. "Mar*in" or "Baue*" or "martin+hallo")' => 'Volltextsuche (z. B. "Mar*in" oder "Baue*" oder "martin+hallo")',
'System Charset Management' => 'System-Charset Verwaltung',
'New user' => 'Neuer Eigner',
'Add attachment' => '',
'Set customer id of a ticket' => 'Setze eine Kunden# zu einem Ticket',
'Show all' => 'Alle gezeigt',
'Change response settings' => 'ndern einer Antwort',
'Open' => '',
'You have to be in the stats group!' => 'Sie mssen hierfr in der Statistik-Gruppe sein!',
'Change answer <-> queue settings' => 'ndern der Antworten <-> Queue Beziehung',
'New state' => 'Neue Prioritt',
'Phone call at %s' => 'Angrufa um %s',
'Date' => 'Datum',
'Add auto response' => 'Auto-Antwort hinzufgen',
'All open tickets' => 'Alle offenen Tickets',
'Std. Responses <-> Std. Attachment Management' => '',
'You have to be in the admin group!' => 'Sie mssen hierfr in der Admin-Gruppe sein!',
'Change settings' => '',
'(Click here to add language)' => '(Hier klicken - Sprache hinzufgen)',
'Auto Response <-> Queue' => 'Auto-Antworten <-> Queues',
'Change user settings' => 'ndern der Benutzereinstellung',
'Add state' => 'State hinzufgen',
'Select your custom queues' => 'Bevorzugte Queues auswhlen',
'Update auto response' => 'Auto-Antwort aktualisieren',
'Ticket limit:' => '',
'Update salutation' => 'Anrede aktualisieren',
'Graphs' => 'Diagramme',
'Add POP3 Account' => 'POP3 Account hinzufgen',
'(Click here to add a group)' => '(Hier klicken - Gruppe hinzufgen)',
'Queue <-> Auto Response Management' => 'Queue <-> Auto-Antworten Verwaltung',
'So you see what is going on in your system.' => 'Somit knnen Sie sehen, was in Ihrem System vorgeht.',
'Ticket free text' => 'Ticket frei Text',
'(Click here to add a response)' => '(Hier klicken - Antwort hinzufgen)',
'Change salutation settings' => 'ndern einer Anrede',
'AgentFrontend' => 'AgentOberflche',
'store' => 'speichern',
'Change Response <-> Attachment settings' => '',
'auto responses set' => 'Auto-Antworten gesetzt',
'Change system charset setting' => 'ndere System-Charset',
'Change auto response settings' => 'ndern einer Auto-Antworten',
'Ticket Status' => '',
'Customer user will be needed to to login via customer panels.' => 'Kunden-Benutzer werden fr das Kunden-Webfrontend bentigt',
'Support' => '',
'Open messages' => '',
'Customer called' => 'Kunden angerufen',
'Provides an overview of all' => 'Bietet eine bersicht von allen',
'Note!' => 'Notiz!',
'Charset' => '',
'Utilities' => 'Werkzeuge',
'search' => 'Sucha',
'new message' => 'neue Nachricht',
'Max Rows' => 'Max. Zeile',
'Change POP3 Account setting' => 'POP3 Account ndern',
'(Used ticket number format)' => '',
'End forwarded message' => '',
'Update response' => 'Antworten aktualisieren',
'Handle' => '',
};
# $$STOP$$
$Self->{Translation} = \%Hash;
}
# --
1;
|