| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package UI::Various::language::de; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# Author, Copyright and License: see end of file |
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
UI::Various::language::de - German language support of L |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# This module should never be used directly! |
|
12
|
|
|
|
|
|
|
# It is used indirectly using the following: |
|
13
|
|
|
|
|
|
|
use UI::Various; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ABSTRACT |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This module contains all German texts of L. |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The module just provides a hash of texts to be used in L. |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
See L for more details. |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
######################################################################### |
|
28
|
|
|
|
|
|
|
|
|
29
|
1
|
|
|
1
|
|
19
|
use v5.14; |
|
|
1
|
|
|
|
|
3
|
|
|
30
|
1
|
|
|
1
|
|
6
|
use strictures; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
9
|
|
|
31
|
1
|
|
|
1
|
|
250
|
no indirect 'fatal'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
8
|
|
|
32
|
1
|
|
|
1
|
|
78
|
no multidimensional; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
9
|
|
|
33
|
1
|
|
|
1
|
|
41
|
use warnings 'once'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
540
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
our $VERSION = '0.22'; |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
######################################################################### |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 EXPORT |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 %T - hash of German texts |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
# Don't reformat this assignment or delete the comment-blocks dividing |
|
48
|
|
|
|
|
|
|
# errors, warnings and others. update-language.pl depends on it: |
|
49
|
|
|
|
|
|
|
our %T = |
|
50
|
|
|
|
|
|
|
( |
|
51
|
|
|
|
|
|
|
#################################################################### |
|
52
|
|
|
|
|
|
|
# fatal and non-fatal error message, always without trailing "\n" for |
|
53
|
|
|
|
|
|
|
# automatically added location: |
|
54
|
|
|
|
|
|
|
_1_attribute_must_be_a_2_reference |
|
55
|
|
|
|
|
|
|
=> "Attribut '%s' muß %s Referenz sein", |
|
56
|
|
|
|
|
|
|
_1_element_must_be_accompanied_by_parent |
|
57
|
|
|
|
|
|
|
=> '%s Element benötigt Elternelement', |
|
58
|
|
|
|
|
|
|
_1_may_not_be_empty |
|
59
|
|
|
|
|
|
|
=> "'%s' darf nicht leer sein", |
|
60
|
|
|
|
|
|
|
_1_may_not_be_modified_directly_after_initialisation |
|
61
|
|
|
|
|
|
|
=> "'%s' darf nach der Initialisierung nicht mehr direkt geändert werden", |
|
62
|
|
|
|
|
|
|
_1_may_only_be_called_from_itself |
|
63
|
|
|
|
|
|
|
=> '%s darf nur innerhalb der Klasse benutzt werden', |
|
64
|
|
|
|
|
|
|
_1_to_cancel |
|
65
|
|
|
|
|
|
|
=> '%s bricht ab', |
|
66
|
|
|
|
|
|
|
bad_debug_level__1 |
|
67
|
|
|
|
|
|
|
=> "unzulässiges Debug Level '%s'", |
|
68
|
|
|
|
|
|
|
bad_usage_of__1_as__2 |
|
69
|
|
|
|
|
|
|
=> "fehlerhafte Nutzung von %s als %s", |
|
70
|
|
|
|
|
|
|
bad_usage_of__1_pkg_is__2 |
|
71
|
|
|
|
|
|
|
=> "fehlerhafte Nutzung von %s, \$pkg ist '%s'", |
|
72
|
|
|
|
|
|
|
can_t_remove__1_from_old_parent__2 |
|
73
|
|
|
|
|
|
|
=> "kann '%s' nicht von altem Elternelement trennen", |
|
74
|
|
|
|
|
|
|
can_t_remove__1_no_such_node_in__2 |
|
75
|
|
|
|
|
|
|
=> "kann '%s' nicht entfernen: existiert nicht in %s", |
|
76
|
|
|
|
|
|
|
cyclic_parent_relationship_detected__1_levels_above |
|
77
|
|
|
|
|
|
|
=> 'zyklische Abhängigkeit %d Ebenen höher gefunden', |
|
78
|
|
|
|
|
|
|
element__1_in_call_to__2__3_already_exists |
|
79
|
|
|
|
|
|
|
=> 'Element %s in Aufruf von %s::%s existiert bereits', |
|
80
|
|
|
|
|
|
|
enter_number_to_choose_next_step |
|
81
|
|
|
|
|
|
|
=> 'Nummer für nächste Aktion eingeben', |
|
82
|
|
|
|
|
|
|
enter_selection |
|
83
|
|
|
|
|
|
|
=> 'Auswahl eingeben', |
|
84
|
|
|
|
|
|
|
include_option_must_be_an_array_reference_or_a_scalar |
|
85
|
|
|
|
|
|
|
=> "'include' Option muss ARRAY Referenz oder Skalar sein", |
|
86
|
|
|
|
|
|
|
invalid_call_to__1__2 |
|
87
|
|
|
|
|
|
|
=> 'ungültiger Aufruf von %s::%s', |
|
88
|
|
|
|
|
|
|
invalid_object__1_in_call_to__2 |
|
89
|
|
|
|
|
|
|
=> 'ungültiges Objekt (%s) in Aufruf von %s', |
|
90
|
|
|
|
|
|
|
invalid_object__1_in_call_to__2__3 |
|
91
|
|
|
|
|
|
|
=> 'ungültiges Objekt (%s) in Aufruf von %s::%s', |
|
92
|
|
|
|
|
|
|
invalid_parameter__1_in_call_to__2 |
|
93
|
|
|
|
|
|
|
=> "ungültiger Parameter '%s'in Aufruf von %s", |
|
94
|
|
|
|
|
|
|
invalid_parameter__1_in_call_to__2__3 |
|
95
|
|
|
|
|
|
|
=> "ungültiger Parameter '%s'in Aufruf von %s::%s", |
|
96
|
|
|
|
|
|
|
invalid_parent__1_not_a_ui_various_container |
|
97
|
|
|
|
|
|
|
=> "ungültiges Elternelement '%s' (kein UI::Various::container)", |
|
98
|
|
|
|
|
|
|
invalid_scalar__1_in_call_to__2 |
|
99
|
|
|
|
|
|
|
=> "ungültiger Skalar '%s' in Aufruf von %s", |
|
100
|
|
|
|
|
|
|
invalid_scalar__1_in_call_to__2__3 |
|
101
|
|
|
|
|
|
|
=> "ungültiger Skalar '%s' in Aufruf von %s::%s", |
|
102
|
|
|
|
|
|
|
invalid_selection |
|
103
|
|
|
|
|
|
|
=> "Auswahl ungültig", |
|
104
|
|
|
|
|
|
|
invalid_value__1_for_parameter__2_in_call_to__3__4 |
|
105
|
|
|
|
|
|
|
=> "ungültiger Wert %s für Parameter '%s' in Aufruf von %s::%s", |
|
106
|
|
|
|
|
|
|
leave_box |
|
107
|
|
|
|
|
|
|
=> 'Box verlassen', |
|
108
|
|
|
|
|
|
|
leave_listbox |
|
109
|
|
|
|
|
|
|
=> 'Listbox verlassen', |
|
110
|
|
|
|
|
|
|
leave_window |
|
111
|
|
|
|
|
|
|
=> 'Fenster verlassen', |
|
112
|
|
|
|
|
|
|
mandatory_parameter__1_is_missing |
|
113
|
|
|
|
|
|
|
=> "notwendiger Parameter '%s' fehlt", |
|
114
|
|
|
|
|
|
|
message__1_missing_in__2 |
|
115
|
|
|
|
|
|
|
=> "text '%s' fehlt in '%s'", |
|
116
|
|
|
|
|
|
|
new_value |
|
117
|
|
|
|
|
|
|
=> 'neuer Wert', |
|
118
|
|
|
|
|
|
|
next_previous_window |
|
119
|
|
|
|
|
|
|
=> ', <+>/<-> nächstes/vorheriges Fenster', |
|
120
|
|
|
|
|
|
|
no_element_found_for_index__1 |
|
121
|
|
|
|
|
|
|
=> 'Element für index %d fehlt', |
|
122
|
|
|
|
|
|
|
no_free_position_for__1_in_call_to__2__3 |
|
123
|
|
|
|
|
|
|
=> 'keine freie Position für %s in Aufruf von %s::%s', |
|
124
|
|
|
|
|
|
|
odd_number_of_parameters_in_initialisation_list_of__1 |
|
125
|
|
|
|
|
|
|
=> 'ungerade Anzahl von Parametern in Initialisierungsliste von %s', |
|
126
|
|
|
|
|
|
|
old_value |
|
127
|
|
|
|
|
|
|
=> 'alter Wert', |
|
128
|
|
|
|
|
|
|
options_must_be_specified_as_hash |
|
129
|
|
|
|
|
|
|
=> 'Optionen müssen als {hash} spezifiziert werden', |
|
130
|
|
|
|
|
|
|
parameter__1_must_be_a_positive_integer |
|
131
|
|
|
|
|
|
|
=> "parameter '%s' muß positive ganze Zahl sein", |
|
132
|
|
|
|
|
|
|
parameter__1_must_be_a_positive_integer_in_call_to__2__3 |
|
133
|
|
|
|
|
|
|
=> "parameter '%s' in Aufruf von %s::%s muß positive ganze Zahl sein", |
|
134
|
|
|
|
|
|
|
parameter__1_must_be_in__2__3 |
|
135
|
|
|
|
|
|
|
=> "parameter '%s' muß im Bereich [%s..%s] liegen", |
|
136
|
|
|
|
|
|
|
scrolls |
|
137
|
|
|
|
|
|
|
=> '+/- blättert', |
|
138
|
|
|
|
|
|
|
specified_implementation_missing |
|
139
|
|
|
|
|
|
|
=> 'spezifische Implementierung fehlt', |
|
140
|
|
|
|
|
|
|
stderr_not_0_1_2_or_3 |
|
141
|
|
|
|
|
|
|
=> 'stderr muß 0, 1, 2 oder 3 sein', |
|
142
|
|
|
|
|
|
|
ui_various_core_must_be_1st_used_from_ui_various |
|
143
|
|
|
|
|
|
|
=> 'UI::Various::core muß zuerst von UI::Various importiert werden', |
|
144
|
|
|
|
|
|
|
undefined_input |
|
145
|
|
|
|
|
|
|
=> 'Eingabe undefiniert', |
|
146
|
|
|
|
|
|
|
undefined_logging_level__1 |
|
147
|
|
|
|
|
|
|
=> "unbekanntes Protokollierungslevel '%s'", |
|
148
|
|
|
|
|
|
|
unknown_option__1 |
|
149
|
|
|
|
|
|
|
=> "unbekannte Option '%s'", |
|
150
|
|
|
|
|
|
|
unsupported_language__1 |
|
151
|
|
|
|
|
|
|
=> "'%s' ist kein unterstützte Sprache", |
|
152
|
|
|
|
|
|
|
unsupported_ui_element__1__2 |
|
153
|
|
|
|
|
|
|
=> "'%s' ist kein unterstütztes UI Element: %s", |
|
154
|
|
|
|
|
|
|
unsupported_ui_package__1 |
|
155
|
|
|
|
|
|
|
=> "'%s' ist kein unterstütztes UI Paket", |
|
156
|
|
|
|
|
|
|
use_option_must_be_an_array_reference |
|
157
|
|
|
|
|
|
|
=> "'use' Option muß eine Reference auf ein ARRAY sein", |
|
158
|
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
#################################################################### |
|
160
|
|
|
|
|
|
|
# Warnings and information usually don't need location information, so |
|
161
|
|
|
|
|
|
|
# it's good practice to finish all with a "\n"; |
|
162
|
|
|
|
|
|
|
using__1_as_ui |
|
163
|
|
|
|
|
|
|
=> "'%s' wird als UI benutzt\n", |
|
164
|
|
|
|
|
|
|
); |
|
165
|
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
1; |
|
167
|
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
######################################################################### |
|
169
|
|
|
|
|
|
|
######################################################################### |
|
170
|
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
172
|
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
L |
|
174
|
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
=head1 LICENSE |
|
176
|
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
Copyright (C) Thomas Dorner. |
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify it |
|
180
|
|
|
|
|
|
|
under the same terms as Perl itself. See LICENSE file for more details. |
|
181
|
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
=head1 AUTHOR |
|
183
|
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
Thomas Dorner Edorner (AT) cpan.orgE |
|
185
|
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
=cut |