~ubuntu-branches/ubuntu/raring/kde-l10n-de/raring

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
# Thomas Reitelbach <tr@erdfunkstelle.de>, 2007, 2008, 2009, 2010.
# Burkhard Lück <lueck@hube-lueck.de>, 2009, 2011.
# Johannes Obermayr <johannesobermayr@gmx.de>, 2010.
# Frederik Schwarzer <schwarzer@kde.org>, 2010, 2011, 2012.
# Felix Schweighofer <felix.schweighofer@googlemail.com>, 2010.
# Panagiotis Papadopoulos <pano_90@gmx.net>, 2010, 2011.
msgid ""
msgstr ""
"Project-Id-Version: kcm_nepomuk\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2012-11-30 03:07+0100\n"
"PO-Revision-Date: 2012-11-10 18:11+0100\n"
"Last-Translator: Frederik Schwarzer <schwarzer@kde.org>\n"
"Language-Team: German <kde-i18n-de@kde.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Lokalize 1.4\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Thomas Reitelbach"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "tr@erdfunkstelle.de"

#: excludefilterselectiondialog.cpp:27
msgctxt ""
"@title:window Referring to the folders which will be searched for files to "
"index for desktop search"
msgid "Advanced File Filtering"
msgstr "Erweitertes Dateifiltern"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: excludefilterselectiondialog.ui:10
msgid "Exclude Mime Type"
msgstr "MIME-Typ ausschließen"

#. i18n: ectx: property (text), widget (QLabel, label)
#: excludefilterselectiondialog.ui:16
msgid "Select the mimetypes that should be excluded from indexing"
msgstr ""
"Wählen Sie bitte die MIME-Typen, die von der Indizierung ausgeschlossen "
"werden sollen"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: excludefilterselectiondialog.ui:32
msgid "Index Exclude Filters"
msgstr "Ausschlussfilter für den Index"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: excludefilterselectiondialog.ui:38
msgid ""
"Select expressions to exclude files from indexing by matching their filenames"
msgstr ""
"Wählen Sie Ausdrücke, um Dateien von der Indizierung auszuschließen, auf "
"deren Namen diese zutreffen."

#: folderselectionmodel.cpp:108
#, kde-format
msgctxt "@info:tooltip %1 is the path of the folder in a listview"
msgid "<filename>%1</filename><nl/>(will be indexed for desktop search)"
msgstr "<filename>%1</filename><nl/>(wird für die Desktopsuche indiziert)"

#: folderselectionmodel.cpp:112
#, kde-format
msgctxt "@info:tooltip %1 is the path of the folder in a listview"
msgid ""
"<filename>%1</filename><nl/> (will <emphasis>not</emphasis> be indexed for "
"desktop search)"
msgstr ""
"<filename>%1</filename><nl/>(wird <emphasis>nicht</emphasis> für die "
"Desktopsuche indiziert)"

#: indexfolderselectiondialog.cpp:63
msgctxt ""
"@title:window Referring to the folders which will be searched for files to "
"index for desktop search"
msgid "Customizing Index Folders"
msgstr "Benutzerdefinierte Index-Ordner"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: indexfolderselectionwidget.ui:10
msgid "Folders to index"
msgstr "Zu indizierende Ordner"

#. i18n: ectx: property (text), widget (QLabel, label)
#: indexfolderselectionwidget.ui:16
msgid ""
"Select the local folders that contain files to be indexed for fast desktop "
"searches"
msgstr ""
"Wählen Sie die lokalen Ordner, deren Dateien für die schnelle Desktopsuche "
"indiziert werden sollen."

#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkShowHiddenFolders)
#: indexfolderselectionwidget.ui:29
msgid "Check to be able to select hidden folders"
msgstr "Aktivieren Sie dies, um versteckte Ordner auswählen zu können"

#. i18n: ectx: property (text), widget (QCheckBox, m_checkShowHiddenFolders)
#: indexfolderselectionwidget.ui:32
msgid "Show hidden folders"
msgstr "Versteckte Ordner anzeigen"

#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: nepomukconfigwidget.ui:17
msgid "Basic Settings"
msgstr "Grundeinstellungen"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: nepomukconfigwidget.ui:23
msgid "Nepomuk Semantic Desktop"
msgstr "Nepomuk-Semantik-Dienste"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: nepomukconfigwidget.ui:29
msgid ""
"Nepomuk Semantic Desktop enables tagging and rating of files integrated with "
"the Desktop Search."
msgstr ""
"Nepomuk-Semantik-Dienste ermöglichen das Verstichworten und Bewerten von "
"Dateien innerhalb der Suchmaschine."

#. i18n: ectx: property (text), widget (QCheckBox, m_checkEnableNepomuk)
#: nepomukconfigwidget.ui:43
msgid "Enable Nepomuk Semantic Desktop"
msgstr "Nepomuk-Semantik-Dienste aktivieren"

#. i18n: ectx: property (text), widget (KUrlLabel, m_buttonDetails)
#: nepomukconfigwidget.ui:92
msgid "Details..."
msgstr "Details ..."

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: nepomukconfigwidget.ui:104
msgid "Nepomuk Desktop File Indexer"
msgstr "Nepomuk-Datei-Indexer"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: nepomukconfigwidget.ui:110
msgid ""
"Nepomuk desktop search allows searching for files by content instead of just "
"by name."
msgstr ""
"Die Nepomuk-basierte Suche findet Dateien anhand des Inhalts anstelle des "
"Dateinamens."

