~ubuntu-branches/ubuntu/saucy/kde-l10n-nn/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
# Translation of kcmkio to Norwegian Nynorsk
#
# Gaute Hvoslef Kvalnes <gaute@verdsveven.com>, 1999, 2000, 2002, 2003, 2004, 2005.
# Håvard Korsvoll <korsvoll@skulelinux.no>, 2003, 2009.
# Karl Ove Hufthammer <karl@huftis.org>, 2004, 2007, 2008.
# Eirik U. Birkeland <eirbir@gmail.com>, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: kcmkio\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-04-16 02:43+0200\n"
"PO-Revision-Date: 2010-01-24 15:22+0100\n"
"Last-Translator: Eirik U. Birkeland <eirbir@gmail.com>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
"Language: nn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Environment: kde\n"
"X-Accelerator-Marker: &\n"
"X-Text-Markup: kde4\n"

#: bookmarks.cpp:108
msgid ""
"<h1>My Bookmarks</h1><p>This module lets you configure the bookmarks home "
"page.</p><p>The bookmarks home page is accessible at <a href=\"bookmarks:/"
"\">bookmarks:/</a>.</p>"
msgstr ""
"<h1>Mine bokmerke</h1><p>Med denne modulen kan du setja opp heimesida for "
"bokmerke.</p><p>Bokmerkesida finn du ved å skriva <a href=\"bookmarks:/"
"\">bookmarks:/</a> i adressefeltet.</p>"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: bookmarks.ui:16
msgid "Bookmarks"
msgstr "Bokmerke"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbShowRoot)
#: bookmarks.ui:23
msgid ""
"If this option is unchecked, bookmarks at the root of the hierarchy (not in "
"a folder) are not displayed.\n"
"If checked, they are gathered in a \"root\" folder."
msgstr ""
"Viss det ikkje er kryssa av her, vil bokmerke i rota av hierarkiet (ikkje i "
"ei mappe) ikkje verta viste.\n"
"Viss det er kryssa av her, vert dei samla i ei «rot»-mappe."

#. i18n: ectx: property (text), widget (QCheckBox, cbShowRoot)
#: bookmarks.ui:26
msgid "&Show bookmarks without folder"
msgstr "Vi&s bokmerke utan mappe"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbFlattenTree)
#: bookmarks.ui:37
msgid ""
"Sub-folders are shown within their parent by default. If you activate this "
"option, sub-folders are displayed on their own.\n"
"It looks less nice but it may help if you have a very big folder you want to "
"spread in two columns."
msgstr ""
"Undermapper vert i utgangspunktet viste inne i foreldremappa. Viss du slår "
"på dette, vil undermapper verta viste for seg sjølv.\n"
"Det ser ikkje så fint ut, men det kan hjelpa viss du har ei svært stor mappe "
"og du vil spreia det over to kolonnar."

#. i18n: ectx: property (text), widget (QCheckBox, cbFlattenTree)
#: bookmarks.ui:40
msgid "&Flatten bookmarks tree"
msgstr "&Flat ut bokmerketreet"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbShowPlaces)
#: bookmarks.ui:47
msgid ""
"Show a box with KDE places (Home, Network, ...). Useful if you use konqueror "
"as a file manager."
msgstr ""
"Vis ein boks med KDE-område («Heim», «Nettverk» osb.) Nyttig viss du brukar "
"Konqueror som filhandsamar."

#. i18n: ectx: property (text), widget (QCheckBox, cbShowPlaces)
#: bookmarks.ui:50
msgid "Show system &places"
msgstr "Vis sys&temområde"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: bookmarks.ui:63
msgid "General Settings"
msgstr "Generelle innstillingar"

#. i18n: ectx: property (whatsThis), widget (QLabel, label)
#: bookmarks.ui:71
msgid ""
"Folders are automatically distributed in several columns. The optimal number "
"of columns depends on the width of the konqueror window and the number of "
"bookmarks you have."
msgstr ""
"Mapper vert fordelte automatisk på fleire kolonnar. Kor mange kolonnar som "
"er optimalt er avhengig av breidda på Konqueror-vindauget og kor mange "
"bokmerke du har."

#. i18n: ectx: property (text), widget (QLabel, label)
#: bookmarks.ui:74
msgid "Number of columns to show:"
msgstr "Kor mange kolonnar som skal visast:"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbShowBackgrounds)
#: bookmarks.ui:109
msgid "Disable it on slow system to disable background images."
msgstr "Slå det av på trege system for å slå av bakgrunnsbilete."

#. i18n: ectx: property (text), widget (QCheckBox, cbShowBackgrounds)
#: bookmarks.ui:112
msgid "Show folder &backgrounds"
msgstr "Vis &bakgrunnar i mapper"

#. i18n: ectx: property (whatsThis), widget (QGroupBox, groupBox_3)
#: bookmarks.ui:138
msgid "How much disk space is used to cache the pixmaps"
msgstr "Kor mykje diskplass vert brukt for å mellomlagra punktbileta"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: bookmarks.ui:141
msgid "Pixmap Cache"
msgstr "Punktbiletlager"

#. i18n: ectx: property (text), widget (QLabel, lbMaxCacheSize)
#: bookmarks.ui:150
msgid "Disk cache size:"
msgstr "Storleik på mellomlager:"

#. i18n: ectx: property (suffix), widget (KIntNumInput, sbCacheSize)
#: bookmarks.ui:163
msgid " kB"
msgstr " kB"

#. i18n: ectx: property (whatsThis), widget (QPushButton, clearCacheButton)
#: bookmarks.ui:173
msgid "Clear the pixmap cache"
msgstr "Tøm punktbiletlageret"

#. i18n: ectx: property (text), widget (QPushButton, clearCacheButton)
#: bookmarks.ui:176
msgid "&Clear Cache"
msgstr "&Tøm mellomlageret"

#: cache.cpp:111
msgid ""
"<h1>Cache</h1><p>This module lets you configure your cache settings.</"
"p><p>The cache is an internal memory in Konqueror where recently read web "
"pages are stored. If you want to retrieve a web page again that you have "
"recently read, it will not be downloaded from the Internet, but rather "
"retrieved from the cache, which is a lot faster.</p>"
msgstr ""
"<h1>Mellomlager</h1><p>I denne modulen set du opp mellomlagerinnstillingane. "
"</p><p>Mellomlageret («cache») er eit internt minne der Konqueror lagrar dei "
"vevsidene du nyleg har vitja. Dersom du vil henta fram att ei side du nyleg "
"har lese, vert ho henta direkte frå mellomlageret i staden for frå "
"Internett. Dette er mykje raskare.</p>"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbUseCache)
#: cache.ui:17
msgid ""
"Check this box if you want the web pages you visit to be stored on your hard "
"disk for quicker access. The stored pages will only be updated as needed "
"instead of on every visit to that site. This is especially useful if you "
"have a slow connection to the Internet."
msgstr ""
"Kryss av her dersom du vil at nettsidene du vitjar skal lagrast på "
"harddisken for raskare tilgang. Denne funksjonen gjer at surfing på "
"verdsveven går raskare, sidan nettsidene berre vert lasta ned når det "
"verkeleg trengst. Treige Internett-tilkoplingar dreg særleg nytte av "
"mellomlageret."

#. i18n: ectx: property (text), widget (QCheckBox, cbUseCache)
#: cache.ui:20
msgid "&Use cache"
msgstr "B&ruk mellomlager («cache»)"

#. i18n: ectx: property (title), widget (QGroupBox, bgCachePolicy)
#. i18n: ectx: property (text), widget (QTreeWidget, policyTreeWidget)
#: cache.ui:46 kcookiespolicies.ui:168
msgid "Policy"
msgstr "Reglar"

#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbVerifyCache)
#: cache.ui:52
msgid ""
"Verify whether the cached web page is valid before attempting to fetch the "
"web page again."
msgstr ""
"Kontroller om den mellomlagra nettsida er gyldig før ho vert henta igjen."

