-
Notifications
You must be signed in to change notification settings - Fork 1
/
ocrreader_de.ts
327 lines (327 loc) · 12.6 KB
/
ocrreader_de.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="de_DE">
<context>
<name>BoxEditorScene</name>
<message>
<location filename="boxeditor.py" line="547"/>
<source>Edit text of multiple boxes?</source>
<comment>dialog_multiple_boxes_edit_title</comment>
<translation>Mehrere Boxen bearbeiten?</translation>
</message>
<message>
<location filename="boxeditor.py" line="548"/>
<source>Multiple boxes are currently selected, do you want to set the current text for all selected box?</source>
<comment>dialog_multiple_boxes_edit</comment>
<translation>Es sind mehrere Boxen ausgewählt, soll der aktuelle Text für alle ausgewählten Boxen festgelegt werden?</translation>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
<location filename="mainwindow.py" line="142"/>
<source>&File</source>
<comment>menu_file</comment>
<translation>&Datei</translation>
</message>
<message>
<location filename="mainwindow.py" line="184"/>
<source>OCR Reader loaded</source>
<comment>status_loaded</comment>
<translation>OCR Reader geladen</translation>
</message>
<message>
<location filename="mainwindow.py" line="187"/>
<source>&Exit</source>
<comment>action_exit</comment>
<translation>&Beenden</translation>
</message>
<message>
<location filename="mainwindow.py" line="188"/>
<source>Exit OCR Reader</source>
<comment>status_exit</comment>
<translation>OCR Reader beenden</translation>
</message>
<message>
<location filename="mainwindow.py" line="192"/>
<source>&Open Project</source>
<comment>action_open_project</comment>
<translation>Projekt &öffnen</translation>
</message>
<message>
<location filename="mainwindow.py" line="193"/>
<source>Open Project</source>
<comment>status_open_project</comment>
<translation>Projekt öffnen</translation>
</message>
<message>
<location filename="mainwindow.py" line="197"/>
<source>&Export Project</source>
<comment>action_export_project</comment>
<translation>Projekt &exportieren</translation>
</message>
<message>
<location filename="mainwindow.py" line="198"/>
<source>Export Project</source>
<comment>status_export_project</comment>
<translation>Projekt exportieren</translation>
</message>
<message>
<location filename="mainwindow.py" line="202"/>
<source>&Save Project</source>
<comment>action_save_project</comment>
<translation>Projekt &speichern</translation>
</message>
<message>
<location filename="mainwindow.py" line="203"/>
<source>Save Project</source>
<comment>status_save_project</comment>
<translation>Projekt speichern</translation>
</message>
<message>
<location filename="mainwindow.py" line="207"/>
<source>&Load Image</source>
<comment>action_load_image</comment>
<translation>Bild &laden</translation>
</message>
<message>
<location filename="mainwindow.py" line="208"/>
<location filename="mainwindow.py" line="230"/>
<source>Load Image</source>
<comment>status_load_image</comment>
<translation>Bild laden</translation>
</message>
<message>
<location filename="mainwindow.py" line="212"/>
<source>&Analyze Layout</source>
<comment>action_analyze_layout</comment>
<translation>Layout &analysieren</translation>
</message>
<message>
<location filename="mainwindow.py" line="213"/>
<source>Analyze Layout</source>
<comment>status_analyze_layout</comment>
<translation>Layout analysieren</translation>
</message>
<message>
<location filename="mainwindow.py" line="217"/>
<source>Analyze Layout and &Recognize</source>
<comment>action_analyze_layout_and_recognize</comment>
<translation>Layout analysieren und &erkennen</translation>
</message>
<message>
<location filename="mainwindow.py" line="218"/>
<source>Analyze Layout and Recognize</source>
<comment>status_analyze_layout_and_recognize</comment>
<translation>Layout analysieren und erkennen</translation>
</message>
<message>
<location filename="mainwindow.py" line="231"/>
<source>Image files (*.jpg *.png *.gif *.bmp *.ppm)</source>
<comment>filter_image_files</comment>
<translation>Bilddateien (*.jpg *.png *.gif *.bmp *.ppm)</translation>
</message>
<message>
<location filename="mainwindow.py" line="248"/>
<source>Image loaded</source>
<comment>status_image_loaded</comment>
<translation>Bild geladen</translation>
</message>
<message>
<location filename="mainwindow.py" line="253"/>
<source>Open project file</source>
<comment>dialog_open_project_file</comment>
<translation>Projektdatei öffnen</translation>
</message>
<message>
<location filename="mainwindow.py" line="254"/>
<location filename="mainwindow.py" line="283"/>
<location filename="mainwindow.py" line="290"/>
<source>OCR Reader project (*.orp)</source>
<comment>filter_ocr_reader_project</comment>
<translation>OCR-Reader-Projekt (*.orp)</translation>
</message>
<message>
<location filename="mainwindow.py" line="276"/>
<source>Project opened</source>
<comment>status_project_opened</comment>
<translation>Projekt geöffnet</translation>
</message>
<message>
<location filename="mainwindow.py" line="282"/>
<location filename="mainwindow.py" line="307"/>
<source>Save project</source>
<comment>dialog_save_project</comment>
<translation>Projekt speichern</translation>
</message>
<message>
<location filename="mainwindow.py" line="289"/>
<source>Save project as</source>
<comment>dialog_save_project</comment>
<translation>Projekt speichern als</translation>
</message>
<message>
<location filename="mainwindow.py" line="314"/>
<source>Project exported</source>
<comment>status_exported</comment>
<translation>Projekt exportiert</translation>
</message>
<message>
<source>status_exported</source>
<comment>Project exported</comment>
<translation type="vanished">Projekt exportiert</translation>
</message>
</context>
<context>
<name>OCR Reader</name>
<message>
<source>&File</source>
<comment>menu_file</comment>
<translation type="vanished">&Datei</translation>
</message>
<message>
<source>OCR Reader loaded</source>
<comment>status_loaded</comment>
<translation type="vanished">OCR Reader geladen</translation>
</message>
<message>
<source>&Exit</source>
<comment>action_exit</comment>
<translation type="vanished">&Beenden</translation>
</message>
<message>
<source>Exit OCR Reader</source>
<comment>status_exit</comment>
<translation type="vanished">OCR Reader beenden</translation>
</message>
<message>
<source>&Open Project</source>
<comment>action_open_project</comment>
<translation type="vanished">Projekt &öffnen</translation>
</message>
<message>
<source>Open Project</source>
<comment>status_open_project</comment>
<translation type="vanished">Projekt öffnen</translation>
</message>
<message>
<source>&Export Project</source>
<comment>action_export_project</comment>
<translation type="vanished">Projekt &exportieren</translation>
</message>
<message>
<source>Export Project</source>
<comment>status_export_project</comment>
<translation type="vanished">Projekt exportieren</translation>
</message>
<message>
<source>&Save Project</source>
<comment>action_save_project</comment>
<translation type="vanished">Projekt &speichern</translation>
</message>
<message>
<source>Save Project</source>
<comment>status_save_project</comment>
<translation type="vanished">Projekt speichern</translation>
</message>
<message>
<source>&Load Image</source>
<comment>action_load_image</comment>
<translation type="vanished">Bild &laden</translation>
</message>
<message>
<source>Load Image</source>
<comment>status_load_image</comment>
<translation type="vanished">Bild laden</translation>
</message>
<message>
<source>Image files (*.jpg *.png *.gif *.bmp *.ppm)</source>
<comment>filter_image_files</comment>
<translation type="vanished">Bilddateien (*.jpg *.png *.gif *.bmp *.ppm)</translation>
</message>
<message>
<source>Image files (*.jpg *.png *.gif *.bmp *.ppm,</source>
<translation type="vanished">Bilddateien (*.jpg *.png *.gif *.bmp *.ppm,</translation>
</message>
<message>
<source>Image loaded</source>
<oldsource>Image loaded: </oldsource>
<comment>status_image_loaded</comment>
<translation type="vanished">Bild geladen</translation>
</message>
<message>
<source>Open project file</source>
<comment>dialog_open_project_file</comment>
<translation type="vanished">Projektdatei öffnen</translation>
</message>
<message>
<source>OCR Reader project (*.orp)</source>
<comment>filter_ocr_reader_project</comment>
<translation type="vanished">OCR-Reader-Projekt (*.orp)</translation>
</message>
<message>
<source>OCR Reader project (*.orp,</source>
<translation type="vanished">OCR-Reader-Projekt (*.orp,</translation>
</message>
<message>
<source>Project opened</source>
<comment>status_project_opened</comment>
<translation type="vanished">Projekt geöffnet</translation>
</message>
<message>
<source>Save project</source>
<comment>dialog_save_project</comment>
<translation type="vanished">Projekt speichern</translation>
</message>
<message>
<source>Save project as</source>
<comment>dialog_save_project</comment>
<translation type="vanished">Projekt speichern als</translation>
</message>
<message>
<source>status_exported</source>
<comment>Project exported</comment>
<translation type="vanished">Projekt exportiert</translation>
</message>
<message>
<source>Edit text of multiple boxes?</source>
<comment>dialog_multiple_boxes_edit_title</comment>
<translation type="vanished">Mehrere Boxen bearbeiten?</translation>
</message>
<message>
<source>Multiple boxes are currently selected, do you want to set the current text for all selected box?</source>
<comment>dialog_multiple_boxes_edit</comment>
<translation type="vanished">Es sind mehrere Boxen ausgewählt, soll der aktuelle Text für alle ausgewählten Boxen festgelegt werden?</translation>
</message>
<message>
<source>Recognize again?</source>
<comment>dialog_recognize_again_title</comment>
<translation type="vanished">Erneut erkennen?</translation>
</message>
<message>
<source>Text recognition has already been run for this box. Run again?</source>
<comment>dialog_recognize_again</comment>
<translation type="vanished">Die Texterkennung wurde bereits auf diese Box angewendet. Erneut ausführen?</translation>
</message>
<message>
<source>New Project</source>
<comment>new_project</comment>
<translation type="vanished">Neues Projekt</translation>
</message>
</context>
<context>
<name>self.custom_scene</name>
<message>
<location filename="boxeditor.py" line="503"/>
<source>Recognize again?</source>
<comment>dialog_recognize_again_title</comment>
<translation>Erneut erkennen?</translation>
</message>
<message>
<location filename="boxeditor.py" line="504"/>
<source>Text recognition has already been run for this box. Run again?</source>
<comment>dialog_recognize_again</comment>
<translation>Die Texterkennung wurde bereits auf diese Box angewendet. Erneut ausführen?</translation>
</message>
</context>
</TS>