#. i18n: ectx: property (text), widget (QCheckBox, m_checkEnableFileIndexer)
#: nepomukconfigwidget.ui:120
msgid "Enable Nepomuk File Indexer"
msgstr "Nepomuk-Datei-Indexer aktivieren"

#. i18n: ectx: property (title), widget (QGroupBox, m_emailIndexingBox)
#: nepomukconfigwidget.ui:173
msgid "Email Indexing"
msgstr "E-Mail-Indizierung"

#. i18n: ectx: property (text), widget (QLabel, label_12)
#: nepomukconfigwidget.ui:179
msgid "Email indexing allows full text search in email and their attachments."
msgstr ""
"Die E-Mail-Indizierung ermöglicht eine Volltextsuche in E-Mails und ihren "
"Anhängen."

#. i18n: ectx: property (text), widget (QCheckBox, m_checkEnableEmailIndexer)
#: nepomukconfigwidget.ui:186
msgid "Enable Email Indexer"
msgstr "E-Mail-Indexer aktivieren"

#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#: nepomukconfigwidget.ui:210
msgid "Indexing"
msgstr "Indizierung"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_7)
#: nepomukconfigwidget.ui:216
msgid "File Indexing"
msgstr "Datei-Indizierung"

#. i18n: ectx: property (text), widget (QLabel, label_7)
#: nepomukconfigwidget.ui:222
msgid "Customize the files and folders to be indexed"
msgstr "Richten Sie die zu indizierenden Dateien und Ordner ein"

#. i18n: ectx: property (text), widget (QCheckBox, m_checkboxDocuments)
#: nepomukconfigwidget.ui:229
msgid "Index Documents"
msgstr "Dokumente indizieren"

#. i18n: ectx: property (text), widget (QCheckBox, m_checkboxAudio)
#: nepomukconfigwidget.ui:236
msgid "Index Audio"
msgstr "Audio-Dateien indizieren"

#. i18n: ectx: property (text), widget (QCheckBox, m_checkboxImage)
#: nepomukconfigwidget.ui:243
msgid "Index Images"
msgstr "Bilder indizieren"

#. i18n: ectx: property (text), widget (QCheckBox, m_checkboxVideo)
#: nepomukconfigwidget.ui:250
msgid "Index Videos"
msgstr "Video-Dateien indizieren"

#. i18n: ectx: property (text), widget (QCheckBox, m_checkboxSourceCode)
#: nepomukconfigwidget.ui:257
msgid "Index Source Code"
msgstr "Quelltext indizieren"

#. i18n: ectx: property (text), widget (QPushButton, m_buttonAdvancedFileIndexing)
#: nepomukconfigwidget.ui:279
msgid "Advanced"
msgstr "Erweitert"

#. i18n: ectx: property (text), widget (QPushButton, m_buttonCustomizeIndexFolders)
#: nepomukconfigwidget.ui:286
msgid "Customize Folders"
msgstr "Ordner einrichten"

#. i18n: ectx: property (text), widget (QLabel, label_11)
#: nepomukconfigwidget.ui:297
msgid "Removable media handling:"
msgstr "Umgang mit Wechselmedien:"

#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboRemovableMediaHandling)
#: nepomukconfigwidget.ui:313
msgctxt "@info:tooltip"
msgid "Indexing of files on removable media"
msgstr "Dateien auf Wechselmedien werden indiziert"

#. i18n: ectx: property (whatsThis), widget (KComboBox, m_comboRemovableMediaHandling)
#: nepomukconfigwidget.ui:319
msgctxt "@info:whatsthis"
msgid ""
"<para>Nepomuk can index files on removable devices like USB keys or external "
"hard-disks for fast desktop searches.</para>\n"
"<para>By default no files are indexed. Here this behaviour can be changed to "
"one of two options:</para>\n"
"<para><list><item><interface>Index files on all removable devices</"
"interface> - Files on removable media are indexed as soon as the medium is "
"mounted. Caution: this does not include media which have been rejected via "
"the second option.</item>\n"
"<item><interface>Ask individually when newly mounted</interface> - The user "
"will be asked to decide if files on the newly mounted medium should be "
"indexed or not. Once decided Nepomuk will not ask again.</item></list></para>"
msgstr ""
"<para>Nepomuk kann Dateien auf Wechselmedien wie USB-Sticks oder externen "
"Festplatten für die schnelle Desktopsuche indizieren.</para>\n"
"<para>Voreingestellt werden keine Dateien indiziert. Hier kann das Verhalten "
"auf eine der beiden Einstellungen angepasst werden:</para>\n"
"<para><list><item><interface>Dateien auf allen Wechselmedien indizieren</"
"interface> - Dateien auf Wechselmedien werden indiziert, sobald das Medium "
"eingebunden wird. Achtung: Geräte, die unter Verwendung der zweiten "
"Einstellung ausgeschlossen wurden, sind hiervon nicht betroffen.</item>\n"
"<item><interface>Nachfragen, wenn Wechselmedium eingebunden wird</interface> "
"- Der Benutzer wird gefragt, ob Dateien auf dem gerade eingebundenen Medium "
"indiziert werden sollen. Ist dies einmal entschieden, wird nicht noch einmal "
"nachgefragt.</item></list></para>"