#. i18n: ectx: property (text), widget (QRadioButton, rbVerifyCache)
#: cache.ui:55
msgid "&Keep cache in sync"
msgstr "Ha&ld mellomlageret synkronisert"

#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbCacheIfPossible)
#: cache.ui:62
msgid ""
"Always use documents from the cache when available. You can still use the "
"reload button to synchronize the cache with the remote host."
msgstr ""
"Bruk denne funksjonen til alltid å henta dokument frå mellomlageret dersom "
"dei er lagra der. Du kan likevel alltid bruka omlastingsfunksjonen for å "
"synkronisera mellomlageret med verten."

#. i18n: ectx: property (text), widget (QRadioButton, rbCacheIfPossible)
#: cache.ui:65
msgid "Use cache whenever &possible"
msgstr "Br&uk mellomlager om mogleg"

#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbOfflineMode)
#: cache.ui:72
msgid ""
"Do not fetch web pages that are not already stored in the cache. Offline "
"mode prevents you from viewing pages that you have not previously visited."
msgstr ""
"Ikkje hent nettsider som ikkje finst i mellomlageret frå før. Fråkopla modus "
"hindrar deg i å henta ned sider som du ikkje har vitja før."

#. i18n: ectx: property (text), widget (QRadioButton, rbOfflineMode)
#: cache.ui:75
msgid "O&ffline browsing mode"
msgstr "&Fråkopla surfemodus"

#. i18n: ectx: property (text), widget (QLabel, lbMaxCacheSize)
#: cache.ui:88
msgid "Disk cache &size:"
msgstr "&Storleik på mellomlager:"

#. i18n: ectx: property (suffix), widget (KIntNumInput, sbMaxCacheSize)
#: cache.ui:101
msgid " KiB"
msgstr " KiB"

#. i18n: ectx: property (text), widget (QPushButton, clearCacheButton)
#: cache.ui:111
msgid "C&lear Cache"
msgstr "&Tøm mellomlager"

#: kcookiesmain.cpp:44
msgid ""
"Unable to start the cookie handler service.\n"
"You will not be able to manage the cookies that are stored on your computer."
msgstr ""
"Klarte ikkje starta tenesta for handtering av informasjonskapslar.\n"
"Du vil ikkje kunna handtera informasjonskapslane som er lagra på datamaskina."

#: kcookiesmain.cpp:54
msgid "&Policy"
msgstr "&Praksis"

#: kcookiesmain.cpp:59
msgid "&Management"
msgstr "Hand&saming"

#: kcookiesmain.cpp:95
msgid ""
"<p><h1>Cookies</h1> Cookies contain information that Konqueror (or other KDE "
"applications using the HTTP protocol) stores on your computer, initiated by "
"a remote Internet server. This means that a web server can store information "
"about you and your browsing activities on your machine for later use. You "
"might consider this an invasion of privacy.</p><p> However, cookies are "
"useful in certain situations. For example, they are often used by Internet "
"shops, so you can 'put things into a shopping basket'. Some sites require "
"you have a browser that supports cookies.</p><p> Because most people want a "
"compromise between privacy and the benefits cookies offer, KDE offers you "
"the ability to customize the way it handles cookies. So you might want to "
"set KDE's default policy to ask you whenever a server wants to set a cookie, "
"allowing you to decide. For your favorite shopping web sites that you trust, "
"you might want to set the policy to accept, then you can access the web "
"sites without being prompted every time KDE receives a cookie.</p>"
msgstr ""
"<h1>Informasjonskapslar</h1><p>Informasjonskapslar («cookies») inneheld "
"informasjon som Konqueror (eller andre KDE-program som brukar HTTP-"
"protokollen) lagrar på maskina, på førespurnad frå ein Internett-tenar. Slik "
"kan ein tenar lagra informasjon om deg og aktivitetane dine for seinare "
"bruk. Du vil kanskje sjå på dette som ein trussel mot privatlivet.</"
"p><p>Informasjonskapslar er likevel nyttig i visse situasjonar. Nettbutikkar "
"brukar ofte informasjonskapslar, slik at du kan leggja ting i ei handlekorg. "
"Nokre nettstader krev at du brukar ein nettlesar som støttar "
"informasjonskapslar.</p><p>Sidan dei fleste vil ha eit kompromiss mellom "
"fordelane og ulempene ved informasjonskapslar, kan du i KDE tilpassa måten "
"kapslane vert handsama på. Du vil kanskje at KDE skal spørja deg når ein "
"tenar vil setja opp ein informasjonskapsel, slik at du kan avgjera sjølv. "
"For netthandelssider du stolar på vil du kanskje alltid akseptera "
"informasjonskapslar, slik at du kan bruka nettstadene utan at KDE skal "
"spørja deg kvar gong.</p>"

#: kcookiesmanagement.cpp:143 kcookiesmanagement.cpp:159
msgid "D-Bus Communication Error"
msgstr "D-Bus-kommunikasjonsfeil"

#: kcookiesmanagement.cpp:144
msgid "Unable to delete all the cookies as requested."
msgstr "Klarte ikkje sletta alle informasjonskapslane."

#: kcookiesmanagement.cpp:160
msgid "Unable to delete cookies as requested."
msgstr "Klarte ikkje sletta informasjonskapslane."

#: kcookiesmanagement.cpp:231
msgid "<h1>Cookie Management Quick Help</h1>"
msgstr "<h1>Snøgghjelp for handtering av informasjonskapslar</h1>"

#: kcookiesmanagement.cpp:241
msgid "Information Lookup Failure"
msgstr "Feil ved informasjonssøk"

#: kcookiesmanagement.cpp:242
msgid ""
"Unable to retrieve information about the cookies stored on your computer."
msgstr "Klarte ikkje henta informasjon om informasjonskapslane på datamaskina."

#: kcookiesmanagement.cpp:332
msgid "End of session"
msgstr "Slutt på økt"

#: kcookiesmanagement.cpp:341
msgid "Yes"
msgstr "Ja"

#. i18n: ectx: property (clickMessage), widget (KTreeWidgetSearchLine, searchLineEdit)
#. i18n: ectx: property (clickMessage), widget (KTreeWidgetSearchLine, kListViewSearchLine)
#: kcookiesmanagement.ui:20 kcookiespolicies.ui:138
msgid "Search"
msgstr "Søk"

#. i18n: ectx: property (toolTip), widget (QTreeWidget, cookiesTreeWidget)
#: kcookiesmanagement.ui:27
msgid "Search interactively for domains and hosts"
msgstr "Søk interaktivt etter domene og vertar"

#. i18n: ectx: property (text), widget (QTreeWidget, cookiesTreeWidget)
#: kcookiesmanagement.ui:43
msgid "Site"
msgstr ""

#. i18n: ectx: property (text), widget (QTreeWidget, cookiesTreeWidget)
#: kcookiesmanagement.ui:48
msgid "Cookie Name"
msgstr ""

#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: ectx: property (text), widget (KPushButton, pbDelete)
#. i18n: ectx: property (text), widget (KPushButton, deleteButton)
#: kcookiesmanagement.ui:56 kcookiespolicies.ui:190 useragentdlg.ui:202
msgid "D&elete"
msgstr "Sle&tt"

#. i18n: ectx: property (text), widget (QPushButton, deleteAllButton)
#. i18n: ectx: property (text), widget (KPushButton, pbDeleteAll)
#. i18n: ectx: property (text), widget (KPushButton, deleteAllButton)
#: kcookiesmanagement.ui:63 kcookiespolicies.ui:197 useragentdlg.ui:212
msgid "Delete A&ll"
msgstr "Slett a&lle"

#. i18n: ectx: property (text), widget (QPushButton, configPolicyButton)
#: kcookiesmanagement.ui:70
msgid "Configure &Policy..."
msgstr ""

#. i18n: ectx: property (text), widget (QPushButton, reloadButton)
#: kcookiesmanagement.ui:77
msgid "&Reload List"
msgstr "Last lista o&m att"

