-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathcosmic_settings.ftl
More file actions
1038 lines (837 loc) · 31.9 KB
/
cosmic_settings.ftl
File metadata and controls
1038 lines (837 loc) · 31.9 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
dbus-connection-error = Failed to connect to DBus
ok = OK
unknown = Unknown
number = { $number }
## Freedesktop desktop entries
app = COSMIC Settings
xdg-entry-comment = Settings application for the COSMIC desktop
xdg-entry-keywords = COSMIC;Settings;
xdg-entry-about = About
xdg-entry-about-comment = Device name, hardware information, operating system defaults
xdg-entry-about-keywords = COSMIC;About
xdg-entry-a11y = Accessibility
xdg-entry-a11y-comment = Screen reader, magnifier, high contrast, and color filters
xdg-entry-a11y-keywords = COSMIC;Accessibility;A11y;Screen;Reader;Magnifier;Contrast;Color;
xdg-entry-appearance = Appearance
xdg-entry-appearance-comment = Accent colors and theming
xdg-entry-appearance-keywords = COSMIC;Accent;Color;Icon;Font;Theme
xdg-entry-applications = Applications
xdg-entry-applications-comment = Default applications, startup applications, and X11 application compatibility settings
xdg-entry-applications-keywords = COSMIC;Default;Application;Startup;X11;Compatibility
xdg-entry-bluetooth-comment = Manage Bluetooth devices
xdg-entry-bluetooth-keywords = COSMIC;Bluetooth;
xdg-entry-date-time = Date & Time
xdg-entry-date-time-comment = Time zone, automatic clock settings, and time formatting
xdg-entry-date-time-keywords = COSMIC;Time;Zone;
xdg-entry-default-apps = Default Applications
xdg-entry-default-apps-comment = Default web browser, mail client, file browser, and other applications
xdg-entry-default-apps-keywords = COSMIC;Default;Application
xdg-entry-desktop = Desktop
xdg-entry-desktop-comment = Wallpaper, appearance, panel, dock, window management and workspace settings
xdg-entry-desktop-keywords = COSMIC;Desktop;
xdg-entry-displays = Displays
xdg-entry-displays-comment = Manage display configuration settings
xdg-entry-displays-keywords = COSMIC;Display;
xdg-entry-dock = Dock
xdg-entry-dock-comment = An optional bar for apps and applets
xdg-entry-dock-keywords = COSMIC;Dock;Panel;Applet
xdg-entry-input = Input Devices
xdg-entry-input-comment = Keyboard and mouse settings
xdg-entry-input-keywords = COSMIC;Input;Keyboard;Mouse;Mice;
xdg-entry-keyboard = Keyboard
xdg-entry-keyboard-comment = Input sources, switching, special character entry, shortcuts
xdg-entry-keyboard-keywords = COSMIC;Keyboard;Input;Source;Shortcuts;
xdg-entry-mouse = Mouse
xdg-entry-mouse-comment = Mouse speed, acceleration, and natural scrolling
xdg-entry-mouse-keywords = COSMIC;Mouse;Acceleration;Scrolling;
xdg-entry-network = Network & Wireless
xdg-entry-network-comment = Manage network connections
xdg-entry-network-keywords = COSMIC;Network;Wireless;WiFi;VPN;
xdg-entry-notifications = Notifications
xdg-entry-notifications-comment = Do Not Disturb, lockscreen notifications, and per-application settings
xdg-entry-notifications-keywords = COSMIC;Notification;Lock;
xdg-entry-panel = Panel
xdg-entry-panel-comment = Primary system bar for menus and applets
xdg-entry-panel-keywords = COSMIC;Panel;Applet
xdg-entry-power = Power & Battery
xdg-entry-power-comment = Power modes and power saving options
xdg-entry-power-keywords = COSMIC;Power;Battery
xdg-entry-region-language = Region & Language
xdg-entry-region-language-comment = Format dates, times, and numbers based on your region
xdg-entry-region-language-keywords = COSMIC;Region;Language;Date;Format;Time;Locale;Localization;
xdg-entry-sound = Sound
xdg-entry-sound-comment = Audio settings for devices, alerts, and applications
xdg-entry-sound-keywords = COSMIC;Sound;Audio;Alert;Pipewire;
xdg-entry-startup-apps = Startup Applications
xdg-entry-startup-apps-comment = Configure applications which run on login
xdg-entry-startup-apps-keywords = COSMIC;Startup;Application;
xdg-entry-system = System & Accounts
xdg-entry-system-comment = System information, accounts, and firmware updates
xdg-entry-system-keywords = COSMIC;System;Info;Accounts;Firmware;
xdg-entry-time-language = Time & Language
xdg-entry-time-language-comment = Manage system date, time, region, and language
xdg-entry-time-language-keywords = COSMIC;System;Time;Date;Region;Language;
xdg-entry-touchpad = Touchpad
xdg-entry-touchpad-comment = Touchpad speed, click options, and gestures
xdg-entry-touchpad-keywords = COSMIC;Touchpad;Gesture;
xdg-entry-users = Users
xdg-entry-users-comment = Authentication and user accounts
xdg-entry-users-keywords = COSMIC;User;Account;
xdg-entry-vpn-comment = VPN connections and connection profiles
xdg-entry-vpn-keywords = COSMIC;VPN;Network;Connection;OpenVPN;OpenConnect;
xdg-entry-wallpaper = Wallpaper
xdg-entry-wallpaper-comment = Wallpaper images, colors, and slideshow options
xdg-entry-wallpaper-keywords = COSMIC;Wallpaper;Background;Slideshow;
xdg-entry-window-management = Window Management
xdg-entry-window-management-comment = Super key action, window control options, and additional window tiling options
xdg-entry-window-management-keywords = COSMIC;Window;Management;Tiling;Super;Key;
xdg-entry-wired = Wired
xdg-entry-wired-comment = Wired connections and connection profiles
xdg-entry-wired-keywords = COSMIC;Wired;LAN;Network;Connection;
xdg-entry-wireless = Wi-Fi
xdg-entry-wireless-comment = Wi-Fi connections and connection profiles
xdg-entry-wireless-keywords = COSMIC;WiFi;Wi-Fi;Network;Connection;
xdg-entry-workspaces = Workspaces
xdg-entry-workspaces-comment = Workspace orientation, overview, and multi-monitor behavior
xdg-entry-workspaces-keywords = COSMIC;Workspace;Orientation;Overview;Monitor;
xdg-entry-x11-applications = X11 Applications Compatibility
xdg-entry-x11-applications-comment = X11 window system application scaling, primary display, and global shortcuts
xdg-entry-x11-applications-keywords = COSMIC;X11;Application;Game;Compatibility;
## Network & Wireless
add-network = Add network
.profile = Add profile
add-vpn = Add VPN
airplane-on = Airplane mode is on.
cable-unplugged = Cable unplugged
connect = Connect
connected = Connected
connecting = Connecting…
disconnect = Disconnect
forget = Forget
known-networks = Known networks
network-and-wireless = Network & wireless
network-name = Network Name
no-networks = No networks have been found.
no-vpn = No VPN connections available.
password = Password
password-confirm = Confirm password
qr-code-unavailable = QR code not available
remove = Remove
scan-to-connect-description = Scan the QR code to connect to this network.
settings = Settings
share = Share network
username = Username
visible-networks = Visible networks
identity = Identity
auth-dialog = Authentication required
.vpn-description = Enter the username and password required by the VPN service.
.wifi-description = Enter the password or encryption key. You can also connect by pressing the “WPS” button on the router.
forget-dialog = Forget this Wi-Fi network?
.description = You'll need to enter a password again to use this Wi-Fi network in the future.
network-device-state =
.activated = Connected
.config = Connecting
.deactivating = Disconnecting
.disconnected = Disconnected
.failed = Failed to connect
.ip-check = Checking connection
.ip-config = Requesting IP and routing info
.need-auth = Needs authentication
.prepare = Preparing to connect
.secondaries = Waiting for secondary connection
.unavailable = Unavailable
.unknown = Unknown state
.unmanaged = Unmanaged
.unplugged = Cable unplugged
remove-connection-dialog = Remove connection profile?
.vpn-description = You'll need to enter a password again to use this network in the future.
.wired-description = You'll need to recreate this profile to use it in the future.
vpn = VPN
.connections = VPN connections
.error = Failed to add VPN config
.remove = Remove connection profile
.select-file = Select a VPN configuration file
vpn-error = VPN Error
.config = Failed to add VPN config
.connect = Failed to connect to VPN
.connection-editor = Connection editor failed
.connection-settings = Failed to get settings for active connections
.updating-state = Failed to update network manager state
.wireguard-config-path = Invalid file path for WireGuard config
.wireguard-config-path-desc = Chosen file must be on a local file system.
.wireguard-device = Failed to create WireGuard device
.with-password = Failed to set VPN { $field ->
*[username] username
[password] password
[password-flags] password-flags
} with nmcli
wired = Wired
.adapter = Wired adapter { $id }
.connections = Wired connections
.devices = Wired devices
.remove = Remove connection profile
wifi = Wi-Fi
.adapter = Wi-Fi adapter { $id }
.forget = Forget this network
wireguard-dialog = Add WireGuard device
.description = Choose a device name for the WireGuard config.
## Networking: Online accounts
online-accounts = Online accounts
.desc = Add accounts, IMAP and SMTP, enterprise logins
# Bluetooth
activate = Activate
confirm = Confirm
enable = Enable
bluetooth = Bluetooth
.status = This system is visible as { $aliases } while Bluetooth settings are open.
.connected = Connected
.connecting = Connecting
.disconnecting = Disconnecting
.connect = Connect
.disconnect = Disconnect
.forget = Forget
.dbus-error = An error has occurred while interacting with DBus: { $why }
.disabled = The Bluetooth service is disabled
.inactive = The Bluetooth service is not active
.unknown = The Bluetooth service could not be activated. Is BlueZ installed?
bluetooth-paired = Previously connected devices
.connect = Connect
.battery = { $percentage }% battery
bluetooth-confirm-pin = Confirm Bluetooth PIN
.description = Please confirm that the following PIN matches the one displayed on { $device }
bluetooth-available = Nearby devices
bluetooth-adapters = Bluetooth adapters
## Accessibility
accessibility = Accessibility
.vision = Vision
.on = On
.off = Off
.unavailable = Unavailable
.screen-reader = Screen reader
.high-contrast = High contrast mode
.invert-colors = Invert colors
.color-filters = Color filters
hearing = Hearing
.mono = Play stereo audio as mono
default = Default
magnifier = Magnifier
.controls = Or use these shortcuts: { $zoom_in ->
[zero] {""}
*[other] {""}
{$zoom_in} to zoom in,
}{ $zoom_out ->
[zero] {""}
*[other] {""}
{$zoom_out} to zoom out,
}
Super + scroll with your mouse
.scroll_controls = Enable mouse or touchpad zoom with Super + scroll
.show_overlay = Show the magnifier overlay
.increment = Zoom increment
.signin = Start magnifier on sign in
.applet = Toggle magnifier on/off in applet on the panel
.movement = Zoomed view moves
.continuous = Continuously with pointer
.onedge = When pointer reaches edge
.centered = To keep pointer centered
color-filter = Color filter type
.unknown = Unknown filter active
.greyscale = Greyscale
.deuteranopia = Green/Red (green weakness, Deuteranopia)
.protanopia = Red/Green (red weakness, Protanopia)
.tritanopia = Blue/Yellow (blue weakness, Tritanopia)
## Desktop
desktop = Desktop
## Desktop: Wallpaper
wallpaper = Wallpaper
.change = Change image every
.fit = Wallpaper fit
.folder-dialog = Choose wallpaper folder
.image-dialog = Choose wallpaper image
.plural = Wallpapers
.same = Same wallpaper on all displays
.slide = Slideshow
add-color = Add color
add-image = Add image
all-displays = All displays
colors = Colors
dialog-add = Add
fill = Fill
fit-to-screen = Fit to screen
open-new-folder = Open new folder
recent-folders = Recent folders
x-minutes = { $number } { $number ->
[one] minute
*[other] minutes
}
x-hours = { $number } { $number ->
[one] hour
*[other] hours
}
never = Never
## Desktop: Appearance
appearance = Appearance
accent-color = Accent color
app-background = Window background
auto = Auto
close = Close
color-picker = Color picker
copied-to-clipboard = Copied to clipboard
copy-to-clipboard = Copy to clipboard
dark = Dark
export = Export
hex = Hex
import = Import
light = Light
mode-and-colors = Mode and colors
recent-colors = Recent colors
reset-to-default = Reset to default
rgb = RGB
window-hint-accent = Active window hint color
window-hint-accent-toggle = Use theme accent color as active window hint
auto-switch = Automatically switch between light and dark modes
.sunrise = Switches to light mode at sunrise
.sunset = Switches to dark mode at sunset
.next-sunrise = Switches to light mode at next sunrise
.next-sunset = Switches to dark mode at next sunset
shadows-floating = Floating windows
.clip = Match system corners and apply shadows
shadows-tiling = Tiled windows
.clip = Match system corners
.shadow = Apply shadows
container-background = Container background
.desc-detail = Container background color is used for navigation sidebar, side drawer, dialogs and similar widgets. By default, container background color is automatically derived from the window background.
.reset = Reset to auto
.desc = Used for navigation sidebar, side drawer, dialogs and similar widgets
control-tint = Control component tint
.desc = Used for backgrounds of standard buttons, search inputs, text inputs, and similar components
frosted = Frosted glass effect on system interface
.desc = Applies background blur to panel, dock, applets, launcher, and application library
enable-export = Apply current theme to GNOME apps
.desc = Not all toolkits support auto-switching. Non-COSMIC apps may need to be restarted after a theme change.
icon-theme = Icon theme
.desc = Applies a different set of icons to applications
text-tint = Interface text tint
.desc = Used to derive interface text colors that have sufficient contrast on various surfaces
style = Style
.round = Round
.slightly-round = Slightly round
.square = Square
interface-density = Interface density
.comfortable = Comfortable
.compact = Compact
.spacious = Spacious
window-management-appearance = Window management
.active-hint = Active window hint size
.gaps = Gaps around tiled windows
### Experimental
experimental-settings = Experimental settings
icons-and-toolkit = Icons and toolkit theming
interface-font = System font
monospace-font = Monospace font
shadow-and-corners = Window shadow and corners
## Desktop: Notifications
notifications = Notifications
## Desktop: Panel
panel = Panel
add = Add
add-applet = Add applet
all = All
applets = Applets
center-segment = Center segment
place-here = Place applets here
end-segment = End segment
large = Large
no-applets-found = No applets found...
panel-bottom = Bottom
panel-left = Left
panel-right = Right
panel-top = Top
search-applets = Search applets...
small = Small
start-segment = Start segment
panel-appearance = Appearance
.match = Match desktop
.light = Light
.dark = Dark
panel-behavior-and-position = Behavior and positions
.autohide = Automatically hide panel
.dock-autohide = Automatically hide dock
.position = Position on screen
.display = Show on display
panel-style = Style
.anchor-gap = Gap between panel and screen edges
.dock-anchor-gap = Gap between dock and screen edges
.extend = Extend panel to screen edges
.dock-extend = Extend dock to screen edges
.appearance = Appearance
.size = Size
.background-opacity = Background opacity
panel-applets = Configuration
.dock-desc = Configure dock applets
.desc = Configure panel applets
panel-missing = Panel configuration is missing
.desc = The panel configuration file is missing due to use of a custom configuration or it is corrupted.
.fix = Reset to default
## Desktop: Dock
dock = Dock
## Desktop: Window management
window-management = Window management
super-key = Super key action
.launcher = Open Launcher
.workspaces = Open Workspaces
.applications = Open Applications
.disable = Disable
edge-gravity = Floating windows gravitate to nearby edges
window-controls = Window controls
.maximize = Show maximize button
.minimize = Show minimize button
.active-window-hint = Show active window hint
focus-navigation = Focus navigation
.focus-follows-cursor = Focus follows cursor
.focus-follows-cursor-delay = Focus follows cursor delay in ms
.cursor-follows-focus = Cursor follows focus
## Desktop: Workspaces
workspaces = Workspaces
workspaces-overview = Workspaces overview
.action-on-typing = Action on typing
.none = None
.launcher = Open Launcher
.applications = Open Applications
workspaces-behavior = Workspace behavior
.dynamic = Dynamic workspaces
.dynamic-desc = Automatically removes empty workspaces.
.fixed = Fixed number of Workspaces
.fixed-desc = Add or remove workspaces in the overview.
workspaces-multi-behavior = Multi-monitor behavior
.span = Workspaces span displays
.separate = Displays have separate workspaces
workspaces-overview-thumbnails = Workspace overview thumbnails
.show-number = Show workspace number
.show-name = Show workspace name
workspaces-orientation = Workspaces orientation
.vertical = Vertical
.horizontal = Horizontal
hot-corner = Hot Corner
.top-left-corner = Enable top-left hot corner for Workspaces
## Displays
-requires-restart = Requires restart
color = Color
.depth = Color depth
.profile = Color profile
.sidebar = Color Profiles
.temperature = Color temperature
display = Displays
.arrangement = Display arrangement
.arrangement-desc = Drag displays to rearrange them
.enable = Enable display
.external = { $size } { $output } external display
.laptop = { $size } laptop display
.options = Display options
.refresh-rate = Refresh rate
.resolution = Resolution
.scale = Scale
.additional-scale-options = Additional scale options
mirroring = Mirroring
.id = Mirroring { $id }
.dont = Don't mirror
.mirror = Mirror { $display }
.project = Project to { $display ->
[all] all displays
*[other] { $display }
}
.project-count = Projecting to { $count} other { $count ->
[1] display
*[other] displays
}
night-light = Night light
.auto = Automatic (sunset to sunrise)
.desc = Reduce blue light with warmer colors
orientation = Orientation
.standard = Standard
.rotate-90 = Rotate 90°
.rotate-180 = Rotate 180°
.rotate-270 = Rotate 270°
vrr = Variable refresh rate
.enabled = Enabled
.force = Always
.auto = Automatic
.disabled = Disabled
scheduling = Scheduling
.manual = Manual schedule
dialog = Dialog
.title = Keep these display settings?
.keep-changes = Keep changes
.change-prompt = Settings changes will automatically revert in { $time } seconds.
.revert-settings = Revert settings
## Sound
sound = Sound
sound-output = Output
.volume = Output volume
.device = Output device
.test = Test
.level = Output level
.config = Configuration
.balance = Balance
.left = Left
.right = Right
sound-input = Input
.volume = Input volume
.device = Input device
.level = Input level
amplification = Amplification
.desc = Allows raising the volume to 150%
sound-alerts = Alerts
.volume = Alerts volume
.sound = Alerts sound
sound-applications = Applications
.desc = Application volumes and settings
# No speaker, headphones, or microphone plugged into sound card port
sound-device-port-unplugged = Unplugged
sound-hd-audio = HD Audio
sound-usb-audio = USB Audio
# Profiles for sound card devices
sound-device-profiles = Device profiles
# Power & Battery settings page
power = Power & battery
battery = Battery
.minute = { $value } { $value ->
[one] minute
*[other] minutes
}
.hour = { $value } { $value ->
[one] hour
*[other] hours
}
.day = { $value } { $value ->
[one] day
*[other] days
}
.less-than-minute = Less than a minute
.and = and
.remaining-time = { $time } until { $action ->
[full] full
*[other] empty
}
connected-devices = Connected devices
.unknown = Unknown device
power-mode = Power mode
.battery = Extended battery life
.battery-desc = Reduced power usage and silent performance
.balanced = Balanced
.balanced-desc = Quiet performance and moderate power usage
.performance = High performance
.performance-desc = Peak performance and power usage
.no-backend = Backend not found. Install system76-power or power-profiles-daemon.
power-saving = Power saving options
.turn-off-screen-after = Turn off the screen after
.auto-suspend = Automatic suspend
.auto-suspend-ac = Automatic suspend when plugged in
.auto-suspend-battery = Automatic suspend on battery power
## Input
acceleration-desc = Automatically adjusts tracking sensitivity based on speed
disable-while-typing = Disable while typing
input-devices = Input devices
primary-button = Primary button
.desc = Sets the order of physical buttons
.left = Left
.right = Right
scrolling = Scrolling
.two-finger = Scroll with two fingers
.edge = Scroll along the edge with one finger
.speed = Scrolling speed
.natural = Natural scrolling
.natural-desc = Scroll the content, instead of the view
## Input: Keyboard
slow = Slow
fast = Fast
short = Short
long = Long
keyboard = Keyboard
keyboard-sources = Input Sources
.desc = Input sources can be switched using Super+Space key combination. This can be customized in the keyboard shortcut settings.
.move-up = Move up
.move-down = Move down
.settings = Settings
.view-layout = View keyboard layout
.remove = Remove
.add = Add input source
keyboard-special-char = Special Character Entry
.alternate = Alternate characters key
.compose = Compose key
.compose-desc = The compose key allows a wide variety of characters to be entered. To use it, press compose and then a sequence of characters. For example, compose key followed by C and o will enter ©, while compose key followed by a and ‘ will enter á.
.caps = Caps Lock key
keyboard-typing-assist = Typing
.repeat-rate = Repeat rate
.repeat-delay = Repeat delay
keyboard-numlock-boot = Numlock
.boot-state = State on boot
.last-boot = Last boot
.on = On
.off = Off
.set = Set numlock boot state
added = Added
type-to-search = Type to search...
no-search-results = No networks match your search.
show-extended-input-sources = Show extended input sources
## Input: Keyboard: Shortcuts
keyboard-shortcuts = Keyboard shortcuts
.desc = View and customize shortcuts
add-another-keybinding = Add another keybinding
cancel = Cancel
command = Command
custom = Custom
debug = Debug
disabled = Disabled
input-source-switch = Switch keyboard language input source
migrate-workspace-prev = Migrate workspace to previous output
migrate-workspace-next = Migrate workspace to next output
migrate-workspace = Migrate workspace to output { $direction ->
*[down] down
[left] left
[right] right
[up] up
}
navigate = Navigate
replace = Replace
shortcut-name = Shortcut name
system-controls = System controls
terminate = Terminate
toggle-stacking = Toggle window stacking
type-key-combination = Type key combination
custom-shortcuts = Custom shortcuts
.add = Add shortcut
.context = Add custom shortcut
.none = No custom shortcuts
modified = { $count } modified
nav-shortcuts = Navigation
.prev-output = Focus previous output
.next-output = Focus next output
.last-workspace = Focus last workspace
.prev-workspace = Focus previous workspace
.next-workspace = Focus next workspace
.focus = Focus window { $direction ->
*[down] down
[in] in
[left] left
[out] out
[right] right
[up] up
}
.output = Switch to output { $direction ->
*[down] down
[left] left
[right] right
[up] up
}
.workspace = Switch to workspace { $num }
manage-windows = Manage windows
.close = Close window
.maximize = Maximize window
.fullscreen = Fullscreen window
.minimize = Minimize window
.resize-inwards = Resize window inwards
.resize-outwards = Resize window outwards
.toggle-sticky = Toggle sticky window
move-windows = Move windows
.direction = Move window { $direction ->
*[down] down
[left] left
[right] right
[up] up
}
.display = Move window one monitor { $direction ->
*[down] down
[left] left
[right] right
[up] up
}
.workspace = Move window one workspace { $direction ->
*[below] below
[left] left
[right] right
[above] above
}
.workspace-num = Move window to workspace { $num }
.prev-workspace = Move window to prev workspace
.next-workspace = Move window to next workspace
.last-workspace = Move window to last workspace
.next-display = Move window to next display
.prev-display = Move window to prev display
.send-to-prev-workspace = Move window to previous workspace
.send-to-next-workspace = Move window to next workspace
system-shortcut = System
.app-library = Open the app library
.brightness-down = Decrease display brightness
.brightness-up = Increase display brightness
.display-toggle = Toggle internal display
.home-folder = Open home folder
.keyboard-brightness-down = Decrease keyboard brightness
.keyboard-brightness-up = Increase keyboard brightness
.launcher = Open the Launcher
.log-out = Log Out
.lock-screen = Lock the screen
.mute = Mute audio output
.mute-mic = Mutes microphone input
.play-pause = Play/pause
.play-next = Next track
.play-prev = Previous track
.poweroff = Power off
.screenshot = Take a screenshot
.suspend = Suspend
.terminal = Open a terminal
.touchpad-toggle = Toggle touchpad
.volume-lower = Decrease audio output volume
.volume-raise = Increase audio output volume
.web-browser = Open a web browser
.window-switcher = Switch between open windows
.window-switcher-previous = Switch between open windows reversed
.workspace-overview = Open the workspace overview
window-tiling = Window tiling
.horizontal = Set horizontal orientation
.vertical = Set vertical orientation
.swap-window = Swap window
.toggle-tiling = Toggle window tiling
.toggle-stacking = Toggle window stacking
.toggle-floating = Toggle window floating
.toggle-orientation = Toggle orientation
replace-shortcut-dialog = Replace shortcut?
.desc = { $shortcut } is used by { $name }. If you replace it, { $name } will be disabled.
zoom-in = Zoom In
zoom-out = Zoom Out
## Input: Mouse
mouse = Mouse
.speed = Mouse speed
.acceleration = Enable mouse acceleration
## Input: Touchpad
click-behavior = Click Behavior
.click-finger = Secondary click with two fingers and middle-click with three fingers
.button-areas = Secondary click in bottom right corner and middle-click in bottom center
pinch-to-zoom = Pinch to zoom
.desc = Use two fingers to zoom into content, for applications that support zoom
tap-to-click = Tap to click
.desc = Enables single-finger tap for primary click, two-finger tap for secondary click, and three-finger tap for middle click
touchpad = Touchpad
.acceleration = Enable touchpad acceleration
.speed = Touchpad speed
## Input: Gestures
gestures = Gestures
.four-finger-down = Four-finger swipe down
.four-finger-left = Four-finger swipe left
.four-finger-right = Four-finger swipe right
.four-finger-up = Four-finger swipe up
.three-finger-any = Three-finger swipe any direction
switch-workspaces = Switch workspaces
.horizontal = Four-finger swipe left/right
.vertical = Four-finger swipe up/down
switch-between-windows = Switch between windows
open-application-library = Open Application Library
open-workspaces-view = Open Workspaces Overview
## Time & language
time = Time & language
time-date = Date & time
.auto = Set automatically
.auto-ntp = Date & time will update automatically when the time zone is set
time-zone = Time zone
.auto = Automatic time zone
.auto-info = Requires location services and internet access
time-format = Date & time format
.twenty-four = 24-hour time
.show-seconds = Show seconds
.first = First day of week
.show-date = Show date in the time applet
.friday = Friday
.saturday = Saturday
.sunday = Sunday
.monday = Monday
time-region = Region & language
formatting = Formatting
.dates = Dates
.time = Time
.date-and-time = Date & time
.numbers = Numbers
.measurement = Measurement
.paper = Paper
preferred-languages = Preferred languages
.desc = The order of languages determines which language is used for the user interface. Changes take effect on next login.
add-language = Add language
.context = Add Language
install-additional-languages = Install additional languages
region = Region
## Applications
applications = Applications
## Applications: Default applications
default-apps = Default Applications
.web-browser = Web browser
.file-manager = File manager
.mail-client = Mail client
.music = Music
.video = Video
.photos = Photos
.calendar = Calendar
.terminal = Terminal
.other-associations = Other associations
.text-editor = Text Editor
.not-installed = Not installed
## Applications: Startup applications
startup-apps = Startup applications
.add = Add app
.user = Applications launched when you log in
.none = No startup applications added
.remove-dialog-title = Remove { $name }?
.remove-dialog-description = Remove this startup application?
.add-startup-app = Add startup application
## Applications: Legacy applications
legacy-applications = X11 applications compatibility
legacy-app-global-shortcuts = Global shortcuts in X11 applications
.desc = Global shortcuts allows keystrokes and mouse button events performed in applications to be recognized by other applications for features like push-to-talk or push-to-mute. By default, Global shortcuts is disabled in X11 applications to ensure other applications can’t monitor for keyboard and mouse events containing sensitive information.
.none = No keys
.modifiers = Modifiers (Super, Shift, Control, Alt)
.combination = All keys while modifiers Super, Control or Alt are being pressed
.all = All keys
.mouse = Mouse button events in X11 applications
legacy-app-scaling = X11 window system application scaling
.scaled-gaming = Optimize for gaming and full-screen apps
.gaming-description = X11 applications may appear slightly larger/smaller compared to Wayland apps
.scaled-applications = Optimize for applications
.applications-description = Games and full-screen X11 apps may not match your display resolution
.scaled-compatibility = Maximum compatibility mode
.compatibility-description = X11 applications may appear blurry on HiDPI screens
.preferred-display = Preferred display for games and full screen X11 applications
.no-display = None
## System
system = System & accounts
## System: About
about = About
about-device = Device name
.desc = This name appears to other network or Bluetooth devices