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
|
# 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/.
do-not-track-description = Send wabsites a "Dinnae Track" signal that ye dinnae want tae be tracked.
do-not-track-learn-more = Lairn mair
do-not-track-option-default-content-blocking-known =
.label = Anely when { -brand-short-name } is set tae block kent trackers
do-not-track-option-always =
.label = Ayeweys
settings-page-title = Settins
# This is used to determine the width of the search field in about:preferences,
# in order to make the entire placeholder string visible
#
# Please keep the placeholder string short to avoid truncation.
#
# Notice: The value of the `.style` attribute is a CSS string, and the `width`
# is the name of the CSS property. It is intended only to adjust the element's width.
# Do not translate.
search-input-box2 =
.style = width: 15.4em
.placeholder = Airt-oot in Settins
managed-notice = Yer stravaiger is bein managed by yer organisation.
category-list =
.aria-label = Categories
pane-general-title = General
category-general =
.tooltiptext = { pane-general-title }
pane-home-title = Hame
category-home =
.tooltiptext = { pane-home-title }
pane-search-title = Sairch
category-search =
.tooltiptext = { pane-search-title }
pane-privacy-title = Privacy & Siccarness
category-privacy =
.tooltiptext = { pane-privacy-title }
pane-sync-title3 = Sync
category-sync3 =
.tooltiptext = { pane-sync-title3 }
pane-experimental-title = { -brand-short-name } Experiments
category-experimental =
.tooltiptext = { -brand-short-name } Experiments
pane-experimental-subtitle = Haud Forrit wi Tent
pane-experimental-search-results-header = { -brand-short-name } Experiments: Haud Forrit wi Tent
pane-experimental-description2 = Chyngin advanced confeeguration settins can effect { -brand-short-name } performance or siccarness.
pane-experimental-reset =
.label = Restore Staunarts
.accesskey = R
help-button-label = { -brand-short-name } Hauners
addons-button-label = Extensions & Themes
focus-search =
.key = f
close-button =
.aria-label = Sneck
## Browser Restart Dialog
feature-enable-requires-restart = { -brand-short-name } maun restert tae mak yaise o this featur.
feature-disable-requires-restart = { -brand-short-name } maun restert tae get shot o this featur.
should-restart-title = Restert { -brand-short-name }
should-restart-ok = Restert { -brand-short-name } noo
cancel-no-restart-button = Stap
restart-later = Restert Efter
## Extension Control Notifications
##
## These strings are used to inform the user
## about changes made by extensions to browser settings.
##
## <img data-l10n-name="icon"/> is going to be replaced by the extension icon.
##
## Variables:
## $name (String): name of the extension
## Extension Control Notifications
##
## These strings are used to inform the user
## about changes made by extensions to browser settings.
##
## <img data-l10n-name="icon"/> is going to be replaced by the extension icon.
##
## Variables:
## $name (string) - Name of the extension
# This string is shown after the user disables an extension to notify the user
# how to enable an extension that they disabled.
#
# <img data-l10n-name="addons-icon"/> will be replaced with Add-ons icon
# <img data-l10n-name="menu-icon"/> will be replaced with Menu icon
extension-controlled-enable = To mak yaise o the extension gang tae <img data-l10n-name="addons-icon"/> Eik-ons in the <img data-l10n-name="menu-icon"/> menu.
## Preferences UI Search Results
search-results-header = Sairch Results
# `<span data-l10n-name="query"></span>` will be replaced by the search term.
search-results-empty-message2 = Ach! There's nae results in Settins fur “<span data-l10n-name="query"></span>”.
search-results-help-link = Needin a haun? Veesit <a data-l10n-name="url">{ -brand-short-name } Hauners</a>
## General Section
startup-header = Stertup
always-check-default =
.label = Ayeweys check if { -brand-short-name } is yer staunart stravaiger
.accesskey = y
is-default = { -brand-short-name } is yer staunart stravaiger the noo
is-not-default = { -brand-short-name } isnae yer staunart stravaiger
set-as-my-default-browser =
.label = Mak Staunart…
.accesskey = S
startup-restore-windows-and-tabs =
.label = Open previous windaes and tabs
.accesskey = s
startup-restore-warn-on-quit =
.label = Warn ye when quittin the stravaiger
disable-extension =
.label = Disable Extension
tabs-group-header = Tabs
ctrl-tab-recently-used-order =
.label = Ctrl+Tab gangs through tabs in the order ye last yaised them
.accesskey = T
open-new-link-as-tabs =
.label = Open links in tabs insteid o new windaes
.accesskey = w
confirm-on-close-multiple-tabs =
.label = Confirm afore sneckin multiple tabs
.accesskey = m
# This string is used for the confirm before quitting preference.
# Variables:
# $quitKey (String) - the quit keyboard shortcut, and formatted
# in the same manner as it would appear,
# for example, in the File menu.
confirm-on-quit-with-key =
.label = Confirm afore quittin wi { $quitKey }
.accesskey = b
warn-on-open-many-tabs =
.label = Warn ye when openin mair nor ane tab micht gar { -brand-short-name } slow doon
.accesskey = d
switch-to-new-tabs =
.label = When ye open a link, image or media in a new tab, switch ower tae it straicht awa
.accesskey = h
show-tabs-in-taskbar =
.label = Kythe tab previews in the Windows taskbaur
.accesskey = k
browser-containers-enabled =
.label = Enable Conteener Tabs
.accesskey = n
browser-containers-learn-more = Lairn mair
browser-containers-settings =
.label = Settins…
.accesskey = i
containers-disable-alert-title = Sneck Aw Conteener Tabs?
## Variables:
## $tabCount (number) - Number of tabs
containers-disable-alert-desc =
{ $tabCount ->
[one] Gin ye disable Conteener Tabs noo, { $tabCount } conteener tab will be sneckit. Are ye shair ye want tae disable Conteener Tabs?
*[other] Gin ye disable Conteener Tabs noo, { $tabCount } conteener tabs will be sneckit. Are ye shair ye want tae disable Conteener Tabs?
}
containers-disable-alert-ok-button =
{ $tabCount ->
[one] Sneck { $tabCount } Conteener Tab
*[other] Sneck { $tabCount } Conteener Tabs
}
##
containers-disable-alert-cancel-button = Stey enabled
containers-remove-alert-title = Remuive This Conteener?
# Variables:
# $count (Number) - Number of tabs that will be closed.
containers-remove-alert-msg =
{ $count ->
[one] Gin ye remuive this Conteener the noo, { $count } conteener tab will be sneckit. Are ye shair ye want tae remuive this Conteener?
*[other] Gin ye remuive this Conteener the noo, { $count } conteener tabs will be sneckit. Are ye shair ye want tae remuive this Conteener?
}
containers-remove-ok-button = Remuive this Conteener
containers-remove-cancel-button = Dinnae remuive this Conteener
## General Section - Language & Appearance
language-and-appearance-header = Leid and Kythe
default-font = Staunart font
.accesskey = S
default-font-size = Size
.accesskey = z
advanced-fonts =
.label = Advanced…
.accesskey = A
# Zoom is a noun, and the message is used as header for a group of options
preferences-zoom-header = Zoom
preferences-default-zoom = Staunart zoom
.accesskey = z
preferences-default-zoom-value =
.label = { $percentage }%
preferences-zoom-text-only =
.label = Zoom text anely
.accesskey = t
language-header = Leid
choose-language-description = Wale yer preferred leid for kythin pages
choose-button =
.label = Wale…
.accesskey = W
choose-browser-language-description = Wale the leids yaised tae kythe menus, messages, and notifications fae { -brand-short-name }.
manage-browser-languages-button =
.label = Set Ithers...
.accesskey = I
confirm-browser-language-change-description = Restert { -brand-short-name } tae apply these chynges
confirm-browser-language-change-button = Apply and Restert
translate-web-pages =
.label = Owerset wab content
.accesskey = t
fx-translate-web-pages = { -translations-brand-name }
# The <img> element is replaced by the logo of the provider
# used to provide machine translations for web pages.
translate-attribution = Owersettins by <img data-l10n-name="logo"/>
translate-exceptions =
.label = Exceptions…
.accesskey = x
# Variables:
# $localeName (string) - Localized name of the locale to be used.
use-system-locale =
.label = Yaise yer operatin system settins fur “{ $localeName }” tae format dates, times, nummers, and meisurments.
check-user-spelling =
.label = Check yer spellin as ye type
.accesskey = t
## General Section - Files and Applications
files-and-applications-title = Files and Applications
download-header = Doonloads
download-save-where = Save files tae
.accesskey = v
download-choose-folder =
.label =
{ PLATFORM() ->
[macos] Wale…
*[other] Stravaig…
}
.accesskey =
{ PLATFORM() ->
[macos] e
*[other] o
}
download-always-ask-where =
.label = Ayeweys speir ye whaur tae save files
.accesskey = A
applications-header = Applications
applications-description = Decide how { -brand-short-name } haunles the files ye doonload fae the wab or the applications ye yaise while stravaigin.
applications-filter =
.placeholder = Sairch file types or applications
applications-type-column =
.label = Content Type
.accesskey = T
applications-action-column =
.label = Action
.accesskey = A
# Variables:
# $extension (String) - file extension (e.g .TXT)
applications-file-ending = { $extension } file
applications-action-save =
.label = Save File
# Variables:
# $app-name (String) - Name of an application (e.g Adobe Acrobat)
applications-use-app =
.label = Yaise { $app-name }
# Variables:
# $app-name (String) - Name of an application (e.g Adobe Acrobat)
applications-use-app-default =
.label = Yaise { $app-name } (staunart)
applications-use-os-default =
.label =
{ PLATFORM() ->
[macos] Yaise macOS staunart application
[windows] Yaise Windows staunart application
*[other] Yaise system staunart application
}
applications-use-other =
.label = Yaise anither...
applications-select-helper = Wale Helper Application
applications-manage-app =
.label = Application Details…
applications-always-ask =
.label = Ayeweys speir
# Variables:
# $type-description (String) - Description of the type (e.g "Portable Document Format")
# $type (String) - the MIME type (e.g application/binary)
applications-type-description-with-type = { $type-description } ({ $type })
# Variables:
# $extension (String) - file extension (e.g .TXT)
# $type (String) - the MIME type (e.g application/binary)
applications-file-ending-with-type = { applications-file-ending } ({ $type })
# Variables:
# $plugin-name (String) - Name of a plugin (e.g Adobe Flash)
applications-use-plugin-in =
.label = Yaise { $plugin-name } (in { -brand-short-name })
applications-open-inapp =
.label = Open in { -brand-short-name }
## The strings in this group are used to populate
## selected label element based on the string from
## the selected menu item.
applications-use-plugin-in-label =
.value = { applications-use-plugin-in.label }
applications-action-save-label =
.value = { applications-action-save.label }
applications-use-app-label =
.value = { applications-use-app.label }
applications-open-inapp-label =
.value = { applications-open-inapp.label }
applications-always-ask-label =
.value = { applications-always-ask.label }
applications-use-app-default-label =
.value = { applications-use-app-default.label }
applications-use-other-label =
.value = { applications-use-other.label }
applications-use-os-default-label =
.value = { applications-use-os-default.label }
##
drm-content-header = Digital Richts Management (DRM) Content
play-drm-content =
.label = Pley DRM-controlled content
.accesskey = P
play-drm-content-learn-more = Lairn mair
update-application-title = { -brand-short-name } Updates
update-application-description = Keep { -brand-short-name } up tae date for the best performance, stieveness, and siccarness.
update-application-version = Version { $version } <a data-l10n-name="learn-more">Whit’s new</a>
update-history =
.label = Kythe Update Historie...
.accesskey = p
update-application-allow-description = Alloo { -brand-short-name } tae
update-application-auto =
.label = Automatically instaw updates (recommendit)
.accesskey = A
update-application-check-choose =
.label = Check fur updates but lat yersel decide whether tae instaw them
.accesskey = C
update-application-manual =
.label = Nivver check fur updates (no recommendit)
.accesskey = N
update-application-background-enabled =
.label = When { -brand-short-name } isnae rinnin
.accesskey = W
update-application-warning-cross-user-setting = This settin will applt tae aw Windows accoonts and { -brand-short-name } profiles yaisin this instawment o { -brand-short-name }.
update-application-use-service =
.label = Yaise a backgrund service fur tae instaw updates
.accesskey = b
update-setting-write-failure-title2 = Mishanter savin Update settins
# Variables:
# $path (String) - Path to the configuration file
# The newlines between the main text and the line containing the path is
# intentional so the path is easier to identify.
update-setting-write-failure-message2 =
{ -brand-short-name } cam across a mishanter and didnae save this chynge. Mind that chynging this update settin needs permeesion tae write tae the file ablow. Yersel or a system admeenistrator micht be able tae sort the mishanter by giein the Yaisers group full control tae this file.
Couldnae write tae file: { $path }
update-in-progress-title = Update Unnerwey
update-in-progress-message = Dae ye want { -brand-short-name } tae haud forrit wi this update?
update-in-progress-ok-button = &Discaird
# Continue is the cancel button so pressing escape or using a platform standard
# method of closing the UI will not discard the update.
update-in-progress-cancel-button = &Haud Forrit
## General Section - Performance
performance-title = Performance
performance-use-recommended-settings-checkbox =
.label = Yaise recommendit performance settins
.accesskey = Y
performance-use-recommended-settings-desc = These settins are shapit tae yer computer's haurdware and operatin system.
performance-settings-learn-more = Lairn mair
performance-allow-hw-accel =
.label = Yaise haurdware acceleration whaur possible
.accesskey = r
performance-limit-content-process-option = Content process leemit
.accesskey = l
performance-limit-content-process-enabled-desc = Mair content processes can impruive performance when yaisin a wheen o tabs, but will yaise mair memory forby.
performance-limit-content-process-blocked-desc = Chyngin the nummer o content processes can anely be duin wi multiprocess { -brand-short-name }. <a data-l10n-name="learn-more">Lairn how tae check if multiprocess is enabled</a>
# Variables:
# $num - default value of the `dom.ipc.processCount` pref.
performance-default-content-process-count =
.label = { $num } (staunart)
## General Section - Browsing
browsing-title = Stravaigin
browsing-use-autoscroll =
.label = Yaise autoscroll
.accesskey = a
browsing-use-smooth-scrolling =
.label = Yaise sleek scrollin
.accesskey = l
browsing-use-onscreen-keyboard =
.label = Kythe a touch keybuird when needit
.accesskey = c
browsing-use-cursor-navigation =
.label = Ayeweys yaise the cursor keys fur tae flit aboot inwith pages
.accesskey = k
browsing-search-on-start-typing =
.label = Sairch fur text when ye stert typin
.accesskey = x
browsing-picture-in-picture-toggle-enabled =
.label = Mak yaise o pictur-in-pictur video controls
.accesskey = y
browsing-picture-in-picture-learn-more = Lairn mair
browsing-media-control =
.label = Control media through keybuird, heidset, or virtual interface
.accesskey = v
browsing-media-control-learn-more = Lairn mair
browsing-cfr-recommendations =
.label = Recommend extensions as ye stravaig
.accesskey = R
browsing-cfr-features =
.label = Recommend featurs as ye stravaig
.accesskey = f
browsing-cfr-recommendations-learn-more = Lairn mair
## General Section - Proxy
network-settings-title = Netwark settins
network-proxy-connection-description = Confeegur how { -brand-short-name } connects tae the internet.
network-proxy-connection-learn-more = Lairn mair
network-proxy-connection-settings =
.label = Settins…
.accesskey = e
## Home Section
home-new-windows-tabs-header = New Windaes and Tabs
home-new-windows-tabs-description2 = Decide whit ye see when ye open yer hamepage, new windaes, and new tabs.
## Home Section - Home Page Customization
home-homepage-mode-label = Hamepage and new windaes
home-newtabs-mode-label = New tabs
home-restore-defaults =
.label = Restore Staunarts
.accesskey = R
home-mode-choice-custom =
.label = Custom URLs…
home-mode-choice-blank =
.label = Blank Page
home-homepage-custom-url =
.placeholder = Paste a URL…
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$tabCount} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
use-current-pages =
.label =
{ $tabCount ->
[1] Yaise Current Page
*[other] Yaise Current Pages
}
.accesskey = C
choose-bookmark =
.label = Yaise Buikmerk...
.accesskey = B
## Home Section - Firefox Home Content Customization
home-prefs-search-header =
.label = Wab Sairch
home-prefs-shortcuts-header =
.label = Shortcuts
home-prefs-shortcuts-description = Sites ye save or veesit
home-prefs-shortcuts-by-option-sponsored =
.label = Sponsored shortcuts
## Variables:
## $provider (String): Name of the corresponding content provider, e.g "Pocket".
## Variables:
## $provider (string) - Name of the corresponding content provider, e.g "Pocket".
home-prefs-recommended-by-header =
.label = Recommendit by { $provider }
home-prefs-recommended-by-description-new = Gallus content pit thegither by { $provider }, pairt o the { -brand-product-name } faimily
##
home-prefs-recommended-by-learn-more = How it wirks
home-prefs-recommended-by-option-sponsored-stories =
.label = Sponsored Stories
home-prefs-highlights-option-visited-pages =
.label = Veesitit Pages
home-prefs-highlights-options-bookmarks =
.label = Buikmerks
home-prefs-highlights-option-most-recent-download =
.label = Maist Recent Doonload
home-prefs-highlights-option-saved-to-pocket =
.label = Pages Saved tae { -pocket-brand-name }
home-prefs-recent-activity-header =
.label = Recent activity
home-prefs-recent-activity-description = A walin o recent sites and content
# For the "Snippets" feature traditionally on about:home.
# Alternative translation options: "Small Note" or something that
# expresses the idea of "a small message, shortened from something else,
# and non-essential but also not entirely trivial and useless.
home-prefs-snippets-header =
.label = Bitties
home-prefs-snippets-description-new = Tips and news fae { -vendor-short-name } and { -brand-product-name }
home-prefs-sections-rows-option =
.label =
{ $num ->
[one] { $num } row
*[other] { $num } rows
}
## Search Section
search-bar-header = Sairch Baur
search-bar-hidden =
.label = Yaise the address baur for sairchin and flittin aboot
search-bar-shown =
.label = Eik on sairch baur in toolbaur
search-engine-default-header = Staunart Airt-oot Engine
search-engine-default-desc-2 = This is yer staunart airt-oot engine in the address baur and sairch baur. Ye can chynge it at onie time.
search-engine-default-private-desc-2 = Wale anither staunart airt-oot engine fur Private Windaes anely
search-separate-default-engine =
.label = Yaise this airt-oot engine in Private Windaes
.accesskey = Y
search-suggestions-header = Airt-oot Suggestions
search-suggestions-desc = Decide how suggestions fae airt-oot engines kythe.
search-suggestions-option =
.label = Gie's airt-oot suggestions
.accesskey = s
search-show-suggestions-url-bar-option =
.label = Kythe airt-oot suggestions in address baur results
.accesskey = l
# This string describes what the user will observe when the system
# prioritizes search suggestions over browsing history in the results
# that extend down from the address bar. In the original English string,
# "ahead" refers to location (appearing most proximate to), not time
# (appearing before).
search-show-suggestions-above-history-option =
.label = Kythe airt-oot suggestions aheid o stravaigin historie in address baur results
search-show-suggestions-private-windows =
.label = Kythe airt-oot suggestions in Private Windaes
suggestions-addressbar-settings-generic2 = Chynge settins for ither address baur suggestions
search-suggestions-cant-show = Airt-oot suggestions willnae be kythed in location baur results acause ye've confeegurt { -brand-short-name } tae nivver mind o historie.
search-one-click-header2 = Sairch Shortcuts
search-one-click-desc = Wale the ither airt-oot engines that kythe unner the address baur and sairch baur when ye stert tae inpit a keywird.
search-choose-engine-column =
.label = Airt-Oot Engine
search-choose-keyword-column =
.label = Keywird
search-restore-default =
.label = Restore Staunart Airt-Oot Engines
.accesskey = A
search-remove-engine =
.label = Remuive
.accesskey = R
search-add-engine =
.label = Eik on
.accesskey = E
search-find-more-link = Find mair airt-oot engines
# This warning is displayed when the chosen keyword is already in use
# ('Duplicate' is an adjective)
search-keyword-warning-title = Keywird Awready in Yaise
# Variables:
# $name (String) - Name of a search engine.
search-keyword-warning-engine = Ye've waled a keywird that's awready in yaise by “{ $name }”. Gonnae wale anither.
search-keyword-warning-bookmark = Ye've waled a keywird that's awready in yaise by a buikmerk. Gonnae wale anither.
## Containers Section
containers-back-button2 =
.aria-label = Back tae Settins
containers-header = Conteener Tabs
containers-add-button =
.label = Eik On New Conteener
.accesskey = E
containers-new-tab-check =
.label = Wale a conteener fur ilka new tab
.accesskey = W
containers-settings-button =
.label = Settins
containers-remove-button =
.label = Remuive
## Firefox Account - Signed out. Note that "Sync" and "Firefox Account" are now
## more discrete ("signed in" no longer means "and sync is connected").
## Firefox account - Signed out. Note that "Sync" and "Firefox account" are now
## more discrete ("signed in" no longer means "and sync is connected").
sync-signedout-caption = Tak Yer Wab Wi Ye
sync-signedout-description2 = Synchronise yer buikmerks, historie, tabs, passwirds, eik-ons, and settins across aw yer devices.
sync-signedout-account-signin3 =
.label = Sign in tae sync…
.accesskey = i
# This message contains two links and two icon images.
# `<img data-l10n-name="android-icon"/>` - Android logo icon
# `<a data-l10n-name="android-link">` - Link to Android Download
# `<img data-l10n-name="ios-icon">` - iOS logo icon
# `<a data-l10n-name="ios-link">` - Link to iOS Download
#
# They can be moved within the sentence as needed to adapt
# to your language, but should not be changed or translated.
sync-mobile-promo = Doonload Firefox fur <img data-l10n-name="android-icon"/> <a data-l10n-name="android-link">Android</a> or <img data-l10n-name="ios-icon"/> <a data-l10n-name="ios-link">iOS</a> tae sync wi yer mobile device.
## Firefox Account - Signed in
## Firefox account - Signed in
sync-profile-picture =
.tooltiptext = Chynge profile pictur
sync-sign-out =
.label = Sign Oot…
.accesskey = g
sync-manage-account = Manage accoont
.accesskey = o
## Variables
## $email (string) - Email used for Firefox account
sync-signedin-unverified = { $email } isnae trystmakkit
sync-signedin-login-failure = Gonnae sign in tae reconnect { $email }
##
sync-resend-verification =
.label = Resend Trystmakkin
.accesskey = d
sync-remove-account =
.label = Remuive Accoont
.accesskey = R
sync-sign-in =
.label = Sign in
.accesskey = g
## Sync section - enabling or disabling sync.
prefs-syncing-on = Syncin: ON
prefs-syncing-off = Syncin: AFF
prefs-sync-turn-on-syncing =
.label = Turn on syncin…
.accesskey = s
prefs-sync-offer-setup-label2 = Synchronise yer buikmerks, historie, tabs, passwirds, eik-ons, and settins across aw yer devices.
prefs-sync-now =
.labelnotsyncing = Sync Noo
.accesskeynotsyncing = N
.labelsyncing = Syncin…
prefs-sync-now-button =
.label = Sync Noo
.accesskey = N
prefs-syncing-button =
.label = Syncin…
## The list of things currently syncing.
sync-currently-syncing-bookmarks = Buikmerks
sync-currently-syncing-history = Historie
sync-currently-syncing-tabs = Open tabs
sync-currently-syncing-logins-passwords = Logins and passwirds
sync-currently-syncing-addresses = Addresses
sync-currently-syncing-creditcards = Credit cairds
sync-currently-syncing-addons = Eik-ons
sync-currently-syncing-settings = Settins
sync-change-options =
.label = Chynge...
.accesskey = C
## The "Choose what to sync" dialog.
sync-choose-what-to-sync-dialog3 =
.title = Wale Whit Tae Sync
.style = min-width: 36em;
.buttonlabelaccept = Save Chynges
.buttonaccesskeyaccept = S
.buttonlabelextra2 = Disconnect…
.buttonaccesskeyextra2 = D
sync-engine-bookmarks =
.label = Buikmerks
.accesskey = m
sync-engine-history =
.label = Historie
.accesskey = r
sync-engine-tabs =
.label = Open tabs
.tooltiptext = A list o whit’s open on aw synced devices
.accesskey = t
sync-engine-logins-passwords =
.label = Logins and passwirds
.tooltiptext = Yaiser nemmes and passwirds ye’ve saved
.accesskey = L
sync-engine-addresses =
.label = Addresses
.tooltiptext = Post addresses ye’ve saved (desktap anely)
.accesskey = e
sync-engine-creditcards =
.label = Credit cairds
.tooltiptext = Nemmes, nummers and expiry dates (desktap anely)
.accesskey = C
sync-engine-addons =
.label = Eik-ons
.tooltiptext = Extensions and themes fur Firefox desktap
.accesskey = E
sync-engine-settings =
.label = Settins
.tooltiptext = General, Privacy, and Siccarness settins ye’ve chynged
.accesskey = s
## The device name controls.
sync-device-name-header = Device Nemme
sync-device-name-change =
.label = Chynge Device Nemme…
.accesskey = h
sync-device-name-cancel =
.label = Stap
.accesskey = S
sync-device-name-save =
.label = Save
.accesskey = v
sync-connect-another-device = Connect anither device
## These strings are shown in a desktop notification after the
## user requests we resend a verification email.
sync-verification-sent-title = Trystmakkin Sent
# Variables:
# $email (String): Email address of user's Firefox account.
sync-verification-sent-body = A trystmakkin link has been sent tae { $email }.
sync-verification-not-sent-title = No Able tae Send Trystmakkin
sync-verification-not-sent-body = We're no able tae send a trystmakkin mail jist the noo, gie it anither shottie efter.
## Privacy Section
privacy-header = Stravaiger Privacy
## Privacy Section - Logins and Passwords
# The search keyword isn't shown to users but is used to find relevant settings in about:preferences.
pane-privacy-logins-and-passwords-header = Logins and Passwirds
.searchkeywords = { -lockwise-brand-short-name }
# Checkbox to control whether UI is shown to users to save or fill logins/passwords.
forms-ask-to-save-logins =
.label = Speir fur tae save logins and passwirds for wabsites
.accesskey = r
forms-exceptions =
.label = Exceptions…
.accesskey = x
forms-generate-passwords =
.label = Suggest and mak strang passwirds
.accesskey = u
forms-breach-alerts =
.label = Kythe alerts aboot passwirds fur breached wabsites
.accesskey = b
forms-breach-alerts-learn-more-link = Lairn mair
# Checkbox which controls filling saved logins into fields automatically when they appear, in some cases without user interaction.
forms-fill-logins-and-passwords =
.label = Autofeenish logins and passwirds
.accesskey = i
forms-saved-logins =
.label = Saved Logins…
.accesskey = L
forms-primary-pw-use =
.label = Yaise a Primary Passwird
.accesskey = Y
forms-primary-pw-learn-more-link = Lairn mair
# This string uses the former name of the Primary Password feature
# ("Master Password" in English) so that the preferences can be found
# when searching for the old name. The accesskey is unused.
forms-master-pw-change =
.label = Chynge Maister Passwird…
.accesskey = M
forms-primary-pw-change =
.label = Chynge Primary Passwird…
.accesskey = P
# Leave this message empty if the translation for "Primary Password" matches
# "Master Password" in your language. If you're editing the FTL file directly,
# use { "" } as the value.
forms-primary-pw-former-name = Kent afore noo as Maister Passwird
forms-primary-pw-fips-title = The noo, ye're in FIPS modes. FIPS needs a Primary Passwird that isnae tuim.
forms-master-pw-fips-desc = Passwird Chynge Didnae Wirk
forms-windows-sso =
.label = Alloo Windows single sign-on fur Microsoft, wark, and schuil accoonts
forms-windows-sso-learn-more-link = Lairn mair
forms-windows-sso-desc = Manage accoonts in yer device settins
## OS Authentication dialog
# This message can be seen by trying to add a Primary Password.
primary-password-os-auth-dialog-message-win = Tae mak a Primary Passwird, inpit yer Windaes login parteeculars. This helps wi bieldin the siccarness o yer accoonts.
# This message can be seen by trying to add a Primary Password.
# The macOS strings are preceded by the operating system with "Firefox is trying to "
# and includes subtitle of "Enter password for the user "xxx" to allow this." These
# notes are only valid for English. Please test in your locale.
primary-password-os-auth-dialog-message-macosx = mak a Primary Passwird
master-password-os-auth-dialog-caption = { -brand-full-name }
## Privacy Section - History
history-header = Historie
# This label is followed, on the same line, by a dropdown list of options
# (Remember history, etc.).
# In English it visually creates a full sentence, e.g.
# "Firefox will" + "Remember history".
#
# If this doesn't work for your language, you can translate this message:
# - Simply as "Firefox", moving the verb into each option.
# This will result in "Firefox" + "Will remember history", etc.
# - As a stand-alone message, for example "Firefox history settings:".
history-remember-label = { -brand-short-name } will
.accesskey = w
history-remember-option-all =
.label = Mind yer historie
history-remember-option-never =
.label = Nivver mind yer historie
history-remember-option-custom =
.label = Yaise custom settins for historie
history-remember-description = { -brand-short-name } will mind yer stravaigin, doonload, form and sairch historie.
history-dontremember-description = { -brand-short-name } will yaise the same settins as private stravaigin, and willnae mind o onie historie as ye stravaig the Wab.
history-private-browsing-permanent =
.label = Ayeweys yaise private stravaigin mode
.accesskey = p
history-remember-browser-option =
.label = Mind o stravaigin and doonload historie
.accesskey = M
history-remember-search-option =
.label = Mind o airt-oot and form historie
.accesskey = f
history-clear-on-close-option =
.label = Dicht historie when { -brand-short-name } is sneckit
.accesskey = r
history-clear-on-close-settings =
.label = Settins…
.accesskey = t
history-clear-button =
.label = Dicht Historie…
.accesskey = s
## Privacy Section - Site Data
sitedata-header = Cookies and Site Data
sitedata-total-size-calculating = Wirkin oot site data and cache size...
# Variables:
# $value (Number) - Value of the unit (for example: 4.6, 500)
# $unit (String) - Name of the unit (for example: "bytes", "KB")
sitedata-total-size = Yer stored cookies, site data, and cache richt noo are yaisin { $value } { $unit } o disk space.
sitedata-learn-more = Lairn mair
sitedata-delete-on-close =
.label = Dicht cookies and site data when { -brand-short-name } is sneckit
.accesskey = c
sitedata-delete-on-close-private-browsing = In ayebidin private stravaigin mode, cookies and site date will ayeweys be dichtit when { -brand-short-name } is sneckit.
sitedata-allow-cookies-option =
.label = Accept cookies and site data
.accesskey = A
sitedata-disallow-cookies-option =
.label = Block cookies and site data
.accesskey = B
# This label means 'type of content that is blocked', and is followed by a drop-down list with content types below.
# The list items are the strings named sitedata-block-*-option*.
sitedata-block-desc = Type blockit
.accesskey = T
sitedata-option-block-cross-site-trackers =
.label = Cross-site trackers
sitedata-option-block-cross-site-tracking-cookies =
.label = Cross-site trackin cookies
sitedata-option-block-cross-site-cookies =
.label = Cross-site trackin cookies, and isolate ither cross-site cookies
sitedata-option-block-unvisited =
.label = Cookies fae wabsites ye hivnae veesitit
sitedata-option-block-all =
.label = Aw cookies (will gar wabsites tae brek)
sitedata-clear =
.label = Dicht Data…
.accesskey = D
sitedata-settings =
.label = Manage Data…
.accesskey = M
sitedata-cookies-exceptions =
.label = Manage Exceptions…
.accesskey = x
## Privacy Section - Cookie Banner Handling
## Privacy Section - Address Bar
addressbar-header = Address Baur
addressbar-suggest = When yaisin the address baur, suggest
addressbar-locbar-history-option =
.label = Stravaigin historie
.accesskey = h
addressbar-locbar-bookmarks-option =
.label = Buikmerks
.accesskey = k
addressbar-locbar-openpage-option =
.label = Open tabs
.accesskey = O
# Shortcuts refers to the shortcut tiles on the new tab page, previously known as top sites. Translation should be consistent.
addressbar-locbar-shortcuts-option =
.label = Shortcuts
.accesskey = S
addressbar-locbar-topsites-option =
.label = Tap sites
.accesskey = T
addressbar-locbar-engines-option =
.label = Airt-oot engines
.accesskey = A
addressbar-suggestions-settings = Chynge preferences fur airt-oot engine suggestions
## Privacy Section - Content Blocking
content-blocking-enhanced-tracking-protection = Augmentit Trackin Bieldin
content-blocking-section-top-level-description = Trackers follae ye aroond online fur tae gaither information aboot yer stravaigin pratticks and interests. { -brand-short-name } blocks a guid wheen o these trackers and ither uncannie scripts.
content-blocking-learn-more = Lairn mair
content-blocking-fpi-incompatibility-warning = Ye're yaisin First Pairty Isolation (FPI), which owerrides some o { -brand-short-name }'s cookie settins.
## These strings are used to define the different levels of
## Enhanced Tracking Protection.
# "Standard" in this case is an adjective, meaning "default" or "normal".
enhanced-tracking-protection-setting-standard =
.label = Staunart
.accesskey = S
enhanced-tracking-protection-setting-strict =
.label = Ticht
.accesskey = T
enhanced-tracking-protection-setting-custom =
.label = Custom
.accesskey = C
##
content-blocking-etp-standard-desc = Eeksie-peeksie atween bieldin and performance. Pages will load as ordinar.
content-blocking-etp-strict-desc = Mair bieldin, but micht gar some sites or content tae brek.
content-blocking-etp-custom-desc = Wale whit trackers and scripts tae block.
content-blocking-etp-blocking-desc = { -brand-short-name } blocks the follaein:
content-blocking-private-windows = Trackin content in Private Windaes
content-blocking-cross-site-tracking-cookies = Cross-site trackin cookies
content-blocking-all-cross-site-cookies-private-windows = Cross-site cookies in Private Windaes
content-blocking-cross-site-tracking-cookies-plus-isolate = Cross-site trackin cookies, and isolate onie ither cookies
content-blocking-social-media-trackers = Social media trackers
content-blocking-all-cookies = Aw cookies
content-blocking-unvisited-cookies = Cookies fae sites ye hivnae veesitit
content-blocking-all-windows-tracking-content = Trackin content in aw windaes
content-blocking-cryptominers = Cryptohowkers
content-blocking-fingerprinters = Fingirprenters
# The tcp-rollout strings are no longer used for the rollout but for tcp-by-default in the standard section
content-blocking-etp-standard-tcp-rollout-learn-more = Lairn mair
content-blocking-warning-title = Haud the bus!
content-blocking-and-isolating-etp-warning-description-2 = This settin micht gar some wabsites tae no kythe content or wirk richt. Gin a site luiks mogert, ye micht want tae turn aff trackin bieldin fur thon site tae load aw content.
content-blocking-warning-learn-how = Lairn how
content-blocking-reload-description = Ye'll need tae reload yer tabs fur tae mak yaise o these chynges
content-blocking-reload-tabs-button =
.label = Reload Aw Tabs
.accesskey = R
content-blocking-tracking-content-label =
.label = Trackin content
.accesskey = T
content-blocking-tracking-protection-option-all-windows =
.label = In aw windaes
.accesskey = A
content-blocking-option-private =
.label = Anely in Private Windaes
.accesskey = p
content-blocking-tracking-protection-change-block-list = Chynge block list
content-blocking-cookies-label =
.label = Cookies
.accesskey = C
content-blocking-expand-section =
.tooltiptext = Mair information
# Cryptomining refers to using scripts on websites that can use a computer’s resources to mine cryptocurrency without a user’s knowledge.
content-blocking-cryptominers-label =
.label = Cryptohowkers
.accesskey = y
# Browser fingerprinting is a method of tracking users by the configuration and settings information (their "digital fingerprint")
# that is visible to websites they browse, rather than traditional tracking methods such as IP addresses and unique cookies.
content-blocking-fingerprinters-label =
.label = Fingirprenters
.accesskey = F
## Privacy Section - Tracking
tracking-manage-exceptions =
.label = Manage Exceptions…
.accesskey = x
## Privacy Section - Permissions
permissions-header = Permeesions
permissions-location = Airtin
permissions-location-settings =
.label = Settins…
.accesskey = t
permissions-xr = Virtual Reality
permissions-xr-settings =
.label = Settins…
.accesskey = t
permissions-camera = Camera
permissions-camera-settings =
.label = Settins…
.accesskey = t
permissions-microphone = Microphone
permissions-microphone-settings =
.label = Settins…
.accesskey = t
permissions-notification = Notifications
permissions-notification-settings =
.label = Settins…
.accesskey = t
permissions-notification-link = Lairn mair
permissions-notification-pause =
.label = Pit notifications on haud the noo until { -brand-short-name } resterts
.accesskey = n
permissions-autoplay = Autopley
permissions-autoplay-settings =
.label = Settins…
.accesskey = t
permissions-block-popups =
.label = Block lowp-up windaes
.accesskey = B
# "popup" is a misspelling that is more popular than the correct spelling of
# "pop-up" so it's included as a search keyword, not displayed in the UI.
permissions-block-popups-exceptions-button =
.label = Exceptions…
.accesskey = E
.searchkeywords = lowpups
permissions-addon-install-warning =
.label = Warn ye when wabsites ettle tae instaw eik-ons
.accesskey = W
permissions-addon-exceptions =
.label = Exceptions…
.accesskey = E
## Privacy Section - Data Collection
collection-header = { -brand-short-name } Data Collection and Yaise
collection-description = We ettle tae gie ye chyces and tae gaither anely whit we need tae provide and tae forder { -brand-short-name } for awbodie. We ayeweys speir for permeesion afore gettin personal information.
collection-privacy-notice = Privacy Notice
collection-health-report-telemetry-disabled = Ye're nae langer lattin { -vendor-short-name } captur technical and interaction data. Aw bygane data will be dichtit within 30 days.
collection-health-report-telemetry-disabled-link = Lairn mair
collection-health-report =
.label = Allow { -brand-short-name } tae send technical and interaction data tae { -vendor-short-name }
.accesskey = r
collection-health-report-link = Lairn mair
collection-studies =
.label = Alloo { -brand-short-name } tae instaw and rin studies
collection-studies-link = View { -brand-short-name } studies
addon-recommendations =
.label = Alloo { -brand-short-name } tae mak personalised extension recommendations
addon-recommendations-link = Lairn mair
# This message is displayed above disabled data sharing options in developer builds
# or builds with no Telemetry support available.
collection-health-report-disabled = Data reportin is disabled fur this build confeeguration
collection-backlogged-crash-reports-with-link = Alloo { -brand-short-name } tae send backlogged crash reports on yer behauf <a data-l10n-name="crash-reports-link">Lairn mair</a>
.accesskey = c
## Privacy Section - Security
##
## It is important that wording follows the guidelines outlined on this page:
## https://developers.google.com/safe-browsing/developers_guide_v2#AcceptableUsage
security-header = Siccarness
security-browsing-protection = Begowkin Content and Uncannie Saftware Bieldin
security-enable-safe-browsing =
.label = Block uncannie and begowkin content
.accesskey = B
security-enable-safe-browsing-link = Lairn mair
security-block-downloads =
.label = Block uncannie doonloads
.accesskey = d
security-block-uncommon-software =
.label = Warn ye aboot unwantit and by-ordinar saftware
.accesskey = y
## Privacy Section - Certificates
certs-header = Certificates
certs-enable-ocsp =
.label = Speir at OCSP responder servers tae mak siccar o the validity o certificates the noo
.accesskey = S
certs-view =
.label = View Certificates…
.accesskey = C
certs-devices =
.label = Siccarness Devices…
.accesskey = D
space-alert-over-5gb-settings-button =
.label = Open Settins
.accesskey = O
space-alert-over-5gb-message2 = <strong>{ -brand-short-name } is rinnin oot o disk space.</strong> Wabsite contents micht no kythe richt. Ye can dicht stored data in Settins > Privacy & Siccarness > Cookies and Site Data.
space-alert-under-5gb-message2 = <strong>{ -brand-short-name } is rinnin oot o disk space.</strong> Wabsite contents micht no kythe richt. Gang tae “Lairn Mair” tae mak the maist o yer disk yaise fur a better stravaigin experience.
## Privacy Section - HTTPS-Only
httpsonly-header = HTTPS-Anely Mode
httpsonly-description = HTTPS provides a siccar, encryptit connection atween { -brand-short-name } and the wabsites you veesit. Maist websites support HTTPS, and gin HTTPS-Anely Mode is in yaise, then { -brand-short-name } will upgrade aw connections tae HTTPS.
httpsonly-learn-more = Lairn mair
httpsonly-radio-enabled =
.label = Yaise HTTPS-Anely Mode in aw windaes
httpsonly-radio-enabled-pbm =
.label = Yaise HTTPS-Anely Mode in private windaes, jist
httpsonly-radio-disabled =
.label = Dinnae yaise HTTPS-Anely Mode
## DoH Section
## The following strings are used in the Download section of settings
desktop-folder-name = Desktap
downloads-folder-name = Doonloads
choose-download-folder-title = Wale Doonload Folder:
|