#. i18n: ectx: property (title), widget (QGroupBox, detailsGroupBox)
#: kcookiesmanagement.ui:97
msgid "Details"
msgstr "Detaljar"

#. i18n: ectx: property (text), widget (QLabel, nameLabel)
#: kcookiesmanagement.ui:106
msgid "Name:"
msgstr "Namn:"

#. i18n: ectx: property (text), widget (QLabel, valueLabel)
#: kcookiesmanagement.ui:129
msgid "Value:"
msgstr "Verdi:"

#. i18n: ectx: property (text), widget (QLabel, domainLabel)
#: kcookiesmanagement.ui:152
msgid "Domain:"
msgstr "Domene:"

#. i18n: ectx: property (text), widget (QLabel, patchLabel)
#: kcookiesmanagement.ui:175
msgid "Path:"
msgstr "Sti:"

#. i18n: ectx: property (text), widget (QLabel, expiresLabel)
#: kcookiesmanagement.ui:198
msgid "Expires:"
msgstr "Utgår:"

#. i18n: ectx: property (text), widget (QLabel, secureLabel)
#: kcookiesmanagement.ui:221
msgid "Secure:"
msgstr "Sikker:"

#: kcookiespolicies.cpp:179
msgctxt "@title:window"
msgid "Change Cookie Policy"
msgstr ""

#: kcookiespolicies.cpp:198
msgctxt "@title:window"
msgid "New Cookie Policy"
msgstr ""

#: kcookiespolicies.cpp:226
#, kde-format
msgid ""
"<qt>A policy already exists for<center><b>%1</b></center>Do you want to "
"replace it?</qt>"
msgstr ""
"<qt>Ein regel for <center><b>%1</b></center> finst frå før. Vil du byta han "
"ut?</qt>"

#: kcookiespolicies.cpp:229
msgctxt "@title:window"
msgid "Duplicate Policy"
msgstr ""

#: kcookiespolicies.cpp:230 useragentdlg.cpp:202
msgid "Replace"
msgstr "Byt ut"

#: kcookiespolicies.cpp:395
msgid ""
"Unable to communicate with the cookie handler service.\n"
"Any changes you made will not take effect until the service is restarted."
msgstr ""
"Klarte ikkje kommunisera med handteringstenesta for informasjonskapslar.\n"
"Dei endringane du har gjort vert tekne i bruk neste gong du startar tenesta."

#: kcookiespolicies.cpp:437
msgid ""
"<p><h1>Cookies</h1> Cookies contain information that Konqueror (or any other "
"KDE application using the HTTP protocol) stores on your computer from a "
"remote Internet server. This means that a web server can store information "
"about you and your browsing activities on your machine for later use. You "
"might consider this an invasion of privacy.</p><p>However, cookies are "
"useful in certain situations. For example, they are often used by Internet "
"shops, so you can 'put things into a shopping basket'. Some sites require "
"you have a browser that supports cookies.</p><p>Because most people want a "
"compromise between privacy and the benefits cookies offer, KDE offers you "
"the ability to customize the way it handles cookies. You might, for example "
"want to set KDE's default policy to ask you whenever a server wants to set a "
"cookie or simply reject or accept everything. For example, you might choose "
"to accept all cookies from your favorite shopping web site. For this all you "
"have to do is either browse to that particular site and when you are "
"presented with the cookie dialog box, click on <i> This domain </i> under "
"the 'apply to' tab and choose accept or simply specify the name of the site "
"in the <i> Domain Specific Policy </i> tab and set it to accept. This "
"enables you to receive cookies from trusted web sites without being asked "
"every time KDE receives a cookie.</p>"
msgstr ""
"<h1>Informasjonskapslar</h1><p>Informasjonskapslar («cookies») inneheld "
"informasjon som Konqueror (eller andre KDE-program som brukar HTTP-"
"protokollen) lagrar på maskina, på førespurnad frå ein Internett-tenar. På "
"denne måten kan ein tenar lagra informasjon om deg og aktivitetane dine for "
"seinare bruk. Du vil kanskje sjå på dette som ein trussel mot privatlivet.</"
"p><p>Informasjonskapslar er likevel nyttig i visse situasjonar. Nettbutikkar "
"brukar ofte informasjonskapslar, slik at du kan leggja ting i ei handlekorg. "
"Nokre nettstader krev at du brukar ein nettlesar som støttar "
"informasjonskapslar.</p><p>Sidan dei fleste vil ha eit kompromiss mellom "
"fordelane og ulempene ved informasjonskapslar, kan du i KDE tilpassa måten "
"kapslane vert handsama på. Du vil kanskje at KDE skal spørja deg når ein "
"tenar vil setja opp ein informasjonskapsel, slik at du kan avgjera sjølv. "
"For netthandelssider du stolar på vil du kanskje alltid akseptera "
"informasjonskapslar, slik at du kan bruka nettstadene utan at KDE skal "
"spørja deg kvar gong. Alt du treng gjera for dette, er anten å gå til "
"nettstaden og velja <i>Dette domenet</i> i informasjonskapselvindauget, "
"trykkja på <i>Dette domenet</i> på fana <i>Bruk for</i> og velja godta, "
"eller oppgje namnet på nettstaden på sida <i>Domenespesifikk regel</i> og "
"setja regelen til «godta». Slik kan du ta imot informasjonskapslar frå "
"nettstader du stolar på utan at Konqueror skal spørja deg kvar gong du tek "
"imot ein informasjonskapsel.</p>"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbEnableCookies)
#: kcookiespolicies.ui:20
msgid ""
"<qt>\n"
"<p>Enable cookie support. Normally you will want to have cookie support "
"enabled and customize it to suit your privacy needs.</p><p>\n"
"Please note that disabling cookie support might make many web sites "
"unbrowsable.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"<p>Slår på støtte for informasjonskapslar. Vanlegvis vil du ha denne støtta "
"på og tilpassa henne slik du ønskjer.</p> <p>\n"
" Legg merke til at ein del nettsider kan verta ubrukelege dersom du vel å "
"slå av støtta for informasjonskapslar.</p> \n"
"</qt>"

#. i18n: ectx: property (text), widget (QCheckBox, cbEnableCookies)
#: kcookiespolicies.ui:23
msgid "Enable coo&kies"
msgstr "Slå på &informasjonskapslar"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbRejectCrossDomainCookies)
#: kcookiespolicies.ui:35
msgid ""
"<qt>\n"
"Reject the so called third-party cookies. These are cookies that originate "
"from a site other than the one you are currently browsing. For example, if "
"you visit <b>www.foobar.com</b> while this option is on, only cookies that "
"originate from www.foobar.com will be processed per your settings. Cookies "
"from any other site will be rejected. This reduces the chances of site "
"operators compiling a profile about your daily browsing habits.\n"
"</qt>"
msgstr ""
"<qt>Avvis informasjonskapslar frå såkalla tredjepartar. Dette er "
"informasjonskapslar som kjem frå andre nettstader enn den du vitjar.Dersom "
"du for eksempel går til <b>www.eittelleranna.no</b> når denne funksjonen er "
"på, vil berre informasjonskapslar frå www.eittelleranna.no verta mottekne og "
"handsama. Alle andre informasjonskapslar vert automatisk nekta. På denne "
"måten kan du minska sjansen for at nettstader byggjer opp informasjon om "
"dine Internett-vanar.</qt>"

#. i18n: ectx: property (text), widget (QCheckBox, cbRejectCrossDomainCookies)
#: kcookiespolicies.ui:38
msgid "Only acce&pt cookies from originating server"
msgstr "&Godta berre informasjonskapslar frå opphavstenaren"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbAutoAcceptSessionCookies)
#: kcookiespolicies.ui:46
msgid ""
"<p>\n"
"Automatically accept temporary cookies meant to expire at the end of the "
"current session. Such cookies will not be stored in your computer's hard "
"drive or storage device. Instead, they are deleted when you close all "
"applications (e.g. your browser) that use them.</p><p><u>NOTE</u> Checking "
"this option overrides your default as well as site specific cookie policies "
"for session cookies.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, cbAutoAcceptSessionCookies)
#: kcookiespolicies.ui:49
msgid "Automaticall&y accept session cookies"
msgstr "Godta a&utomatisk økt-kapslar"