#. i18n: ectx: property (text), item, widget (KComboBox, m_comboRemovableMediaHandling)
#: nepomukconfigwidget.ui:323
msgid "Ignore all removable media"
msgstr "Alle Wechselmedien ignorieren"

#. i18n: ectx: property (text), item, widget (KComboBox, m_comboRemovableMediaHandling)
#: nepomukconfigwidget.ui:328
msgid "Index files on all removable devices"
msgstr "Dateien auf allen Wechselmedien indizieren"

#. i18n: ectx: property (text), item, widget (KComboBox, m_comboRemovableMediaHandling)
#: nepomukconfigwidget.ui:333
msgid "Ask individually when newly mounted"
msgstr "Nachfragen, wenn Wechselmedium eingebunden wird"

#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#: nepomukconfigwidget.ui:360
msgid "Backup"
msgstr "Sicherung"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: nepomukconfigwidget.ui:366
msgid "Automatic Backups"
msgstr "Automatische Sicherungen"

#. i18n: ectx: property (text), widget (QLabel, label)
#: nepomukconfigwidget.ui:372
msgctxt "@info"
msgid ""
"Nepomuk can perform regular automatic backups of all data that could not be "
"restored otherwise. This includes manually created tags, ratings, but also "
"statistical data."
msgstr ""
"Nepomuk kann reguläre automatische Sicherungen aller Daten erstellen, die "
"anderenfalls nicht wiederhergestellt werden können. Dies beinhaltet manuell "
"erstellte Markierungen, Bewertungen aber auch statistische Daten."

# Intervall für Sicherungen?
#. i18n: ectx: property (text), widget (QLabel, label_9)
#: nepomukconfigwidget.ui:384
msgid "Backup frequency:"
msgstr "Sicherungsfrequenz:"

#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboBackupFrequency)
#: nepomukconfigwidget.ui:394
msgid "How often should a backup of the Nepomuk database be created"
msgstr "Wie oft eine Sicherung der Nepomuk-Datenbank erstellt werden soll."

#. i18n: ectx: property (text), widget (QLabel, label_8)
#: nepomukconfigwidget.ui:401
msgid "Backup Time:"
msgstr "Sicherungszeit:"

#. i18n: ectx: property (toolTip), widget (QTimeEdit, m_editBackupTime)
#: nepomukconfigwidget.ui:416
msgid "When should the backup be created"
msgstr "Wann die Sicherung erstellt werden soll."

#. i18n: ectx: property (text), widget (QLabel, label_10)
#: nepomukconfigwidget.ui:425
msgid "Max number of backups:"
msgstr "Maximale Anzahl an Sicherungen:"

#. i18n: ectx: property (toolTip), widget (QSpinBox, m_spinBackupMax)
#: nepomukconfigwidget.ui:437
msgid "How many previous backups should be kept"
msgstr "Wie viele frühere Sicherungen behalten werden sollen."

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_6)
#: nepomukconfigwidget.ui:467
msgid "Tools"
msgstr "Werkzeuge"

#. i18n: ectx: property (text), widget (KPushButton, m_buttonManualBackup)
#: nepomukconfigwidget.ui:473
msgid "Manual Backup..."
msgstr "Manuelle Sicherung ..."

#. i18n: ectx: property (text), widget (KPushButton, m_buttonRestoreBackup)
#: nepomukconfigwidget.ui:480
msgid "Restore Backup..."
msgstr "Sicherung zurückspielen ..."

#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#: nepomukconfigwidget.ui:517
msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#: nepomukconfigwidget.ui:523
msgid "Memory Usage"
msgstr "Speicherverwendung"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: nepomukconfigwidget.ui:529
msgid ""
"<p>The maximum amount of main memory the Nepomuk system should use for its "
"database process. The more memory is available to Nepomuk the better will be "
"its performance. (The Nepomuk database process shows up as <command>virtuoso-"
"t</command> in the process manager.)"
msgstr ""
"<p>Die maximale Größe des Hauptspeichers, die das Nepomuk-System für seinen "
"Datenbank-Prozess verwenden soll. Je mehr Arbeitsspeicher für Nepomuk zur "
"Verfügung steht, desto besser ist dessen Leistung. (Der Datenbank-Prozess "
"von Nepomuk wird als <command>virtuoso-t</command> in der Prozessverwaltung "
"angezeigt.)"

#. i18n: ectx: property (suffix), widget (QSpinBox, m_editMemoryUsage)
#: nepomukconfigwidget.ui:557
msgid " MiB"
msgstr " MiB"

#: nepomukserverkcm.cpp:101
msgid "Desktop Search Configuration Module"
msgstr "Einstellungsmodul für Desktopsuche"

#: nepomukserverkcm.cpp:103
msgid "Copyright 2007-2010 Sebastian Trüg"
msgstr "© 2007–2010, Sebastian Trüg"

#: nepomukserverkcm.cpp:104
msgid "Sebastian Trüg"
msgstr "Sebastian Trüg"

