-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnewtab.ftl
More file actions
1041 lines (940 loc) · 47.1 KB
/
newtab.ftl
File metadata and controls
1041 lines (940 loc) · 47.1 KB
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
# 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/.
### Firefox Home / New Tab strings for about:home / about:newtab.
newtab-page-title = New Tab
newtab-settings-button =
.title = Customize your New Tab page
# (developer note): @nova-cleanup(remove-string): Remove newtab-customize-panel-icon-button once Nova lands, will be using newtab-customize-panel-label instead
newtab-customize-panel-icon-button =
.title = Customize this page
# (developer note): @nova-cleanup(remove-string): Remove newtab-customize-panel-icon-button-label once Nova lands, will be using newtab-customize-panel-label instead
newtab-customize-panel-icon-button-label = Customize
newtab-customize-panel-label =
.label = Customize
newtab-personalize-settings-icon-label =
.title = Personalize New Tab
.aria-label = Settings
newtab-settings-dialog-label =
.aria-label = Settings
newtab-personalize-icon-label =
.title = Personalize new tab
.aria-label = Personalize new tab
newtab-personalize-dialog-label =
.aria-label = Personalize
newtab-logo-and-wordmark =
.aria-label = { -brand-full-name }
newtab-card-dismiss-button =
.title = Dismiss
.aria-label = Dismiss
## Search box component.
# "Search" is a verb/action
newtab-search-box-search-button =
.title = Search
.aria-label = Search
# Variables:
# $engine (string) - The name of the user's default search engine
newtab-search-box-handoff-text = Search with { $engine } or enter address
newtab-search-box-handoff-text-no-engine = Search or enter address
# Variables:
# $engine (string) - The name of the user's default search engine
newtab-search-box-handoff-input =
.placeholder = Search with { $engine } or enter address
.title = Search with { $engine } or enter address
.aria-label = Search with { $engine } or enter address
newtab-search-box-handoff-input-no-engine =
.placeholder = Search or enter address
.title = Search or enter address
.aria-label = Search or enter address
newtab-search-box-text = Search the web
newtab-search-box-input =
.placeholder = Search the web
.aria-label = Search the web
## Clear text button for the URL and image URL input fields in the Top Sites form.
newtab-topsites-add-search-engine-header = Add Search Engine
newtab-topsites-add-shortcut-header = New Shortcut
newtab-topsites-edit-topsites-header = Edit Top Site
newtab-topsites-edit-shortcut-header = Edit Shortcut
newtab-topsites-add-shortcut-label = Add Shortcut
newtab-topsites-add-shortcut-title =
.title = Add Shortcut
.aria-label = Add Shortcut
newtab-topsites-title-label = Title
newtab-topsites-title-input =
.placeholder = Enter a title
newtab-topsites-url-label = URL
newtab-topsites-url-input =
.placeholder = Type or paste a URL
newtab-topsites-url-validation = Valid URL required
newtab-topsites-image-url-label = Custom Image URL
newtab-topsites-use-image-link = Use a custom image…
newtab-topsites-image-validation = Image failed to load. Try a different URL.
## Clear text button for the URL and image URL input fields in the Top Sites form.
newtab-topsites-clear-input =
.aria-label = Clear text
## Top Sites - General form dialog buttons. These are verbs/actions.
newtab-topsites-cancel-button = Cancel
newtab-topsites-delete-history-button = Delete from History
newtab-topsites-save-button = Save
newtab-topsites-preview-button = Preview
newtab-topsites-add-button = Add
## Top Sites - Delete history confirmation dialog.
newtab-confirm-delete-history-p1 = Are you sure you want to delete every instance of this page from your history?
# "This action" refers to deleting a page from history.
newtab-confirm-delete-history-p2 = This action cannot be undone.
## Top Sites - Sponsored label
newtab-topsite-sponsored = Sponsored
## Label used by screen readers for pinned top sites
# Variables:
# $title (string) - The label or hostname of the site.
topsite-label-pinned =
.aria-label = { $title } (pinned)
.title = { $title }
## Context Menu - Action Tooltips.
# General tooltip for context menus.
newtab-menu-section-tooltip =
.title = Open menu
.aria-label = Open menu
# Tooltip for dismiss button
newtab-dismiss-button-tooltip =
.title = Remove
.aria-label = Remove
# This tooltip is for the context menu of Pocket cards or Topsites
# Variables:
# $title (string) - The label or hostname of the site. This is for screen readers when the context menu button is focused/active.
newtab-menu-content-tooltip =
.title = Open menu
.aria-label = Open context menu for { $title }
# Tooltip on an empty topsite box to open the New Top Site dialog.
newtab-menu-topsites-placeholder-tooltip =
.title = Edit this site
.aria-label = Edit this site
## Context Menu: These strings are displayed in a context menu and are meant as a call to action for a given page.
newtab-menu-edit-topsites = Edit
newtab-menu-open-new-window = Open in a New Window
newtab-menu-open-new-private-window = Open in a New Private Window
newtab-menu-dismiss = Dismiss
newtab-menu-pin = Pin
newtab-menu-unpin = Unpin
newtab-menu-delete-history = Delete from History
newtab-menu-save-to-pocket = Save to { -pocket-brand-name }
newtab-menu-delete-pocket = Delete from { -pocket-brand-name }
newtab-menu-archive-pocket = Archive in { -pocket-brand-name }
newtab-menu-show-privacy-info = Our sponsors & your privacy
newtab-menu-about-fakespot = About { -fakespot-brand-name }
# Report is a verb (i.e. report issue with the content).
newtab-menu-report = Report
# Context menu option to personalize New Tab recommended stories by blocking a section of stories,
# e.g. "Sports". "Block" is a verb here.
newtab-menu-section-block = Block
# "Follow", "unfollow", and "following" are social media terms that refer to subscribing to or unsubscribing from a section of stories.
# e.g. Following the travel section of stories.
newtab-menu-section-unfollow-topic = Unfollow
# "Follow", "unfollow", and "following" are social media terms that refer to subscribing to or unsubscribing from a section of stories.
# e.g. Following the travel section of stories.
newtab-menu-section-unfollow = Unfollow topic
## Context menu options for sponsored stories and new ad formats on New Tab.
newtab-menu-manage-sponsored-content = Manage sponsored content
newtab-menu-our-sponsors-and-your-privacy = Our sponsors and your privacy
newtab-menu-report-this-ad = Report this ad
## Message displayed in a modal window to explain privacy and provide context for sponsored content.
newtab-privacy-modal-button-done = Done
newtab-privacy-modal-button-manage = Manage sponsored content settings
newtab-privacy-modal-header = Your privacy matters.
newtab-privacy-modal-paragraph-2 =
In addition to dishing up captivating stories, we also show you relevant,
highly-vetted content from select sponsors. Rest assured, <strong>your browsing
data never leaves your personal copy of { -brand-product-name }</strong> — we don’t see it, and our
sponsors don’t either.
newtab-privacy-modal-link = Learn how privacy works on the new tab
##
# Bookmark is a noun in this case, "Remove bookmark".
newtab-menu-remove-bookmark = Remove Bookmark
# Bookmark is a verb here.
newtab-menu-bookmark = Bookmark
## Context Menu - Downloaded Menu. "Download" in these cases is not a verb,
## it is a noun. As in, "Copy the link that belongs to this downloaded item".
newtab-menu-copy-download-link = Copy Download Link
newtab-menu-go-to-download-page = Go to Download Page
newtab-menu-remove-download = Remove from History
## Context Menu - Download Menu: These are platform specific strings found in the context menu of an item that has
## been downloaded. The intention behind "this action" is that it will show where the downloaded file exists on the file
## system for each operating system.
newtab-menu-show-file =
{ PLATFORM() ->
[macos] Show in Finder
*[other] Open Containing Folder
}
newtab-menu-open-file = Open File
## Card Labels: These labels are associated to pages to give
## context on how the element is related to the user, e.g. type indicates that
## the page is bookmarked, or is currently open on another device.
newtab-label-visited = Visited
newtab-label-bookmarked = Bookmarked
newtab-label-removed-bookmark = Bookmark removed
newtab-label-recommended = Trending
newtab-label-saved = Saved to { -pocket-brand-name }
newtab-label-download = Downloaded
# This string is used in the story cards to indicate sponsored content
# Variables:
# $sponsorOrSource (string) - The name of a company or their domain
newtab-label-sponsored = { $sponsorOrSource } · Sponsored
# This string is used at the bottom of story cards to indicate sponsored content
# Variables:
# $sponsor (string) - The name of a sponsor
newtab-label-sponsored-by = Sponsored by { $sponsor }
# This string is used under the image of story cards to indicate source and time to read
# Variables:
# $source (string) - The name of a company or their domain
# $timeToRead (number) - The estimated number of minutes to read this story
newtab-label-source-read-time = { $source } · { $timeToRead } min
# This string is used under fixed size ads to indicate sponsored content
newtab-label-sponsored-fixed = Sponsored
## Section Menu: These strings are displayed in the section context menu and are
## meant as a call to action for the given section.
newtab-section-menu-remove-section = Remove Section
newtab-section-menu-collapse-section = Collapse Section
newtab-section-menu-expand-section = Expand Section
newtab-section-menu-manage-section = Manage Section
newtab-section-menu-manage-webext = Manage Extension
newtab-section-menu-add-topsite = Add Top Site
newtab-section-menu-add-search-engine = Add Search Engine
newtab-section-menu-move-up = Move Up
newtab-section-menu-move-down = Move Down
newtab-section-menu-privacy-notice = Privacy Notice
## Section aria-labels
newtab-section-collapse-section-label =
.aria-label = Collapse Section
newtab-section-expand-section-label =
.aria-label = Expand Section
## Section Headers.
newtab-section-header-topsites = Top Sites
newtab-section-header-recent-activity = Recent activity
# Variables:
# $provider (string) - Name of the corresponding content provider.
newtab-section-header-pocket = Recommended by { $provider }
newtab-section-header-stories = Thought-provoking stories
# "picks" refers to recommended articles
newtab-section-header-todays-picks = Today’s picks for you
## Empty Section States: These show when there are no more items in a section. Ex. When there are no more Pocket story recommendations, in the space where there would have been stories, this is shown instead.
newtab-empty-section-highlights = Start browsing, and we’ll show some of the great articles, videos, and other pages you’ve recently visited or bookmarked here.
# Ex. When there are no more Pocket story recommendations, in the space where there would have been stories, this is shown instead.
# Variables:
# $provider (string) - Name of the content provider for this section, e.g "Pocket".
newtab-empty-section-topstories = You’ve caught up. Check back later for more top stories from { $provider }. Can’t wait? Select a popular topic to find more great stories from around the web.
# Ex. When there are no more story recommendations, in the space where there would have been stories, this is shown instead.
newtab-empty-section-topstories-generic = You’ve caught up. Check back later for more stories. Can’t wait? Select a popular topic to find more great stories from around the web.
## Empty Section (Content Discovery Experience). These show when there are no more stories or when some stories fail to load.
newtab-discovery-empty-section-topstories-header = You are caught up!
newtab-discovery-empty-section-topstories-content = Check back later for more stories.
newtab-discovery-empty-section-topstories-try-again-button = Try Again
newtab-discovery-empty-section-topstories-loading = Loading…
# Displays when a layout in a section took too long to fetch articles.
newtab-discovery-empty-section-topstories-timed-out = Oops! We almost loaded this section, but not quite.
## Pocket Content Section.
# This is shown at the bottom of the trending stories section and precedes a list of links to popular topics.
newtab-pocket-read-more = Popular Topics:
newtab-pocket-new-topics-title = Want even more stories? See these popular topics from { -pocket-brand-name }
newtab-pocket-more-recommendations = More Recommendations
newtab-pocket-learn-more = Learn more
newtab-pocket-cta-button = Get { -pocket-brand-name }
newtab-pocket-cta-text = Save the stories you love in { -pocket-brand-name }, and fuel your mind with fascinating reads.
newtab-pocket-pocket-firefox-family = { -pocket-brand-name } is part of the { -brand-product-name } family
newtab-pocket-save = Save
newtab-pocket-saved = Saved
## Thumbs up and down buttons that shows over a newtab stories card thumbnail on hover.
# Clicking the thumbs up button for this story will result in more stories like this one being recommended
newtab-pocket-thumbs-up-tooltip =
.title = More like this
# Clicking the thumbs down button for this story informs us that the user does not feel like the story is interesting for them
newtab-pocket-thumbs-down-tooltip =
.title = Not for me
# Used to show the user a message upon clicking the thumbs up or down buttons
newtab-toast-thumbs-up-or-down2 =
.message = Thanks. Your feedback will help us improve your feed.
newtab-toast-dismiss-button =
.title = Dismiss
.aria-label = Dismiss
## Pocket content onboarding experience dialog and modal for new users seeing the Pocket section for the first time, shown as the first item in the Pocket section.
newtab-pocket-onboarding-discover = Discover the best of the web
newtab-pocket-onboarding-cta = { -pocket-brand-name } explores a diverse range of publications to bring the most informative, inspirational, and trustworthy content right to your { -brand-product-name } browser.
## Error Fallback Content.
## This message and suggested action link are shown in each section of UI that fails to render.
newtab-error-fallback-info = Oops, something went wrong loading this content.
newtab-error-fallback-refresh-link = Refresh page to try again.
## Customization Menu
newtab-custom-shortcuts-title = Shortcuts
newtab-custom-shortcuts-subtitle = Sites you save or visit
# (developer note): @nova-cleanup(remove-string): Remove old string once Nova lands. The newtab-custom-shortcuts-nova string will take over
newtab-custom-shortcuts-toggle =
.label = Shortcuts
.description = Sites you save or visit
newtab-custom-shortcuts-nova =
.label = Shortcuts
newtab-custom-row-description =
.description = Number of rows
# Variables
# $num (number) - Number of rows to display
# (developer note): @nova-cleanup(remove-string): Remove string once Nova lands. We won't be using "row"/"rows" anymore for the dropdown
newtab-custom-row-selector2 =
.label =
{ $num ->
[one] { $num } row
*[other] { $num } rows
}
# Variables
# $num (number) - Number of rows to display
newtab-custom-row-selector =
{ $num ->
[one] { $num } row
*[other] { $num } rows
}
newtab-custom-sponsored-sites = Sponsored shortcuts
newtab-custom-pocket-title = Recommended by { -pocket-brand-name }
newtab-custom-pocket-subtitle = Exceptional content curated by { -pocket-brand-name }, part of the { -brand-product-name } family
# (developer note): @nova-cleanup(remove-string): Remove string once Nova lands. We won't be having a description under "Recommended stories" anymore
newtab-custom-stories-toggle =
.label = Recommended stories
.description = Exceptional content curated by the { -brand-product-name } family
newtab-recommended-stories-toggle =
.label = Recommended stories
newtab-custom-stories-personalized-toggle =
.label = Stories
newtab-custom-stories-personalized-checkbox-label = Personalized stories based on your activity
newtab-custom-pocket-sponsored = Sponsored stories
newtab-custom-pocket-show-recent-saves = Show recent saves
newtab-custom-recent-title = Recent activity
newtab-custom-recent-subtitle = A selection of recent sites and content
newtab-custom-weather-toggle =
.label = Weather
.description = Today’s forecast at a glance
newtab-custom-widget-weather-toggle =
.label = Weather
newtab-custom-widget-lists-toggle =
.label = Lists
newtab-custom-widget-timer-toggle =
.label = Timer
newtab-custom-widget-sports-toggle =
.label = World Cup
newtab-custom-widget-clock-toggle =
.label = Clock
newtab-custom-widget-section-title = Widgets
newtab-custom-widget-section-toggle =
.label = Widgets
newtab-widget-manage-title = Widgets
newtab-widget-manage-widget-button =
.label = Manage widgets
# Tooltip for close button
newtab-custom-close-menu-button =
.title = Close
.aria-label = Close menu
newtab-custom-close-button = Close
newtab-custom-settings = Manage more settings
## New Tab Wallpapers
newtab-wallpaper-title = Wallpapers
newtab-wallpaper-reset = Reset to default
# (developer note): @nova-cleanup(remove-string): Remove old "Upload an image" string once Nova lands. The new "Add an image" string will take over
newtab-wallpaper-upload-image = Upload an image
newtab-wallpaper-add-an-image = Add an image
newtab-wallpaper-custom-color = Choose a color
newtab-wallpaper-toggle-title =
.label = Wallpapers
# Variables
# $file_size (number) - The number of the maximum image file size (in MB) that may be uploaded
newtab-wallpaper-error-max-file-size = The image exceeded the file size limit of { $file_size }MB. Please try uploading a smaller file.
newtab-wallpaper-error-upload-file-type = We couldn’t upload your file. Please try again with an image file.
newtab-wallpaper-error-file-type = We couldn’t upload your file. Please try again with different file type.
newtab-wallpaper-light-red-panda = Red panda
newtab-wallpaper-light-mountain = White mountain
newtab-wallpaper-light-sky = Sky with purple and pink clouds
newtab-wallpaper-light-color = Blue, pink and yellow shapes
newtab-wallpaper-light-landscape = Blue mist mountain landscape
newtab-wallpaper-light-beach = Beach with palm tree
newtab-wallpaper-dark-aurora = Aurora Borealis
newtab-wallpaper-dark-color = Red and blue shapes
newtab-wallpaper-dark-panda = Red panda hidden in forest
newtab-wallpaper-dark-sky = City landscape with a night sky
newtab-wallpaper-dark-mountain = Landscape mountain
newtab-wallpaper-dark-city = Purple city landscape
newtab-wallpaper-dark-fox-anniversary = A fox on the pavement near a forest
newtab-wallpaper-light-fox-anniversary = A fox in a grassy field with a misty mountain landscape
## Solid Colors
# (developer note): @nova-cleanup(remove-string): Remove old "Solid colors" string once Nova lands. The simplified "Colors" string will take over
newtab-wallpaper-category-title-colors = Solid colors
newtab-wallpaper-colors = Colors
newtab-wallpaper-blue = Blue
newtab-wallpaper-light-blue = Light blue
newtab-wallpaper-light-purple = Light purple
newtab-wallpaper-light-green = Light green
newtab-wallpaper-green = Green
newtab-wallpaper-beige = Beige
newtab-wallpaper-yellow = Yellow
newtab-wallpaper-orange = Orange
newtab-wallpaper-pink = Pink
newtab-wallpaper-light-pink = Light pink
newtab-wallpaper-red = Red
newtab-wallpaper-dark-blue = Dark blue
newtab-wallpaper-dark-purple = Dark purple
newtab-wallpaper-dark-green = Dark green
newtab-wallpaper-brown = Brown
## Abstract
newtab-wallpaper-category-title-abstract = Abstract
newtab-wallpaper-abstract-green = Green shapes
newtab-wallpaper-abstract-blue = Blue shapes
newtab-wallpaper-abstract-purple = Purple shapes
newtab-wallpaper-abstract-orange = Orange shapes
newtab-wallpaper-gradient-orange = Gradient orange and pink
newtab-wallpaper-abstract-blue-purple = Blue and purple shapes
newtab-wallpaper-abstract-white-curves = White with shaded curves
newtab-wallpaper-abstract-purple-green = Purple and green light gradient
newtab-wallpaper-abstract-blue-purple-waves = Blue and purple wavy shapes
newtab-wallpaper-abstract-black-waves = Black wavy shapes
## Firefox
newtab-wallpaper-category-title-photographs = Photographs
newtab-wallpaper-beach-at-sunrise = Beach at sunrise
newtab-wallpaper-beach-at-sunset = Beach at sunset
newtab-wallpaper-storm-sky = Storm sky
newtab-wallpaper-sky-with-pink-clouds = Sky with pink clouds
newtab-wallpaper-red-panda-yawns-in-a-tree = Red panda yawns in a tree
newtab-wallpaper-white-mountains = White mountains
newtab-wallpaper-hot-air-balloons = Assorted color of hot air balloons during daytime
newtab-wallpaper-starry-canyon = Blue starry night
newtab-wallpaper-suspension-bridge = Grey full-suspension bridge photography during daytime
newtab-wallpaper-sand-dunes = White sand dunes
newtab-wallpaper-palm-trees = Silhouette of coconut palm trees during golden hour
newtab-wallpaper-blue-flowers = Closeup photography of blue-petaled flowers in bloom
# Variables
# $author_string (String) - The name of the creator of the photo.
# $webpage_string (String) - The name of the webpage where the photo is located.
newtab-wallpaper-attribution = Photo by <a data-l10n-name="name-link">{ $author_string }</a> on <a data-l10n-name="webpage-link">{ $webpage_string }</a>
newtab-wallpaper-feature-highlight-header = Try a splash of color
newtab-wallpaper-feature-highlight-content = Give your New Tab a fresh look with wallpapers.
newtab-wallpaper-feature-highlight-button = Got it
# Tooltip for dismiss button
feature-highlight-dismiss-button =
.title = Dismiss
.aria-label = Close popup
feature-highlight-wallpaper =
.title = { -newtab-wallpaper-feature-highlight-header }
.aria-label = { -newtab-wallpaper-feature-highlight-content }
## Firefox
newtab-wallpaper-category-title-firefox = { -brand-product-name }
## Celestial
# “Celestial” referring to astronomy; positioned in or relating to the sky,
# or outer space as observed in astronomy.
# Not to be confused with religious definition of the word.
newtab-wallpaper-category-title-celestial = Celestial
newtab-wallpaper-celestial-lunar-eclipse = Lunar eclipse
newtab-wallpaper-celestial-earth-night = Night photo from low Earth orbit
newtab-wallpaper-celestial-starry-sky = Starry sky
newtab-wallpaper-celestial-eclipse-time-lapse = Lunar eclipse time lapse
newtab-wallpaper-celestial-black-hole = Black hole galaxy illustration
newtab-wallpaper-celestial-river = Satellite image of river
## New Tab Weather
# Variables:
# $provider (string) - Service provider for weather data
newtab-weather-see-forecast =
.title = See forecast in { $provider }
# Variables:
# $provider (string) - Service provider for weather data
newtab-weather-sponsored = { $provider } ∙ Sponsored
newtab-weather-menu-change-location = Change location
newtab-weather-change-location-search-input-placeholder =
.placeholder = Search location
.aria-label = Search location
# "Current" refers to the user's physical/geographic location detected via geolocation.
newtab-weather-change-location-search-use-current =
.label = Use current location
newtab-weather-menu-weather-display = Weather display
newtab-weather-todays-forecast = Today’s forecast
newtab-weather-see-full-forecast = See full forecast
# Display options are:
# - Simple: Displays a current weather condition icon and the current temperature
# - Detailed: Include simple information plus a short text summary: e.g. "Mostly cloudy"
newtab-weather-menu-weather-display-option-simple = Simple
newtab-weather-menu-change-weather-display-simple = Switch to simple view
newtab-weather-menu-weather-display-option-detailed = Detailed
newtab-weather-menu-change-weather-display-detailed = Switch to detailed view
newtab-weather-menu-temperature-units = Temperature units
newtab-weather-menu-temperature-option-fahrenheit = Fahrenheit
newtab-weather-menu-temperature-option-celsius = Celsius
newtab-weather-menu-change-temperature-units-fahrenheit = Switch to Fahrenheit
newtab-weather-menu-change-temperature-units-celsius = Switch to Celsius
newtab-weather-menu-hide-weather = Hide weather on New Tab
newtab-weather-menu-learn-more = Learn more
newtab-weather-menu-detect-my-location = Detect my location
# This message is shown if user is working offline
newtab-weather-error-not-available = Weather data is not available right now.
newtab-weather-opt-in-see-weather = Do you want to see the weather for your location?
newtab-weather-opt-in-not-now =
.label = Not now
newtab-weather-opt-in-yes =
.label = Yes
newtab-weather-opt-in-headline = Get your local weather forecast
newtab-weather-opt-in-use-location =
.label = Use location
newtab-weather-opt-in-choose-location = Choose location
# We'll be showing static (fake) weather data if the user has not opted in to using their location
newtab-weather-static-city = New York City
# "Highest" here refers to the highest temperature of the day
newtab-weather-high =
.aria-label = High
# "Lowest" here refers to the lowest temperature of the day
newtab-weather-low =
.aria-label = Low
# Variables:
# $provider (string) - Service provider for weather data
newtab-weather-see-forecast-description =
.title = See forecast in { $provider }
.aria-description = { $provider } ∙ Sponsored
## Topic Labels
newtab-topic-label-business = Business
newtab-topic-label-career = Career
newtab-topic-label-education = Education
newtab-topic-label-arts = Entertainment
newtab-topic-label-food = Food
newtab-topic-label-health = Health
newtab-topic-label-hobbies = Gaming
# ”Money” = “Personal Finance”, refers to articles and stories that help readers better manage
# and understand their personal finances – from saving money to buying a home. See the
# “Curated by our editors“ section at the top of https://getpocket.com/explore/personal-finance for more context
newtab-topic-label-finance = Money
newtab-topic-label-society-parenting = Parenting
newtab-topic-label-government = Politics
newtab-topic-label-education-science = Science
# ”Life Hacks” = “Self Improvement”, refers to articles and stories aimed at helping readers improve various
# aspects of their lives – from mental health to productivity. See the “Curated by our editors“ section
# at the top of https://getpocket.com/explore/self-improvement for more context.
newtab-topic-label-society = Life Hacks
newtab-topic-label-sports = Sports
newtab-topic-label-tech = Tech
newtab-topic-label-travel = Travel
newtab-topic-label-home = Home & Garden
## Topic Selection Modal
# “fine-tune” refers to the process of making small adjustments to something to get
# the best or desired experience or performance.
newtab-topic-selection-title = Select topics to fine-tune your feed
# “tailored” refers to process of (a tailor) making (clothes) to fit individual customers.
# In other words, “Our expert curators prioritize stories to fit your selected interests”
newtab-topic-selection-subtitle = Choose two or more topics. Our expert curators prioritize stories tailored to your interests. Update anytime.
newtab-topic-selection-save-button = Save
newtab-topic-selection-cancel-button = Cancel
newtab-topic-selection-button-maybe-later = Maybe later
newtab-topic-selection-privacy-link = Learn how we protect and manage data
newtab-topic-selection-button-update-interests = Update your interests
newtab-topic-selection-button-pick-interests = Pick your interests
## Content Feed Sections
## "Follow", "unfollow", and "following" are social media terms that refer to subscribing to or unsubscribing from a section of stories.
## e.g. Following the travel section of stories.
newtab-section-follow-button = Follow
# Variables:
# $topic (string) - Topic that the user can follow
newtab-section-follow-button-label =
.aria-label = Follow { $topic }
newtab-section-following-button = Following
newtab-section-unfollow-button = Unfollow
# Variables:
# $topic (string) - Topic that the user is following and can unfollow
newtab-section-unfollow-button-label =
.aria-label = Following: Unfollow { $topic }
# A modal may appear next to the Follow button, directing users to try out the feature
newtab-section-follow-highlight-title = Fine-tune your feed
newtab-section-follow-highlight-subtitle = Follow your interests to see more of what you like.
## Button to block/unblock listed topics
## "Block", "unblocked", and "blocked" are social media terms that refer to hiding a section of stories.
## e.g. Blocked the politics section of stories.
newtab-section-block-button = Block
newtab-section-blocked-button = Blocked
newtab-section-unblock-button = Unblock
# Variables:
# $topic (string) - Name of topic that user is following
newtab-section-follow-topic =
.aria-label = Follow { $topic }
# Variables:
# $topic (string) - Name of topic that user is unfollowing
newtab-section-unfollow-topic =
.aria-label = Unfollow { $topic }
# Variables:
# $topic (string) - Name of topic that user is blocking
newtab-section-block-topic =
.aria-label = Block { $topic }
# Variables:
# $topic (string) - Name of topic that user is unblocking
newtab-section-unblock-topic =
.aria-label = Unblock { $topic }
## Confirmation modal for blocking a section
newtab-section-cancel-button = Not now
newtab-section-confirm-block-topic-p1 = Are you sure you want to block this topic?
newtab-section-confirm-block-topic-p2 = Blocked topics will no longer appear in your feed.
# Variables:
# $topic (string) - Name of topic that user is blocking
newtab-section-block-topic-button = Block { $topic }
newtab-section-block-cancel-button = Cancel
## Strings for custom wallpaper highlight
newtab-section-mangage-topics-title = Topics
newtab-section-manage-topics-button-v2 =
.label = Manage topics
newtab-section-mangage-topics-followed-topics = Followed
newtab-section-mangage-topics-followed-topics-empty-state = You have not followed any topics yet.
newtab-section-mangage-topics-blocked-topics = Blocked
newtab-section-mangage-topics-blocked-topics-empty-state = You have not blocked any topics yet.
newtab-custom-wallpaper-title = Custom wallpapers are here
# 'Make firefox yours" means to customize or personalize
newtab-custom-wallpaper-subtitle = Upload your own wallpaper or pick a custom color to make { -brand-product-name } yours.
newtab-custom-wallpaper-cta = Try it
## Strings for new user activation custom wallpaper highlight
newtab-new-user-custom-wallpaper-title = Choose a wallpaper to make { -brand-product-name } yours
newtab-new-user-custom-wallpaper-subtitle = Make every new tab feel like home with custom wallpapers and colors.
newtab-new-user-custom-wallpaper-cta = Try it now
## Strings for Nova wallpaper feature highlight
newtab-wallpaper-feature-highlight-title = Fresh new wallpapers just landed
newtab-wallpaper-feature-highlight-subtitle = Choose your favorite and make every new tab feel like home.
newtab-wallpaper-feature-highlight-cta = Choose wallpaper
## Strings for download mobile highlight
newtab-download-mobile-highlight-title = Download { -brand-product-name } for mobile
# "Scan the code" refers to scanning the QR code that appears above the body text that leads to Firefox for mobile download.
newtab-download-mobile-highlight-body-variant-a = Scan the code to securely browse on the go.
newtab-download-mobile-highlight-body-variant-b = Pick up where you left off when you sync your tabs, passwords, and more.
newtab-download-mobile-highlight-body-variant-c = Did you know you can take { -brand-product-name } on the go? Same browser. In your pocket.
newtab-download-mobile-highlight-image =
.aria-label = QR code to download { -brand-product-name } for mobile
## Strings for shortcuts highlight
newtab-shortcuts-highlight-title = Your favorites at your fingertips
newtab-shortcuts-highlight-subtitle = Add a shortcut to keep your favorite sites one click away.
## Strings for reporting issues with ads and content
newtab-report-content-why-reporting-this =
.label = Why are you reporting this?
newtab-report-ads-reason-not-interested =
.label = I’m not interested
newtab-report-ads-reason-inappropriate =
.label = It’s inappropriate
newtab-report-ads-reason-seen-it-too-many-times =
.label = I’ve seen it too many times
newtab-report-content-wrong-category =
.label = Wrong category
newtab-report-content-outdated =
.label = Outdated
newtab-report-content-inappropriate-offensive =
.label = Inappropriate or offensive
newtab-report-content-spam-misleading =
.label = Spam or misleading
newtab-report-content-requires-payment-subscription =
.label = Requires payment or subscription
newtab-report-content-requires-payment-subscription-learn-more = Learn more
newtab-report-cancel = Cancel
newtab-report-submit = Submit
newtab-toast-thanks-for-reporting =
.message = Thank you for reporting this.
newtab-toast-widgets-hidden =
.message = Select the pencil icon to add widgets back anytime.
# Variables:
# $topic (string) - Topic that the user has followed
newtab-section-toast-follow =
.message = You’re now following { $topic }.
# Variables:
# $topic (string) - Topic that the user has unfollowed
newtab-section-toast-unfollow =
.message = You’re no longer following { $topic }.
# Variables:
# $topic (string) - Topic that the user has blocked
newtab-section-toast-block =
.message = You won’t see stories about { $topic } anymore.
## Strings for task / to-do list productivity widget
# "Add one" means adding a new task to the list (e.g., "Walk the dog")
newtab-widget-lists-empty-cta = The possibilities are endless. Add one.
# A simple label next to the default list name letting users know this is a new / beta feature
newtab-widget-lists-label-new =
.label = New
newtab-widget-lists-label-beta =
.label = Beta
# When tasks have been previous marked as complete, they will appear in their own separate list beneath incomplete items
# Variables:
# $number (number) - Amount of list items marked complete
newtab-widget-lists-completed-list = Completed ({ $number })
newtab-widget-lists-celebration-headline = Good work
newtab-widget-lists-celebration-subhead = All clear
newtab-widget-task-list-menu-copy = Copy
newtab-widget-lists-menu-edit = Edit list name
newtab-widget-lists-menu-edit2 =
.aria-label = Edit list name
newtab-widget-lists-menu-create = Create a new list
newtab-widget-lists-menu-delete = Delete this list
newtab-widget-lists-menu-copy = Copy list to clipboard
newtab-widget-lists-menu-learn-more = Learn more
newtab-widget-lists-button-add-item = Add an item
newtab-widget-lists-input-add-an-item2 =
.placeholder = Add an item
.aria-label = Add an item
newtab-widget-lists-input-add-an-item =
.placeholder = Add an item
newtab-widget-lists-input-error = Please include text to add an item.
newtab-widget-lists-input-menu-open-link = Open link
newtab-widget-lists-input-menu-move-up = Move up
newtab-widget-lists-input-menu-move-down = Move down
newtab-widget-lists-input-menu-delete = Delete
newtab-widget-lists-input-menu-edit = Edit
newtab-widget-lists-input-menu-edit2 =
.aria-label = Edit item
# the + symbol emphasises the functionality of adding a new list
newtab-widget-lists-dropdown-create =
.label = + Create a new list
newtab-widget-lists-name-label-default =
.label = Task list
newtab-widget-lists-name-label-checklist =
.label = Checklist
newtab-widget-lists-name-placeholder-default =
.placeholder = Task list
newtab-widget-lists-name-placeholder-checklist2 =
.placeholder = Checklist
.aria-label = Edit list name
# The placeholder value of the name field for a newly created list
newtab-widget-lists-name-placeholder-new2 =
.placeholder = New list
.aria-label = Edit list name
newtab-widget-lists-name-placeholder-checklist =
.placeholder = Checklist
# The placeholder value of the name field for a newly created list
newtab-widget-lists-name-placeholder-new =
.placeholder = New list
newtab-widget-section-title = Widgets
newtab-widget-menu-hide = Hide widget
newtab-widget-menu-change-size = Change size
newtab-widget-size-small = Small
newtab-widget-size-medium = Medium
newtab-widget-size-large = Large
# Tooltip for hide all widgets button
newtab-widget-section-hide-all-button =
.title = Hide widgets
.aria-label = Hide all widgets
newtab-widget-section-maximize =
.title = Expand widgets
.aria-label = Expand all widgets to full size
newtab-widget-section-minimize =
.title = Minimize widgets
.aria-label = Collapse all widgets to compact size
newtab-widget-section-menu-button =
.title = Widgets menu
.aria-label = Open widgets menu
newtab-widget-section-menu-hide-all = Hide widgets
newtab-widget-section-menu-learn-more = Learn more
newtab-widget-section-feedback = Tell us what you think
newtab-widget-lists-name-default = Checklist
## Strings introduced by the Nova redesign of the Timer widget
newtab-widget-timer-notification-title = Timer
newtab-widget-timer-notification-focus = Focus time is up. Nice work. Need a break?
newtab-widget-timer-notification-break = Your break is over. Ready to focus?
newtab-widget-timer-notification-warning = Notifications are off
newtab-widget-timer-mode-focus =
.label = Focus
newtab-widget-timer-mode-break =
.label = Break
newtab-widget-timer-label-play =
.label = Play
newtab-widget-timer-label-pause =
.label = Pause
newtab-widget-timer-reset =
.title = Reset
newtab-widget-timer-menu-notifications = Turn off notifications
newtab-widget-timer-menu-notifications-on = Turn on notifications
newtab-widget-timer-menu-learn-more = Learn more
# The title displays above a set of top news headlines.
newtab-daily-briefing-card-title = Top Headlines
newtab-daily-briefing-card-menu-dismiss = Dismiss
# Variables:
# $minutes (number) - Time since the feed has been refreshed
newtab-daily-briefing-card-timestamp = Updated { $minutes }m ago
newtab-widget-message-title = Stay focused with lists and a built-in timer
# to-dos stands for "things to do".
newtab-widget-message-copy = From quick reminders to daily to-dos, focus sessions to stretch breaks — stay on task and on time.
# "Make Firefox yours" refers to about:newtab. The call to action here ("Try it now")
# is to customize the new tab page with a background image or color from
# the built-in wallpaper collection or uploading your own image.
newtab-promo-card-title-addons = Make { -brand-product-name } yours
newtab-promo-card-body-addons = Pick a wallpaper from our collection, or create your own.
newtab-promo-card-cta-addons = Try it now
newtab-promo-card-title = Support { -brand-product-name }
newtab-promo-card-body = Our sponsors support our mission to build a better web
newtab-promo-card-cta = Learn more
newtab-promo-card-dismiss-button =
.title = Dismiss
.aria-label = Dismiss
## Strings introduced by the Nova redesign of the Timer widget
# Variables:
# $minutes (number) - The currently selected timer duration in minutes
newtab-widget-timer-start-aria =
.aria-label =
{ $minutes ->
*[other] Start { $minutes }-minute timer
}
newtab-widget-timer-pause-aria =
.aria-label = Pause timer
# Variables:
# $minutes (number) - The currently selected timer duration in minutes
newtab-widget-timer-spinbutton-name =
.aria-label =
{ $minutes ->
[one] { $minutes } minute
*[other] { $minutes } minutes
}
newtab-widget-timer-decrease-min =
.title = Decrease 1 minute
newtab-widget-timer-increase-min =
.title = Increase 1 minute
newtab-widget-timer-mode-group =
.aria-label = Timer mode
# Small label shown beneath the live time while the focus timer is running or paused.
newtab-widget-timer-running-focus = Focus
# Small label shown beneath the live time while the break timer is running or paused.
newtab-widget-timer-running-break = Break
# Context-menu item to hide the Timer widget. Replaces the shared "Hide widget"
# copy with a widget-specific string per the Nova design.
newtab-widget-timer-menu-hide = Hide timer
# Heading shown inside the Timer widget after a focus session ends.
newtab-widget-timer-celebration-heading-focus = Nice work
# Heading shown inside the Timer widget after a break session ends.
newtab-widget-timer-celebration-heading-break = Your break is over
# Message shown inside the Timer widget after a focus session ends.
newtab-widget-timer-celebration-message-focus = Need a break?
# Message shown inside the Timer widget after a break session ends.
newtab-widget-timer-celebration-message-break = Ready to focus?
## Sports widget
newtab-sports-widget-menu-follow-teams = Follow teams
newtab-sports-widget-menu-view-upcoming = View upcoming
newtab-sports-widget-menu-view-results = View results
# Milestone dates (e.g. group stage, semifinals, etc.). Refers to calendar dates.
newtab-sports-widget-menu-key-dates = Key dates
newtab-sports-widget-menu-learn-more = Learn more
# “Keep tabs on” is an informal expression meaning to stay updated on, stay informed on, or regularly follow something (in this case, World Cup matches and updates).
newtab-sports-widget-keep-tabs = Keep tabs on the World Cup
newtab-sports-widget-get-updates = Get live match updates and more.
newtab-sports-widget-view-schedule =
.label = View schedule
newtab-sports-widget-follow-teams =
.label = Follow teams
newtab-sports-widget-view-matches =
.label = View matches
# Variables:
# $number (number) - Maximum number of teams a user can choose to follow in the team selection state
newtab-sports-widget-follow-teams-title =
{ $number ->
*[other] Follow up to { $number } teams
}
newtab-sports-widget-choose-wallpaper =
.label = Choose a wallpaper
newtab-sports-widget-skip = Skip
newtab-sports-widget-search-country =
.placeholder = Search country
.aria-label = Search country
newtab-sports-widget-cancel = Cancel
newtab-sports-widget-done-button =
.label = Done
newtab-sports-widget-group-stage = Group Stage
newtab-sports-widget-round-32 = Round of 32
newtab-sports-widget-round-16 = Round of 16
newtab-sports-widget-quarter-finals = Quarter-finals
# The "LIVE" string is meant to be uppercase in English, but other languages and locales may vary in how they handle this.
newtab-sports-widget-live = LIVE
newtab-custom-widget-live-refresh =
.title = Refresh scores
.aria-label = Refresh scores
# Milestone dates (e.g. group stage, semifinals, etc.). Refers to calendar dates.
newtab-sports-widget-key-dates = Key dates
newtab-sports-widget-upcoming = Upcoming
newtab-sports-widget-results = Results
newtab-sports-widget-semi-finals = Semi-finals
newtab-sports-widget-bronze-finals = Bronze Final
# Final is the final match for 1st place.
newtab-sports-widget-final = Final
# Variables:
# $start (Date) - Start date of a tournament stage
# $end (Date) - End date of a tournament stage
newtab-sports-widget-key-date-range = { DATETIME($start, month: "short", day: "numeric") } – { DATETIME($end, month: "short", day: "numeric") }
# Variables:
# $date (Date) - Date of a single tournament event
newtab-sports-widget-key-date = { DATETIME($date, month: "short", day: "numeric") }
newtab-sports-widget-delayed = Delayed
newtab-sports-widget-postponed = Postponed
newtab-sports-widget-suspended = Suspended
newtab-sports-widget-cancelled = Cancelled
newtab-sports-widget-information = Information about the match
newtab-sports-widget-no-live-data = Live match data isn’t updating right now
newtab-sports-widget-view-results-link = View results
newtab-sports-widget-third-place = Third place
# Runner-up is the team in 2nd place.
newtab-sports-widget-runner-up = Runner-up
newtab-sports-widget-champions = Champions
newtab-sports-widget-world-cup-champions = 2026 World Cup Champions
## Strings for activation window message variants. In certain experiment configurations,
## the strings from these variants may be displayed in a message below the search input
## for the first 48 hours of a new profile's lifetime. Some messages include buttons with
## labels, but not all.
newtab-activation-window-message-dismiss-button =
.title = Dismiss
.aria-label = Dismiss
# "This space" refers to about:newtab. The call to action here ("make it your own")
# is to customize newtab with a background image or colour, or by tweaking the
# existing widgetry that appears on it.
newtab-activation-window-message-customization-focus-header = Make this space your own
newtab-activation-window-message-customization-focus-message = Choose a fresh wallpaper, add shortcuts to your favorite sites, and stay up-to-date on stories that interest you.
newtab-activation-window-message-customization-focus-primary-button =
.label = Start customizing
# "This space" refers to about:newtab. The sentiment of "plays by your rules" is
# meant to evoke the idea that newtab is malleable and customizable. The call to
# action is to customize newtab with a background image or colour, or by tweaking
# the existing widgetry that appears on it.
newtab-activation-window-message-values-focus-header = This space plays by your rules
newtab-activation-window-message-values-focus-message = { -brand-product-name } lets you browse the way you like, with a more personal way to start your day online. Make { -brand-product-name } your own.
## Strings for the Clock widget
# Context menu item: toggle the clock card off.
newtab-clock-widget-menu-hide = Hide clock
newtab-clock-widget-menu-learn-more = Learn more
newtab-clock-widget-menu-edit = Edit clocks
newtab-clock-widget-menu-switch-to-12h = Switch to 12-hour format
newtab-clock-widget-menu-switch-to-24h = Switch to 24-hour format
newtab-clock-widget-label-your-clocks = Your clocks
newtab-clock-widget-search-location-input =
.label = Location
.placeholder = Search for a city
.aria-label = Search for a city
# "Nickname (optional)" refers to a custom, user-defined label for a saved location