#. i18n: ectx: property (whatsThis), widget (QGroupBox, bgDefault)
#: kcookiespolicies.ui:68
msgid ""
"<qt>\n"
"Determines how cookies received from a remote machine will be handled: \n"
"<ul>\n"
"<li><b>Ask</b> will cause KDE to ask for your confirmation whenever a server "
"wants to set a cookie.</li>\n"
"<li><b>Accept</b> will cause cookies to be accepted without prompting you.</"
"li>\n"
"<li><b>Accept until end of session</b> will cause cookies to be accepted but "
"they will expire at the end of the session.</li>\n"
"<li><b>Reject</b> will cause the cookiejar to refuse all cookies it receives."
"</li>\n"
"</ul><p>\n"
"<u>NOTE:</u> Domain specific policies, which can be set below, always take "
"precedence over the default policy.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, bgDefault)
#: kcookiespolicies.ui:71
msgid "Default Policy"
msgstr "Standardåtferd"

#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyAccept)
#: kcookiespolicies.ui:77
msgid "Accep&t all cookies"
msgstr "&Godta alle informasjonskapslar"

#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyAcceptForSession)
#: kcookiespolicies.ui:84
msgid "Accept &until end of session"
msgstr ""

#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyAsk)
#: kcookiespolicies.ui:91
msgid "Ask &for confirmation"
msgstr "Spø&r etter stadfesting"

#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyReject)
#: kcookiespolicies.ui:98
msgid "Re&ject all cookies"
msgstr "A&vvis alle informasjonskapslar"

#. i18n: ectx: property (whatsThis), widget (QGroupBox, gbDomainSpecific)
#: kcookiespolicies.ui:123
msgid ""
"<qt>\n"
"To add a new policy, simply click on the <b>Add...</b> button and supply the "
"necessary information. To change an existing policy, use the <b>Change...</"
"b> button and choose the new policy from the policy dialog box. Clicking on "
"the <b>Delete</b> button will remove the currently selected policy causing "
"the default policy setting to be used for that domain, whereas <b>Delete "
"All</b> will remove all the site specific policies.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Her kan du setja opp spesifikke informasjonskapselreglar for særskilde "
"domene. For å leggja til ein ny regel, trykk knappen <b>Legg til</b> og "
"oppgje informasjonen som trengst i dialogvindauget. For å endra ein gammal "
"regel, trykk knappen <b>Endra</b> og vel den nye regelen i dialogvindauget. "
"Om du trykkjer <b>Slett</b>, vert den valde regelen fjerna, slik at "
"standardinnstillingane vert brukte for det domenet. Med <b>Slett alle</b> "
"kan du fjerna alle nettstadreglar.\n"
"</qt>"

#. i18n: ectx: property (title), widget (QGroupBox, gbDomainSpecific)
#: kcookiespolicies.ui:126
msgid "Site Policy"
msgstr "Nettstadregel"

#. i18n: ectx: property (toolTip), widget (KTreeWidgetSearchLine, kListViewSearchLine)
#: kcookiespolicies.ui:135
msgid "Search interactively for domains"
msgstr "Søk interaktivt etter domene"

#. i18n: ectx: property (whatsThis), widget (QTreeWidget, policyTreeWidget)
#: kcookiespolicies.ui:147
msgid ""
"<qt>\n"
"List of sites for which you have set a specific cookie policy. Specific "
"policies override the default policy setting for these sites.\n"
"</qt>"
msgstr ""
"<qt>Ei liste over nettstader som du har valt særskilde reglar for. Desse "
"reglane overstyrer standardreglane for dei nettstadene dei omfattar.</qt>"

#. i18n: ectx: property (text), widget (QTreeWidget, policyTreeWidget)
#: kcookiespolicies.ui:163
msgid "Domain"
msgstr "Domene"

#. i18n: ectx: property (text), widget (KPushButton, pbNew)
#. i18n: ectx: property (text), widget (KPushButton, newButton)
#: kcookiespolicies.ui:176 useragentdlg.ui:182
msgid "&New..."
msgstr "&Ny …"

#. i18n: ectx: property (text), widget (KPushButton, pbChange)
#. i18n: ectx: property (text), widget (KPushButton, changeButton)
#: kcookiespolicies.ui:183 useragentdlg.ui:192
msgid "Chan&ge..."
msgstr "&Endra …"

#. i18n: ectx: property (whatsThis), widget (QLabel, lbDomain)
#: kcookiespolicyselectiondlg.ui:22
msgid ""
"<qt>\n"
"Enter the host or domain to which this policy applies, e.g. <b>www.kde.org</"
"b> or <b>.kde.org</b>.\n"
"</qt>"
msgstr ""
"<qt>Oppgje namnet på verten eller domenet regelen skal brukast for, for "
"eksempel <b>www.kde.org</b> eller <b>.kde.org</b>.</qt>"

#. i18n: ectx: property (text), widget (QLabel, lbDomain)
#: kcookiespolicyselectiondlg.ui:25
msgid "Site name:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, leDomain)
#: kcookiespolicyselectiondlg.ui:38
msgid "Enter the host or domain name, e.g. .kde.org, this policy applies to."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, lbPolicy)
#. i18n: ectx: property (whatsThis), widget (KComboBox, cbPolicy)
#: kcookiespolicyselectiondlg.ui:53 kcookiespolicyselectiondlg.ui:77
msgid ""
"<qt>\n"
"Select the desired policy:\n"
"<ul>\n"
"<li><b>Accept</b> - Allows this site to set cookies</li>\n"
"<li><b>Accept until end of session</b> - Allows this site to set cookies but "
"they will expire at the end of the session.</li>\n"
"<li><b>Reject</b> - Refuse all cookies sent from this site</li>\n"
"<li><b>Ask</b> - Prompt when cookies are received from this site</li>\n"
"</ul>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, lbPolicy)
#: kcookiespolicyselectiondlg.ui:56
msgid "Policy:"
msgstr ""

#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: kcookiespolicyselectiondlg.ui:81
msgid "Accept"
msgstr "Godta"

#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: kcookiespolicyselectiondlg.ui:86
msgid "Accept until end of session"
msgstr ""

#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: kcookiespolicyselectiondlg.ui:91
msgid "Reject"
msgstr "Avvis"

#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: kcookiespolicyselectiondlg.ui:96
msgid "Ask"
msgstr "Spør"

#. i18n: ectx: label, entry (DisablePassiveMode), group (DesktopIcons)
#: kio_ftprc.kcfg:10
msgid "Disable Passive FTP"
msgstr "Slå av passiv FTP"

#. i18n: ectx: whatsthis, entry (DisablePassiveMode), group (DesktopIcons)
#: kio_ftprc.kcfg:11
msgid ""
"When FTP connections are passive the client connects to the server, instead "
"of the other way round, so firewalls do not block the connection; old FTP "
"servers may not support Passive FTP though."
msgstr ""
"Når FTP-tilkoplingane er passive, er det klienten som koplar seg til tenaren "
"i staden for omvendt. På denne måten vil ikkje brannmurar blokkera "
"tilkoplinga. Det kan henda at enkelte gamle FTP-tenarar ikkje støttar passiv "
"FTP."

#. i18n: ectx: label, entry (MarkPartial), group (DesktopIcons)
#: kio_ftprc.kcfg:16
msgid "Mark partially uploaded files"
msgstr "Marker delvis opplasta filer"