#: nepomukserverkcm.cpp:160
msgctxt "@item:inlistbox"
msgid "Disable Automatic Backups"
msgstr "Automatische Sicherungen deaktivieren"

#: nepomukserverkcm.cpp:161
msgctxt "@item:inlistbox"
msgid "Daily Backup"
msgstr "Tägliche Sicherung"

#: nepomukserverkcm.cpp:162
msgctxt "@item:inlistbox"
msgid "Weekly Backup"
msgstr "Wöchentliche Sicherung"

#: nepomukserverkcm.cpp:193
msgid ""
"The Nepomuk installation is not complete. No desktop search settings can be "
"provided."
msgstr ""
"Die Installation von Nepomuk ist nicht vollständig. Die Einstellungen für "
"die Desktopsuche stehen nicht zur Verfügung."

#: nepomukserverkcm.cpp:327
msgid ""
"Failed to start the desktop search service (Nepomuk). The settings have been "
"saved and will be used the next time the server is started."
msgstr ""
"Der Desktopsuch-Dienst kann nicht gestartet werden. Die Einstellungen wurden "
"gespeichert und werden beim nächsten Start des Servers verwendet."

#: nepomukserverkcm.cpp:329
msgid "Desktop search service not running"
msgstr "Der Desktopsuch-Dienst läuft nicht."

#: nepomukserverkcm.cpp:366
msgctxt "@info:status"
msgid "Desktop search services are active"
msgstr "Die Dienste der Desktopsuche sind aktiv"

#: nepomukserverkcm.cpp:369
msgctxt "@info:status"
msgid "Desktop search services are disabled"
msgstr "Die Dienste der Desktopsuche sind nicht aktiv"

#: nepomukserverkcm.cpp:390
#, kde-format
msgctxt "@info:status %1 is an error message returned by a dbus interface."
msgid "Failed to contact File Indexer service (%1)"
msgstr "Fehler bei der Verbindung mit dem Datei-Indexer-Dienst (%1)"

#: nepomukserverkcm.cpp:400
msgctxt "@info:status"
msgid ""
"File indexing service failed to initialize, most likely due to an "
"installation problem."
msgstr ""
"Der Datei-Indexer-Dienst kann nicht initialisiert werden – wahrscheinlich "
"liegt ein Installationsproblem vor."

#: nepomukserverkcm.cpp:405
msgctxt "@info:status"
msgid "File indexing service not running."
msgstr "Der Datei-Indizierungsdienst läuft nicht."

#: nepomukserverkcm.cpp:416
#, kde-format
msgid "1 existing backup"
msgid_plural "%1 existing backups"
msgstr[0] "1 existierende Sicherung"
msgstr[1] "%1 existierende Sicherungen"

#: nepomukserverkcm.cpp:420
#, kde-format
msgctxt ""
"@info %1 is the creation date of a backup formatted vi KLocale::"
"formatDateTime"
msgid "Oldest: %1"
msgstr "Älteste: %1"

#: statuswidget.cpp:125
#, kde-format
msgid "1 file in index"
msgid_plural "%1 files in index"
msgstr[0] "1 Datei im Index"
msgstr[1] "%1 Dateien im Index"

#: statuswidget.cpp:152
msgid "File indexing service not running"
msgstr "Der Datei-Indizierungsdienst läuft nicht"

#: statuswidget.cpp:182
msgctxt "Suspends the Nepomuk file indexing service."
msgid "Suspend File Indexing"
msgstr "Datei-Indizierung aussetzen"

#: statuswidget.cpp:186
msgctxt "Resumes the Nepomuk file indexing service."
msgid "Resume File Indexing"
msgstr "Datei-Indizierung fortsetzen"

#. i18n: ectx: property (text), widget (QLabel, m_labelTitle)
#: statuswidget.ui:24
msgid "Nepomuk Repository Details"
msgstr "Nepomuks Quelleninformationen"

#. i18n: ectx: property (text), widget (QLabel, label)
#: statuswidget.ui:95
msgid "Indexed files:"
msgstr "Indizierte Dateien:"

#. i18n: ectx: property (text), widget (QLabel, m_labelFileCount)
#: statuswidget.ui:108
msgid "Calculating..."
msgstr "Berechnung ..."

#. i18n: ectx: property (text), widget (QPushButton, m_configureButton)
#: statuswidget.ui:164
msgid "Configure"
msgstr "Einrichten"

#. i18n: ectx: property (text), widget (QPushButton, m_suspendResumeButton)
#: statuswidget.ui:171
msgid "Suspend"
msgstr "Aussetzen"

#~ msgid "Status of the KDE metadata store"
#~ msgstr "Status des KDE-Metadatenspeichers"

#~ msgid "Desktop Query"
#~ msgstr "Arbeitsflächen-Abfrage"

#~ msgid "Customize index folders..."
#~ msgstr "Benutzerdefinierte Index-Ordner ..."

#~ msgid "Query Base Folder Listing"
#~ msgstr "Auflistung im Basisordner der Abfrage"

#~ msgid ""
#~ "Please choose what should be listed in the Desktop Query root folder "
#~ "besides the history and the saved queries."
#~ msgstr ""
#~ "Bitte legen Sie fest, was neben dem Verlauf und den gespeicherten "
#~ "Abfragen im Basisordner der Arbeitsflächen-Abfrage aufgelistet werden "
#~ "soll."

