-
Notifications
You must be signed in to change notification settings - Fork 2
/
floorp.ftl
1169 lines (933 loc) · 44.5 KB
/
floorp.ftl
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/.
###################################################################### about:Dialog #################################################################################
about-floorp = <label data-l10n-name="floorp-browser-link">{ -brand-product-name }</label> It is a light, fast and secure browser that respects the privacy of users. It is based on Firefox and continues to operate under <label data-l10n-name="ablaze-Link">{ -vendor-short-name }</label>, to improve the web. Want to help? <label data-l10n-name="helpus-donateLink">Make a donation</label>
#################################################################### about:preferences ####################################################################
pane-design-title = Design
category-design =
.tooltiptext = { pane-design-title }
design-header = Design
feature-requires-restart = A restart is required to apply changes
tab-width = Minimum width of tabs
preferences-tabs-newtab-position = New Tab position
open-new-tab-use-default =
.label = Open new tabs at default position
open-new-tab-at-the-end =
.label = Open new tabs at the end of the Tab Bar
open-new-tab-next-to-current =
.label = Open new tabs next to the current tab
enable-multitab =
.label = Enable multi-row tabs
multirow-tabs-limit =
.label = Enable row limit for multi-row tabs
multirow-tabs-newtab =
.label = Place the "Open a new tab" button at the end of the lowest row of tabs
multirow-tabs-value = Number of rows when multi-row tabs are enabled
enable-tab-sleep =
.label = Enable Sleeping Tabs
tab-sleep-timeout-minutes-value = Tabs will sleep after being inactive for (minutes)
tab-sleep-settings-button = Settings...
tab-sleep-settings-dialog-title =
.title = Sleeping Tabs Settings
tab-sleep-settings-dialog-excludehosts-label = Exclude hosts
tab-sleep-settings-dialog-excludehosts-label-2 = Enter one host per line.
tab-sleep-tab-context-menu-excludetab = Keep Tab awake
enable-floorp-workspace =
.label = Enable Workspaces
workspace-warring = Workspaces cannot be used with Tab Group add-ons. If you want to use tab group add-ons, please disable Workspaces and restart { -brand-short-name }.
enable-tab-scroll-change =
.label = Switch tabs by scrolling with your mouse
enable-tab-scroll-reverse =
.label = Reverse direction of scrolling tabs
enable-tab-scroll-wrap =
.label = Wrap scrolling tabs at the edge
enable-double-click-block =
.label = Close tabs when double-clicking them
enable-show-pinned-tabs-title =
.label = Show the title of pinned tabs
Mouse-side-button =
.label = Optimise browser for mouse with side buttons
tabbar-preference = Tab Bar
None-mode =
.label= Normal mode
hide-horizontality-tabs =
.label= Hide tabs on Horizontal Tab Bar
verticalTab-setting =
.label = Optimise browser for Vertical Tab Bar
move-tabbar-position =
.label = Display Tab Bar underneath the Toolbar
tabbar-on-bottom =
.label = Display Tab Bar at the bottom of the window
tabbar-favicon-color =
.label = Color the Tab Bar using the current website's favicon color
tabbar-style-preference = Tab Bar Style
horizontal-tabbar =
.label = Horizontal Tab Bar
tabbar-style-description = A restart of { -brand-short-name } is required to fully apply this setting.
multirow-tabbar =
.label = Multi-Row Tab Bar
vertical-tabbar =
.label = Vertical Tab Bar (experimental)
native-tabbar-tip = Sidebar add-ons and in-built sidebars cannot be used at the same time as Vertical Tabs as this leverages the Firefox sidebar.
native-vertical-tab-show-right =
.label = Show Vertical Tab Bar on the right side of the window
hover-vertical-tab =
.label = Collapse Vertical Tab Bar
TST = Tree Style Tab
about-TST = Tree Style Tab is a popular add-on that allows you to display tabs in a tree structure. Midori 10 has a built-in this add-on. Please install the add-on restore Midori 10's built-in Tree Style Tab.
treestyletab-Settings =
.label = Collapse Tree Style Tab
sidebar-reverse-position-toolbar = Show Sidebars on the other side
bookmarks-bar-settings = Bookmarks Toolbar (only one option can be used at a time)
bookmarks-focus-mode =
.label = Hide the Bookmarks Toolbar unless hovering over the navigation bar
bookmarks-bottom-mode =
.label = Show the Bookmarks Toolbar at the bottom of { -brand-short-name }
nav-bar-settings = Toolbar
show-nav-bar-bottom =
.label = Show the Toolbar at the bottom of { -brand-short-name } (experimental)
material-effect =
.label = Allow Mica For Everyone to modify the browser design
disable-extension-check-compatibility-option =
.label = Do not check for compatibility with add-ons
other-preference = Other Preferences
enable-userscript =
.label = Enable legacy components
about-legacy-components = Enabling this feature may cause unexpected bugs or fatal errors.
Search-positon-top =
.label = Display the Find Bar at the top of the page
allow-auto-restart =
.label = Restart automatically when settings that require a restart are changed
browser-rest-mode =
.label = Enable Rest Mode shortcut (F9)
disable-fullscreen-notification =
.label = Do not show a notification when entering full screen
floorp-updater = { -brand-short-name } Updates
enable-floorp-updater =
.label = Check for { -brand-short-name } updates on startup
floorp-update-latest =
.label = Notify me if { -brand-short-name } is up-to-date during automatic update checks
## Browser Theme
system-color-settings = Some themes have both light and dark modes - choose which mode you'd like these themes to use.
preferences-theme-appearance-header = Theme Mode
system-theme-dark =
.label = Dark
system-theme-light =
.label = Light
system-theme-auto =
.label = Follow my system appearance
## User interface preferences
ui-preference = Browser appearance
preferences-browser-appearance-description = Choose a built-in third-party design to use in { -brand-short-name }. Some designs may not be compatible with your configuration.
firefox-proton =
.label = Firefox Proton UI
firefox-proton-fix =
.label = Firefox Proton Fix UI
firefox-photon-lepton =
.label = Firefox Photon・Lepton UI
floorp-legacy =
.label = Midori Legacy UI・Unsupported
floorp-fluentUI =
.label = Microsoft Fluent UI
floorp-fluerialUI =
.label = Midori Fluerial UI
floorp-gnomeUI =
.label = GNOME Theme
## Download Manager
download-notification-preferences = Download Notifications
start-always-notify =
.label = Notify only when starting downloads
finish-always-notify =
.label = Notify only when a download finishes
always-notify =
.label = Notify when starting downloads and when a download finishes
do-not-notify =
.label = Disable download notifications
floorp-translater = Translator Settings
click-to-option =
.label = Open Settings...
.accesskey = O
## Sidebar
profiles-button-label = Manage Profiles
floorp-help-button-label = { -brand-short-name } Support
appmenuitem-reboot =
.label = Restart
## UserAgent
UserAgent-preference = User Agent
default-useragent-mode =
.label = Use Firefox User Agent (Default)
windows-chrome-useragent-mode =
.label = Spoof Chrome on Windows
macOS-chrome-useragent-mode =
.label = Spoof Chrome on macOS
linux-chrome-useragent-mode =
.label = Spoof Chrome on Linux
mobile-chrome-useragent-mode =
.label = Spoof Chrome on iOS
use-custom-useragent-mode =
.label = Use Custom User Agent
## DMR UI
download-mgr-UI =
.label = Enable the SimpleUI Download Manager
downloading-red-color =
.label = Use the red downloads icon when downloading
sidebar-preferences = Sidebar
bsb-preferences = Browser Manager Sidebar Settings
view-sidebar2-right =
.label = Display the Browser Manager Sidebar on the right
enable-sidebar2 =
.label = Enable the Browser Manager Sidebar
visible-bms =
.label = Show the Browser Manager Sidebar
hide-bms-to-unload-panel =
.label = Unload panel when hiding panel
custom-URL-option = Set Web Panel URLs
set-custom-URL-button =
.label = Set Custom URLs...
.accesskey = S
pane-BSB-title = { bsb-header }
category-BSB =
.tooltiptext = { pane-BSB-title }
category-downloads =
.tooltiptext = { files-and-applications-title }
bsb-header = Browser Manager Sidebar
bsb-context = Use the following Container Tab
bsb-userAgent-label =
.label = Use Mobile User Agent in this Web Panel
bsb-width = Width (if set to 0, the global value will be used)
bsb-page = Page to open
bsb-add = Add Web Panel on Browser Manager Sidebar
bsb-setting = Web Panel Settings
bsb-add-title =
.title = { bsb-add }
bsb-setting-title =
.title = { bsb-setting }
bsb-browser-manager-sidebar =
.label = { sidebar2-browser-manager-sidebar }
bsb-bookmark-sidebar =
.label = { sidebar2-bookmark-sidebar }
bsb-history-sidebar =
.label = { sidebar2-history-sidebar }
bsb-download-sidebar =
.label = { sidebar2-download-sidebar }
bsb-notes-sidebar =
.label = { sidebar2-notes-sidebar }
bsb-website =
.label = Website
sidebar2-pref-delete =
.label = Delete
sidebar2-pref-setting =
.label = Settings
sidebar2-global-width = Global Web Panels width
use-icon-provider-option = Use Icon Provider
use-icon-provider-option-google =
.label = Google
use-icon-provider-option-duckduckgo =
.label = DuckDuckGo
use-icon-provider-option-yandex =
.label = Yandex (available in China)
use-icon-provider-option-hatena =
.label = Hatena (available in China)
memory-and-performance = Memory and Performance
min-memory =
.label = Minimum Memory Usage (low performance)
balance-memory =
.label = Balance Memory Usage and Performance
max-memory =
.label = Best Speed and Performance (high memory usage)
delete-border-and-roundup-option =
.label = Round the corners of pages
## DualTheme
dualtheme-enable =
.label = Enable Dual Theme
newtab-background = { -brand-short-name } Home Background
newtab-background-random-image =
.label = Random images from Unsplash
newtab-background-gradation =
.label = Gradient
newtab-background-not-background =
.label = Disable background
newtab-background-selected-image =
.label = Custom folder...
newtab-background-folder = Use images from this folder:
newtab-background-folder-reload =
.label = Reload images
newtab-background-folder-default =
.label = Restore Defaults
newtab-background-folder-open =
.label = Open folder
newtab-background-folder-choose = Choose images folder...
newtab-background-extensions = Use images with these file extensions (separated by ",")
disable-blur-on-newtab =
.label = Disable blur effect on { -brand-short-name } Home
## Lepton Preferences
about-lepton = Customize { -brand-short-name } with Lepton
lepton-preference-button =
.label = Lepton Settings...
.accesskey = L
lepton-header = Lepton Settings
lepton-preference = Lepton Settings
photon-mode =
.label = Use Photon design
lepton-mode =
.label = Use Lepton design
protonfix-mode =
.label = Use tweaked Proton design
autohide-preference = Automatically hide browser elements
floorp-lepton-enable-tab-autohide =
.label = Automatically hide tabs
floorp-lepton-enable-navbar-autohide =
.label = Automatically hide Toolbar
floorp-lepton-enable-sidebar-autohide =
.label = Automatically hide Sidebar
floorp-lepton-enable-urlbar-autohide =
.label = Automatically hide Address Bar
floorp-lepton-enable-back-button-autohide =
.label = Automatically hide back button
floorp-lepton-enable-forward-button-autohide =
.label = Automatically hide forward button
floorp-lepton-enable-page-action-button-autohide =
.label = Automatically hide buttons on the Address Bar
floorp-lepton-enable-toolbar-overlap =
.label = Show Toolbar over website content
floorp-lepton-enable-toolbar-overlap-allow-layout-shift-autohide =
.label = Automatically hide Toolbar when displaying "ltr" content
hide-preference = Manage browser elements
floorp-lepton-enable-tab_icon-hide =
.label = Hide Tab icons
floorp-lepton-enable-tabbar-hide =
.label = Hide Tab Bar
floorp-lepton-enable-navbar-hide =
.label = Hide Toolbar
floorp-lepton-enable-sidebar_header-hide =
.label = Hide Sidebar Headers
floorp-lepton-enable-urlbar_iconbox-hide =
.label = Hide Address Bar icons
floorp-lepton-enable-bookmarkbar_icon-hide =
.label = Hide Bookmarks Bar icons
floorp-lepton-enable-bookmarkbar_label-hide =
.label = Hide Bookmarks Bar labels
floorp-lepton-enable-disabled_menu-hide =
.label = Hide disabled context menu items
floorp-lepton-disable-userChrome-icon =
.label = Disable Lepton's context menu and panel menu icons
floorp-lepton-disable-userChrome-menu-icon =
.label = Enable Lepton's context menu icons
positon-preferences = Position adjustments
floorp-lepton-enable-centered-tab =
.label = Center labels in tabs
floorp-lepton-enable-centered-urlbar =
.label = Center text in the Address Bar
floorp-lepton-enable-centered-bookmarkbar =
.label = Center Bookmarks Bar items
urlbar-preferences = Address Bar
floorp-lepton-enable-urlbar-icon-move-to-left =
.label = Move Address Bar icons to the left side
floorp-lepton-enable-urlname-go_button_when_typing =
.label = When typing, show a Go button
floorp-lepton-enable-always-show-page_action =
.label = Always show page actions in the Address Bar
tabbar-preferences = Tab Bar
floorp-lepton-enable-tabbar-positon-as-titlebar =
.label = Tab Bar in the titlebar
floorp-lepton-enable-tabbar-as-urlbar =
.label = Combine Tab Bar and Toolbar
lepton-sidebar-preferences = Sidebar
floorp-lepton-enable-overlap-sidebar =
.label = Show Sidebar over website content
floorp-home-mode-choice-default =
.label = { -brand-short-name } Home (Default)
floorp-home-prefs-content-header = { -brand-short-name } Home Content
floorp-home-prefs-content-description = Choose the content you want to see on the { -brand-short-name } Home Page.
## Notes
floorp-notes = { -brand-short-name } Notes
restore-from-backup = Restore Notes from backup
enable-notes-sync =
.label = Enable { -brand-short-name } Notes Sync
about-notes-backup-tips = Midori Notes uses Firefox Sync to sync your notes with other devices. If you lose your notes, you can restore them from a backup. A backup is created when you start { -brand-short-name }.
notes-sync-description = This can solve the problem of losing content due to overwriting notes during synchronization.
backuped-time = Backed up at
notes-backup-option = Backup Settings
backup-option-button = Backup Settings...
restore-from-backup-prompt-title = Midori Notes Restore Service
restore-from-this-backup = Restore Notes back to the state they were in this backup?
restore-button = Restore
## user.js
header-userjs = user.js
userjs-customize = Customize { -brand-short-name } with user.js
about-userjs-customize = user.js is a configuration file that allows you to customize { -brand-short-name }. user.js files are downloaded from the Internet and overwrite your current user.js file. Please back up your current user.js file before continuing. user.js configurations will be applied automatically after restarting { -brand-short-name }.
userjs-label = user.js list
userjs-prompt = Apply this user.js?
apply-userjs-attention = Applying a new user.js will overwrite your current user.js file.
apply-userjs-attention2 = Please back up your current user.js file before continuing.
userjs-button = user.js Settings...
userjs-select-option = Manage the user.js currently used in { -brand-short-name } to improve performance and privacy.
apply-userjs-button = Apply
## userjs Options
default-userjs-label = Midori Default
about-default-userjs = Telemetry disabled. Well balanced { -brand-short-name } with various customizations enabled.
Securefox-label = Yokoffing Securefox
about-Securefox = HTTPS-by-Default. Total Cookie Protection with site isolation. Enhanced state and network partitioning. Various other enhancements.
default-label = Yokoffing Default
about-default = All the essentials. None of the breakage. This is your user.js.
Fastfox-label = Yokoffing Fastfox
about-Fastfox = Immensely increase Firefox's browsing speed. Give Chrome a run for its money!
Peskyfox-label = Yokoffing Peskyfox
about-Peskyfox = Unclutter the new tab page. Remove Pocket. Restore compact mode as an option. Stop webpage notifications, pop-ups, and other annoyances.
Smoothfox-label = Yokoffing Smoothfox
about-Smoothfox = Get Edge-like smooth scrolling on your favorite browser — or choose something more your style.
## Workspaces
floorp-workspaces-title = { -brand-short-name } Workspaces
workspaces-backup-discription = Backup and restore your Workspaces
workspaces-restore-service-title = Midori Workspaces Backup Service
workspaces-restore-warning = Warning! Running this operation will cause the browser to freeze temporarily and restart automatically.
floorp-workspace-settings-button = Workspace Settings...
change-to-close-workspace-popup-option =
.label = Close workspaces popup when selecting a Workspace
pinned-tabs-exclude-workspace-option =
.label = Exclude pinned tabs from Workspaces
workspaces-reset-title = Reset Workspaces
workspaces-reset-label =
.label = Reset Workspaces
workspaces-reset-description = If a backup does not work and the Workspace does not start, reset the Workspace.
workspaces-reset-button = Reset Workspaces
workspaces-reset-service-title = Midori Workspaces
workspaces-reset-warning = Warning! Running this operation will delete all your Workspaces and restart the browser.
manage-workspace-on-bms-option =
.label = Manage Workspace on Browser Manager Sidebar
show-workspace-name-option =
.label = Show Workspace Name on Tab Bar's Workspace Button
change-workspace-with-default-key-option =
.label = Change Workspace with Shift and ↑ and ↓ keys.
workspaces-manage-title = Manage Workspaces
workspaces-manage-description = Manage your Workspaces. Change workspace icon.
workspaces-manage-label =
.label = Manage Workspaces
workspaces-manage-button = Open Workspace Manager...
select-workspace = Select Workspace
workspace-select-icon = Select Workspace Icon
.label = Select Workspace Icon
workspace-select-container = Select Container Tab
.label = Select Container Tab
workspace-customize =
.title = Customize Workspace
workspace-icon-briefcase =
.label = Job
workspace-icon-cart =
.label = Shopping
workspace-icon-circle =
.label = Circle
workspace-icon-compass =
.label = Compass
workspace-icon-dollar =
.label = Bank
workspace-icon-fence =
.label = Fence
workspace-icon-fingerprint =
.label = Personal
workspace-icon-gift =
.label = Gift
workspace-icon-vacation =
.label = Vacation
workspace-icon-food =
.label = Food
workspace-icon-fruit =
.label = Fruit
workspace-icon-gear =
.label = Gear
workspace-icon-pet =
.label = Pet
workspace-icon-question =
.label = Question
workspace-icon-star =
.label = Star
workspace-icon-tree =
.label = Tree
workspace-icon-chill =
.label = Private
# Custom Keyboard Shortcuts
floorp-CSK-title = Custom keyboard shortcuts
floorp-CSK-description = Customize { -brand-short-name }'s keyboard shortcuts. Midori provides more than 80 customizable keyboard shortcuts - restart { -brand-short-name } to apply these settings. Duplicate keyboard shortcuts will not work.
disable-fx-actions =
.label = Disable Mozilla Firefox's keyboard shortcuts
customize-Action =
.label = Add shortcut
remove-Action =
.label = Remove shortcut
CSK-reset-title = Reset custom keyboard shortcuts
CSK-reset-description = Reset custom keyboard shortcuts to { -brand-short-name }'s defaults.
CSK-reset-label = Reset custom keyboard shortcuts
CSK-reset-button = Restore Defaults
CSK-manage-title = Manage keyboard shortcuts
CSK-remove-shortcutkey = Remove custom keyboard shortcut?
CSK-remove-shortcutkey-description = Are you sure you want to remove this keyboard shortcut?
CSK-restore-default = Restore Defaults?
CSK-restore-default-description = Restore Midori's default keyboard shortcuts? Your current shortcuts will be lost.
CSK-reboot-browser-label = Restart { -brand-short-name } to apply these settings
CSK-reboot-browser-button = Restart { -brand-short-name }
# Exist shortcut key: "S", "shift"
CSK-keyborad-shortcut-info = Current keyboard shortcut: { $key } & { $modifiers }.
CSK-keyborad-shortcut-info-with-keycode = Current keyboard shortcut: { $key }.
CSK-keyborad-shortcut-is-changed = (Not Applied)
floorp-custom-actions-tab-action = Tab Actions
floorp-custom-actions-page-action = Page Actions
floorp-custom-actions-visible-action = Visible Actions
floorp-custom-actions-search-action = Search Actions
floorp-custom-actions-tools-action = Tools Actions
floorp-custom-actions-bookmark-action = Bookmark Actions
floorp-custom-actions-open-page-action = Open Page Actions
floorp-custom-actions-history-action = History Actions
floorp-custom-actions-pip-action = Picture-in-Picture Actions
floorp-custom-actions-downloads-action = Downloads Actions
floorp-custom-actions-sidebar-action = Sidebar Actions
floorp-custom-actions-bms-action = Browser Manager Sidebar Actions
floorp-custom-actions-workspace-action = Workspaces Actions
## Mouse Gestures
mouse-gesture = Mouse Gestures
mouse-gesture-description = Gesturefy must be installed to use mouse gestures with { -brand-short-name }.
Gesturefy = Gesturefy
about-Gesturefy = Gesturefy is an extension that adds mouse gestures to your browser. If { -brand-short-name } detects the installation of this add-on, it will add gesture commands to Gesturefy that are only available in { -brand-short-name }. Also, this add-on can work with new tabs!
# Translate
TWS = Translate Web Page
about-TWS = Translate your page in real time using Google or Yandex. You can also translate selected text or the entire page.
# Privacy Hub
## BlockMoreTrackers
privacy-hub-header = Privacy Hub
block-more-tracker = Block more Ads and Trackers
block-tracker = This section contains a set of extensions designed to block ads and trackers
view-at-AMO = View this addon in addons.mozilla.org
uBlock-Origin = uBlock Origin
about-uboori = uBlock Origin blocks ads, extensive trackers, and additional dangerous sites.
Facebook-Container = Facebook Container
about-Facebook-Container = Prevent Facebook from tracking you around the web. Facebook Container extension helps you take control and isolate your web activity from Facebook.
## Fingerprinting
fingerprint-header = Resist Fingerprinting & IP address leaks
block-fingerprint = Fingerprinting is a tracking mechanism that relies on the unique features of your browser and operating system. This section contains settings to further enhance this protection beyond the default blocking.
enable-firefox-fingerprint-protections = Enable strong protection against fingerprinting
about-firefox-fingerprint-protection = Enabling protection by Firefox includes forced light mode, disabling some APIs, etc. Some sites may be broken.
fingerprint-Protection =
.label = Anti-fingerprinting protections
html5-canvas-prompt-settings =
.label = Automatically dismiss access confirmation prompts for HTML5 image data
canvas-prompt = Prevents websites from using the canvas-reading prompt unless manually permitted.
disable-webgl =
.label = Disable WebGL
about-webgl = WebGL is a Javascript API used to render graphics, which can be used to identify GPU.
Canvas-Blocker = Canvas Blocker
about-CB = This add-on spoofs data used by fingerprinting techniques.
WebRTC-connection = WebRTC is a standard that provides real-time calling. If you disable this setting, you will not be able to use Discord, etc.
WebRTC =
.label = Enable WebRTC Connection
################################################################### browser ###############################################################
rest-mode = Taking a break...
rest-mode-description = Midori is currently suspended. Press ENTER or OK to continue.
Sidebar2 =
.label = Browser Manager Sidebar
.tooltiptext = Change Sidebar visibility
sidebar2-mute-and-unmute =
.label = Mute/Unmute this Panel
sidebar2-unload-panel =
.label = Unload this Panel
sidebar2-change-ua-panel =
.label = Toggle Mobile User Agent
sidebar2-delete-panel =
.label = Delete this Panel
sidebar2-close-button =
.tooltiptext = Close Sidebar
sidebar-back-button =
.tooltiptext = Back
sidebar-forward-button =
.tooltiptext = Forward
sidebar-reload-button =
.tooltiptext = Reload
sidebar-go-index-button =
.tooltiptext = Go Home
sidebar-muteAndUnmute-button =
.tooltiptext = Mute/Unmute sidebar
sidebar2-browser-manager-sidebar = Browser Manager
show-browser-manager-sidebar =
.tooltiptext = Show { sidebar2-browser-manager-sidebar } Sidebar
sidebar2-bookmark-sidebar = Bookmarks
show-bookmark-sidebar =
.tooltiptext = Show { sidebar2-bookmark-sidebar } Sidebar
sidebar2-history-sidebar = History
show-history-sidebar =
.tooltiptext = Show { sidebar2-history-sidebar } Sidebar
sidebar2-download-sidebar = Downloads
show-download-sidebar =
.tooltiptext = Show { sidebar2-download-sidebar } Sidebar
sidebar2-notes-sidebar = Notes
show-notes-sidebar =
.tooltiptext = Show { sidebar2-notes-sidebar } Sidebar
sidebar-add-button =
.tooltiptext = { bsb-add }
sidebar-addons-button =
.tooltiptext = Add-ons and themes
sidebar-passwords-button =
.tooltiptext = Passwords
sidebar-preferences-button =
.tooltiptext = Settings
sidebar-keepWidth-button =
.tooltiptext = Keep using the current width on this Panel
sidebar2-keep-width-for-global =
.label = Apply this width to all panels without a custom width
bsb-context-add =
.label = Add page to Web Panel...
bsb-context-link-add =
.label = Add link to Web Panel...
#################################################################### menu panel ############################################################
open-profile-dir =
.label = Open Profile Directory
####################################################################### menu ###############################################################
css-menu =
.label = CSS
.accesskey = C
css-menubar =
.label = CSS
.accesskey = C
rebuild-css =
.label = Rebuild browser CSS files
.accesskey = R
make-browsercss-file =
.label = Create browser CSS file
.accesskey = M
open-css-folder =
.label = Open CSS folder
.accesskey = O
edit-userChromeCss-editor =
.label = Edit userChrome.css file
edit-userContentCss-editor =
.label = Edit userContent.css file
not-found-editor-path = Could not find a CSS file editor
set-pref-description = Input the file location of the CSS file editor you want to use:
rebuild-complete = Rebuild has been completed.
please-enter-filename = Please enter a file name.
################################################################### Undo-Closed-Tab ###############################################################
undo-closed-tab = Reopen closed tab
################################################################### about:addons ###############################################################
# Dual Theme
dual-theme-enable-addon-button = Enable as a sub-theme
dual-theme-disable-addon-button = Disable sub-theme
dual-theme-enabled-heading = Enabled as a sub-theme
##################################################################### toolbar ###############################################################
status-bar =
.label = Status Bar
.accesskey = S
##################################################################### Gesturefy ###############################################################
gf-floorp-open-tree-style-tab-name = [Midori] Open Tree Style Tab Panel
gf-floorp-open-tree-style-tab-description = Open Tree Style Tab Panel of Sidebar
gf-floorp-open-bookmarks-sidebar-name = [Midori] Open Bookmarks Panel of Sidebar
gf-floorp-open-bookmarks-sidebar-description = Open Bookmarks Panel of Sidebar
gf-floorp-open-history-sidebar-name = [Midori] Open History Panel of Sidebar
gf-floorp-open-history-sidebar-description = Open History Panel of Sidebar
gf-floorp-open-synctabs-sidebar-name = [Midori] Open Synced Tabs Panel of Sidebar
gf-floorp-open-synctabs-sidebar-description = Open Synced Tabs Panel of Sidebar
gf-floorp-close-sidebar-name = [Midori] Close Sidebar
gf-floorp-close-sidebar-description = Close Sidebar
gf-floorp-open-browser-manager-sidebar-name = [Midori] Open BMS
gf-floorp-open-browser-manager-sidebar-description = Open Browser Manager Sidebar, if webpanel of Browser Manager Sidebar was loaded
gf-floorp-close-browser-manager-sidebar-name = [Midori] Close BMS
gf-floorp-close-browser-manager-sidebar-description = Close Browser Manager Sidebar
gf-floorp-show-browser-manager-sidebar-name = [Midori] Toggle BMS
gf-floorp-show-browser-manager-sidebar-description = Toggle Browser Manager Sidebar
gf-floorp-hide-statusbar-name = [Midori] Hide Status Bar
gf-floorp-hide-statusbar-description = Hide Status Bar
gf-floorp-show-statusbar-name = [Midori] Toggle Status Bar
gf-floorp-show-statusbar-description = Show or Hide Status Bar
gf-floorp-open-extension-sidebar-name = [Midori] Open selected add-on of Sidebar
gf-floorp-open-extension-sidebar-description = Open selected add-on of Sidebar
gf-floorp-open-extension-sidebar-settings-addons-id = Add-on of Sidebar
gf-floorp-open-extension-sidebar-settings-addons-id-description = The extension of the add-on open of sidebar
gf-floorp-open-extension-sidebar-settings-list-default = Please select add-on
gf-floorp-open-extension-sidebar-settings-list-unknwon = Unknown add-on
##################################################################### Midori System Update Portable Version ###############################################################
update-portable-notification-found-title = Updates found!
update-portable-notification-found-message = Downloading updates...
update-portable-notification-ready-title = Ready to update!
update-portable-notification-ready-message = { -brand-short-name } will be updated when it launches next.
update-portable-notification-success-title = Update succeeded!
update-portable-notification-success-message = Update succeeded! Hope you enjoy the new version of Midori!
update-portable-notification-failed-title = Update failed.
update-portable-notification-failed-redirector-message = Update failed. Restarting your browser may solve this problem.
update-portable-notification-failed-prepare-message = Failed to prepare the update.
##################################################################### Midori Portable Preferences ###############################################################
floorp-portable-update-application-allow = { -brand-short-name } Portable Update
floorp-update-application-auto-enabled-option =
.label = Automatically check for updates to { -brand-short-name } portable. (Recommended)
##################################################################### Open link in external ###############################################################
openInExternal-title = Open in external browser
open-link-in-external-enabled-option =
.label = Enable the "Open in external browser" feature
open-link-in-external-select-browser-option = Choose what browser will be opened
open-link-in-external-select-browser-option-default =
.label = Default browser
open-link-in-external-tab-context-menu = Open in external browser
open-link-in-external-tab-dialog-title-error = An error occurred:
open-link-in-external-tab-dialog-message-default-browser-not-found = Default browser was not found or is not configured.
open-link-in-external-tab-dialog-message-selected-browser-not-found = The selected browser does not exist.
######################################################################### Midori Notes ###############################################################
new-memo = New
memo-title-input-placeholder = Write a title here
memo-input-placeholder = Write or paste a memo here
delete-memo = Delete
save-memo = Save
memo-welcome-title = Welcome!
memo-first-tip = Welcome to Midori Notes! Here are some instructions on how to use it!
memo-second-tip = Midori Notes is a notepad that lets you store multiple notes that sync across devices. To enable synchronization, you need to sign in to Midori with your Firefox account.
memo-third-tip = Midori Notes will be saved in your Midori settings and synchronized across devices using Firefox Sync. Firefox Sync encrypts the contents of the sync with your Firefox account password, so no one but you knows its contents.
memo-import-data-tip = Firefox Sync is not a backup service. We recommend you to create backups.
memo-new-title = New Note
chage-view-mode = Toggle View/Edit Mode
readonly-mode = Offline (Read-only)
######################################################################### Default bookmarks ###############################################################
default-bookmark-ablaze-support = Astian Support
default-bookmark-notes = Midori Notes
######################################################################### Like Chrome Download mgr ###############################################################
floorp-delete-all-downloads =
.label = Clear Downloads
.accesskey = D
.tooltiptext = Clear Downloads
floorp-show-all-downloads =
.label = Show all downloads
.accesskey = S
.tooltiptext = Show all downloads
######################################################################### workspace ###############################################################
workspace-prompt-title = Midori Workspace
please-enter-workspace-name = Please enter the Workspace's new name.
please-enter-workspace-name-2 = The Workspace's name cannot contain symbols and spaces.
workspace-error = An error occurred:
workspace-error-discription = Either a Workspace with this name exists or the name is invalid.
workspace-button = Workspaces
.label = Workspaces
.tooltiptext = Select a Workspace...
workspace-default = Default
workspace-add =
.label= New Workspace...
workspace-context-menu-selected-tab =
.label = Selected tab cannot be moved
move-tab-another-workspace =
.label = Move to another Workspace
workspace-rename =
.label = Rename this Workspace
workspace-delete =
.label = Delete Workspace
manage-workspace = Manage this Workspace
.label = Manage this workspace
######################################################################### menubar item ###############################################################
sharemode-menuitem =
.label = Share Mode
.accesskey = S
############################################################################## Welcome page ###############################################################
welcome-login-to-firefox-account = Sign in to your Firefox Account
welcome-to-floorp = Welcome to { -brand-short-name }!
welcome-discribe-floorp = { -brand-short-name } is a fast and secure lightweight browser committed to user privacy and security.
welcome-start-setup = Ready to jump in?
welcome-skip-to-start-browsing = Skip to Start Browsing
welcome-select-preferences-template = Select a template
welcome-minimum-template = Basic
welcome-enable-basic-features = Enable basic features & settings for a simple experience.
welcome-medium-template = Default
welcome-enable-some-features = Enable additional features & settings for a better experience.
welcome-maximum-template = Advanced
welcome-enable-most-of-features = Enable advanced features & settings. Recommended for experienced users.
welcome-go-next-setup = Next
welcome-select-browser-design = Select a Browser Design
welcome-discribe-browser-design = You can choose one of the wonderful third-party { -brand-short-name } designs. OS specific designs are also available at Preferences.
welcome-design-lepton-name = Lepton Original Design
welcome-design-photon-name = Lepton Photon Design
welcome-design-ProtonFix-name = Lepton ProtonFix Design
welcome-design-floorp-fluerial-name = Midori Fluerial Design
welcome-design-firefox-proton-name = Firefox Proton Design
welcome-import-data = Import Your Browser Data
welcome-import-data-description = Fast setup! Import your bookmarks, passwords, and more from your old browser. Firefox user can import data from Firefox Sync.
welcome-import-data-button = Import Data...
welcome-import-data-skip = Skip Import
welcome-select-button = Select
welcome-finish-setup = Setup Complete!
welcome-finish-setup-description = You're all set! Other settings like Vertical Tabs & Add-ons can be found in about:preferences. Enjoy { -brand-short-name }!
welcomet-finish-setup = Start Browsing the Web
############################################################# Custom Shortcutkey ###############################################################
category-CSK =
.label = Keyboard shortcuts
.tooltiptext = Keyboard shortcuts
category-CSK-title = Keyboard shortcuts
shortcutkey-customize =
.title = Keyboard shortcuts
select-shortcutkeyAction = Select an action to trigger
shortcutkey-customize-key-list-placeholder = Your keyboard shortcut will appear here
shortcut-key-label = Keyboard shortcut
start-input-button-listen = Start listening
end-input-button-listen = Stop listening
shortcut-key-description = Click "Start listening" and enter your new keyboard shortcut for this action. Multiple keys can be used, however keyboard shortcuts will not work if already assigned to other actions.
floorp-custom-actions-open-new-tab = Open a new tab
.label = Open a new tab
floorp-custom-actions-close-tab = Close the current tab
.label = Close the current tab
floorp-custom-actions-open-new-window = Open a new window
.label = Open a new window
floorp-custom-actions-open-new-private-window = Open a new private window