#. i18n: ectx: whatsthis, entry (MarkPartial), group (DesktopIcons)
#: kio_ftprc.kcfg:17
msgid ""
"While a file is being uploaded its extension is \".part\". When fully "
"uploaded it is renamed to its real name."
msgstr ""
"Når ei fil vert lasta opp, har ho etternamnet «*.part». Når opplastinga er "
"ferdig, får ho sitt eigentlege namn."

#: kproxydlg.cpp:533
msgid ""
"<h1>Proxy</h1><p>A proxy server is an intermediate program that sits between "
"your machine and the Internet and provides services such as web page caching "
"and/or filtering.</p><p>Caching proxy servers give you faster access to "
"sites you have already visited by locally storing or caching the content of "
"those pages; filtering proxy servers, on the other hand, provide the ability "
"to block out requests for ads, spam, or anything else you want to block.</"
"p><p><u>Note:</u> Some proxy servers provide both services.</p>"
msgstr ""
"<h1>Mellomtenar</h1> <p>Ein mellomtenar – «proxy» – er eit formidlande "
"program som står mellom di maskin og Internett og tilbyr tenester som "
"mellomlagring av nettsider og/eller filtrering. </p><p>Mellomlagrande "
"mellomtenarar gjev raskare tilgang til nettstader du har vitja før ved å "
"lagra innhaldet mellombels. Filtrerande mellomtenarar gjer det mogleg å "
"blokkera reklame, søppelpost eller andre ting du vil stenga ute.</p> "
"<p><u>Merk:</u> Enkelte mellomtenarar tilbyr begge tenestene.</p>"

#. i18n: ectx: property (whatsThis), widget (QWidget, ProxyDialogUI)
#: kproxydlg.ui:20
msgid ""
"<qt>\n"
"Setup proxy configuration.\n"
"<p>\n"
"A proxy server is an intermediate machine that sits between your computer "
"and the Internet and provides services such as web page caching and "
"filtering. Caching proxy servers give you faster access to web sites you "
"have already visited by locally storing or caching those pages; filtering "
"proxy servers usually provide the ability to block out requests for ads, "
"spam, or anything else you want to block.\n"
"<p>\n"
"If you are uncertain whether or not you need to use a proxy server to "
"connect to the Internet, consult your Internet service provider's setup "
"guide or your system administrator.\n"
"</qt>"
msgstr ""
"<qt>Tilpass mellomtenaroppsett.<p>Ein mellomtenar – «proxy» – er eit "
"formidlande program som står mellom di maskin og Internett og tilbyr "
"tenester som mellomlagring av nettsider og/eller filtrering. Mellomlagrande "
"mellomtenarar gjev raskare tilgang til nettstader du har vitja før ved å "
"lagra innhaldet mellombels. Filtrerande mellomtenarar gjer det mogleg å "
"blokkera reklame, søppelpost eller andre ting du vil stenga ute.<p>Dersom du "
"er usikker på om du treng bruka ein mellomtenar for å kopla til Internett, "
"ta kontakt med Internett-leverandøren eller systemadministratoren. </qt>"

#. i18n: ectx: property (whatsThis), widget (QRadioButton, noProxyRadioButton)
#: kproxydlg.ui:26
msgid "Connect to the Internet directly."
msgstr "Kopla direkte til Internett."

#. i18n: ectx: property (text), widget (QRadioButton, noProxyRadioButton)
#: kproxydlg.ui:29
msgid "No Proxy"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QRadioButton, autoDiscoverProxyRadioButton)
#: kproxydlg.ui:46
msgid ""
"<qt>\n"
"Automatically detect and configure the proxy settings.<p>\n"
"Automatic detection is performed using the <b>Web Proxy Auto-Discovery "
"Protocol (WPAD)</b>.<p>\n"
"<b>NOTE:</b> This option might not work properly or not work at all in some "
"UNIX/Linux distributions. If you encounter a problem when using this option, "
"please check the FAQ section at http://konqueror.kde.org.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Finn og set opp mellomtenarinnstillingar automatisk.<p>Automatisk søk vert "
"utført med protokollen <b>Web Proxy Auto-Discovery Protocol (WPAD)</b>."
"<p><b>MERK:</b> Dette fungerer kanskje ikkje rett, eller ikkje i det heile, "
"på enkelte Unix/Linux-distribusjonar. Dersom du får problem med å bruka "
"dette valet, bør du sjå etter i FAQ-delen på http://konqueror.kde.org/.</qt>"

#. i18n: ectx: property (text), widget (QRadioButton, autoDiscoverProxyRadioButton)
#: kproxydlg.ui:49
msgid "Detect proxy configuration automatically"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QRadioButton, autoScriptProxyRadioButton)
#: kproxydlg.ui:59
msgid "Use the specified proxy script to configure the proxy settings."
msgstr ""

#. i18n: ectx: property (text), widget (QRadioButton, autoScriptProxyRadioButton)
#: kproxydlg.ui:62
msgid "Use proxy auto configuration URL:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KUrlRequester, proxyScriptUrlRequester)
#: kproxydlg.ui:93
msgid "Enter the address for the proxy configuration script."
msgstr "Oppgje adressa til skriptet for mellomtenaroppsett."

#. i18n: ectx: property (whatsThis), widget (QRadioButton, systemProxyRadioButton)
#: kproxydlg.ui:117
msgid ""
"<qt><p>Use proxy settings defined on the system.</p>\n"
"<p>Some platforms offer system wide proxy configuration information and "
"selecting this option allows you to use those settings.</p>\n"
"<p>On Mac platforms</p>\n"
"<p>On Windows platforms</p>\n"
"<p>On Unix and Linux platforms, such system proxy settings are usually "
"defined through environment variables. The following environment variables "
"are detected and used when present: <b>HTTP_PROXY</b>, <b>HTTPS_PROXY</b>, "
"<b>FTP_PROXY</b>, <b>NO_PROXY</b>.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QRadioButton, systemProxyRadioButton)
#: kproxydlg.ui:120
msgid "Use system proxy configuration:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QPushButton, autoDetectButton)
#: kproxydlg.ui:127
msgid ""
"<qt>Attempt automatic discovery of the environment variables used for "
"setting system wide proxy information.<p> This feature works by searching "
"for commonly used variable names such as HTTP_PROXY, FTP_PROXY and NO_PROXY."
"</qt>"
msgstr ""
"<qt>Prøv å automatisk oppdaga miljøvariablane for mellomtenaroppsettet.<p> "
"Funksjonen verkar ved å sjå etter vanlege variabelnamn som for eksempel "
"HTTP_PROXY, FTP_PROXY og NO_PROXY.</qt>"

#. i18n: ectx: property (text), widget (QPushButton, autoDetectButton)
#: kproxydlg.ui:130
msgid "Auto D&etect"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, systemProxyHttpLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, systemProxyHttpEdit)
#: kproxydlg.ui:158 kproxydlg.ui:183
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>HTTP_PROXY</b>, used to "
"store the address of the HTTP proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, systemProxyHttpLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxyHttpEditLabel)
#: kproxydlg.ui:161 kproxydlg.ui:383
msgid "HTTP Proxy:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, systemProxyHttpsLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, systemProxyHttpsEdit)
#: kproxydlg.ui:193 kproxydlg.ui:218
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>HTTPS_PROXY</b>, used to "
"store the address of the HTTPS proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, systemProxyHttpsLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxyHttpsEditLabel)
#: kproxydlg.ui:196 kproxydlg.ui:449
msgid "SSL Proxy:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, systemProxyFtpLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, systemProxyFtpEdit)
#: kproxydlg.ui:228 kproxydlg.ui:253
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>FTP_PROXY</b>, used to "
"store the address of the FTP proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, systemProxyFtpLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxyFtpEditLabel)
#: kproxydlg.ui:231 kproxydlg.ui:499
msgid "FTP Proxy:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, systemProxySocksLabel)
#: kproxydlg.ui:263
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>SOCKS_PROXY</b>, used to "
"store the address of the SOCKS proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, systemProxySocksLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxySocksEditLabel)
#: kproxydlg.ui:266 kproxydlg.ui:552
msgid "SOCKS Proxy:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, systemProxySocksEdit)
#: kproxydlg.ui:285
msgid ""
"<qt>Enter the name of the environment variable, e.g. <b>SOCKS_PROXY</b>, "
"used to store the address of the SOCKS proxy server.<p>Alternatively, you "
"can click on the <b>\"Auto Detect\"</b> button to attempt an automatic "
"discovery of this variable.</p></qt>"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QLabel, sysNoProxyLabel)
#. i18n: ectx: property (whatsThis), widget (QLabel, manNoProxyLabel)
#: kproxydlg.ui:295 kproxydlg.ui:599
msgid ""
"<qt>\n"
"Enter the environment variable, e.g. <b>NO_PROXY</b>, used to store the "
"addresses of sites for which the proxy server should not be used.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.\n"
"</qt>"
msgstr ""
"<qt>Oppgje namnet på miljøvariabelen, f.eks. <b>NO_PROXY</b>, som inneheld "
"adresser til nettstader der mellomtenar ikkje skal brukast.\n"
"<p>Du kan òg trykkja på knappen <b>Autooppdag</b> for å prøva å oppdaga "
"denne variabelen automatisk.</qt>"