#~ msgid "Show the latest never opened files"
#~ msgstr "Die neuesten ungeöffneten Dateien anzeigen."

#~ msgid "Never opened"
#~ msgstr "Ungeöffnet"

#~ msgid "Tries to show the most important files."
#~ msgstr "Das Anzeigen der wichtigsten Dateien versuchen."

#~ msgid "Most important files"
#~ msgstr "Wichtigste Dateien"

#~ msgid "Show the most recently modified files."
#~ msgstr "Kürzlich geänderte Dateien anzeigen."

#~ msgid "Last modified files"
#~ msgstr "Kürzlich geänderte Dateien"

#~ msgid "Specify the query that should be listed."
#~ msgstr "Die aufzulistende Abfrage festlegen."

#~ msgid "Custom query"
#~ msgstr "Benutzerdefinierte Abfrage"

#~ msgid "Edit..."
#~ msgstr "Bearbeiten ..."

#~ msgid ""
#~ "Specify the maximum number of results that should be listed in query "
#~ "folders."
#~ msgstr ""
#~ "Bitte legen Sie die maximale Anzahl der aufzulistenden Ergebnisse in den "
#~ "Abfrageordnern fest."

#~ msgid "Maximum number of results in listing:"
#~ msgstr "Maximale Anzahl der Ergebnisse in der Auflistung:"

#~ msgid "Show all results"
#~ msgstr "Alle Ergebnisse anzeigen"

#~ msgctxt "'Home' as in 'Home path', i.e. /home/username"
#~ msgid "Home"
#~ msgstr "Persönlicher Ordner"

#~ msgid "<strong><filename>%1</filename></strong>"
#~ msgstr "<strong><filename>%1</filename></strong>"

#~ msgid "some subfolders excluded"
#~ msgstr "Einige Unterordner sind ausgenommen"

#~ msgid "Custom root folder query"
#~ msgstr "Benutzerdefinierte Basisordner-Abfrage"

#~ msgid "Please enter a query to be listed in the root folder"
#~ msgstr "Bitte geben Sie eine Abfrage zur Auflistung im Basisordner ein"

#~ msgid "Calculation failed"
#~ msgstr "Berechnung fehlgeschlagen"

#~ msgid "Nepomuk store size:"
#~ msgstr "Nepomuk-Speichergröße:"

#~ msgid "Strigi Index Folders"
#~ msgstr "Indizierbare Ordner für Strigi"

#~ msgctxt "@item:inlistbox"
#~ msgid "Monthly Backup"
#~ msgstr "Monatliche Sicherung"

#~ msgid "Nepomuk server not running"
#~ msgstr "Der Nepomuk-Dienst läuft nicht"

#~ msgctxt "@info:status"
#~ msgid "Nepomuk system is active"
#~ msgstr "Der Nepomuk-Dienst ist aktiviert."

#~ msgctxt "@info:status"
#~ msgid "Nepomuk system is inactive"
#~ msgstr "Der Nepomuk-Dienst ist deaktiviert."

#~ msgid "KSqueezedTextLabel"
#~ msgstr "KSqueezedTextLabel"

#~ msgid ""
#~ "Index the files on removable media like USB sticks when they are mounted"
#~ msgstr ""
#~ "Dateien auf Wechselmedien wie z. B. USB-Sticks indizieren, wenn sie "
#~ "eingebunden sind."

#, fuzzy
#~| msgid "KSqueezedTextLabel"
#~ msgid "TextLabel"
#~ msgstr "KSqueezedTextLabel"

#, fuzzy
#~| msgid "Search Service"
#~ msgid "Search excerpt: %1"
#~ msgstr "Suchdienst"

#~ msgid "Query folder"
#~ msgstr "Abfragen-Ordner"

#~ msgid ""
#~ "The Nepomuk system is not activated. Unable to answer queries without it."
#~ msgstr ""
#~ "Die Nepomuk-Semantik-Dienste sind nicht aktiviert; derzeit können keine "
#~ "Abfragen bearbeitet werden."

#~ msgid ""
#~ "The Nepomuk query service is not running. Unable to answer queries "
#~ "without it."
#~ msgstr ""
#~ "Die Nepomuk Abfrage-Dienste werden nicht ausgeführt; derzeit können keine "
#~ "Abfragen bearbeitet werden."

#~ msgid "Desktop Queries"
#~ msgstr "Arbeitsflächen-Abfragen"

#~ msgid "Saved Query"
#~ msgstr "Gespeicherte Abfrage"

#~ msgctxt ""
#~ "Month and year used in a tree above the actual days. Have a look at "
#~ "http://api.kde.org/4.x-api/kdelibs-apidocs/kdecore/html/"
#~ "classKCalendarSystem.html#a560204439a4b670ad36c16c404f292b4 to see which "
#~ "variables you can use and ask kde-i18n-doc@kde.org if you have problems "
#~ "understanding how to translate this"
#~ msgid "%B %Y"
#~ msgstr "%B, %Y"

#~ msgid ""
#~ "The Nepomuk Strigi file indexing service is not running. Without it "
#~ "timeline results are not available."
#~ msgstr ""
#~ "Der Abfragedienst von Nepomuk wird nicht ausgeführt. Die zeitgesteuerten "
#~ "Ergebnisse sind deshalb nicht verfügbar."

