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
|
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE rdf:RDF SYSTEM "chrome://branding/locale/brand.dtd" >
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:nc="http://home.netscape.com/NC-rdf#">
<rdf:Description about="urn:root">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="welcome" nc:name="Kezdőlap" nc:link="welcome_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="help-help" nc:name="A súgóablak használata" nc:link="help_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="ieusers" nc:name="Internet Explorer-felhasználóknak" nc:link="forieusers.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav" nc:name="Webböngészés" nc:link="nav_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail" nc:name="A Levelező használata" nc:link="mailnews_getting_started.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp" nc:name="Weboldalak létrehozása" nc:link="composer_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust" nc:name="A &brandShortName; testreszabása" nc:link="customize_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="using-priv-help" nc:name="Adatvédelmi funkciók használata" nc:link="privacy_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="using-help-certs" nc:name="Tanúsítványok használata" nc:link="using_certs_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="profile-help" nc:name="Profilok kezelése" nc:link="profiles_help.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="shortcuts" nc:name="A &brandShortName; billentyűparancsai" nc:link="shortcuts.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="tools" nc:name="Fejlesztőeszközök" nc:link="developer_tools.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="glossary" nc:name="Fogalomtár" nc:link="glossary.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#help-help">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="help-help-window" nc:name="A kívánt témakör megkeresése" nc:link="help_help.xhtml#finding_the_topic_you_want"/> </rdf:li>
<rdf:li> <rdf:Description ID="help-help-retrace" nc:name="Korábbi lépések követése és nyomtatás" nc:link="help_help.xhtml#retracing_your_steps"/> </rdf:li>
<rdf:li> <rdf:Description ID="help-help-buttons" nc:name="A Súgó gomb használata" nc:link="help_help.xhtml#using_help_buttons"/> </rdf:li>
<rdf:li> <rdf:Description ID="help-help-tips" nc:name="Keresési tippek" nc:link="help_help.xhtml#search_tips"/></rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#ieusers">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="terms" nc:name="Különbségek a szóhasználatban" nc:link="forieusers.xhtml#mozilla_and_internet_explorer_terminology_differences"/> </rdf:li>
<rdf:li> <rdf:Description ID="favorites" nc:name="Az IE-kedvencek" nc:link="forieusers.xhtml#about_your_ie_favorites"/> </rdf:li>
<rdf:li> <rdf:Description ID="key-features" nc:name="A böngésző funkciói" nc:link="forieusers.xhtml#browser_features"/> </rdf:li>
<rdf:li> <rdf:Description ID="more-features" nc:name="Egyéb funkciók" nc:link="forieusers.xhtml#other_features"/> </rdf:li>
<rdf:li> <rdf:Description ID="keyboard-shortcuts" nc:name="Billentyűparancsok" nc:link="forieusers.xhtml#keyboard_shortcuts"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc" nc:name="Weboldalak bejárása" nc:link="nav_help.xhtml#navigating_web_pages"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-search" nc:name="Keresés a weben" nc:link="nav_help.xhtml#searching_the_web"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-printsave" nc:name="Oldalak másolása, mentése és nyomtatása" nc:link="nav_help.xhtml#copying_saving_and_printing_pages"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-language" nc:name="Különféle nyelvek és nemzetközi tartalom használata" nc:link="nav_help.xhtml#using_languages_and_international_content"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-plugins" nc:name="Bővítmények és letöltés" nc:link="nav_help.xhtml#plugins_and_downloads"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-ses" nc:name="A sebesség és a hatékonyság növelése" nc:link="nav_help.xhtml#improving_speed_and_efficiency"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-proxies" nc:name="Proxyk" nc:link="nav_help.xhtml#proxies"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-page-info" nc:name="Oldal adatainak megtekintése" nc:link="page_info_help.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-doc">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc-view" nc:name="A kezdőlap megtekintése" nc:link="nav_help.xhtml#viewing_your_home_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-move" nc:name="Áttérés másik oldalra" nc:link="nav_help.xhtml#moving_to_another_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-link" nc:name="Kattintás hivatkozásra" nc:link="nav_help.xhtml#clicking_a_link"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-steps" nc:name="Korábbi lépések követése" nc:link="nav_help.xhtml#retracing_your_steps"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-reopen" nc:name="Reopening Closed Tabs or Windows" nc:link="nav_help.xhtml#reopening_closed_tabs_windows"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-reload" nc:name="Leállítás és frissítés" nc:link="nav_help.xhtml#stopping_and_reloading"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-bmark" nc:name="Könyvjelzővel jelölt oldalak felkeresése" nc:link="nav_help.xhtml#visiting_bookmarked_pages"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-tabbed" nc:name="Böngészőlapok használata" nc:link="nav_help.xhtml#using_tabbed_browsing"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-sidebar" nc:name="Az Oldalsáv használata" nc:link="nav_help.xhtml#using_sidebar"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-doc-search">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc-searchweb" nc:name="Gyorskeresés" nc:link="nav_help.xhtml#fast_searches"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-smartsearch" nc:name="Oldalsáv haladó keresési módja" nc:link="nav_help.xhtml#sidebar_advanced_search_mode"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-searchprefs" nc:name="Keresési beállítások megadása" nc:link="nav_help.xhtml#setting_search_preferences"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-keywords" nc:name="Internetes kulcsszavak használata" nc:link="nav_help.xhtml#using_internet_keywords"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-searchpage" nc:name="Keresés az oldalon" nc:link="nav_help.xhtml#searching_within_a_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-find_as_you_type" nc:name="Keresés gépeléssel" nc:link="nav_help.xhtml#using_find_as_you_type"/></rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-searchbookmark" nc:name="Keresés a könyvjelzők vagy az előzmények listájában" nc:link="nav_help.xhtml#searching_the_bookmarks_or_history_list"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-doc-printsave">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc-copy" nc:name="Oldal részének másolása" nc:link="nav_help.xhtml#copying_part_of_a_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-save" nc:name="Oldal vagy egy részének mentése" nc:link="nav_help.xhtml#saving_all_or_part_of_a_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-print" nc:name="Oldal nyomtatása" nc:link="nav_help.xhtml#printing_a_page"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-doc-language">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc-charencode" nc:name="Karakterkódolás és betűkészlet választása" nc:link="nav_help.xhtml#selecting_character_encodings_and_fonts"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-languagepref" nc:name="Nyelvi beállítások megadása" nc:link="nav_help.xhtml#setting_language_preferences"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-webcontent" nc:name="Honosított &brandShortName;-verziók keresése" nc:link="nav_help.xhtml#finding_localized_version"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-doc-pluginsdownloads">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc-plug-ins" nc:name="Bővítmények" nc:link="nav_help.xhtml#plugins"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-helperapps" nc:name="Segédalkalmazások" nc:link="nav_help.xhtml#helper_applications"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-dlmanager" nc:name="Letöltéskezelő" nc:link="nav_help.xhtml#download_manager"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-doc-ses">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-doc-autoload" nc:name="Automatikus betöltés" nc:link="nav_help.xhtml#automatic_loading"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-keywords" nc:name="Egyéni könyvjelzőkulcsszavak használata" nc:link="nav_help.xhtml#custom_keywords"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-cache" nc:name="A gyorsítótár beállításai" nc:link="nav_help.xhtml#changing_cache_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-smartup" nc:name="A legfrissebb szoftver automatikus letöltése" nc:link="nav_help.xhtml#getting_the_latest_software_automatically"/> </rdf:li>
<rdf:li> <rdf:Description ID="nav-doc-mousewheel" nc:name="Görgős egér használata" nc:link="nav_help.xhtml#using_a_mouse_wheel"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-proxies">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="nav-prox" nc:name="Értékek beállítása" nc:link="nav_help.xhtml#setting_proxy_values"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#nav-page-info">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="pageinfo_general" nc:name="Általános panellap" nc:link="page_info_help.xhtml#general_tab"/> </rdf:li>
<rdf:li> <rdf:Description ID="pageinfo_forms" nc:name="Űrlapok panellap" nc:link="page_info_help.xhtml#forms_tab"/> </rdf:li>
<rdf:li> <rdf:Description ID="pageinfo_links" nc:name="Hivatkozások panellap" nc:link="page_info_help.xhtml#links_tab"/> </rdf:li>
<rdf:li> <rdf:Description ID="pageinfo_media" nc:name="Média panellap" nc:link="page_info_help.xhtml#media_tab"/> </rdf:li>
<rdf:li> <rdf:Description ID="pageinfo_security" nc:name="Biztonság panellap" nc:link="page_info_help.xhtml#security_tab"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- MAIL HELP SECTION -->
<rdf:Description about="#mail">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc" nc:name="A levelezés alapjai" nc:link="mailnews_getting_started.xhtml#getting_started_with_mozilla_mail_and_newsgroups" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-importing-other" nc:name="Levelek importálása más programokból" nc:link="mailnews_getting_started.xhtml#importing_mail_from_other_programs" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-read" nc:name="Üzenetek olvasása" nc:link="mailnews_using_mail.xhtml#reading_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send" nc:name="Üzenetek küldése" nc:link="mailnews_using_mail.xhtml#sending_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-html" nc:name="HTML formátumú levélüzenetek létrehozása" nc:link="mailnews_using_mail.xhtml#creating_html_mail_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-attach" nc:name="Mellékletek használata" nc:link="mailnews_using_mail.xhtml#using_attachments" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-delete" nc:name="Üzenetek törlése" nc:link="mailnews_using_mail.xhtml#deleting_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-address" nc:name="Címjegyzék használata" nc:link="mailnews_addressbooks.xhtml#using_address_books" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-folders" nc:name="Üzenetek rendszerezése" nc:link="mailnews_organizing.xhtml#organizing_your_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-junk" nc:name="Levélszemét kezelése" nc:link="mailnews_organizing.xhtml#controlling_junk_mail" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-news" nc:name="Hírcsoportok kezelése" nc:link="mailnews_newsgroups.xhtml#getting_started_with_newsgroups" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-blogs" nc:name="Ismerkedés a Blogok és hírforrások szolgáltatással" nc:link="mailnews_blogs_and_feeds.xhtml#getting_started_with_blogs_and_news_feeds" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-offline" nc:name="Kapcsolat nélküli munka" nc:link="mailnews_offline.xhtml#working_offline" /> </rdf:li>
<rdf:li> <rdf:Description ID="sign-encrypt" nc:name="Üzenetek aláírása és titkosítása" nc:link="mailnews_security.xhtml#signing_and_encrypting_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-account-settings" nc:name="A postafiókok beállításai" nc:link="mailnews_account_settings.xhtml#mail_and_newsgroups_account_settings" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-mailprefs" nc:name="A Levelező és hírolvasó beállításai" nc:link="mailnews_preferences.xhtml#mail_and_newsgroup_preferences" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-setup" nc:name="A Postafiók beállításai varázsló használata" nc:link="mailnews_getting_started.xhtml#using_the_mail_account_setup_wizard"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add" nc:name="További postafiókok beállítása" nc:link="mailnews_getting_started.xhtml#setting_up_additional_mail_and_news_accounts"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-change" nc:name="Fiókok beállításainak módosítása" nc:link="mailnews_getting_started.xhtml#changing_the_settings_for_an_account"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-importing-other">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-importing-mail-messages" nc:name="Levelek importálása" nc:link="mailnews_getting_started.xhtml#importing_mail_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-importing-mail-settings" nc:name="Levelezési beállítások importálása" nc:link="mailnews_getting_started.xhtml#importing_mail_settings" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-read">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-notify" nc:name="Új levelek letöltése" nc:link="mailnews_using_mail.xhtml#getting_new_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-view" nc:name="A Levelező ablak beállítása" nc:link="mailnews_using_mail.xhtml#choosing_how_you_view_the_mail_window"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-thread" nc:name="Üzenetek rendezése és csoportosítása" nc:link="mailnews_using_mail.xhtml#sorting_and_threading_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-printsave" nc:name="Üzenetek mentése és nyomtatása" nc:link="mailnews_using_mail.xhtml#saving_and_printing_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-scripts" nc:name="Képek, parancsfájlok és bővítmények kezelése" nc:link="mailnews_using_mail.xhtml#controlling_images_scripts_and_plugins"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-send">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-send-compose" nc:name="Üzenetek szerkesztése" nc:link="mailnews_using_mail.xhtml#composing_mail_and_newsgroup_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-new" nc:name="A szerkesztőablak használata" nc:link="mailnews_using_mail.xhtml#using_the_message_composition_window" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-address" nc:name="Üzenet címzése" nc:link="mailnews_using_mail.xhtml#addressing_a_message" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-options" nc:name="Üzenetküldési beállítások és műveletek" nc:link="mailnews_using_mail.xhtml#selecting_message_sending_options" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-reply" nc:name="Üzenet megválaszolása" nc:link="mailnews_using_mail.xhtml#replying_to_a_message" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-forward" nc:name="Üzenet továbbítása" nc:link="mailnews_using_mail.xhtml#forwarding_a_message" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-receipt" nc:name="Visszajelzés az üzenetünk megnyitásáról" nc:link="mailnews_using_mail.xhtml#confirming_that_your_message_was_opened" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-edit" nc:name="Piszkozat mentése és szerkesztése" nc:link="mailnews_using_mail.xhtml#saving_and_editing_a_message_draft" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-send-template" nc:name="Sablonok létrehozása és használata" nc:link="mailnews_using_mail.xhtml#creating_and_using_templates" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-html">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-html-use" nc:name="A HTML használata az üzenetekben" nc:link="mailnews_using_mail.xhtml#using_html_in_your_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-html-options" nc:name="HTML-üzenetek küldési beállításai" nc:link="mailnews_using_mail.xhtml#choosing_html_mail_sending_options" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-html-address" nc:name="HTML-üzenetek címzettjeinek megadása" nc:link="mailnews_using_mail.xhtml#specifying_recipients_for_html_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-html-source" nc:name="HTML-üzenet forrásának megtekintése" nc:link="mailnews_using_mail.xhtml#viewing_the_message_source_for_html_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-html-question" nc:name="A Küldés HTML formátumban párbeszédpanel használata" nc:link="mailnews_using_mail.xhtml#using_the_html_mail_question_dialog_box" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-html-use">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-html-edit" nc:name="HTML-elemek szerkesztése vagy beszúrása" nc:link="mailnews_using_mail.xhtml#editing_or_inserting_html_elements" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-attach">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-attach-file" nc:name="Fájl vagy weboldal csatolása" nc:link="mailnews_using_mail.xhtml#attaching_a_file_or_web_page" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-attach-view" nc:name="Mellékletek megtekintése és megnyitása" nc:link="mailnews_using_mail.xhtml#viewing_and_opening_attachments" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-attach-save" nc:name="Mellékletek mentése" nc:link="mailnews_using_mail.xhtml#saving_attachments" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-delete">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-delete-server" nc:name="POP- vagy IMAP-üzenetek törlése" nc:link="mailnews_using_mail.xhtml#deleting_pop_or_imap_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-delete-trash" nc:name="Üzenetek áthelyezése a Törölt elemek mappába és mappából" nc:link="mailnews_using_mail.xhtml#moving_messages_to_and_from_the_trash" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-address">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-add-about" nc:name="Címjegyzékek – áttekintés" nc:link="mailnews_addressbooks.xhtml#about_address_books" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-names" nc:name="Bejegyzések felvétele saját címjegyzékbe" nc:link="mailnews_addressbooks.xhtml#adding_entries_to_your_address_books" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-book" nc:name="Új címjegyzék létrehozása" nc:link="mailnews_addressbooks.xhtml#creating_a_new_address_book" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-card" nc:name="Új névjegykártya létrehozása" nc:link="mailnews_addressbooks.xhtml#creating_a_new_address_book_card" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-list" nc:name="Levelezőlista létrehozása" nc:link="mailnews_addressbooks.xhtml#creating_a_mailing_list" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-listedit" nc:name="Levelezőlista szerkesztése" nc:link="mailnews_addressbooks.xhtml#editing_a_mailing_list" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail_ab_search" nc:name="Keresés a címjegyzékekben" nc:link="mailnews_addressbooks.xhtml#searching_address_books_and_directories" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-import" nc:name="Címjegyzék importálása" nc:link="mailnews_addressbooks.xhtml#importing_address_books" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-export" nc:name="Címjegyzék exportálása" nc:link="mailnews_addressbooks.xhtml#exporting_address_books" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-add-sync-LDAP-add" nc:name="LDAP-címtár felvétele és eltávolítása" nc:link="mailnews_addressbooks.xhtml#adding_and_removing_ldap_directories" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-add-card">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-card-properties" nc:name="Névjegykártya tulajdonságainak szerkesztése" nc:link="mailnews_addressbooks.xhtml#viewing_or_editing_card_properties" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail_ab_search">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail_advanced_ab_search" nc:name="Adott bejegyzések keresése" nc:link="mailnews_addressbooks.xhtml#searching_for_specific_entries" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-add-sync-LDAP-add">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-ldap-properties" nc:name="Címtárkiszolgáló beállításai" nc:link="mailnews_addressbooks.xhtml#directory_server_settings" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-folders">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="folder-creating" nc:name="Mappa létrehozása" nc:link="mailnews_organizing.xhtml#creating_a_folder"/> </rdf:li>
<rdf:li> <rdf:Description ID="folder-renaming" nc:name="Mappa átnevezése" nc:link="mailnews_organizing.xhtml#renaming_a_folder"/> </rdf:li>
<rdf:li> <rdf:Description ID="folder-copying" nc:name="Mappa áthelyezése vagy másolása" nc:link="mailnews_organizing.xhtml#moving_or_copying_a_folder"/> </rdf:li>
<rdf:li> <rdf:Description ID="folder-opening" nc:name="Üzenetek mappákba rendezése" nc:link="mailnews_organizing.xhtml#filing_messages_in_folders"/> </rdf:li>
<rdf:li> <rdf:Description ID="folder-sharing" nc:name="Mappák megosztása" nc:link="mailnews_organizing.xhtml#sharing_folders_with_other_users"/> </rdf:li>
<rdf:li> <rdf:Description ID="labeling-messages" nc:name="Üzenetek címkézése" nc:link="mailnews_organizing.xhtml#tagging_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-flagging" nc:name="Üzenetek megjelölése" nc:link="mailnews_organizing.xhtml#marking_or_flagging_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="message-views-using" nc:name="Üzenetnézetek használata" nc:link="mailnews_organizing.xhtml#using_message_views"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-filters" nc:name="Levelezőszűrők létrehozása" nc:link="mailnews_organizing.xhtml#creating_message_filters"/> </rdf:li>
<rdf:li> <rdf:Description ID="search-mailnews" nc:name="Keresés az üzenetekben" nc:link="mailnews_organizing.xhtml#searching_through_messages"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#folder-sharing">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="folder-subscribing" nc:name="Feliratkozás egy megosztott mappára" nc:link="mailnews_organizing.xhtml#subscribing_to_a_shared_folder"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#labeling-messages">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="label-apply" nc:name="Címke alkalmazása" nc:link="mailnews_organizing.xhtml#applying_a_tag"/> </rdf:li>
<rdf:li> <rdf:Description ID="label-customize" nc:name="Címkék testreszabása" nc:link="mailnews_organizing.xhtml#customizing_tags"/> </rdf:li>
<rdf:li> <rdf:Description ID="label-sort" nc:name="Üzenetek rendezése címkék szerint" nc:link="mailnews_organizing.xhtml#sorting_messages_by_tags"/> </rdf:li>
<rdf:li> <rdf:Description ID="label-remove" nc:name="Címkék eltávolítása" nc:link="mailnews_organizing.xhtml#removing_tags"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#message-views-using">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="message-views-create-new" nc:name="Egyéni nézet létrehozása" nc:link="mailnews_organizing.xhtml#creating_a_custom_view"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-filters">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="send-filter" nc:name="Adott feladó üzeneteinek szűrése" nc:link="mailnews_organizing.xhtml#filtering_messages_from_a_specific_sender"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#search-mailnews">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="search_messages" nc:name="Adott üzenetek keresése" nc:link="mailnews_organizing.xhtml#searching_for_specific_messages"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-junk">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-junk-controls" nc:name="A Levélszemét-kezelő használata" nc:link="mailnews_organizing.xhtml#using_junk_mail_controls" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-junk-options" nc:name="Levélszemét-kezelő használata" nc:link="mailnews_organizing.xhtml#junk_controls_options" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-junk-filters" nc:name="Levélszemét kezelése és Levélszűrők" nc:link="mailnews_organizing.xhtml#junk_controls_and_filters" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-junk-phishing" nc:name="Phishing Detection" nc:link="mailnews_organizing.xhtml#phishing_detection" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-importing-other">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-importing-mail-messages" nc:name="Levelek importálása" nc:link="mail_help.xhtml#importing_mail_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="mail-importing-mail-settings" nc:name="Levelezési beállítások importálása" nc:link="mail_help.xhtml#importing_mail_settings" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-news">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-subscribe" nc:name="Feliratkozás hírcsoportra" nc:link="mailnews_newsgroups.xhtml#subscribing_to_newsgroups"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-reading-news" nc:name="Hírcsoportüzenetek olvasása" nc:link="mailnews_newsgroups.xhtml#reading_newsgroup_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-posting" nc:name="Hírcsoportüzenetek elküldése" nc:link="mailnews_newsgroups.xhtml#posting_newsgroup_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-replying-news" nc:name="Hozzászólás folyamatban lévő eszmecseréhez" nc:link="mailnews_newsgroups.xhtml#contributing_to_ongoing_discussions"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-monitoring" nc:name="Témacsoportok figyelése" nc:link="mailnews_newsgroups.xhtml#monitoring_threads"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-delete-news" nc:name="Hírcsoport eltávolítása" nc:link="mailnews_newsgroups.xhtml#removing_a_newsgroup"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-add-newsserver" nc:name="Hírcsoport-kiszolgáló felvétele" nc:link="mailnews_newsgroups.xhtml#adding_a_newsgroup_server"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
rdf:Description about="#mail-doc-blogs">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-blogs-subscribe" nc:name="Subscribing to blogs & news feeds" nc:link="mailnews_blogs_and_feeds.xhtml#subscribing_to_blogs_and_news_feeds"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-subscribe-from-browser" nc:name="Subscribing to blogs & news feeds from a browser window" nc:link="mailnews_blogs_and_feeds.xhtml#subscribing_to_blogs_and_news_feeds_from_browser"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-reading" nc:name="Reading blogs & news feed messages" nc:link="mailnews_blogs_and_feeds.xhtml#reading_blogs_and_news_feed_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-posting" nc:name="Posting blog messages" nc:link="mailnews_blogs_and_feeds.xhtml#posting_blog_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-comments" nc:name="Adding comments to a blog post" nc:link="mailnews_blogs_and_feeds.xhtml#adding_comments_to_a_blog_post"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-exporting-importing" nc:name="Exporting and importing feeds" nc:link="mailnews_blogs_and_feeds.xhtml#exporting_and_importing_feeds"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-editing" nc:name="Editing a feed" nc:link="mailnews_blogs_and_feeds.xhtml#editing_a_feed"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-removing" nc:name="Removing a feed" nc:link="mailnews_blogs_and_feeds.xhtml#removing_a_feed"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-using-different-accounts" nc:name="Using different blogs & news feeds accounts" nc:link="mailnews_blogs_and_feeds.xhtml#using_different_blogs_and_news_feeds_accounts"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-organizing" nc:name="Organizing your feeds" nc:link="mailnews_blogs_and_feeds.xhtml#organizing_your_feeds"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-blogs-organizing">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-blogs-feeds-folders" nc:name="Feeds versus folders" nc:link="mailnews_blogs_and_feeds.xhtml#feeds_vs_folders"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-folders-in-blogs" nc:name="Organizing folders in Blogs & News Feeds accounts" nc:link="mailnews_blogs_and_feeds.xhtml#organizing_folders_in_blogs_and_news_feeds_accounts"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-multiple-feeds" nc:name="Downloading multiple feeds in a single folder" nc:link="mailnews_blogs_and_feeds.xhtml#downloading_multiple_feeds_in_a_single_folder"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-blogs-moving-feeds" nc:name="Moving a feed to another folder" nc:link="mailnews_blogs_and_feeds.xhtml#moving_a_feed_to_another_folder"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-offline">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-offline-setup" nc:name="A Mozilla Levelező beállítása kapcsolat nélküli munkára" nc:link="mail_help.xhtml#setting_up_mozilla_mail_and_newsgroups_to_work_offline"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-inbox" nc:name="A Beérkezett üzenetek (Inbox) letöltése" nc:link="mail_help.xhtml#downloading_your_inbox_for_offline_use"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-folder" nc:name="Egy mappa letöltése" nc:link="mail_help.xhtml#downloading_an_individual_folder_for_offline_use"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-flagged" nc:name="Kijelölt vagy megjelölt üzenetek letöltése" nc:link="mail_help.xhtml#downloading_selected_or_flagged_messages_for_offline_use"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-directory" nc:name="Címtárbejegyzések letöltése" nc:link="mail_help.xhtml#downloading_directory_entries_for_offline_use"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-accounts" nc:name="Fiókok beállítása kapcsolat nélküli munkához" nc:link="mail_help.xhtml#setting_up_your_accounts_for_working_offline"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-items" nc:name="Elemek kijelölése kapcsolat nélküli megtekintésre" nc:link="mail_help.xhtml#selecting_items_for_offline_viewing"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-sync" nc:name="Üzenetek letöltése és szinkronizálása" nc:link="mail_help.xhtml#downloading_and_synchronizing_your_messages"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-offline-go" nc:name="Kapcsolat nélküli munka, majd később csatlakozás" nc:link="mail_help.xhtml#working_offline_and_reconnecting_later"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#sign-encrypt">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="sign-encrypt-about" nc:name="Digitális aláírás és titkosítás" nc:link="mailnews_security.xhtml#about_digital_signatures_and_encryption" /> </rdf:li>
<rdf:li> <rdf:Description ID="sign-encrypt-get" nc:name="Mások tanúsítványának beszerzése" nc:link="mailnews_security.xhtml#getting_other_peoples_certificates" /> </rdf:li>
<rdf:li> <rdf:Description ID="sign-encrypt-config" nc:name="Biztonsági beállítások megadása" nc:link="mailnews_security.xhtml#configuring_security_settings" /> </rdf:li>
<rdf:li> <rdf:Description ID="sign-encrypt-signing" nc:name="Új üzenet aláírása és titkosítása" nc:link="mailnews_security.xhtml#signing_and_encrypting_a_new_message" /> </rdf:li>
<rdf:li> <rdf:Description ID="sign-encrypt-read" nc:name="Aláírt és titkosított üzenetek elolvasása" nc:link="mailnews_security.xhtml#reading_signed_and_encrypted_messages" /> </rdf:li>
<rdf:li> <rdf:Description ID="compose_security" nc:name="Üzenetek biztonsága - Új üzenet ablak " nc:link="mailnews_security.xhtml#message_security_compose_window" /> </rdf:li>
<rdf:li> <rdf:Description ID="received_security" nc:name="Üzenetek biztonsága - Beérkezett üzenetek" nc:link="mailnews_security.xhtml#message_security_recieved_message" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#sign-encrypt-about">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="sign-encrypt-about-sig" nc:name="A digitális aláírás működése" nc:link="mailnews_security.xhtml#how_digital_signatures_work" /> </rdf:li>
<rdf:li> <rdf:Description ID="sign-encrypt-about-encrypt" nc:name="A titkosítás működése" nc:link="mailnews_security.xhtml#how_encryption_works" /> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-account-settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail_account_identity" nc:name="Postafiók beállításai" nc:link="mailnews_account_settings.xhtml#account_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-choose" nc:name="Kiszolgáló beállításai" nc:link="mailnews_account_settings.xhtml#server_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_copies" nc:name="Másolatok és mappák" nc:link="mailnews_account_settings.xhtml#copies_and_folders"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_addressing_settings" nc:name="Szerkesztés és címzés" nc:link="mailnews_account_settings.xhtml#addressing"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-offline-space" nc:name="Hálózat nélkül és lemezterület" nc:link="mailnews_account_settings.xhtml#synchronization_and_storage"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-account-receipts" nc:name="Tértivevények" nc:link="mailnews_account_settings.xhtml#return_receipts"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-account-junk" nc:name="Levélszemét beállítások" nc:link="mailnews_account_settings.xhtml#junk_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_security_settings" nc:name="Biztonság" nc:link="mailnews_account_settings.xhtml#security"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_local_folders_settings" nc:name="Helyi mappák" nc:link="mailnews_account_settings.xhtml#local_folders"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_smtp" nc:name="Levélküldő kiszolgáló (SMTP)" nc:link="mailnews_account_settings.xhtml#outgoing_server"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-choose">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail-doc-choose-IMAP" nc:name="IMAP – áttekintés" nc:link="mailnews_account_settings.xhtml#about_internet_message_access_protocol"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-choose-POP" nc:name="POP – áttekintés" nc:link="mailnews_account_settings.xhtml#about_post_office_protocol"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_server_imap" nc:name="Az IMAP-kiszolgáló beállításai" nc:link="mailnews_account_settings.xhtml#imap_server_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-doc-imap-advanced" nc:name="Az IMAP-kiszolgáló speciális beállításai" nc:link="mailnews_account_settings.xhtml#advanced_imap_server_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_server_pop3" nc:name="A POP-kiszolgáló beállításai" nc:link="mailnews_account_settings.xhtml#pop_server_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_server_nntp" nc:name="A hírcsoport-kiszolgáló beállításai" nc:link="mailnews_account_settings.xhtml#news_server_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-offline-space">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail_offline_imap" nc:name="IMAP" nc:link="mailnews_account_settings.xhtml#synchronization_and_storage_settings_imap"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_offline_pop3" nc:name="POP" nc:link="mailnews_account_settings.xhtml#disk_space_settings_pop"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_offline_blogs" nc:name="Blogok" nc:link="mailnews_account_settings.xhtml#disk_space_settings_blogs"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_offline_nntp" nc:name="Hírcsoportok" nc:link="mailnews_account_settings.xhtml#synchronization_and_storage_settings_nntp"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail_security_settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail_security_settings_certs" nc:name="Tanúsítványok – áttekintés" nc:link="mailnews_account_settings.xhtml#about_certificates"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_security_settings_sign" nc:name="Digitális aláírás" nc:link="mailnews_account_settings.xhtml#digital_signing"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_security_settings_encrypt" nc:name="Titkosítás" nc:link="mailnews_account_settings.xhtml#encryption"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#mail-doc-mailprefs">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="mail_prefs_general" nc:name="Levelező és hírolvasó" nc:link="mailnews_preferences.xhtml#mail_and_newsgroups"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_display" nc:name="Üzenet megjelenítése" nc:link="mailnews_preferences.xhtml#message_display"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_notifications" nc:name="Értesítések" nc:link="mailnews_preferences.xhtml#notifications"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_messages" nc:name="Üzenet szerkesztése" nc:link="mailnews_preferences.xhtml#composition"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_formatting" nc:name="Küldés formátuma" nc:link="mailnews_preferences.xhtml#send_format"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_addressing" nc:name="Címzés" nc:link="mailnews_preferences.xhtml#addressing_preferences"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-prefs-junk" nc:name="Levélszemét kezelése" nc:link="mailnews_preferences.xhtml#junk_and_suspect_preferences"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-prefs-tags" nc:name="Címkék" nc:link="mailnews_preferences.xhtml#tags"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail-prefs-receipts" nc:name="Tértivevények" nc:link="mailnews_preferences.xhtml#return_receipts_preferences"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_character_encoding" nc:name="Karakterkódolás" nc:link="mail_help.xhtml"mailnews_preferences.xhtml#character_encoding"/> </rdf:li>
<rdf:li> <rdf:Description ID="mail_prefs_offline" nc:name="Hálózat nélkül és lemezterület" nc:link="mailnews_preferences.xhtml#network_and_storage_preferences"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- COMPOSER HELP SECTION -->
<rdf:Description about="#comp">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc" nc:name="Új weboldal létrehozása" nc:link="composer_help.xhtml#starting_a_new_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="page_change" nc:name="A weboldal formázása" nc:link="composer_help.xhtml#formatting_your_web_pages"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-table" nc:name="Táblázatok használata a weboldalakon" nc:link="composer_help.xhtml#adding_tables_to_your_web_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-image" nc:name="Képek használata a weboldalakon" nc:link="composer_help.xhtml#adding_images_to_your_web_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-page" nc:name="Oldaltulajdonságok beállítása" nc:link="composer_help.xhtml#setting_page_properties"/> </rdf:li>
<rdf:li> <rdf:Description ID="link_properties" nc:name="Hivatkozások létrehozása" nc:link="composer_help.xhtml#creating_links_in_composer"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish" nc:name="Weboldal közzététele" nc:link="composer_help.xhtml#publishing_your_pages_on_the_web"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-prefs" nc:name="A HTML-szerkesztő beállításai" nc:link="composer_help.xhtml#composer_preferences"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-create" nc:name="Új weboldal létrehozása" nc:link="composer_help.xhtml#creating_a_new_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-save" nc:name="Weboldal mentése és megtekintése" nc:link="composer_help.xhtml#saving_and_browsing_your_new_page"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#page_change">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="props-para" nc:name="Bekezdések, címsorok és listák formázása" nc:link="composer_help.xhtml#formatting_paragraphs_headings_and_lists"/> </rdf:li>
<rdf:li> <rdf:Description ID="lists" nc:name="Felsorolások és listák kezelése" nc:link="composer_help.xhtml#working_with_lists"/> </rdf:li>
<rdf:li> <rdf:Description ID="char" nc:name="A szöveg színének, stílusának és betűkészletének megadása" nc:link="composer_help.xhtml#changing_text_color_style_and_font"/> </rdf:li>
<rdf:li> <rdf:Description ID="style-remove" nc:name="Szövegformázás eltávolítása vagy befejezése" nc:link="composer_help.xhtml#removing_or_discontinuing_text_styles"/> </rdf:li>
<rdf:li> <rdf:Description ID="find-text" nc:name="Szöveg keresése és cseréje" nc:link="composer_help.xhtml#finding_and_replacing_text"/> </rdf:li>
<rdf:li> <rdf:Description ID="props-hrule" nc:name="Vízszintes vonal beszúrása" nc:link="composer_help.xhtml#inserting_horizontal_lines"/> </rdf:li>
<rdf:li> <rdf:Description ID="special-chars" nc:name="Különleges karakterek beszúrása" nc:link="composer_help.xhtml#inserting_special_characters"/> </rdf:li>
<rdf:li> <rdf:Description ID="html-tag" nc:name="HTML-elemek és attribútumok beszúrása" nc:link="composer_help.xhtml#inserting_html_elements_and_attributes"/> </rdf:li>
<rdf:li> <rdf:Description ID="validate-html" nc:name="A HTML érvényesítése" nc:link="composer_help.xhtml#validating_the_html"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-choose" nc:name="A megfelelő szerkesztési mód választása" nc:link="composer_help.xhtml#choosing_the_right_editing_mode"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#props-hrule">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="props-hrule-horiz" nc:name="A vízszintes vonal tulajdonságainak beállítása" nc:link="composer_help.xhtml#setting_horizontal_line_properties"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#html-tag">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="advanced_property_editor" nc:name="Haladó tulajdonságok szerkesztése" nc:link="composer_help.xhtml#using_the_advanced_property_editor"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-table">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-table-insert" nc:name="Táblázat beszúrása" nc:link="composer_help.xhtml#inserting_a_table"/> </rdf:li>
<rdf:li> <rdf:Description ID="table_properties" nc:name="A táblázat tulajdonságainak módosítása" nc:link="composer_help.xhtml#changing_a_tables_properties"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-table-add" nc:name="Sorok, oszlopok és cellák beszúrása és törlése" nc:link="composer_help.xhtml#adding_and_deleting_rows_columns_and_cells"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-table-select" nc:name="Táblázatelemek kijelölése" nc:link="composer_help.xhtml#selecting_table_elements"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-table-copy" nc:name="Táblázatok áthelyezése, másolása és törlése" nc:link="composer_help.xhtml#moving_copying_and_deleting_tables"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-tableize" nc:name="Szöveg átalakítása táblázattá" nc:link="composer_help.xhtml#converting_text_into_a_table"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-table-add">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-table-change-default" nc:name="A táblázatszerkesztési műveletek alapértelmezett hatásának beállítása" nc:link="composer_help.xhtml#changing_the_default_table_editing_behavior"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-image">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-image-insert" nc:name="Kép beszúrása az oldalra" nc:link="composer_help.xhtml#inserting_an_image_into_your_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="image_properties" nc:name="Kép tulajdonságainak szerkesztése" nc:link="composer_help.xhtml#editing_image_properties"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-page">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-page-props" nc:name="Oldaltulajdonságok és metakódelemek beállítása" nc:link="composer_help.xhtml#setting_page_properties_and_meta_tags"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-page-appear" nc:name="Az oldal színeinek és hátterének beállítása" nc:link="composer_help.xhtml#setting_page_colors_and_backgrounds"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#link_properties">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-links-inpage" nc:name="Ugyanazon oldalra mutató hivatkozások létrehozása" nc:link="composer_help.xhtml#creating_links_within_the_same_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-links-others" nc:name="Más oldalra mutató hivatkozások létrehozása" nc:link="composer_help.xhtml#creating_links_to_other_pages"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-links-images" nc:name="Kép használata hivatkozásként" nc:link="composer_help.xhtml#using_images_as_links"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-links-remove" nc:name="Hivatkozások eltávolítása vagy befejezése" nc:link="composer_help.xhtml#removing_or_discontinuing_links"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-publish">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-publish-prepare" nc:name="Dokumentum közzététele" nc:link="composer_help.xhtml#publishing_a_document"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-update" nc:name="Közzétett dokumentum frissítése" nc:link="composer_help.xhtml#updating_a_published_document"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-as" nc:name="A fájlnév vagy a közzétételi hely módosítása" nc:link="composer_help.xhtml#changing_the_filename_or_publishing_location"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-newsite" nc:name="Új közzétételi hely létrehozása" nc:link="composer_help.xhtml#creating_a_new_publishing_site"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-default" nc:name="Az alapértelmezett közzétételi hely megadása" nc:link="composer_help.xhtml#choosing_the_default_publishing_site"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-delete" nc:name="Közzétételi hely törlése" nc:link="composer_help.xhtml#deleting_a_publishing_site"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-troubleshooting" nc:name="Általános közzétételi problémák megoldása" nc:link="composer_help.xhtml#solving_common_publishing_problems"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-settings" nc:name="Közzétételi beállítások" nc:link="composer_help.xhtml#publishing_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-publish-prepare">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-publish-tips" nc:name="Tippek a közzétételhez" nc:link="composer_help.xhtml#tips_for_avoiding_broken_links_or_missing_images"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-publish-troubleshooting">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-publish-troubleshooting-settings" nc:name="A közzétételi beállítások ellenőrzése" nc:link="composer_help.xhtml#verifying_your_publishing_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-troubleshooting-files" nc:name="A fájlnevek ellenőrzése" nc:link="composer_help.xhtml#checking_your_filenames"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-troubleshooting-errors" nc:name="Közzétételi hibák javítása" nc:link="composer_help.xhtml#fixing_publishing_errors"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-publish-settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="comp-doc-publish-publishtab" nc:name="Oldal közzététele – Közzététel" nc:link="composer_help.xhtml#publish_page_publish"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-settingstab" nc:name="Oldal közzététele – Beállítások" nc:link="composer_help.xhtml#publish_page_settings"/> </rdf:li>
<rdf:li> <rdf:Description ID="comp-doc-publish-site-settings" nc:name="Közzététel beállításai" nc:link="composer_help.xhtml#publish_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#comp-doc-prefs">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="composer_prefs_general" nc:name="HTML-szerkesztő" nc:link="composer_help.xhtml#composer"/> </rdf:li>
<rdf:li> <rdf:Description ID="composer_prefs_newpage" nc:name="Új oldal beállításai" nc:link="composer_help.xhtml#new_page_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- CUSTOMIZATION HELP CONTENT -->
<rdf:Description about="#cust">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-doc" nc:name="Oldalsáv" nc:link="customize_help.xhtml#sidebar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-tabbed" nc:name="Több lapos böngészés" nc:link="customize_help.xhtml#tabbed_browsing"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-font" nc:name="A betűkészletek, a színek és a témák megváltoztatása" nc:link="customize_help.xhtml#changing_fonts_colors_and_themes"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-toolbar" nc:name="Eszköztárak" nc:link="customize_help.xhtml#toolbars"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk" nc:name="Könyvjelzők" nc:link="customize_help.xhtml#bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-addons" nc:name="Kiegészítők" nc:link="customize_help.xhtml#add-ons"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-page" nc:name="A &brandShortName; indításának beállítása" nc:link="customize_help.xhtml#specifying_how_mozilla_starts_up"/> </rdf:li>
<rdf:li> <rdf:Description ID="appearance_pref" nc:name="Megjelenés beállításai" nc:link="cs_nav_prefs_appearance.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="navigator_pref_navigator" nc:name="A böngésző beállításai" nc:link="cs_nav_prefs_navigator.xhtml"/> </rdf:li>
<rdf:li> <rdf:Description ID="advanced_pref_advanced" nc:name="Haladó beállítások" nc:link="cs_nav_prefs_advanced.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-doc">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-sidebar-define" nc:name="Az Oldalsáv fogalma" nc:link="customize_help.xhtml#what_is_sidebar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-sidebar-openclose" nc:name="Az Oldalsáv megnyitása, bezárása és átméretezése" nc:link="customize_help.xhtml#opening_closing_and_resizing_sidebar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-sidebar-using" nc:name="Az Oldalsáv panellapjainak megtekintése" nc:link="customize_help.xhtml#viewing_sidebar_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-sidebar-adding" nc:name="Az Oldalsáv panellapjainak felvétele" nc:link="customize_help.xhtml#adding_sidebar_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-sidebar-indiv" nc:name="Az Oldalsáv panellapjainak testreszabása" nc:link="customize_help.xhtml#customizing_individual_sidebar_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-sidebar-reorg" nc:name="Az Oldalsáv panellapjainak átrendezése" nc:link="customize_help.xhtml#reorganizing_sidebar_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-sidebar-removing" nc:name="Az Oldalsáv panellapjainak eltávolítása" nc:link="customize_help.xhtml#removing_sidebar_tabs"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-tabbed">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-tabbed-whatis" nc:name="Mik a böngészőlapok?" nc:link="customize_help.xhtml#what_is_tabbed_browsing"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-tabbed-tabbedsetting" nc:name="A böngészőlapok beállítása" nc:link="customize_help.xhtml#setting_up_tabbed_browsing"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-tabbed-tabbedopening" nc:name="Böngészőlapok megnyitása" nc:link="customize_help.xhtml#opening_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-tabbed-tabbedmoving" nc:name="Böngészőlapok áthelyezése" nc:link="customize_help.xhtml#moving_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-tabbed-tabbedbookmarking" nc:name="Böngészőlapok megjelölése könyvjelzővel" nc:link="customize_help.xhtml#bookmarking_tabs"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-tabbed-tabbedclosing" nc:name="Böngészőlapok bezárása" nc:link="customize_help.xhtml#closing_tabs"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-font">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-fonts" nc:name="Az alapértelmezett betűkészletek megadása" nc:link="customize_help.xhtml#changing_the_default_fonts"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-colors" nc:name="Az alapértelmezett színek megadása" nc:link="customize_help.xhtml#changing_the_default_colors"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-themes" nc:name="A téma megadása" nc:link="customize_help.xhtml#changing_the_theme"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-toolbar">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-main" nc:name="Böngésző eszköztár" nc:link="customize_help.xhtml#navigation_toolbar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-personal" nc:name="Személyes eszköztár" nc:link="customize_help.xhtml#personal_toolbar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-status" nc:name="Állapotsor" nc:link="customize_help.xhtml#status_bar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-taskbar" nc:name="Mozilla-komponensek" nc:link="customize_help.xhtml#component_bar"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-hide" nc:name="Eszköztár elrejtése" nc:link="customize_help.xhtml#hiding_a_toolbar"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-bkmk">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-bkmk-intro" nc:name="A könyvjelző fogalma" nc:link="customize_help.xhtml#what_are_bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk-use" nc:name="Könyvjelzők használata" nc:link="customize_help.xhtml#using_bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk-create" nc:name="Új könyvjelzők létrehozása" nc:link="customize_help.xhtml#creating_new_bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk-organize" nc:name="A könyvjelzők rendszerezése" nc:link="customize_help.xhtml#organizing_your_bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk-change" nc:name="Egyedi könyvjelzők módosítása" nc:link="customize_help.xhtml#changing_individual_bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk-search" nc:name="Könyvjelzők keresése" nc:link="customize_help.xhtml#searching_your_bookmarks"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-bkmk-multiple" nc:name="Könyvjelzőlista exportálása vagy importálása" nc:link="customize_help.xhtml#exporting_or_importing_a_bookmark_list"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-addons">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-addons-about" nc:name="A kiegészítőkről" nc:link="customize_help.xhtml#about_add-ons"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-addons-installing" nc:name="Kiegészítők telepítése" nc:link="customize_help.xhtml#installing_add-ons"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-addons-manager" nc:name="Kiegészítőkezelő használata" nc:link="customize_help.xhtml#using_the_add-on_manager"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cust-page">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="cust-startpage" nc:name="Kezdőoldal megadása" nc:link="customize_help.xhtml#specifying_a_starting_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-home" nc:name="A kezdőlap módosítása" nc:link="customize_help.xhtml#changing_your_home_page"/> </rdf:li>
<rdf:li> <rdf:Description ID="cust-start" nc:name="Az indításkor megnyíló összetevők megadása" nc:link="customize_help.xhtml#specifying_which_components_open_at_launch"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#appearance_pref">
<nc:subheadings>
<rdf:Seq>
<rdf:li> <rdf:Description ID="appearance_pref_fonts" nc:name="Betűk" nc:link="cs_nav_prefs_appearance.xhtml#fonts"/> </rdf:li>
<rdf:li><rdf:Description ID="appearance_pref_colors" nc:name="Színek" nc:link="cs_nav_prefs_appearance.xhtml#colors"/> </rdf:li>
<rdf:li><rdf:Description ID="appearance_pref_themes" nc:name="Témák" nc:link="cs_nav_prefs_appearance.xhtml#themes"/> </rdf:li>
<rdf:li><rdf:Description ID="appearance_pref_content_packs" nc:name="Nyelvek/tartalom" nc:link="cs_nav_prefs_appearance.xhtml#languages_content"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#navigator_pref_navigator">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="navigator_pref_history" nc:name="Előzmények" nc:link="cs_nav_prefs_navigator.xhtml#history"/> </rdf:li>
<rdf:li><rdf:Description ID="navigator_pref_languages" nc:name="Nyelvek" nc:link="cs_nav_prefs_navigator.xhtml#languages"/> </rdf:li>
<rdf:li><rdf:Description ID="navigator_pref_helper_applications" nc:name="Segédalkalmazások" nc:link="cs_nav_prefs_navigator.xhtml#helper_applications"/> </rdf:li>
<rdf:li><rdf:Description ID="navigator_pref_smart_browsing" nc:name="Intelligens böngészés" nc:link="cs_nav_prefs_navigator.xhtml#smart_browsing"/> </rdf:li>
<rdf:li><rdf:Description ID="navigator_pref_internet_searching" nc:name="Internetes keresés" nc:link="cs_nav_prefs_navigator.xhtml#internet_search"/> </rdf:li>
<rdf:li><rdf:Description ID="navigator_pref_tabbed_browsing" nc:name="Több lapos böngészés" nc:link="cs_nav_prefs_navigator.xhtml#tabbed_browsing"/> </rdf:li>
<rdf:li><rdf:Description ID="navigator_pref_downloads" nc:name="Letöltések" nc:link="cs_nav_prefs_navigator.xhtml#downloads"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#navigator_pref_smart_browsing">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="navigator_pref_autocomplete-adv" nc:name="Automatikus kiegészítés" nc:link="cs_nav_prefs_navigator.xhtml#location_bar_autocomplete"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#advanced_pref_advanced">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="advanced_pref_scripts" nc:name="Parancsfájlok és bővítmények" nc:link="cs_nav_prefs_advanced.xhtml#scripts_and_plug-ins"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_keyboard_nav" nc:name="Navigálás a billentyűzettel" nc:link="cs_nav_prefs_advanced.xhtml#keyboard_navigation"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_find_as_you_type" nc:name="Find As You Type" nc:link="cs_nav_prefs_advanced.xhtml#fayt"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_cache" nc:name="Gyorsítótár" nc:link="cs_nav_prefs_advanced.xhtml#cache"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_proxies" nc:name="Proxyk" nc:link="cs_nav_prefs_advanced.xhtml#proxies"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_http_networking" nc:name="HTTP-beállítások" nc:link="cs_nav_prefs_advanced.xhtml#http_networking"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_installation" nc:name="Szoftvertelepítés" nc:link="cs_nav_prefs_advanced.xhtml#software_installation"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_mouse_wheel" nc:name="Egérgörgő" nc:link="cs_nav_prefs_advanced.xhtml#mouse_wheel"/> </rdf:li>
<rdf:li><rdf:Description ID="advanced_pref_dom_inspector" nc:name="DOM Inspector" nc:link="cs_nav_prefs_advanced.xhtml#dom_inspector"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- To load Advanced Proxy Preferences Help content from prefs -->
<rdf:Description ID="nav-prefs-advanced-proxy-advanced" nc:link="cs_nav_prefs_advanced.xhtml#advanced_proxy_preferences"/>
<!-- USING PRIVACY FEATURES CONTENT -->
<rdf:Description about="#using-priv-help">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="privacy-doc" nc:name="Adatvédelem az interneten" nc:link="privacy_help.xhtml#privacy_on_the_internet"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-cookies" nc:name="A Sütikezelő használata" nc:link="using_priv_help.xhtml#using_the_cookie_manager"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-password" nc:name="A Jelszókezelő használata" nc:link="using_priv_help.xhtml#using_the_password_manager"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-forms" nc:name="Az Űrlapkezelő használata" nc:link="using_priv_help.xhtml#using_the_form_manager"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-encrypt" nc:name="Tárolt érzékeny információk titkosítása" nc:link="using_priv_help.xhtml#encrypting_stored_sensitive_information"/> </rdf:li>
<rdf:li><rdf:Description ID="images-help-managing" nc:name="Képek kezelése" nc:link="using_priv_help.xhtml#managing_images"/> </rdf:li>
<rdf:li><rdf:Description ID="pop_up_blocking" nc:name="Felugró ablakok kezelése" nc:link="cs_priv_prefs_popup.xhtml"/> </rdf:li>
<rdf:li><rdf:Description ID="sec_gen" nc:name="Adatvédelmi és biztonsági beállítások" nc:link="privsec_help.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#privacy-doc">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="privacy-doc-visit" nc:name="Milyen információkat ad át a böngésző a webhelynek?" nc:link="privacy_help.xhtml#what_information_does_my_browser_give_to_a_web_site"/> </rdf:li>
<rdf:li><rdf:Description ID="privacy-doc-cookies" nc:name="Mik azok a sütik, és hogy működnek?" nc:link="privacy_help.xhtml#what_are_cookies_and_how_do_they_work"/> </rdf:li>
<rdf:li><rdf:Description ID="privacy-doc-email" nc:name="Hogyan szabályozhatjuk az elektronikus levélben érkező weboldalak viselkedését?" nc:link="privacy_help.xhtml#how_can_i_control_web_pages_in_email_messages"/> </rdf:li>
<rdf:li><rdf:Description ID="privacy-doc-unauth" nc:name="Hogyan győződhetünk meg arról, hogy illetéktelen személyek nem használják fel személyes adatainkat?" nc:link="privacy_help.xhtml#how_do_i_make_sure_unauthorized_people_dont_use_information_about_me"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-priv-help-cookies">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-priv-help-cookies-manage" nc:name="Sütik engedélyezése és tiltása" nc:link="using_priv_help.xhtml#enabling_and_disabling_cookies"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-cookies-site" nc:name="Sütik kezelése webhelytől függően" nc:link="using_priv_help.xhtml#managing_cookies_site-by-site"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-cookies-view" nc:name="Sütik megtekintése" nc:link="using_priv_help.xhtml#viewing_cookies"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-cookies-remove" nc:name="Sütik eltávolítása" nc:link="using_priv_help.xhtml#removing_cookies"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-cookies-policies" nc:name="Adatvédelmi szintek beállítása" nc:link="using_priv_help.xhtml#setting_privacy_levels"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-cookies-settings" nc:name="A Sütikezelő beállításai" nc:link="using_priv_help.xhtml#cookie_manager_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-priv-help-cookies-settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="cookies_prefs" nc:name="Sütik beállításai" nc:link="using_priv_help.xhtml#cookies"/> </rdf:li>
<rdf:li><rdf:Description ID="cookies_stored" nc:name="Tárolt sütik" nc:link="using_priv_help.xhtml#stored_cookies"/> </rdf:li>
<rdf:li><rdf:Description ID="cookie_sites" nc:name="Sütit küldő webhelyek" nc:link="using_priv_help.xhtml#cookie_sites"/> </rdf:li>
<rdf:li><rdf:Description ID="privacy_levels" nc:name="Adatvédelmi beállítások" nc:link="using_priv_help.xhtml#privacy_settings"/> </rdf:li>
<rdf:li><rdf:Description ID="cookie_notify" nc:name="Értesítés süti érkezéséről" nc:link="using_priv_help.xhtml#cookie_notification"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#privacy_levels">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="privacy_levels-level" nc:name="Adatvédelmi szint" nc:link="using_priv_help.xhtml#level_of_privacy"/> </rdf:li>
<rdf:li><rdf:Description ID="privacy_levels-accept" nc:name="Sütikezelési házirend" nc:link="using_priv_help.xhtml#cookie_acceptance_policy"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-priv-help-password">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-priv-help-password-manage" nc:name="Felhasználói nevek és jelszavak megjegyzése" nc:link="using_priv_help.xhtml#using_password_manager_to_remember_user_names_and_passwords"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-password-auto" nc:name="Felhasználói nevek és jelszavak automatikus kitöltése" nc:link="using_priv_help.xhtml#entering_user_names_and_passwords_automatically"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-password-onoff" nc:name="Be- és kikapcsolás" nc:link="using_priv_help.xhtml#turning_password_manager_on_and_off"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-password-view" nc:name="Tárolt jelszavak megtekintése és kezelése" nc:link="using_priv_help.xhtml#viewing_and_managing_stored_passwords"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-password-settings" nc:name="Jelszavak beállításai" nc:link="passwords_help.xhtml#password_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-priv-help-password-settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="passwords_prefs" nc:name="Jelszóbeállítások" nc:link="passwords_help.xhtml#passwords"/> </rdf:li>
<rdf:li><rdf:Description ID="password_mgr" nc:name="Jelszókezelő" nc:link="passwords_help.xhtml#password_manager"/> </rdf:li>
<rdf:li><rdf:Description ID="passwords_master" nc:name="Mesterjelszó beállításai" nc:link="passwords_help.xhtml#master_passwords"/> </rdf:li>
<rdf:li><rdf:Description ID="master-prefs-change" nc:name="A mesterjelszó megváltoztatása" nc:link="passwords_help.xhtml#change_master_password"/> </rdf:li>
<rdf:li><rdf:Description ID="master-prefs-timeout" nc:name="A mesterjelszó lejárata" nc:link="passwords_help.xhtml#master_password_timeout"/> </rdf:li>
<rdf:li><rdf:Description ID="master-prefs-reset" nc:name="A mesterjelszó törlése" nc:link="passwords_help.xhtml#reset_master_password"/> </rdf:li>
<rdf:li><rdf:Description ID="choosing-good-password" nc:name="Choosing a Good Password" nc:link="passwords_help.xhtml#choosing_a_good_password"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-priv-help-forms">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-priv-help-forms-saveinfo" nc:name="Űrlap adatainak mentése" nc:link="using_priv_help.xhtml#saving_form_data"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-forms-auto" nc:name="Űrlapok automatikus kitöltése" nc:link="using_priv_help.xhtml#filling_out_forms_automatically"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-forms-notify" nc:name="Az Űrlapkezelő figyelmeztetési funkciójának kikapcsolása" nc:link="using_priv_help.xhtml#turning_off_form_manager_notification"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-forms-view-edit" nc:name="Tárolt űrlapadatok kezelése" nc:link="using_priv_help.xhtml#managing_stored_form_data"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-sites-view-edit" nc:name="Tárolt webhelyadatok szerkesztése" nc:link="using_priv_help.xhtml#editing_stored_site_information"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-forms-forms" nc:name="Adatvédelmi házirend megtekintése" nc:link="using_priv_help.xhtml#viewing_privacy_policies"/> </rdf:li>
<rdf:li><rdf:Description ID="form_settings" nc:name="Űrlapbeállítások" nc:link="using_priv_help.xhtml#form_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#form_settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="forms_prefs" nc:name="Űrlapbeállítások" nc:link="using_priv_help.xhtml#forms"/> </rdf:li>
<rdf:li><rdf:Description ID="forms_data" nc:name="Űrlapkezelő – Adatok" nc:link="using_priv_help.xhtml#form_manager_data"/> </rdf:li>
<rdf:li><rdf:Description ID="forms_sites" nc:name="Űrlapkezelő – Weboldalak" nc:link="using_priv_help.xhtml#form_manager_sites"/> </rdf:li>
<rdf:li><rdf:Description ID="forms_prefill" nc:name="Előre kitöltött űrlapadatok" nc:link="using_priv_help.xhtml#prefill_form_data"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-priv-help-encrypt">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-priv-help-encrypt-on" nc:name="Titkosítás be- és kikapcsolása" nc:link="using_priv_help.xhtml#turning_encryption_on_and_off"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-encrypt-master" nc:name="Mesterjelszó megadása" nc:link="using_priv_help.xhtml#setting_a_master_password"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-encrypt-change" nc:name="Mesterjelszó megváltoztatása" nc:link="using_priv_help.xhtml#changing_your_master_password"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-encrypt-logout" nc:name="Kilépés a mesterjelszó hatálya alól" nc:link="using_priv_help.xhtml#logging_out_of_your_master_password"/> </rdf:li>
<rdf:li><rdf:Description ID="using-priv-help-encrypt-forget" nc:name="Mit tegyünk, ha elfelejtettük a mesterjelszót?" nc:link="using_priv_help.xhtml#what_to_do_if_you_forget_your_master_password"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#pop_up_blocking">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="pop_up_blocking_prefs" nc:name="Felugró ablakok beállításai" nc:link="cs_priv_prefs_popup.xhtml#privacy_and_security_preferences_popup_windows"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#images-help-managing">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="images_prefs" nc:name="Képek beállításai" nc:link="using_priv_help.xhtml#images"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- USING CERTIFICATES CONTENT -->
<rdf:Description about="#using-help-certs">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-help-certs-get" nc:name="Saját tanúsítvány beszerzése" nc:link="using_certs_help.xhtml#getting_your_own_certificate"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-info" nc:name="Weboldal biztonságának ellenőrzése" nc:link="using_certs_help.xhtml#checking_security_for_a_web_page"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-manage" nc:name="Tanúsítványok kezelése" nc:link="using_certs_help.xhtml#managing_certificates"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-devices" nc:name="Intelligens kártyák és egyéb adatvédelmi eszközök kezelése" nc:link="using_certs_help.xhtml#managing_smart_cards_and_other_security_devices"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-ssl" nc:name="Az SSL figyelmeztetéseinek és beállításainak kezelése" nc:link="using_certs_help.xhtml#managing_ssl_warnings_and_settings"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-validation" nc:name="Az érvényesség ellenőrzése" nc:link="using_certs_help.xhtml#controlling_validation"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-context-help" nc:name="Tanúsítványok beállításai" nc:link="certs_prefs_help.xhtml#certificate_settings"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-help-certs-manage">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-help-certs-manage-my" nc:name="Önt azonosító tanúsítványok" nc:link="using_certs_help.xhtml#managing_certificates_that_identify_you"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-manage-others" nc:name="Másokat azonosító tanúsítványok" nc:link="using_certs_help.xhtml#managing_certificates_that_identify_people"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-manage-sites" nc:name="Webhelyekez azonosító tanúsítványok" nc:link="using_certs_help.xhtml#managing_certificates_that_identify_servers"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-manage-cas" nc:name="Hitelesítésszolgáltatókat azonosító tanúsítványok" nc:link="using_certs_help.xhtml#managing_certificates_that_identify_certificate_authorities"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-manage-orphans" nc:name="Certificates That Identify Others" nc:link="using_certs_help.xhtml#managing_certificates_that_identify_others"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-help-certs-devices">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-help-certs-devices-about" nc:name="Adatvédelmi eszközök és modulok" nc:link="using_certs_help.xhtml#about_security_devices_and_modules"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-devices-devices" nc:name="Adatvédelmi eszközök használata" nc:link="using_certs_help.xhtml#using_security_devices"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-devices-modules" nc:name="Adatvédelmi modulok használata" nc:link="using_certs_help.xhtml#using_security_modules"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-devices-fips" nc:name="FIPS-mód engedélyezése" nc:link="using_certs_help.xhtml#enable_fips_mode"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-help-certs-ssl">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="ssl-settings" nc:name="SSL-beállítások" nc:link="ssl_help.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#ssl-settings">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="ssl_prefs" nc:name="SSL-beállítások" nc:link="ssl_help.xhtml#privacy_and_security_preferences_ssl"/> </rdf:li>
<rdf:li><rdf:Description ID="cipher_help" nc:name="Kódolások szerkesztése" nc:link="ssl_help.xhtml#edit_ciphers"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-help-certs-validation">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-help-certs-validation-how" nc:name="Az érvényesítés működése" nc:link="using_certs_help.xhtml#how_validation_works"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-validation-crls" nc:name="CRL-ek kezelése" nc:link="using_certs_help.xhtml#managing_crls"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-validation-ocsp" nc:name="Az OCSP beállítása" nc:link="using_certs_help.xhtml#configuring_ocsp"/> </rdf:li>
<rdf:li><rdf:Description ID="validation_prefs" nc:name="Az érvényesítés beállításai" nc:link="validation_help.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-help-certs-validation-crls">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="using-help-certs-validation-crls-next" nc:name="A következő frissítés dátuma" nc:link="using_certs_help.xhtml#about_the_next_update_date"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-validation-crls-import" nc:name="CRL-ek importálása" nc:link="using_certs_help.xhtml#importing_crls"/> </rdf:li>
<rdf:li><rdf:Description ID="using-help-certs-validation-crls-view" nc:name="CRL-ek megtekintése és kezelése" nc:link="using_certs_help.xhtml#viewing_and_managing_crls"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#validation_prefs">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="validation-prefs" nc:name="Érvényesítés beállításai" nc:link="validation_help.xhtml#privacy_and_security_preferences_validation"/> </rdf:li>
<rdf:li><rdf:Description ID="validation-crl-manage" nc:name="CRL-ek kezelése" nc:link="validation_help.xhtml#manage_crls"/> </rdf:li>
<rdf:li><rdf:Description ID="validation-crl-import" nc:name="CRL-importálás állapota" nc:link="validation_help.xhtml#crl_import_status"/> </rdf:li>
<rdf:li><rdf:Description ID="validation-crl-auto-update-prefs" nc:name="Az automatikus CRL-frissítés beállításai" nc:link="validation_help.xhtml#automatic_crl_update_preferences"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#using-help-certs-context-help">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="certs_prefs" nc:name="Tanúsítványok beállításai" nc:link="certs_prefs_help.xhtml#privacy_and_security_preferences_certificates"/> </rdf:li>
<rdf:li><rdf:Description ID="certs-help" nc:name="Tanúsítványkezelő" nc:link="certs_help.xhtml"/> </rdf:li>
<rdf:li><rdf:Description ID="sec_devices" nc:name="Eszközkezelő" nc:link="certs_help.xhtml#device_manager"/> </rdf:li>
<rdf:li><rdf:Description ID="cert-dialog-help" nc:name="Tanúsítványinformációk és döntések" nc:link="cert_dialog_help.xhtml"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- YOUR CERTIFICATES CONTENT -->
<rdf:Description about="#certs-help">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="my_certs" nc:name="Saját tanúsítványok" nc:link="certs_help.xhtml#your_certificates"/> </rdf:li>
<rdf:li><rdf:Description ID="others_certs" nc:name="Mások tanúsítványai" nc:link="certs_help.xhtml#people"/> </rdf:li>
<rdf:li><rdf:Description ID="web_certs" nc:name="Webhelyek tanúsítványai" nc:link="certs_help.xhtml#servers"/> </rdf:li>
<rdf:li><rdf:Description ID="ca_certs" nc:name="Hitelesítésszolgáltatók" nc:link="certs_help.xhtml#authorities"/> </rdf:li>
<rdf:li><rdf:Description ID="orphan_certs" nc:name="Egyebek" nc:link="certs_help.xhtml#others"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#my_certs">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="cert_backup_pwd" nc:name="Tanúsítványok biztonsági mentésének jelszava" nc:link="certs_help.xhtml#choose_a_certificate_backup_password"/> </rdf:li>
<rdf:li><rdf:Description ID="delete_my_certs" nc:name="Saját tanúsítvány törlése" nc:link="certs_help.xhtml#delete_your_certificates"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#others_certs">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="delete_email_certs" nc:name="E-mail tanúsítványok törlése" nc:link="certs_help.xhtml#delete_email_certificates"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#web_certs">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="edit_web_certs" nc:name="Webhely tanúsítványának beállításai" nc:link="certs_help.xhtml#edit_web_site_certificate_trust_settings"/> </rdf:li>
<rdf:li><rdf:Description ID="delete_web_certs" nc:name="Webhely tanúsítványának törlése" nc:link="certs_help.xhtml#delete_web_site_certificates"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#ca_certs">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="edit_ca_certs" nc:name="Hitelesítésszolgáltató tanúsítványának beállításai" nc:link="certs_help.xhtml#edit_ca_certificate_trust_settings"/> </rdf:li>
<rdf:li><rdf:Description ID="delete_ca_certs" nc:name="Hitelesítésszolgáltatók tanúsítványának törlése" nc:link="certs_help.xhtml#delete_ca_certificates"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cert-dialog-help">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="cert_details" nc:name="Tanúsítványmegjelenítő" nc:link="cert_dialog_help.xhtml#certificate_viewer"/> </rdf:li>
<rdf:li><rdf:Description ID="which_token" nc:name="Adatvédelmi eszköz választása" nc:link="cert_dialog_help.xhtml#choose_security_device"/> </rdf:li>
<rdf:li><rdf:Description ID="priv_key_copy" nc:name="Titkosító kulcs másolata" nc:link="cert_dialog_help.xhtml#encryption_key_copy"/> </rdf:li>
<rdf:li><rdf:Description ID="backup_your_cert" nc:name="Tanúsítványok biztonsági másolata" nc:link="cert_dialog_help.xhtml#certificate_backup"/> </rdf:li>
<rdf:li><rdf:Description ID="which_cert" nc:name="Felhasználóazonosítási kérelem" nc:link="cert_dialog_help.xhtml#user_identification_request"/> </rdf:li>
<rdf:li><rdf:Description ID="new_ca" nc:name="Új hitelesítésszolgáltató" nc:link="cert_dialog_help.xhtml#new_certificate_authority"/> </rdf:li>
<rdf:li><rdf:Description ID="cert-dialog-help-website" nc:name="Webhelyek tanúsítványai" nc:link="cert_dialog_help.xhtml#web_site_certificates"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cert_details">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="cert-dialog-help-details-general" nc:name="Általános panellap" nc:link="cert_dialog_help.xhtml#general_tab"/> </rdf:li>
<rdf:li><rdf:Description ID="cert-dialog-help-details-details" nc:name="Részletek panellap" nc:link="cert_dialog_help.xhtml#details_tab"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#cert-dialog-help-website">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="new_web_cert" nc:name="A webhelyet ismeretlen hitelesítésszolgáltató azonosította" nc:link="cert_dialog_help.xhtml#web_site_certified_by_an_unknown_authority"/> </rdf:li>
<rdf:li><rdf:Description ID="sec_con_failed_page" nc:name="Secure Connection Failed Page" nc:link="cert_dialog_help.xhtml#secure_connection_failed_page"/> </rdf:li>
<rdf:li><rdf:Description ID="untrusted_con_page" nc:name="Untrusted Connection Page" nc:link="cert_dialog_help.xhtml#untrusted_connection_page"/> </rdf:li>
<rdf:li><rdf:Description ID="sec_con_failed_dialog" nc:name="Secure Connection Failed Dialog" nc:link="cert_dialog_help.xhtml#secure_connection_failed_dialog"/> </rdf:li>
<rdf:li><rdf:Description ID="exp_web_cert" nc:name="A kiszolgáló tanúsítványa lejárt" nc:link="cert_dialog_help.xhtml#certificate_expired"/> </rdf:li>
<rdf:li><rdf:Description ID="not_yet_web_cert" nc:name="A kiszolgáló tanúsítványa még nem érvényes" nc:link="cert_dialog_help.xhtml#certificate_not_yet_valid"/> </rdf:li>
<rdf:li><rdf:Description ID="bad_name_web_cert" nc:name="A tartománynév nem egyezik" nc:link="cert_dialog_help.xhtml#domain_name_mismatch"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- PROFILE HELP CONTENT STARTS-->
<rdf:Description about="#profile-help">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="profile-help-create" nc:name="Új profil létrehozása" nc:link="profiles_help.xhtml#creating_a_new_profile"/> </rdf:li>
<rdf:li><rdf:Description ID="profile-help-delete" nc:name="Profil törlése vagy átnevezése" nc:link="profiles_help.xhtml#deleting_or_renaming_a_profile"/> </rdf:li>
<rdf:li><rdf:Description ID="profile-help-roaming" nc:name="Vándorló profilok" nc:link="profiles_help.xhtml#roaming_profiles"/> </rdf:li>
<rdf:li><rdf:Description ID="profile-help-roaming-prefs" nc:name="Vándorlás beállításai" nc:link="profiles_help.xhtml#roaming_prefs"/> </rdf:li>
<rdf:li><rdf:Description ID="profile-help-roaming-item-selection" nc:name="Elemek kijelölése" nc:link="profiles_help.xhtml#roaming_item_selection"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- TOOLS AND DEVELOPMENT CONTENT STARTS -->
<rdf:Description about="#tools">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="tools-js_console" nc:name="JavaScript-konzol" nc:link="developer_tools.xhtml#js_console"/> </rdf:li>
<rdf:li><rdf:Description ID="tools-inspector" nc:name="DOM Inspector" nc:link="developer_tools.xhtml#inspector"/> </rdf:li>
<rdf:li><rdf:Description ID="tools-venkman" nc:name="JavaScript-hibakereső" nc:link="developer_tools.xhtml#venkman"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<!-- KEYBOARD SHORTCUTS CONTENT STARTS -->
<rdf:Description about="#shortcuts">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="shortcuts_using" nc:name="Gyorsbillentyűk használata" nc:link="shortcuts.xhtml#using_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_general" nc:name="Általános &brandShortName; gyorsbillentyűk" nc:link="shortcuts.xhtml#general_mozilla_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts-text-field" nc:name="Text Field Shortcuts" nc:link="shortcuts.xhtml#text_field_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_navigator" nc:name="A Böngésző gyorsbillentyűi" nc:link="shortcuts_navigator.xhtml"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_mail" nc:name="A Levelező és hírolvasó gyorsbillentyűi" nc:link="shortcuts_mailnews.xhtml"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_composer" nc:name="A HTML-szerkesztő gyorsbillentyűi" nc:link="shortcuts_composer.xhtml"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_help" nc:name="A Súgó ablak gyorsbillentyűi" nc:link="shortcuts.xhtml#help_window_shortcuts"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#shortcuts_navigator">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="shortcuts_navigator_bookmarks" nc:name="Könyvjelzők" nc:link="shortcuts_navigator.xhtml#bookmarks_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_navigator_page_navigation" nc:name="Navigálás az oldalon" nc:link="shortcuts_navigator.xhtml#page_navigation_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_navigator_page_viewing" nc:name="Oldal megtekintése" nc:link="shortcuts_navigator.xhtml#page_viewing_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_navigator_tabbed_browsing" nc:name="Böngészőlapok" nc:link="shortcuts_navigator.xhtml#tabbed_browsing_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_navigator_sidebar" nc:name="Oldalsáv" nc:link="shortcuts_navigator.xhtml#sidebar_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_navigator_forms" nc:name="Űrlapok" nc:link="shortcuts_navigator.xhtml#forms_shortcuts"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#shortcuts_mail">
<nc:subheadings>
<rdf:Seq>
<rdf:li><rdf:Description ID="shortcuts_mail_general" nc:name="Általános Levelező-gyorsbillentyűk" nc:link="shortcuts_mailnews.xhtml#general_mail_and_newsgroups_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_mail_message_list" nc:name="Üzenetlisták" nc:link="shortcuts_mailnews.xhtml#message_list_shortcuts"/> </rdf:li>
<rdf:li><rdf:Description ID="shortcuts_mail_message_compose" nc:name="Üzenetek írása" nc:link="shortcuts_mailnews.xhtml#message_compose_shortcuts"/> </rdf:li>
</rdf:Seq>
</nc:subheadings>
</rdf:Description>
</rdf:RDF>
|