#. i18n: ectx: property (text), widget (QLabel, sysNoProxyLabel)
#. i18n: ectx: property (text), widget (QLabel, manNoProxyLabel)
#: kproxydlg.ui:298 kproxydlg.ui:602
msgid "Exceptions:"
msgstr "Unntak:"

#. i18n: ectx: property (whatsThis), widget (KLineEdit, systemNoProxyEdit)
#: kproxydlg.ui:317
msgid ""
"<qt>Enter the environment variable, e.g. <b>NO_PROXY</b>, used to store the "
"addresses of sites for which the above proxy settings should not be used."
"<p>Alternatively, you can click on the <b>\"Auto Detect\"</b> button to "
"attempt an automatic discovery of this variable.</p></qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, showEnvValueCheckBox)
#: kproxydlg.ui:324
msgid "Show the &value of the environment variables"
msgstr "Vis verdien til &miljøvariablane"

#. i18n: ectx: property (whatsThis), widget (QRadioButton, manualProxyRadioButton)
#: kproxydlg.ui:343
msgid "Manually enter proxy server configuration information."
msgstr "Tilpass mellomtenaroppsettet manuelt."

#. i18n: ectx: property (text), widget (QRadioButton, manualProxyRadioButton)
#: kproxydlg.ui:346
msgid "Use manually specified proxy configuration:"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, manualProxyHttpEdit)
#: kproxydlg.ui:398
msgid "Enter the address of the HTTP proxy server."
msgstr "Oppgje adressa til HTTP-mellomtenaren."

#. i18n: ectx: property (text), widget (QLabel, manualProxyHttpSpinBoxLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxyHttpsSpinBoxLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxyFtpSpinBoxLabel)
#. i18n: ectx: property (text), widget (QLabel, manualProxySocksSpinBoxLabel)
#: kproxydlg.ui:405 kproxydlg.ui:471 kproxydlg.ui:524 kproxydlg.ui:574
msgid "Port:"
msgstr "Port:"

#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, manualProxyHttpSpinBox)
#: kproxydlg.ui:421
msgid "Enter the port number of the HTTP proxy server."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, useSameProxyCheckBox)
#: kproxydlg.ui:436
msgid "Use this proxy server for a&ll protocols"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, manualProxyHttpsEdit)
#: kproxydlg.ui:464
msgid "Enter the address of the HTTPS proxy server."
msgstr "Oppgje adressa til HTTPS-mellomtenaren."

#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, manualProxyHttpsSpinBox)
#: kproxydlg.ui:481
msgid "Enter the port number of the HTTPS proxy server."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, manualProxyFtpEdit)
#: kproxydlg.ui:517
msgid "Enter the address of the FTP proxy server."
msgstr "Oppgje adressa til FTP-mellomtenaren."

#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, manualProxyFtpSpinBox)
#: kproxydlg.ui:534
msgid "Enter the port number of the FTP proxy server."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, manualProxySocksEdit)
#: kproxydlg.ui:567
msgid "Enter the address of the SOCKS proxy server."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, manualProxySocksSpinBox)
#: kproxydlg.ui:584
msgid "Enter the port number of the SOCKS proxy server."
msgstr ""

#. i18n: ectx: property (whatsThis), widget (KLineEdit, manualNoProxyEdit)
#: kproxydlg.ui:628
msgid ""
"<qt>\n"
"<p>Enter a comma separated list of hostnames or ip addresses that should be "
"excluded from using the above proxy settings.</p>\n"
"<p>If you want to exclude all hosts for a given domain, then simply enter "
"the domain name preceded by a dot. For example, to exclude all hostnames for "
"<i>kde.org</i>, enter <i>.kde.org</i>. Wildcard characters such as '*' or "
"'?' are not supported and will have no effect.</p>\n"
"<p>Additionally, you can also enter IP addresses, e.g. 127.0.0.1 and IP "
"addresses with a subnet, e.g. 192.168.0.1/24.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (whatsThis), widget (QCheckBox, useReverseProxyCheckBox)
#: kproxydlg.ui:639
msgid ""
"<qt>\n"
"Check this box if you want the above proxy settings to apply only to the "
"addresses listed in the <i>Exceptions</i> list.</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, useReverseProxyCheckBox)
#: kproxydlg.ui:642
msgid "Use proxy settings only for addresses in the Exceptions list"
msgstr ""

#: ksaveioconfig.cpp:218
msgid ""
"You have to restart the running applications for these changes to take "
"effect."
msgstr "Du må starta programma på nytt for at endringane skal tre i kraft."

#: ksaveioconfig.cpp:220 ksaveioconfig.cpp:234
msgctxt "@title:window"
msgid "Update Failed"
msgstr ""

#: ksaveioconfig.cpp:233
msgid "You have to restart KDE for these changes to take effect."
msgstr "Du må starta KDE på nytt for at endringane skal tre i kraft."

#: netpref.cpp:32
msgid "Timeout Values"
msgstr "Tidsgrenser"

#: netpref.cpp:33
#, kde-format
msgid ""
"Here you can set timeout values. You might want to tweak them if your "
"connection is very slow. The maximum allowed value is 1 second."
msgid_plural ""
"Here you can set timeout values. You might want to tweak them if your "
"connection is very slow. The maximum allowed value is %1 seconds."
msgstr[0] ""
"Her kan du velja tidsgrenser. Dersom tilkoplinga er svært langsam, vil du "
"kanskje tilpassa desse. Den høgste verdien du kan bruka er 1 sekund."
msgstr[1] ""
"Her kan du velja tidsgrenser. Dersom tilkoplinga er svært langsam, vil du "
"kanskje tilpassa desse. Den høgste verdien du kan bruka er %1 sekund."

#: netpref.cpp:45 netpref.cpp:50 netpref.cpp:55 netpref.cpp:60
msgid " second"
msgid_plural " seconds"
msgstr[0] ""
msgstr[1] ""

#: netpref.cpp:47
msgid "Soc&ket read:"
msgstr "So&kkel-lesing:"

#: netpref.cpp:52
msgid "Pro&xy connect:"
msgstr "&Mellomtenartilkopling:"

#: netpref.cpp:57
msgid "Server co&nnect:"
msgstr "Te&nartilkopling:"

#: netpref.cpp:62
msgid "&Server response:"
msgstr "Tena&rsvar:"

#: netpref.cpp:64
msgid "FTP Options"
msgstr "FTP-val"

#: netpref.cpp:68
msgid "Enable passive &mode (PASV)"
msgstr "Bruk &passivmodus (PASV)"

#: netpref.cpp:69
msgid ""
"Enables FTP's \"passive\" mode. This is required to allow FTP to work from "
"behind firewalls."
msgstr ""
"Slår på «passiv» FTP-modus. Det trengst ofte for at FTP skal verka gjennom "
"brannmurar."