#~ msgid "Today"
#~ msgstr "Heute"

#~ msgid "Calendar"
#~ msgstr "Kalender"

#~ msgctxt ""
#~ "%1 is a filename of a file on a removable device, %2 is the name of the "
#~ "removable medium which often is something like 'X GiB Removable Media."
#~ msgid "%1 (on unmounted medium <resource>%2</resource>)"
#~ msgstr "%1 (auf nicht eingebundenem Medium <resource>%2</resource>)"

#~ msgid "Things tagged '%1'"
#~ msgstr "Elemente, die mit dem Stichwort „%1“ versehen sind"

#~ msgctxt "@info"
#~ msgid ""
#~ "Please insert the removable medium <resource>%1</resource> to access this "
#~ "file."
#~ msgstr ""
#~ "Bitte legen Sie das Wechselmedium <resource>%1</resource> ein, um auf "
#~ "diese Datei zuzugreifen."

#~ msgid ""
#~ "Do you really want to delete the resource and all relations to and from "
#~ "it?"
#~ msgstr ""
#~ "Möchten Sie die Ressource und alle zugehörigen Beziehungen wirklich "
#~ "löschen?"

#~ msgid "Delete Resource"
#~ msgstr "Ressource löschen"

#~ msgid "Resource does not exist"
#~ msgstr "Die Ressource existiert nicht."

#~ msgid "Relations:"
#~ msgstr "Beziehungen:"

#~ msgid "Backlinks:"
#~ msgstr "Rückwärts-Verweise:"

#~ msgid "Actions:"
#~ msgstr "Aktionen:"

#~ msgid "Delete resource"
#~ msgstr "Ressource löschen"

#~ msgid "Hide URIs"
#~ msgstr "Adressen ausblenden"

#~ msgid "Show URIs"
#~ msgstr "Adressen anzeigen"

#~ msgctxt "@info:status"
#~ msgid "File indexer is suspended"
#~ msgstr "Der Datei-Indexer ist ausgesetzt."

#~ msgctxt "@info:status"
#~ msgid "Strigi is currently indexing files"
#~ msgstr "Strigi indiziert gerade Dateien"

#~ msgctxt "@info:status"
#~ msgid "Strigi is currently indexing files in folder %1"
#~ msgstr "Strigi indiziert gerade Dateien im Ordner %1"

#~ msgctxt "@info:status"
#~ msgid "File indexer is idle"
#~ msgstr "Der Datei-Indexer ist inaktiv."

#~ msgid "Indexing files for fast searching. This process may take a while."
#~ msgstr ""
#~ "Die Datei-Indizierung für die schnelle Suche läuft. Dieser Vorgang wird "
#~ "eine Weile dauern."

#~ msgid "Resuming indexing of files for fast searching."
#~ msgstr "Die Datei-Indizierung zur schnellen Suche wird fortgesetzt."

#~ msgid "Suspending the indexing of files to preserve resources."
#~ msgstr ""
#~ "Die Indizierung von Dateien wird angehalten, um System-Ressourcen zu "
#~ "sparen."

#~ msgid "Disk space is running low (%1 left). Suspending indexing of files."
#~ msgstr ""
#~ "Der freie Festplattenspeicher ist knapp (%1 verbleiben). Der Indexdienst "
#~ "wird angehalten."

#~ msgctxt ""
#~ "@info %1 is a duration formatted using KLocale::prettyFormatDuration"
#~ msgid "Initial indexing of files for fast searching finished in %1"
#~ msgstr ""
#~ "Die Erstindizierung für die schnelle Desktopsuche ist voraussichtlich "
#~ "abgeschlossen in %1"

#~ msgctxt "@info - notification message"
#~ msgid ""
#~ "Nepomuk Semantic Desktop needs the Virtuoso RDF server to store its data. "
#~ "Installing the Virtuoso Soprano plugin is mandatory for using Nepomuk."
#~ msgstr ""
#~ "Die Nepomuk-Semantik-Dienste benötigen den Virtuoso-RDF-Server zum "
#~ "Speichern der Daten. Zur Verwendung von Nepomuk müssen Sie das Virtuoso-"
#~ "Soprano-Modul installieren."

#~ msgctxt "@info - notification message"
#~ msgid ""
#~ "Nepomuk Semantic Desktop needs the Virtuoso RDF server to store its data. "
#~ "Installing the Virtuoso server and ODBC driver is mandatory for using "
#~ "Nepomuk."
#~ msgstr ""
#~ "Die Nepomuk-Semantik-Dienste benötigen den Virtuoso-RDF-Server zum "
#~ "Speichern der Daten. Zur Verwendung von Nepomuk müssen Sie den Virtuoso-"
#~ "Server und ODBC-Treiber installieren."

#~ msgctxt "@info - notification message"
#~ msgid ""
#~ "Nepomuk was not able to find the configured database backend '%1'. "
#~ "Existing data can thus not be accessed. For data security reasons Nepomuk "
#~ "will be disabled until the situation has been resolved manually."
#~ msgstr ""
#~ "Nepomuk kann den eingerichteten Datenbank-Treiber „%1“ nicht finden. "
#~ "Daher können evtl. vorhandene Daten nicht verwendet werden. Aus "
#~ "Sicherheitsgründen wird Nepomuk deaktiviert, bis Sie das Problem manuell "
#~ "behoben haben."