#: netpref.cpp:75
msgid "Mark &partially uploaded files"
msgstr "Marker &delvis opplasta filer"

#: netpref.cpp:76
msgid ""
"<p>Marks partially uploaded FTP files.</p><p>When this option is enabled, "
"partially uploaded files will have a \".part\" extension. This extension "
"will be removed once the transfer is complete.</p>"
msgstr ""
"<p>Markerer delvis opplasta FTP-filer.</p> <p>Når denne funksjonen er på, "
"får delvis opplasta FTP-filer etternamnet «.part». Etternamnet vert fjerna "
"så snart overføringa er ferdig.</p>"

#: netpref.cpp:144
msgid ""
"<h1>Network Preferences</h1>Here you can define the behavior of KDE programs "
"when using Internet and network connections. If you experience timeouts or "
"use a modem to connect to the Internet, you might want to adjust these "
"settings."
msgstr ""
"<h1>Nettverksinnstillingar</h1>Her kan du definera åtferda til KDE-program "
"når Internett og nettverkssamband vert brukte. Dersom du stadig opplever "
"forseinkingar og brukar modem til å kopla til Internett, vil du kanskje "
"tilpassa desse innstillingane."

#: smbrodlg.cpp:46
msgid "These settings apply to network browsing only."
msgstr "Desse innstillingane gjeld berre for nettlesing."

#: smbrodlg.cpp:50
msgid "Default user name:"
msgstr "Standard brukarnamn:"

#: smbrodlg.cpp:58
msgid "Default password:"
msgstr "Standard passord:"

#: smbrodlg.cpp:177
msgid ""
"<p><h1>Windows Shares</h1>Konqueror is able to access shared Microsoft "
"Windows file systems, if properly configured. If there is a specific "
"computer from which you want to browse, fill in the <em>Browse server</em> "
"field. This is mandatory if you are not running Samba locally. The "
"<em>Broadcast address</em> and <em>WINS address</em> fields will also be "
"available, if you use the native code, or the location of the 'smb.conf' "
"file from which the options are read, when using Samba. In any case, the "
"broadcast address (interfaces in smb.conf) must be set up if it is guessed "
"incorrectly or you have multiple cards. A WINS server usually improves "
"performance, and reduces the network load a lot.</p><p>The bindings are used "
"to assign a default user for a given server, possibly with the corresponding "
"password, or for accessing specific shares. If you choose to, new bindings "
"will be created for logins and shares accessed during browsing. You can edit "
"all of them from here. Passwords will be stored locally, and scrambled so as "
"to render them unreadable to the human eye. For security reasons, you may "
"not want to do that, as entries with passwords are clearly indicated as such."
"</p>"
msgstr ""
"<h1>Delte Windows-ressursar</h1><p>Konqueror har tilgang til delte Microsoft "
"Windows-filsystem dersom dei er rett oppsette. Dersom du vil ha tilgang frå "
"ei særskild maskin, fyll ut feltet <em>Bla gjennom tenar</em>. Dette  må "
"gjerast dersom du ikkje køyrer Samba lokalt. Felta <em>Kringkastingsadresse</"
"em> og <em>WINS-adresse</em> er òg tilgjengelege dersom du brukar den "
"opphavlege koden eller plasseringa av «smb.conf»-fila som Samba-"
"innstillingane vert lesne frå. I alle fall må kringkastingsadressa (miljø i "
"smb.conf) setjast opp dersom den ikkje er rett gjetta eller om du har fleire "
"kort. Ein WINS-tenar forbetrar vanlegvis ytinga og reduserer nettverkslasta."
"</p><p>Bindingane vert brukte til å tildela ein standardbrukar for ein "
"spesiell tenar, kanskje med tilhøyrande passord eller rettar. Du kan endra "
"alle her. Passorda vert lagra lokalt og krypterte så dei er uleselege. For "
"tryggleiksgrunnar vil du kanskje ikkje gjera det. Oppføringar med passord er "
"tydeleg merka.</p>"

#: useragentdlg.cpp:81
msgctxt "@title:window"
msgid "Add Identification"
msgstr ""

#: useragentdlg.cpp:148
msgctxt "@title:window"
msgid "Modify Identification"
msgstr ""

#: useragentdlg.cpp:196
#, kde-format
msgid ""
"<qt><center>Found an existing identification for<br/><b>%1</b><br/>Do you "
"want to replace it?</center></qt>"
msgstr ""
"<qt><center>Ein regel for <br/><b>%1</b><br/> finst frå før. Vil du byta han "
"ut?</center></qt>"

#: useragentdlg.cpp:201
msgctxt "@title:window"
msgid "Duplicate Identification"
msgstr ""

# skip-rule: mellomrom-før
#: useragentdlg.cpp:373
msgid ""
"<p><h1>Browser Identification</h1> The browser-identification module allows "
"you to have full control over how Konqueror will identify itself to web "
"sites you browse.</p><p>This ability to fake identification is necessary "
"because some web sites do not display properly when they detect that they "
"are not talking to current versions of either Netscape Navigator or Internet "
"Explorer, even if the browser actually supports all the necessary features "
"to render those pages properly. For such sites, you can use this feature to "
"try to browse them. Please understand that this might not always work, since "
"such sites might be using non-standard web protocols and or specifications.</"
"p><p><u>NOTE:</u> To obtain specific help on a particular section of the "
"dialog box, simply click on the quick help button on the window title bar, "
"then click on the section for which you are seeking help.</p>"
msgstr ""
"<h1>Nettlesaridentifikasjon</h1><p>På kontrollskjermen for "
"nettlesaridentifikasjon har du full kontroll over korleis Konqueror "
"presenterer seg sjølv ovanfor nettstader.</p><p>Sidan enkelte nettstader "
"ikkje vert viste skikkeleg dersom dei oppdagar at dei ikkje kommuniserer med "
"ein ny versjon av Netscape Navigator eller Internet Explorer, trengst det "
"ein slik funksjon for å forfalska nettlesaridentiteten. Ein såkalla «ustøtta "
"nettlesar» kan nemleg vera godt i stand til å visa sidene skikkeleg. For "
"slike nettstader vil du kanskje overstyra standardidentifikasjonen ved å "
"leggja til ei oppføring spesifikk til nettstaden eller domenet. Denne "
"funksjonen fungerer ikkje alltid, sidan ein del nettstader ikkje følgjer "
"standardane.</p><p><b>MERK:</b> For å få spesifikk hjelp om eit emne i "
"dialogvindauget, kan du trykkja på det vesle <b>?</b>-ikonet øvst til høgre "
"i vindauget og så trykkja på det elementet du vil ha hjelp om.</p>"

#. i18n: ectx: property (whatsThis), widget (QWidget, UserAgentUI)
#: useragentdlg.ui:17
msgid ""
"<qt>\n"
"Here you can modify the default browser-identification text or set a site "
"<code>(eg. www.kde.org)</code> or a domain <code>(eg. kde.org)</code> "
"specific identification text.<p>\n"
"To add a new site-specific identification text, click the <code>New</code> "
"button and supply the necessary information. To change an existing site-"
"specific entry, click on the <code>Change</code> button. The <code>Delete</"
"code> button will remove the selected site-specific identification text, "
"causing the default setting to be used for that site or domain.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Her kan du endra standardverdien for nettlesaridentifikasjon og/eller velja "
"ein identifikasjon spesifikt for ein nettstad <code>(f.eks. www.kde.org)</"
"code> eller eit domene <code>(f.eks. kde.org)</code>.\n"
"<p>For å leggja til ein ny agentstreng, bruk knappen <code>Ny</code> og "
"oppgje den informasjonen som trengst i dialogvindauget. For å endra ei "
"oppføring, bruk <code>Endra</code>-knappen. <code>Slett</code>-knappen "
"fjernar den valde regelen, slik at standardinnstillinga vert brukt for den "
"nettstaden eller det domenet.</qt>"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, sendUACheckBox)
#: useragentdlg.ui:27
msgid ""
"<qt>\n"
"Send the browser identification to web sites.<p>\n"
"<u>NOTE:</u> Many sites rely on this information to display pages properly, "
"hence, it is highly recommended that you do not totally disable this feature "
"but rather customize it.<p>\n"
"By default, only minimal identification information is sent to remote sites. "
"The identification text that will be sent is shown below.\n"
"</qt>"
msgstr ""
"<qt>Dersom denne boksen ikkje er merka av, vert ingen "
"nettlesaridentifikasjon sendt til nettsider medan du surfar.\n"
"<p><u>MERK:</u> Mange nettstader brukar denne informasjonen for å visa sider "
"skikkeleg. Derfor bør du ikkje slå denne funksjonen fullstendig av, men "
"heller tilpassa han.\n"
"<p>Berre svært lite informasjon vert sendt ut som standard. Nedanfor kan du "
"sjå kva som vert sendt ut.</qt>"

#. i18n: ectx: property (text), widget (QCheckBox, sendUACheckBox)
#: useragentdlg.ui:30
msgid "&Send identification"
msgstr "Send &identifikasjon"

#. i18n: ectx: property (whatsThis), widget (QGroupBox, defaultIdGroupBox)
#: useragentdlg.ui:43
msgid ""
"The browser identification text sent to the sites you visit. Use the "
"provided options to customize it."
msgstr ""
"Identifikasjonsteksten som nettlesaren sender til nettstadene. Teksten kan "
"tilpassast med dei tilgjengelege alternativa."

#. i18n: ectx: property (title), widget (QGroupBox, defaultIdGroupBox)
#: useragentdlg.ui:46
msgid "Default Identification"
msgstr "Standardidentifikasjon"

#. i18n: ectx: property (whatsThis), widget (KSqueezedTextLabel, defaultIdLineEdit)
#: useragentdlg.ui:58
msgid ""
"The browser identification text sent to the sites you visit. You can "
"customize it using the options provided below."
msgstr ""
"Identifikasjonsteksten som nettlesaren sender til nettstadene. Teksten kan "
"tilpassast med dei tilgjengelege alternativa."

#. i18n: ectx: property (whatsThis), widget (QCheckBox, osNameCheckBox)
#: useragentdlg.ui:71
msgid ""
"Includes your operating system's name in the browser identification text."
msgstr "Tek med namnet på operativsystemet i nettlesaridentifikasjonen."

#. i18n: ectx: property (text), widget (QCheckBox, osNameCheckBox)
#: useragentdlg.ui:74
msgid "Add operating s&ystem name"
msgstr "Legg til namn på operativs&ystem"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, osVersionCheckBox)
#: useragentdlg.ui:102
msgid ""
"Includes your operating system's version number in the browser "
"identification text."
msgstr "Ta med versjonen av operativsystemet i nettlesaridentifikasjonen."

#. i18n: ectx: property (text), widget (QCheckBox, osVersionCheckBox)
#: useragentdlg.ui:105
msgid "Add operating system &version"
msgstr "Legg til &versjon av operativsystemet"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, processorTypeCheckBox)
#: useragentdlg.ui:115
msgid "Includes your machine's CPU type in the browser identification text."
msgstr "Tek med prosessortypen til maskina i nettlesaridentifikasjonen."

#. i18n: ectx: property (text), widget (QCheckBox, processorTypeCheckBox)
#: useragentdlg.ui:118
msgid "Add &machine (processor) type"
msgstr "Legg til &maskin- eller prosessortype"

#. i18n: ectx: property (whatsThis), widget (QCheckBox, languageCheckBox)
#: useragentdlg.ui:127
msgid ""
"Includes your language settings in the browser identification text to obtain "
"localized versions of the page."
msgstr ""
"Tek med språkinnstillinga i nettlesaridentifikasjonen, for å få "
"språktilpassa versjonar av visse nettsider."

#. i18n: ectx: property (text), widget (QCheckBox, languageCheckBox)
#: useragentdlg.ui:130
msgid "Add lang&uage information"
msgstr "Legg til &språkinnstilling"

#. i18n: ectx: property (title), widget (QGroupBox, domainPolicyGroupBox)
#: useragentdlg.ui:143
msgid "Site Specific Identification"
msgstr "Identifikasjon spesifikk til nettstad"

#. i18n: ectx: property (text), widget (QTreeWidget, sitePolicyTreeWidget)
#: useragentdlg.ui:156
msgid "Site Name"
msgstr "Namn på nettstad"

#. i18n: ectx: property (text), widget (QTreeWidget, sitePolicyTreeWidget)
#: useragentdlg.ui:161
msgid "Identification"
msgstr "Identifikasjon"

#. i18n: ectx: property (text), widget (QTreeWidget, sitePolicyTreeWidget)
#: useragentdlg.ui:166
msgid "User Agent"
msgstr "Brukaragent"

#. i18n: ectx: property (whatsThis), widget (KPushButton, newButton)
#: useragentdlg.ui:179
msgid "Add new identification text for a site."
msgstr "Legg til ny identifikasjon for ein nettstad."

#. i18n: ectx: property (whatsThis), widget (KPushButton, changeButton)
#: useragentdlg.ui:189
msgid "Change the selected identifier text."
msgstr "Endra den valde identifikasjonen."

#. i18n: ectx: property (whatsThis), widget (KPushButton, deleteButton)
#: useragentdlg.ui:199
msgid "Delete the selected identifier text."
msgstr "Slett den valde identifikasjonen."

#. i18n: ectx: property (whatsThis), widget (KPushButton, deleteAllButton)
#: useragentdlg.ui:209
msgid "Delete all identifiers."
msgstr "Slett alle identifikasjonane."

#. i18n: ectx: property (whatsThis), widget (QLabel, siteLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, siteLineEdit)
#: useragentselectordlg.ui:19 useragentselectordlg.ui:38
msgid ""
"<qt>\n"
"Enter the site or domain name where a fake browser identification should be "
"used.<p>\n"
"<u>NOTE:</u> Wildcard syntax such as \\\"*,?\\\" is NOT allowed: instead, "
"use the top level address of a site to make generic matches; for example, if "
"you want all KDE sites to receive a fake browser identification, you would "
"enter <code>kde.org</code> - the fake identity would then be sent to any KDE "
"site that ends with <code>kde.org</code>.</p>\n"
"</qt>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, siteLabel)
#: useragentselectordlg.ui:22
msgid "&When browsing the following site:"
msgstr "Ved tilkopling &til:"

#. i18n: ectx: property (whatsThis), widget (QLabel, aliasLabel)
#. i18n: ectx: property (whatsThis), widget (KComboBox, aliasComboBox)
#: useragentselectordlg.ui:47 useragentselectordlg.ui:65
msgid ""
"<qt>\n"
"Select the browser identification to use whenever contacting the site you "
"specified above.\n"
"</qt>"
msgstr ""
"<qt>Vel nettlesaridentiteten som skal brukast når du koplar til nettstaden "
"ovanfor.</qt>"

#. i18n: ectx: property (text), widget (QLabel, aliasLabel)
#: useragentselectordlg.ui:50
msgid "&Use the following identification:"
msgstr "Bruk følgjande &identitet:"

#. i18n: ectx: property (whatsThis), widget (QLabel, identityLabel)
#. i18n: ectx: property (whatsThis), widget (KLineEdit, identityLineEdit)
#: useragentselectordlg.ui:74 useragentselectordlg.ui:89
msgid ""
"<qt>\n"
"The actual browser identification text that will be sent to the remote "
"machine.\n"
"</qt>"
msgstr "<qt>Den identitetsteksten som vert sendt til tenarmaskina.</qt>"

#. i18n: ectx: property (text), widget (QLabel, identityLabel)
#: useragentselectordlg.ui:77
msgid "Real identification:"
msgstr "Verkeleg identitet:"