#~ msgctxt "@info - notification message"
#~ msgid "Converting Nepomuk data to a new backend. This might take a while."
#~ msgstr ""
#~ "Nepomuk-Daten werden in das neue Treiberformat umgewandelt. Dies wird "
#~ "eine Weile dauern."

#~ msgctxt "@info - notification message"
#~ msgid ""
#~ "Converting Nepomuk data to the new backend failed. For data security "
#~ "reasons Nepomuk will be disabled until the situation has been resolved "
#~ "manually."
#~ msgstr ""
#~ "Die Umwandlung der Nepomuk-Daten für den neuen Treiber ist "
#~ "fehlgeschlagen. Aus Sicherheitsgründen wird Nepomuk deaktiviert, bis Sie "
#~ "das Problem manuell behoben haben."

#~ msgctxt "@info - notification message"
#~ msgid "Successfully converted Nepomuk data to the new backend."
#~ msgstr ""
#~ "Die Nepomuk-Daten-Umwandlung für den neuen Treiber ist abgeschlossen."

#~ msgctxt "@title job"
#~ msgid "Converting Nepomuk database"
#~ msgstr "Nepomuk-Datenbank wird konvertiert"

#~ msgid "Old backend"
#~ msgstr "Alter Treiber"

#~ msgid "New backend"
#~ msgstr "Neuer Treiber"

#~ msgid "Parsing of file %1 failed (%2)"
#~ msgstr "Das Einlesen der Datei %1 ist fehlgeschlagen (%2)"

#, fuzzy
#~| msgid "Nepomuk"
#~ msgid "Nepomuk Backup"
#~ msgstr "Nepomuk"

#, fuzzy
#~| msgid "Nepomuk"
#~ msgid "NepomukBackup"
#~ msgstr "Nepomuk"

#~ msgid "Maintainer"
#~ msgstr "Betreuer"

#, fuzzy
#~| msgid ""
#~| "The Nepomuk query service is not running. Unable to answer queries "
#~| "without it."
#~ msgctxt "@info"
#~ msgid ""
#~ "The Nepomuk backup service does not seem to be running. Backups cannot be "
#~ "handled without it."
#~ msgstr ""
#~ "Die Nepomuk Abfrage-Dienste werden nicht ausgeführt; derzeit können keine "
#~ "Abfragen bearbeitet werden."

#~ msgid "Nepomuk Server"
#~ msgstr "Nepomuk-Serverdienst"

#~ msgid "Nepomuk Server - Manages Nepomuk storage and services"
#~ msgstr "Nepomuk-Serverdienst – Verwaltet die Nepomuk-Datenbank und -Dienste"

#~ msgid "(c) 2008, Sebastian Trüg"
#~ msgstr "© 2008, Sebastian Trüg"

#~ msgid "Nepomuk Service Stub"
#~ msgstr "Nepomuk-Dienst"

#~ msgctxt "@info:shell"
#~ msgid "Service to start"
#~ msgstr "Zu startender Dienst"

#~ msgid "No service name specified"
#~ msgstr "Kein Name für den Dienst angegeben"

#~ msgid "Unknown service name:"
#~ msgstr "Unbekannter Dienst:"

#~ msgid "Form"
#~ msgstr "Formular"

#, fuzzy
#~| msgctxt "@title job"
#~| msgid "Converting Nepomuk database"
#~ msgid "Restore Nepomuk Database"
#~ msgstr "Nepomuk-Datenbank wird konvertiert"

#~ msgid "Miscellaneous"
#~ msgstr "Verschiedenes"

#~ msgid "Sort all desktop query results by importance as deducted by Nepomuk"
#~ msgstr "Alle Ergebnisse von Arbeitsflächenabfragen nach Relevanz sortieren"

#~ msgid ""
#~ "Sort all search results by the importance deducted by Nepomuk.\n"
#~ "The importance of a resource is determined by its usage times, its usage "
#~ "frequency, its type, and other criteria."
#~ msgstr ""
#~ "Alle Suchergebnisse nach der von Nepomuk berechneten Relevanz sortieren.\n"
#~ "Die Relevanz einer Ressource ergibt sich aus Nutzungszeit, "
#~ "Nutzungshäufigkeit und der Art der Ressource sowie anderen Kriterien."

#~ msgid "Always sort results by importance"
#~ msgstr "Ergebnisse immer nach Relevanz sortieren"

#~ msgid "Modify the importance of document types"
#~ msgstr "Die Relevanz der Dokumentenarten ändern."

#~ msgid "Modify document types priorities..."
#~ msgstr "Prioritäten der Dokumentenarten ändern ..."

#~ msgid "Suspend or resume the file indexer manually"
#~ msgstr "Den Datei-Indexer von Hand aussetzen oder fortsetzen."

#~ msgid "Configure File Indexer"
#~ msgstr "Datei-Indizierung einrichten"

#~ msgid ""
#~ "No Soprano Database backend available. Please check your installation."
#~ msgstr ""
#~ "Es ist kein Soprano-Datenbanktreiber verfügbar. Bitte überprüfen Sie die "
#~ "Installation."

#~ msgid "Nepomuk cannot be started"
#~ msgstr "Nepomuk lässt sich nicht starten."

#~ msgid ""
#~ "The Nepomuk Server is not running. The settings will be used the next "
#~ "time the server is started."
#~ msgstr ""
#~ "Der Nepomuk-Dienst läuft nicht. Die neuen Einstellungen werden beim "
#~ "nächsten Start des Nepomuk-Dienstes verwendet."

#~ msgid "Nepomuk Strigi File Indexing"
#~ msgstr "Nepomuk-Strigi-Datei-Indizierung"

#~ msgid "Strigi Indexing State"
#~ msgstr "Status der Indizierung"

#~ msgid "Nepomuk Storage State"
#~ msgstr "Status der Speicherung"

#~ msgid "Filters which define the files that Strigi should ignore"
#~ msgstr ""
#~ "Filterregeln, die festlegen, welche Dateien von Strigi ignoriert werden "
#~ "sollen"

#~ msgctxt ""
#~ "@title UDS_DISPLAY_NAME for a KIO directory listing. %1 is the query the "
#~ "user entered."
#~ msgid "Query Results from '%1'"
#~ msgstr "Abfrageergebnisse von „%1“"

#~ msgid "Query Results"
#~ msgstr "Abfrageergebnisse"

#~ msgid ""
#~ "The maximum amount of memory the Nepomuk database should use. The more "
#~ "memory Nepomuk has the more performant it will be."
#~ msgstr ""
#~ "Der maximale Arbeitsspeicher (RAM), der von der Nepomuk-Datenbank "
#~ "verwendet werden darf. Je mehr Arbeitsspeicher Nepomuk zur Verfügung "
#~ "steht, desto effizienter läuft es."

#~ msgctxt "@info:status"
#~ msgid "Checking file system for new files"
#~ msgstr "Das Dateisystem wird nach neuen Dateien durchsucht."

#~ msgctxt ""
#~ "Boolean AND keyword in desktop search strings. You can add several "
#~ "variants separated by spaces, e.g. retain the English one alongside the "
#~ "translation; keywords are not case sensitive. Make sure there is no "
#~ "conflict with the OR keyword."
#~ msgid "and"
#~ msgstr "and, und"

#~ msgctxt "@info - notification message"
#~ msgid "Rebuilding Nepomuk full text search index for new features done."
#~ msgstr ""
#~ "Der Neuaufbau des Nepomuk-Volltext-Index für neue Funktionen ist "
#~ "abgeschlossen"

#~ msgctxt "@info - notification message"
#~ msgid ""
#~ "Rebuilding Nepomuk full text search index for new features. This will "
#~ "only be done once and might take a while."
#~ msgstr ""
#~ "Der Neuaufbau des Nepomuk-Volltext-Index für neue Funktionen ist "
#~ "abgeschlossen. Diese Umwandlung wird nur einmal durchgeführt und kann "
#~ "eine Weile dauern."

#~ msgid "All Music Files"
#~ msgstr "Alle Musik-Dateien"

#~ msgid "Recent Files"
#~ msgstr "Kürzlich verwendete Dateien"

#~ msgid "Some data was lost in the conversion."
#~ msgstr "Bei der Umwandlung gingen einige Daten verloren."

#~ msgid "Resuming Strigi file indexing."
#~ msgstr "Die Strigi-Datei-Indizierung wird fortgesetzt."

#~ msgid "Configure Strigi"
#~ msgstr "Strigi einrichten"

#~ msgid "Today's Files"
#~ msgstr "Dateien von Heute"

#~ msgid "Yesterday's Files"
#~ msgstr "Dateien von Gestern"

#~ msgctxt "@info_status"
#~ msgid "File indexer is suspended"
#~ msgstr "Der Datei-Indexer ist angehalten."

#~ msgctxt "@info_status"
#~ msgid "Strigi is currently indexing files in folder %1"
#~ msgstr "Strigi indiziert gerade Dateien im Ordner %1"

#~ msgctxt "@info_status"
#~ msgid "File indexer is idle"
#~ msgstr "Der Datei-Indexer ist untätig."

#~ msgid "The folders Strigi scans for indexable files"
#~ msgstr "Die Ordner, in denen Strigi nach indizierbaren Dateien sucht"

#~ msgid ""
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Select the folders that "
#~ "Strigi should scan for files to index. The files in these folders will be "
#~ "searchable through Strigi Desktop Search.</p></body></html>"
#~ msgstr ""
#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/"
#~ "css\">\n"
#~ "p, li { white-space: pre-wrap; }\n"
#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; "
#~ "font-weight:400; font-style:normal;\">\n"
#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">Wählen Sie die Ordner "
#~ "aus, in denen Strigi nach Dateien zum Indizieren suchen soll. Die Dateien "
#~ "in diesen Ordnern können dann mit der Strigi-basierten Suche gefunden "
#~ "werden.</p></body></html>"

#~ msgid ""
#~ "Strigi (the desktop file indexer) crashed repeatedly. It will not be "
#~ "started again."
#~ msgstr ""
#~ "Strigi (die Desktop-Suchmaschine) ist mehrfach hintereinander abgestürzt. "
#~ "Sie wird nicht erneut gestartet."