-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
strings.xml
executable file
·1187 lines (1138 loc) · 84.7 KB
/
strings.xml
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
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<string name="app_name" translatable="false">SmartPack-Kernel Manager</string>
<string name="checking_info">Checking info…</string>
<string name="checking_root">Checking root access</string>
<string name="searching_busybox">Searching for busybox</string>
<string name="collecting_info">Collecting info</string>
<string name="no_root">No root</string>
<string name="no_busybox">No busybox</string>
<string name="open">Open %s</string>
<!-- Security -->
<string name="select_picture">Select Picture</string>
<string name="no_picture">No Picture</string>
<string name="went_wrong">Something went wrong!</string>
<string name="press_back_again_exit">Press back again to exit</string>
<string name="ok">OK</string>
<string name="yes">YES</string>
<string name="unknown">Unknown</string>
<string name="warning">Warning!</string>
<string name="apply_on_boot">Apply on boot</string>
<string name="apply_on_boot_text">Applying settings in %d seconds.</string>
<string name="apply_on_boot_complete">Applying settings completed.</string>
<string name="apply_on_boot_canceled">Applying settings canceled.</string>
<string name="not_in_range">Not in range</string>
<string name="options">Options</string>
<string name="more">More</string>
<!-- Permissions Denied -->
<string name="permission_denied_write_storage">Permission denied for writing to storage!</string>
<!-- Editor -->
<string name="save">Save</string>
<!-- Units -->
<string name="mhz">MHz</string>
<string name="celsius">°C</string>
<string name="fahrenheit">°F</string>
<string name="mb">MB</string>
<string name="ms">ms</string>
<string name="mv">mV</string>
<string name="min">min</string>
<string name="mah">mAh</string>
<string name="ma">mA</string>
<string name="kb">kB</string>
<string name="px">px</string>
<!-- Special signs -->
<string name="minus" translatable="false">-</string>
<string name="plus" translatable="false">+</string>
<!-- Headers -->
<string name="statistics">Statistics</string>
<string name="kernel">Kernel</string>
<string name="tools">Tools</string>
<string name="other">Other</string>
<!-- Menus -->
<string name="overall">Overall</string>
<string name="device">Device</string>
<string name="memory">Memory</string>
<string name="inputs">Inputs</string>
<string name="cpu">CPU</string>
<string name="cpu_hotplug">CPU Hotplug</string>
<string name="cpu_voltage">CPU Voltage</string>
<string name="gpu">GPU</string>
<string name="thermal">Thermal</string>
<string name="battery">Battery</string>
<string name="sound">Sound</string>
<string name="screen">Screen</string>
<string name="wake">Wake Gestures</string>
<string name="led">Display and LED</string>
<string name="io_scheduler">I/O Scheduler</string>
<string name="ksm">KSM</string>
<string name="uksm">UKSM</string>
<string name="lmk">Low Memory Killer</string>
<string name="virtual_memory">Virtual Memory</string>
<string name="entropy">Entropy</string>
<string name="misc">Misc</string>
<string name="custom_controls">Custom Controls</string>
<string name="backup">Backup</string>
<string name="build_prop_editor">Build prop Editor</string>
<string name="profile">Profile</string>
<string name="script_manger">Script Manager</string>
<string name="on_boot">On Boot</string>
<string name="settings">Settings</string>
<string name="smartpack">SmartPack</string>
<string name="about">About</string>
<string name="contributors">Contributors</string>
<string name="faq">FAQ</string>
<!-- Overall -->
<string name="overall_summary">Welcome to the home page of SmartPack-Kernel Manager. This page provides very basic information of your device. Advanced kernel tweaking options can be found on respective pages.</string>
<string name="cpu_times">CPU Times</string>
<string name="offline">Offline</string>
<string name="core">Core %d</string>
<string name="gpu_freq">GPU Frequency</string>
<string name="refresh">Refresh</string>
<string name="reset">Reset</string>
<string name="restore">Restore</string>
<string name="restore_sure_message">Are you sure to restore %s?</string>
<string name="cluster_big" translatable="false">big</string>
<string name="cluster_middle" translatable="false">Middle</string>
<string name="cluster_little" translatable="false">LITTLE</string>
<string name="deep_sleep">Deep sleep</string>
<string name="uptime">Uptime</string>
<string name="error_frequencies">Failed to load frequencies</string>
<string name="unused_frequencies">Unused Frequencies</string>
<!-- Device -->
<string name="processor">Processor</string>
<string name="vendor">Vendor</string>
<string name="features">Features</string>
<string name="ram">RAM</string>
<string name="android_version">Android Version</string>
<string name="android_api_level">Android SDK</string>
<string name="android_codename">Android Codename</string>
<string name="fingerprint">Fingerprint</string>
<string name="build_display_id">Build Display ID</string>
<string name="baseband">Baseband</string>
<string name="rom">ROM</string>
<string name="bootloader">Bootloader</string>
<string name="trustzone" translatable="false">TrustZone</string>
<string name="hardware">Hardware</string>
<string name="architecture">Architecture</string>
<string name="treble_status">Project Treble Support</string>
<string name="gpu_lib">GPU System Library</string>
<!-- Inputs -->
<string name="bus">Bus</string>
<string name="product">Product</string>
<string name="sysfs" translatable="false">Sysfs</string>
<string name="handlers">Handlers</string>
<!-- CPU -->
<string name="cpu_note">Please note that some features on this page, such as CPU Cores and Frequency control, are largely controlled by system processes. As a result, changes made on this page may not persist on many devices.</string>
<string name="cores_singular">%d core</string>
<string name="cores">%d cores</string>
<string name="cpu_usage">CPU Usage</string>
<string name="cpu_usage_string">%s CPU Usage</string>
<string name="no_offline_core">You can\'t offline this core!</string>
<string name="cpu_max_freq">CPU Maximum Frequency</string>
<string name="cpu_max_freq_summary">Set the maximum frequency the CPU scales up to.</string>
<string name="cpu_min_freq">CPU Minimum Frequency</string>
<string name="cpu_min_freq_summary">Set the minimum frequency the CPU scales down to.</string>
<string name="cpu_max_screen_off_freq">CPU Maximum Screen Off Frequency</string>
<string name="cpu_max_screen_off_freq_summary">Set the maximum frequency the CPU scales up to when the screen is off.</string>
<string name="cpu_governor">CPU Governor</string>
<string name="cpu_governor_summary">The CPU governor determines how the CPU behaves in response to changes in workload. Changing the governor will impact how the CPU scales through the frequency steps available to your CPU.</string>
<string name="cpu_governor_tunables">CPU Governor Tunables</string>
<string name="governor_tunables_summary">The various configuration items which are Governor-dependent.</string>
<string name="cpu_governor_tunables_read_error">Failed to read current governor of CPU.\n\nIf you are using a QCOM big.LITTLE device this is a known problem. The system forces the CPU to turn off cores making it extremely hard to read out CPU specific stats. Try to select this option again. The CPU sometimes refuses to turn on a core.</string>
<string name="tunables_error">%s is not tuneable</string>
<string name="tunables_title">Fine-tune the configuration items that are associated with \'%s\'</string>
<string name="manual">Manual</string>
<string name="mc_power_saving">Multicore Power Saving</string>
<string name="mc_power_saving_summary">Try to group tasks into the least cores possible.</string>
<string name="disabled">Disabled</string>
<string name="enabled">Enabled</string>
<string name="aggressive">Aggressive</string>
<string name="power_saving_wq">Schedule workqueues on awake CPUs to save power.</string>
<string name="cfs_scheduler_policy">CFS Scheduler Policy</string>
<string name="cfs_scheduler_policy_summary">Policy decides the CFS scheduler how to balance tasks onto different CPU unit.</string>
<string name="cpu_quiet">CPUQuiet</string>
<string name="cpu_quiet_summary">CPUQuiet implements pluggable policies for forcing cpu cores into quiescent state. Appropriate policies will save power without hurting performance.</string>
<string name="cpu_quiet_governor">CPUQuiet Governor</string>
<string name="msm_limiter">MSM Limiter</string>
<string name="msm_limiter_summary">Enable MSM Limiter by neobuddy89.</string>
<string name="freq_control">Frequency Control</string>
<string name="freq_control_summary">Allow MSM Limiter to Control the Frequencies of your CPUs.</string>
<!-- CPU Boost -->
<string name="cpu_boost">CPU Boost</string>
<string name="stune_boost">Stune Boost</string>
<string name="cpu_boost_settings">CPU Boost Settings</string>
<string name="debug_mask">Debug Mask</string>
<string name="debug_mask_summary">Allows you to activate debug mask for operations.</string>
<string name="interval">Interval</string>
<string name="interval_summary">Minimum interval a CPU is boosted.</string>
<string name="sync_threshold">Sync Threshold</string>
<string name="sync_threshold_summary">When CPU loading crosses the preset threshold, the current CPU is raised to this frequency.</string>
<string name="input_interval">Input Interval</string>
<string name="input_interval_summary">Minimum interval a CPU is boosted when input is detected.</string>
<string name="sched_boost_Input">Sched Boost On Input</string>
<string name="input_boost_freq">Input Boost Frequency</string>
<string name="input_boost_freq_core">Input Boost Frequency Core %d</string>
<string name="input_boost_freq_summary">CPU frequency to be boosted to this frequency upon input detection.</string>
<string name="wakeup_boost">Wakeup Boost</string>
<string name="wakeup_boost_summary">Wakeup Boost is similar to input boost but it occurs when screen is turned on.</string>
<string name="hotplug_boost">Hotplug Boost</string>
<string name="hotplug_boost_summary">Hotplug Boost is similar to input boost but it occurs when CPUs go online.</string>
<string name="touch_boost">Touch Boost</string>
<string name="touch_boost_summary">This will boost your minimum CPU speed if you touch the screen or press a button.</string>
<string name="cpu_input_boost">CPU Input Boost</string>
<string name="cpu_input_boost_summary">Enable CPU Input Boost, an event-based CPU boosting driver by Sultanxda.</string>
<string name="cpuiboost_duration">Input Boost Duration</string>
<string name="cpuiboost_duration_summary">Set CPU Input Boost duration</string>
<string name="wake_boost_duration">Wake Boost Duration</string>
<string name="cluster_return_freq">Cluster Return Frequency</string>
<string name="dyn_stune_boost">Dynamic Stune Boost</string>
<string name="stune_boost_ms">Stune Boost Duration</string>
<string name="stune_boost_sett">Stune Boost Settings</string>
<string name="powerhal">Power HAL</string>
<string name="powerhal_tunables">Power HAL Tunables</string>
<!-- CPU Hotplug -->
<string name="hotplug_warning">More than one hotplugging system is enabled!\nPlease only use one.</string>
<string name="mpdecision">MPDecision</string>
<string name="mpdecision_summary">Qualcomm\'s hotplugging solution. You might get problems with changing frequencies when this is enabled.</string>
<string name="intelliplug">IntelliPlug</string>
<string name="intelliplug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by faux123.</string>
<string name="cpu_hotplug_profile_summary">The number in the parentheses indicates the amount of cores online at any time.</string>
<string name="insanity">InSaNiTy</string>
<string name="balanced">Balanced</string>
<string name="performance">Performance</string>
<string name="conservative">Conservative</string>
<string name="eco_insanity">Eco InSaNiTy</string>
<string name="eco_performance">Eco Performance</string>
<string name="eco_conservative">Eco Conservative</string>
<string name="tri">Tri</string>
<string name="eco">Eco</string>
<string name="strict">Strict</string>
<string name="eco_mode">Eco Mode</string>
<string name="eco_mode_summary">Battery saving mode for IntelliPlug.</string>
<string name="hysteresis">Hysteresis Value</string>
<string name="hysteresis_summary">The lower it is, the faster response.</string>
<string name="cpu_threshold">CPU Threshold</string>
<string name="cpu_threshold_summary">The higher, the less CPUs are used.</string>
<string name="suspend">Suspend</string>
<string name="suspend_summary">Prevent to suspend.</string>
<string name="cpus_boosted">CPUs Boosted</string>
<string name="cpus_boosted_summary">Maximum number of CPUs boosted at the same time.</string>
<string name="min_cpu_online">Minimum CPU Online</string>
<string name="min_cpu_online_summary">Minimum number of CPUs that will be online.</string>
<string name="max_cpu_online">Maximum CPU Online</string>
<string name="max_cpu_online_summary">Maximum number of CPUs that will be online.</string>
<string name="max_cpu_online_screen_off">Maximum CPU Screen Off</string>
<string name="max_cpu_online_screen_off_summary">Maximum number of CPUs that will be online when the screen is off.</string>
<string name="suspend_defer_time">Suspend Defer Time</string>
<string name="defer_sampling">Defer Sampling</string>
<string name="boost_lock_duration">Boost Lock Duration</string>
<string name="boost_lock_duration_summary">Minimum interval a CPU is boosted.</string>
<string name="down_lock_duration">Down Lock Duration</string>
<string name="down_lock_duration_summary">Minimum interval a CPU is kept online.</string>
<string name="fshift">FShift</string>
<string name="lazyplug">LazyPlug</string>
<string name="lazyplug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by arter97.</string>
<string name="lazy">Lazy</string>
<string name="possible_cpu_cores_summary">Possible CPU Cores that lazyplug can use.</string>
<string name="blu_plug">Blu_Plug</string>
<string name="blu_plug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by Code_Blue team.</string>
<string name="powersaver_mode">Powersaver Mode</string>
<string name="powersaver_mode_summary">Sets 1 CPU maximum online with frequency @1728MHz.</string>
<string name="up_threshold">Up Threshold</string>
<string name="up_threshold_summary">Over this threshold the driver will put one more core online.</string>
<string name="up_timer_cnt">Up Timer Control</string>
<string name="up_timer_cnt_summary">Control timer for up CPUs.</string>
<string name="down_timer_cnt">Down Timer Control</string>
<string name="down_timer_cnt_summary">Control timer for down CPUs.</string>
<string name="mako_hotplug">Mako Hotplug</string>
<string name="mako_hotplug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by franciscofranco.</string>
<string name="cpus_on_touch">CPUs on touch</string>
<string name="cpus_on_touch_summary">Number of CPUs online when touching screen or pressing button.</string>
<string name="cpu_freq_unplug_limit">CPU Frequency Unplug Limit</string>
<string name="first_level">First Level</string>
<string name="first_level_summary">The threshold to online all CPUs.</string>
<string name="high_load_counter">High Load Counter</string>
<string name="load_threshold">Load Threshold</string>
<string name="load_threshold_summary">The threshold to online all CPUs.</string>
<string name="max_load_counter">Max Load Counter</string>
<string name="min_time_cpu_online">Min Time CPU Online</string>
<string name="timer">Timer</string>
<string name="screen_off_single_cpu">Screen off Single CPU</string>
<string name="screen_off_single_cpu_summary">Use only one CPU when screen is off.</string>
<string name="delay">Delay</string>
<string name="delay_summary">Time between checks.</string>
<string name="msm_hotplug">MSM Hotplug</string>
<string name="msm_hotplug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by myfluxi.</string>
<string name="history_size">History Size</string>
<string name="history_size_summary">Number of samples taken in consideration for average load across CPUs. Lower means quicker/more erratic.</string>
<string name="update_rate">Update Rate</string>
<string name="update_rate_summary">Interval between taking samples of load across CPUs. Lower means quicker/more erratic.</string>
<string name="fast_lane_load">Fast Lane Load</string>
<string name="fast_lane_load_summary">Improve latencies by instantly putting online all CPUs if current load on any CPU is above a certain threshold.</string>
<string name="fast_lane_min_freq">Fast Lane Min Frequency</string>
<string name="fast_lane_min_freq_summary">Sets the minimum frequency the CPU scales down to when fast lane reaches the above load.</string>
<string name="offline_load">Offline Load</string>
<string name="offline_load_summary">Don\'t offline a CPU if it drops under the lower levels up threshold load.</string>
<string name="alucard_hotplug">Alucard Hotplug</string>
<string name="alucard_hotplug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by Alucard.</string>
<string name="sampling_rate">Sampling Rate</string>
<string name="cpu_down_rate">CPU Down Rate</string>
<string name="cpu_up_rate">CPU Up Rate</string>
<string name="io_is_busy">IO is Busy</string>
<string name="io_is_busy_summary">Used to make the hotplug consider the I/O time as CPU load time.</string>
<string name="msm_mpdecision_hotplug">MSM MPDecision Hotplug</string>
<string name="bricked_hotplug">Bricked Hotplug</string>
<string name="mb_hotplug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by show-p1984.</string>
<string name="idle_frequency">Idle Frequency</string>
<string name="idle_frequency_summary">If the first core is below this frequency, then don\'t plug the other cores.</string>
<string name="touch_boost_time">Touch Boost Time</string>
<string name="touch_boost_time_summary">How long the CPU should be boosted after touching the screen.</string>
<string name="boost_frequency_core">Boost Frequency Core %d</string>
<string name="start_delay">Start delay</string>
<string name="start_delay_summary">Time delay in milliseconds until Hotplug starts to work.</string>
<string name="pause">Pause</string>
<string name="pause_summary">If something else plugs in the CPU, fall asleep for this much milliseconds of time.</string>
<string name="autosmp">AutoSMP</string>
<string name="autosmp_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by mrg666.</string>
<string name="downrate_limits">Downrate Limits</string>
<string name="uprate_limits">Uprate Limits</string>
<string name="cycle_down">Cycle Down</string>
<string name="cycle_down_summary">Cycles to wait after the last hotplug event to unplug another core.</string>
<string name="cycle_up">Cycle Up</string>
<string name="cycle_up_summary">Cycles to wait after the last hotplug event to plug another core.</string>
<string name="core_control">Core Control</string>
<string name="min_boost_freq">Minimum Boost Frequency</string>
<string name="hotplug_suspend">Hotplug Suspend</string>
<string name="hcube">H-Cube</string>
<string name="hcube_summary">OnePlus\' modified Core Control.</string>
<string name="min_cpus_big">Minimum CPUs big</string>
<string name="min_cpus_big_summary">Minimum amount of big CPUs that should be online.</string>
<string name="busy_down_threshold">Busy Down Threshold</string>
<string name="busy_down_threshold_summary">Threshold when big CPUs should be turned off.</string>
<string name="busy_up_threshold">Busy Up Threshold</string>
<string name="busy_up_threshold_summary">Threshold when big CPUs should be turned on.</string>
<string name="task_threshold">Task Threshold</string>
<string name="task_threshold_summary">Threshold when balancing tasks into big CPU units.</string>
<string name="offline_delay">Offline Delay</string>
<string name="offline_delay_summary">Time before turning off a CPU.</string>
<string name="online_delay">Online Delay</string>
<string name="online_delay_summary">Time before turning on a CPU.</string>
<string name="msm_sleeper">MSM Sleeper</string>
<string name="msm_sleeper_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by flar2.</string>
<string name="max_down_count">Offline Core Threshold</string>
<string name="max_up_count">Online Core Threshold</string>
<string name="suspend_max_online">Max Online Cores during suspend</string>
<string name="hotplug_frequency">Hotplug Frequency</string>
<string name="hotplug_load">Hotplug Load</string>
<string name="hotplug_rate">Hotplug Rate</string>
<string name="hotplug_rq">Hotplug RQ</string>
<string name="aio_hotplug">AiO Hotplug</string>
<string name="aio_hotplug_summary">All in One HotPlug for Qualcomm devices. Developed by Shoaib0597.</string>
<string name="max_cpu_online_big">Maximum big CPUs Online</string>
<string name="max_cpu_online_big_summary">Maximum number of big CPUs that will be online.</string>
<string name="max_cpu_online_little">Maximum LITTLE CPUs Online</string>
<string name="max_cpu_online_little_summary">Maximum number of LITTLE CPUs that will be online.</string>
<string name="nr_max_cpu">Maximum Online CPUs</string>
<string name="nr_min_cpu">Minimum Online CPUs</string>
<string name="adv_sett">Advanced Settings</string>
<string name="thunder_plug">ThunderPlug</string>
<string name="thunder_plug_summary">An in-kernel replacement for Qualcomm\'s MPDecision. Developed by varun.chitre15</string>
<string name="dual_core_mode">Dual-Core Mode</string>
<string name="quad_core_mode">Quad-Core Mode</string>
<string name="endurance_level">Endurance Level</string>
<string name="suspend_cpus">Suspend CPUs</string>
<!-- CPU Voltage -->
<string name="global_offset">Global Offset</string>
<string name="override_vmin">Override Minimum Voltage</string>
<string name="override_vmin_summary">Disable to remove manufacturer limits on undervolting</string>
<!-- GPU -->
<string name="frequencies">Frequencies</string>
<string name="gpu_2d_freq">GPU 2D Frequency</string>
<string name="gpu_2d_max_freq">GPU 2D Maximum Frequency</string>
<string name="gpu_2d_max_freq_summary">Set the maximum 2D frequency the GPU scales up to.</string>
<string name="gpu_max_freq">GPU Maximum Frequency</string>
<string name="gpu_max_freq_summary">Set the maximum frequency the GPU scales up to.</string>
<string name="gpu_min_freq">GPU Minimum Frequency</string>
<string name="gpu_min_freq_summary">Set the minimum frequency the GPU scales down to.</string>
<string name="gpu_2d_governor">GPU 2D Governor</string>
<string name="gpu_2d_governor_summary">Set the 2D governor of the GPU.</string>
<string name="gpu_governor">GPU Governor</string>
<string name="gpu_governor_summary">Set the governor of the GPU.</string>
<string name="gpu_governor_tunables">GPU Governor Tunables</string>
<string name="simple_gpu_algorithm">Simple GPU Algorithm</string>
<string name="simple_gpu_algorithm_summary">An add-on for MSM Adreno TZ GPU Governor. Developed by faux123.</string>
<string name="adrenoboost">AdrenoBoost</string>
<string name="adrenoboost_summary">An add-on for MSM Adreno TZ GPU Governor. Developed by flar2</string>
<string name="devfreq_boost">Devfreq Boost</string>
<string name="devfreq_boost_ms">Boost Duration</string>
<string name="devfreq_boost_ms_summary">Set devfreq boost duration</string>
<string name="devfreq_boost_freq">Boost Frequency</string>
<string name="devfreq_boost_freq_summary">Set devfreq boost frequency</string>
<string name="laziness">Laziness</string>
<string name="laziness_summary">This increases the threshold to ramp up or down GPU frequencies. The lower it is, the more performance you get.</string>
<string name="ramp_thresold">Ramp Thresold</string>
<string name="ramp_thresold_summary">This increases the number of times the GPU governor ramp down requests. The higher it is, the more performance you get.</string>
<string name="adreno_idler">Adreno Idler</string>
<string name="adreno_idler_summary">An efficient workaround for msm-adreno-tz\'s overheads. Developed by arter97.</string>
<string name="down_differential">Down Differential</string>
<string name="down_differential_summary">Threshold for determining if the given workload is idle.</string>
<string name="idle_wait">Idle Wait</string>
<string name="idle_wait_summary">Number of events to wait before ramping down the frequency. The idlewait\'th events before current one must be all idle before Adreno idler ramps down the frequency. This implementation is to prevent micro-lags on scrolling or playing games. Adreno idler will more actively try to ramp down the frequency if this is set to a lower value.</string>
<string name="workload">Workload</string>
<string name="workload_summary">Adreno idler will more actively try to ramp down the frequency if this is set to a higher value.</string>
<string name="gpu_powelevel">GPU Power Level</string>
<string name="gpu_throttling">GPU Throttling</string>
<string name="gpu_throttling_summary">Throttle the GPU when device gets hot.</string>
<!--Thermal-->
<string name="thermal_info">Use only one thermal driver from the following options, using more at the same time may cause unexpected behavior.</string>
<string name="thermald">Thermald</string>
<string name="thermald_summary">Stock thermal driver that prevents device from overheating. This should be disabled if current kernel has an alternative.</string>
<string name="intellithermal">Intellithermal</string>
<string name="intellithermal_summary">An in-kernel replacement for Qualcomm\'s Thermald. Developed by faux123.</string>
<string name="intellithermal_optimized">Intellithermal Optimized</string>
<string name="intellithermal_optimized_summary">An in-kernel replacement for Qualcomm\'s Thermald. Developed by faux123 and alucard_24.</string>
<string name="thermal_debug_mask_summary">Allows you to activate debug mask for thermal operations.</string>
<string name="vdd_restriction">VDD Restriction</string>
<string name="freq_throttle_temp">Frequency Throttle Temperature</string>
<string name="freq_throttle_temp_summary">Temperature to start throttling frequencies.</string>
<string name="cpu_throttle_temp">CPU Throttle Temperature</string>
<string name="cpu_throttle_temp_summary">Temperature to start shutting down CPUs.</string>
<string name="cpu_temp_hysteresis">CPU Temperature Hysteresis</string>
<string name="freq_step">Frequency Step</string>
<string name="immediately_limit_stop">Immediately Limit Stop</string>
<string name="poll">Poll</string>
<string name="poll_summary">Sampling interval to read sensor.</string>
<string name="temp_hysteresis">Temperature Hysteresis</string>
<string name="thermal_limit_low">Thermal Limit Low</string>
<string name="thermal_limit_high">Thermal Limit High</string>
<string name="temp_safety">Temperature Safety</string>
<string name="temp_throttle">Temperature Throttle</string>
<string name="temp_throttle_summary">SoC temperature limit toggle.</string>
<string name="temp_limit">Temperature Limit</string>
<string name="temp_limit_summary">If the temperature goes above, the thermal will throttle the CPU frequency to lower the temperature.</string>
<string name="freq_limit_debug">Frequency Limit Debug</string>
<string name="freq_limit_debug_summary">This allows to debug the CPUs throttle when the temperature reaches maximum.</string>
<string name="temp_limit_min_freq">Temperature Limit Minimum Frequency</string>
<string name="temp_limit_min_freq_summary">The thermal will use this frequency to throttle the maximum temperature.</string>
<string name="allowed_low_low">Phase 1: Allowed Low Low</string>
<string name="allowed_low_high">Phase 1: Allowed Low High</string>
<string name="allowed_low_freq">Phase 1: Allowed Low Frequency</string>
<string name="allowed_mid_low">Phase 2: Allowed Mid Low</string>
<string name="allowed_mid_high">Phase 2: Allowed Mid High</string>
<string name="allowed_mid_freq">Phase 2: Allowed Mid Frequency</string>
<string name="allowed_max_low">Phase 3: Allowed Max Low</string>
<string name="allowed_max_high">Phase 3: Allowed Max High</string>
<string name="allowed_max_freq">Phase 3: Allowed Max Frequency</string>
<string name="check_interval">Check Interval</string>
<string name="shutdown_temp">Shutdown Temperature</string>
<string name="msm_thermal">MSM Thermal</string>
<string name="msm_thermal_simple">Simple Thermal Monitor</string>
<string name="msm_thermal_simple_summary">An in-kernel replacement for Qualcomm\'s Thermald. Developed by Sultanxda.</string>
<string name="usermax_freq">User Maximum Frequency</string>
<string name="freq_mitg_temp">Frequency Mitigation Temperature</string>
<string name="freq_mitg_temp_summary">Threshold temperature to mitigate the CPU max frequency.</string>
<string name="hotplug_temp">Hotplugging Temperature</string>
<string name="hotplug_temp_summary">Threshold temperature to start shutting down cores.</string>
<string name="core_control_mask">Core Control Mask</string>
<string name="core_control_mask_summary">The cpu mask that will be used to determine if a core can be controlled or not (Set 0 to disable).</string>
<string name="freq_control_mask">Frequency Control Mask</string>
<string name="freq_control_mask_summary">The cpu mask that will be used to determine if a core can be used for freq control.</string>
<string name="freq_mit_control_mask">Frequency Mitigation Control Mask</string>
<string name="freq_mit_control_mask_summary">The frequency mitigation bitmask that will be used to determine if KTM should do emergency frequency mitigation for a core or not.</string>
<!-- Battery -->
<string name="capacity">Capacity</string>
<string name="blx">Battery Life eXtender</string>
<string name="blx_summary">Set a limit for the capacity to which the battery will be charged by passing a value between 0 and 100.</string>
<string name="charging_enable">Enable Charging</string>
<string name="charging_enable_summary">Warning! Charging will be stopped immediately if disabled.</string>
<string name="thunder_charge">Thunder Charge</string>
<string name="thunder_charge_summary">Enable Thunder Charge by varun.chitre15</string>
<string name="battery_guru">Battery Guru</string>
<string name="battery_guru_summary">Monitor the battery life of your Android device, prolong it and keep it healthy.</string>
<!-- Advanced Charge Control Interface -->
<string name="acci">Advanced Charge Control Interface</string>
<string name="fast_charge">Fast Charge</string>
<string name="fast_charge_summary">If enabled, the device will charge faster when connected to USB. Select custom mode to charge your device in a custom level. Replug your charger when changing these options.</string>
<string name="otg_enable">OTG Switch</string>
<string name="otg_enable_summary">Permanently enable USB On-The-Go (OTG) mode on supported OnePlus devices.</string>
<string name="usb_fast_charge_summary">Device will charge faster when connected with USB. Replug your charger when changing this option.</string>
<string name="custom_charge">Custom Mode</string>
<string name="charge_level_ac">Charge Level (AC)</string>
<string name="charge_level_usb">Charge Level (USB)</string>
<string name="charge_level_wireless">Charge Level (Wireless)</string>
<string name="charge_level_summary">Choose your Level (mA)</string>
<string name="mtp_fast_charge">MTP while Fast Charge</string>
<string name="mtp_fast_charge_summary">Enable MTP while fast charge</string>
<string name="screen_limit">Screen On Current Limit</string>
<string name="screen_limit_summary">Enable Screen On Current Limit</string>
<string name="stockchargelogic">Set 0 for stock charge logic</string>
<!-- Sound -->
<string name="sound_control">Sound Control</string>
<string name="speaker_leakage">Speaker Driver Leakage</string>
<string name="speaker_leakage_summary">Software workaround to avoid leakage on the speaker driver</string>
<string name="headset_highperf_mode">Headset High Performance Mode</string>
<string name="headphone_gain">Headphone Gain</string>
<string name="speaker_gain">Speaker Gain</string>
<string name="speaker_tuning">Speaker Tuning</string>
<string name="headphone_tpa6165_gain">Headphone Amp Gain (TPA6165 Extension)</string>
<string name="microphone_gain">Microphone Gain</string>
<string name="volume_gain">Volume Gain</string>
<string name="boefflasound">Boeffla Sound</string>
<string name="boefflasound_summary">Turn On/Off Boeffla Sound Engine</string>
<string name="earpiece_gain">Earpiece Gain (Calls)</string>
<string name="faux_sound">Faux Sound</string>
<string name="faux_sound_summary">Turn On/Off Faux Sound Engine</string>
<string name="lock_mic_gain">Lock Microphone Gain</string>
<string name="lock_mic_gain_summary">Prevent modifications to microphone gains</string>
<string name="per_channel_controls">Per-channel controls</string>
<string name="privacy_mode">Privacy Mode</string>
<string name="dac_direct">DAC Direct</string>
<string name="dac_oversampling">DAC OverSampling</string>
<string name="fll_tuning">FLL Tuning</string>
<string name="mono_downmix">Mono DownMix</string>
<!-- Screen -->
<string name="screen_color">Screen Color</string>
<string name="red">Red</string>
<string name="green">Green</string>
<string name="blue">Blue</string>
<string name="white">White</string>
<string name="flash_led">Flash LED intensity</string>
<string name="yellow">Yellow</string>
<string name="min_rgb">Minimum RGB Value</string>
<string name="invert_screen">Invert Screen</string>
<string name="saturation_intensity">Saturation Intensity</string>
<string name="grayscale_mode">Grayscale Mode</string>
<string name="screen_hue">Screen Hue</string>
<string name="screen_hue_summary">You might get problems with MSM8x26 SoC when setting a high value.</string>
<string name="screen_value">Screen Value</string>
<string name="screen_contrast">Screen Contrast</string>
<string name="high_brightness_mode">High Brightness Mode</string>
<string name="srgb">sRGB</string>
<string name="gamma">Gamma</string>
<string name="red_greys">Red Greys</string>
<string name="red_mids">Red Mids</string>
<string name="red_blacks">Red Blacks</string>
<string name="red_whites">Red Whites</string>
<string name="green_greys">Green Greys</string>
<string name="green_mids">Green Mids</string>
<string name="green_blacks">Green Blacks</string>
<string name="green_whites">Green Whites</string>
<string name="blue_greys">Blue Greys</string>
<string name="blue_mids">Blue Mids</string>
<string name="blue_blacks">Blue Blacks</string>
<string name="blue_whites">Blue Whites</string>
<string name="contrast">Contrast</string>
<string name="brightness">Brightness</string>
<string name="red_positive">Red Positive</string>
<string name="red_negative">Red Negative</string>
<string name="green_positive">Green Positive</string>
<string name="green_negative">Green Negative</string>
<string name="blue_positive">Blue Positive</string>
<string name="blue_negative">Blue Negative</string>
<string name="white_point">White Point</string>
<string name="lcd_backlight">LCD Backlight</string>
<string name="gamma_profiles_summary">After selecting a profile, please turn your screen off and on.</string>
<string name="brightness_mode">Use exponential backlight mode instead of linear mode.</string>
<string name="min_brightness">Minimum Brightness</string>
<string name="min_brightness_summary">Allows you to decrease the LCD screen brightness lower than it\'s possible on stock.</string>
<string name="max_brightness">Maximum Brightness</string>
<string name="max_brightness_summary">Allows you to increase the LCD screen brightness higher than it\'s possible on stock.</string>
<string name="backlight_dimmer">Backlight Dimmer</string>
<string name="threshold">Threshold Value</string>
<string name="offset">Offset</string>
<string name="negative_toggle">Negative Toggle</string>
<string name="negative_toggle_summary">Enable inverting the screen colors by quickly pressing MENU button 4 times.</string>
<string name="mdnie_global_controls">mDNIe global controls</string>
<string name="register_hook">Register Hook</string>
<string name="register_hook_summary">Register intercept acts like a hook and will enable catching scenario settings and modifying them through delta controls. If a scenario does not have a setting (register) in its base sequence, then it cannot be modified by the hook.</string>
<string name="master_sequence">Master Sequence</string>
<string name="master_sequence_summary">Enabling the master sequence will disable and ignore Samsung\'s profiles and scenarios, the ROM controls will be disabled.</string>
<string name="glove_mode">Glove Mode</string>
<string name="glove_mode_summary">Enabling this will let you use your phone even while wearing gloves.</string>
<!-- K-lapse -->
<string name="klapse">K-lapse</string>
<string name="klapse_summary">Select preferred K-lapse mode, a kernel level live-display module by tanish2k09. This shouldn\'t be Turned-Off to tune the rest of K-lapse parameters.</string>
<string name="klapse_off">Turned-Off</string>
<string name="export_settings">Export K-lapse Settings</string>
<string name="time_scale">Time Based Scaling</string>
<string name="bright_scale">Brightness Based Scaling</string>
<string name="night_mode_schedule">Night Mode Schedule</string>
<string name="start_time">Start</string>
<string name="end_time">End</string>
<string name="scaling_rate">Scaling Rate (Minute)</string>
<string name="scaling_rate_summary">Controls how soon the RGB reaches from Daytime to Night Mode inside of start and stop hour range.</string>
<string name="fadeback_time">Fade-back Time (Minute)</string>
<string name="fadeback_time_summary">The number of minutes before End Time when RGB should start going back to Daytime colors.</string>
<string name="daytime_rgb">Daytime Colors</string>
<string name="nightmode_rgb">Night Mode Colors</string>
<string name="dimming">Dimming</string>
<string name="dimming_summary">100: Accurate brightness; 50: 50% of current intensity.</string>
<string name="auto_dimming">Auto Dimming</string>
<string name="auto_dimming_summary">Automatically set the brightness factor in a set time range.</string>
<string name="auto_dimming_schedule">Auto Dimming Schedule</string>
<string name="backlight_range">Backlight Range</string>
<string name="pulse_freq">Pulse Frequency</string>
<string name="pulse_freq_summary">The number of milliseconds after which klapse_pulse is called.</string>
<string name="flow_freq">Flow Frequency</string>
<string name="flow_freq_summary">The amount of milliseconds after which 1 RGB frame is shifted.</string>
<string name="profile_exists">A profile named %s is already exists! Aborting.</string>
<string name="profile_created">K-lapse settings are successfully exported and available at \'%s\'! Would you like to share it?</string>
<string name="exporting_settings">Exporting %s settings</string>
<!-- Wake -->
<string name="dt2w">DoubleTap2Wake</string>
<string name="dt2w_summary">Wake up your device by double tapping the screen.</string>
<string name="center">Center</string>
<string name="full">Full</string>
<string name="bottom_half">Bottom half</string>
<string name="top_half">Top half</string>
<string name="s2w">Sweep2Wake</string>
<string name="s2w_summary">Wake up your device by swiping on the screen.</string>
<string name="s2s">Sweep2Sleep</string>
<string name="s2w_right">Sweep2Wake Right</string>
<string name="s2w_left">Sweep2Wake Left</string>
<string name="s2w_up">Sweep2Wake Up</string>
<string name="s2w_down">Sweep2Wake Down</string>
<string name="s2w_any">Sweep2Wake Any</string>
<string name="lenient">Sweep2Wake Leniency</string>
<string name="lenient_summary">Only require 1st and 4th button to trigger Sweep2Wake.</string>
<string name="t2w">Tap2Wake</string>
<string name="t2w_summary">Wake up your device by tapping the screen.</string>
<string name="dt2s">DoubleTap2Sleep</string>
<string name="dt2s_summary">Lock your device by double tapping on the top of the screen.</string>
<string name="s2w_charging">Sweep2Wake while charging</string>
<string name="dt2w_charging">DoubleTap2Wake while charging</string>
<string name="dt2w_s2w">DoubleTap2Wake + Sweep2Wake</string>
<string name="dt2w_s2w_charging">DoubleTap2Wake + Sweep2Wake while charging</string>
<string name="s2s_summary">Lock your device by swiping on the screen.</string>
<string name="s2s_right">Sweep Right</string>
<string name="s2s_left">Sweep Left</string>
<string name="s2s_any">Sweep Left or Right</string>
<string name="slide_up">Slide up</string>
<string name="slide_down">Slide down</string>
<string name="slide_left">Slide left</string>
<string name="slide_right">Slide right</string>
<string name="draw_e">Draw E</string>
<string name="draw_o">Draw O</string>
<string name="draw_w">Draw W</string>
<string name="draw_c">Draw C</string>
<string name="draw_m">Draw M</string>
<string name="camera_gesture">Camera Gesture</string>
<string name="camera_gesture_summary">Launch default camera by drawing a circle on the screen.</string>
<string name="pocket_mode">Pocket Mode</string>
<string name="pocket_mode_summary">Enabling this will turn off wake controls when the device is in a pocket.</string>
<string name="timeout">Timeout</string>
<string name="timeout_summary">Set a duration when the wake controls will be disabled after the screen goes off.</string>
<string name="charge_timeout">Charge Timeout</string>
<string name="charge_timeout_summary">Set a duration when the wake controls will be disabled after the screen goes off while charging.</string>
<string name="power_key_suspend">Power Key Suspend</string>
<string name="power_key_suspend_summary">Enabling this will turn off wake controls when the screen is turned off by the power key.</string>
<string name="width">Width</string>
<string name="height">Height</string>
<string name="vibration">Vibration</string>
<string name="vibration_strength">Vibration Strength</string>
<string name="override_vib">Override Vibration</string>
<string name="override_vib_summary">Allow to override default vibration settings of the system.</string>
<string name="system_vib">System Vibration</string>
<string name="notification_vib">Notification</string>
<string name="calls_vib">Calls</string>
<string name="key_power_mode">Power Key Mode</string>
<string name="key_power_mode_summary">Wake controls will only be active when you put your device into sleep with the power key.</string>
<string name="charging_mode">Charging Mode</string>
<string name="charging_mode_summary">Wake controls will only be active when device is charging.</string>
<string name="up">Up</string>
<string name="down">Down</string>
<string name="left">Left</string>
<string name="right">Right</string>
<string name="smart_wake">Smart Wake</string>
<!-- LED -->
<string name="led_notification">LED Notification</string>
<string name="fade">Blink/Fade</string>
<string name="led_intensity">Intensity</string>
<string name="led_speed">Speed</string>
<string name="stock">Stock</string>
<string name="continuous_light">Continuous light</string>
<string name="bright_light_environment">Bright Light Environment</string>
<string name="bright_light_environment_summary">Set the relative intensity of the LED when in bright environments.</string>
<string name="low_light_environment">Low Light Environment</string>
<string name="low_light_environment_summary">Set the relative intensity of the LED when in low brightness environments.</string>
<string name="on">On</string>
<string name="off">Off</string>
<string name="fade_ramp_control">Fade Ramp Control</string>
<string name="fade_ramp_control_summary">Enable or disable LED fade-in/out (ramp) control.</string>
<string name="fade_in">Fade in</string>
<string name="fade_in_summary">Sets the time period of the rising slope.</string>
<string name="fade_out">Fade out</string>
<string name="fade_out_summary">Sets the time period of the falling slope.</string>
<string name="display_backlight">Display Backlight</string>
<string name="led_brightness">LED Brightness (Max)</string>
<!-- I/O Scheduler -->
<string name="internal_storage">Internal Storage</string>
<string name="external_storage">External Storage</string>
<string name="dm0">Adoptable Storage (DM-0)</string>
<string name="scheduler">Scheduler</string>
<string name="scheduler_summary">Set the active I/O elevator algorithm. The Scheduler decides how to handle I/O requests.</string>
<string name="scheduler_tunable">Scheduler Tunable</string>
<string name="scheduler_tunable_summary">The various configuration items which are Scheduler-dependent.</string>
<string name="read_ahead">Read-ahead</string>
<string name="read_ahead_summary">The Read-ahead value on the phone memory.</string>
<string name="rotational">Rotational Storage</string>
<string name="rotational_summary">Treat device as rotational storage.</string>
<string name="iostats">I/O Stats</string>
<string name="iostats_summary">Maintain I/O statistics for this storage device. Disabling will break I/O monitoring apps.</string>
<string name="add_random">Add Random</string>
<string name="add_random_summary">Draw entropy from spinning (rotational) storage.</string>
<string name="rq_affitiny">RQ Affinity</string>
<string name="rq_affinity_summary">Try to have scheduler requests complete on the CPU core they were made from. Higher values are more aggressive.</string>
<string name="nomerges">No-Merges</string>
<string name="nomerges_summary">This enables the user to disable the lookup logic involved with IO merging requests in the block layer.</string>
<string name="nr_requests">NR Requests</string>
<string name="nr_requests_summary">This controls how many requests may be allocated in the block layer for read or write requests.</string>
<!-- I/O Advanced -->
<string name="io_blocks">I/O Blocks (%s)</string>
<string name="io_blocks_summary">Click here to fine-tune various I/O blocks on your device! However, please be aware that some parameters are read-only and not allowed to change on some blocks.</string>
<string name="io_blocks_select">Select I/O Block</string>
<string name="io_blocks_select_summary">Select the preferred I/O Block for fine-tuning.</string>
<!-- Kernel Samepage Merging -->
<string name="full_scans">Full scans</string>
<string name="pages_shared">Pages shared</string>
<string name="pages_sharing">Pages sharing</string>
<string name="pages_unshared">Pages unshared</string>
<string name="pages_volatile">Pages volatile</string>
<string name="ksm_summary">Reduces memory usage but has an impact on the CPU usage.</string>
<string name="pages_to_scan">Pages to scan</string>
<string name="sleep_milliseconds">Sleep between scans</string>
<string name="deferred_timer">Deferred timer</string>
<string name="deferred_timer_summary">Reduces some CPU usage in return for less memory savings.</string>
<string name="max_cpu_usage">Max CPU Usage</string>
<string name="max_cpu_usage_summary">Max CPU percentage to use when merging pages.</string>
<string name="uksm_governor">UKSM CPU Governor</string>
<string name="uksm_governor_summary">Set the CPU Governor for UKSM.</string>
<!-- Low Memory Killer -->
<string name="foreground_app">Foreground Applications</string>
<string name="lmk_adaptive">Adaptive Low Memory Killer</string>
<string name="lmk_adaptive_summary">Make LMK more aggressive dynamically when a thrashing scenario is detected.</string>
<string name="lmk_fast_run">Enable Fast Run</string>
<string name="process_reclaim">Process Reclaim</string>
<string name="visible_app">Visible Applications</string>
<string name="secondary_server">Secondary Server</string>
<string name="hidden_app">Hidden Applications</string>
<string name="content_providers">Content Providers</string>
<string name="empty_app">Empty Applications</string>
<string name="very_light">Very light</string>
<string name="light">Light</string>
<string name="low">Low</string>
<string name="medium">Medium</string>
<string name="high">High</string>
<string name="very_aggressive">Very Aggressive</string>
<string name="kill_lmk">Kill LMK</string>
<string name="kill_lmk_summary">Kill LMK when swap is in use.</string>
<string name="kill_lmk_threshold">Kill LMK Threshold</string>
<string name="kill_lmk_threshold_summary">How full swap needs to be to kill LMK.</string>
<!-- Wakelock -->
<string name="wakelock">Wakelocks</string>
<string name="wakelocks_other">Other Wakelocks</string>
<string name="wakelock_summary">Wakelocks are there for a reason. This means, by blocking some of them you can introduce smaller or bigger issues, trigger strange side effects and in the worst case render the system completely unusable. Blocking wakelocks is solely your own responsibility.</string>
<string name="boeffla_wakelock">Boeffla Generic Wakelock Blocker</string>
<string name="wkl_order">Wakelocks order</string>
<string name="wkl_order_summary">Select the listing order of the Wakelocks</string>
<string name="wkl_blocked">Wakelocks Blocked</string>
<string name="wkl_allowed">Wakelocks Allowed</string>
<string name="wkl_total_time">Time</string>
<string name="wkl_wakep_count">Wakeups</string>
<string name="wkl_name">Name</string>
<string name="wkl_time">Time</string>
<string name="wkl_wakeup">Wakeups</string>
<string name="smb135x_wakelock">smb135x Wakelock</string>
<string name="smb135x_wakelock_summary">Prevent wakelock when power disconnected.</string>
<string name="sensor_ind_wakelock">sensor_ind Wakelock</string>
<string name="sensor_ind_wakelock_summary">Prevent wakelock when Ambient Display disabled.</string>
<string name="msm_hsic_host_wakelock">msm_hsic_host Wakelock</string>
<string name="msm_hsic_host_wakelock_summary">Prevent msm_hsic_host wakelock.</string>
<string name="wlan_rx_wakelock">wlan_rx Wakelock</string>
<string name="wlan_rx_wakelock_summary">Prevent wlan_rx wakelock.</string>
<string name="wlan_ctrl_wakelock">wlan_ctrl Wakelock</string>
<string name="wlan_ctrl_wakelock_summary">Prevent wlan_ctrl wakelock.</string>
<string name="wlan_wakelock">wlan Wakelock</string>
<string name="wlan_wakelock_summary">Prevent wlan wakelock.</string>
<string name="bluesleep_wakelock">BlueSleep Wakelock</string>
<string name="bluesleep_wakelock_summary">Prevent BlueSleep wakelock.</string>
<string name="ipa_wakelock">Ipa Wakelock</string>
<string name="ipa_wakelock_summary">Prevent Ipa wakelock.</string>
<string name="netlink_wakelock">NetLink Wakelock</string>
<string name="netlink_wakelock_summary">Prevent NetLink wakelock.</string>
<string name="qcom_rx_wakelock">Qcom rx Wakelock</string>
<string name="qcom_rx_wakelock_summary">Prevent Qcom rx wakelock.</string>
<string name="timerfd_wakelock">Timerfd Wakelock</string>
<string name="timerfd_wakelock_summary">Prevent Timerfd wakelock.</string>
<string name="wlan_extscan_wl_ws_wakelock">Extscan Wakelock</string>
<string name="wlan_extscan_wl_ws_wakelock_summary">Prevent Extscan wakelock.</string>
<string name="wlan_ws_wakelock">wlan_ws Wakelock</string>
<string name="wlan_ws_wakelock_summary">Prevent wlan_ws wakelock.</string>
<string name="bluedroid_timer_wakelock">Bluedroid Timer Wakelock</string>
<string name="bluedroid_timer_wakelock_summary">Prevent Bluedroid Timer wakelock.</string>
<string name="wlan_rx_wakelock_divider">wlan_rx Wakelock Divider</string>
<string name="wlan_ctrl_wakelock_divider">wlan_ctrl Wakelock Divider</string>
<string name="msm_hsic_wakelock_divider">msm_hsic Wakelock Divider</string>
<string name="bcmdhd_wakelock_divider">BCMDHD Wakelock Divider</string>
<string name="wkl_sensorhub">SensorHub</string>
<string name="wkl_sensorhub_summary">The SensorHub Wakelock is one of the biggest wake sources. Disable for better deep sleep and less awake time. Enable for stock behavior.</string>
<string name="wkl_ssp">SSP</string>
<string name="wkl_ssp_summary">The SSP Wakelock is one of the biggest wake sources after Sensorhub. Disable for better deep sleep and less awake time. Enable for stock behavior.</string>
<string name="wkl_gps">GPS</string>
<string name="wkl_gps_summary">The bcm4359 Wakelock (GPS chip) is one of the biggest wake sources after Sensorhub & SSP. Disable for better deep sleep and less awake time. Enable for stock behavior.</string>
<string name="wkl_wireless">Wireless</string>
<string name="wkl_wireless_summary">Wireless Wakelock. Disable for better deep sleep and less awake time. Enable for stock behavior.</string>
<string name="wkl_bluetooth">Bluetooth</string>
<string name="wkl_bluetooth_summary">Bluetooth Wakelock. Disable for better deep sleep and less awake time. Enable for stock behavior.</string>
<!-- Virtual Memory -->
<string name="zram">Z-RAM</string>
<string name="zram_algo">Z-RAM Algorithm</string>
<string name="zram_algo_summary">Set default Z-RAM Compression algorithm.</string>
<string name="zram_algo_warning">Z-RAM disk size will be temporarily reduced to \'0\'. This process might have serious impacts on some devices.</string>
<string name="disksize">Disksize</string>
<string name="disksize_summary">Attempts to increase performance by avoiding paging on physical storage, instead using a compressed virtual device in RAM. Paging takes place in RAM until it is necessary to use the swap space on physical storage.</string>
<string name="zswap">ZSWAP</string>
<string name="zswap_summary">ZSwap is a lightweight compressed cache for swap pages. It takes pages that are in the process of being swapped out and attempts to compress them into a dynamically allocated RAM-based memory pool. Zswap basically trades CPU cycles for potentially reduced swap I/O.</string>
<string name="memory_pool">Memory pool</string>
<string name="memory_pool_summary">Memory pool percentage of main memory that may be used as compressed page cache.</string>
<string name="maximum_compression_ratio">Maximum compression ratio</string>
<string name="maximum_compression_ratio_summary">Maximum compression ratio, as percentage, for an acceptable compressed page. Any page that does not compress by at least this ratio will be rejected.</string>
<string name="virtual_memory_tunables">Virtual memory tunable\'s</string>
<string name="dir_change_notifier">Directory Change Notifier</string>
<string name="dir_change_notifier_summary">Directory change notifier service informs processes about file/directory changes.</string>
<string name="vm_stat_interval">VM Stat Interval</string>
<string name="vm_stat_interval_summary">The time interval between which VM statistics are updated.</string>
<!-- Entropy -->
<string name="available">Available</string>
<string name="poolsize">Poolsize</string>
<string name="read">Read</string>
<string name="write">Write</string>
<!-- Misc -->
<string name="android_logger">Android logging</string>
<string name="android_logger_summary">Turn On/Off Android logging</string>
<string name="printk_logger">PrintK logging</string>
<string name="printk_logger_summary">Turn On/Off Linux PrintK logging</string>
<string name="crc">Software CRC control</string>
<string name="crc_summary">CRC is a mechanism aiming to prevent data corruption when enabled. Data blocks can lose up to 30% of their performance.</string>
<string name="fsync">Fsync</string>
<string name="fsync_summary">Disable for better file system performance at the risk of data loss in case of a system crash.</string>
<string name="dynamic_fsync">Dynamic Fsync</string>
<string name="dynamic_fsync_summary">When enabled and screen is on, fsync operation is asynchronous. When screen is off, this operation is done synchronously.</string>
<string name="gentlefairsleepers">Gentle Fair Sleepers</string>
<string name="gentlefairsleepers_summary">Only give sleepers 50% of their service deficit. Disabling this can save a little battery power.</string>
<string name="arch_power">Arch Power</string>
<string name="arch_power_summary">Enable Arch Specific Power Function/Savings.</string>
<string name="power_suspend">Power Suspend</string>
<string name="power_suspend_mode">Power Suspend Mode</string>
<string name="power_suspend_mode_summary">Kernel Mode, LCD Hooks and Highest Level Hook are automatically managed by the kernel. To manually enable or disable the Power Suspend State choose User Mode.</string>
<string name="autosleep">Autosleep</string>
<string name="userspace">Userspace</string>
<string name="lcd_panel">LCD Panel</string>
<string name="hybrid">Hybrid</string>
<string name="power_suspend_state">Power Suspend State</string>
<string name="power_suspend_state_summary">Kernel power management driver when screen is off. Better battery savings if enabled. Note: You can only change this setting if Power Suspend Mode is in User Mode.</string>
<string name="network">Network</string>
<string name="tcp">TCP Congestion Algorithm</string>
<string name="tcp_summary">The Transmission Control Protocol is one of the core protocols of the Internet protocol suite (IP), and is so common that the entire suite is often called TCP/IP.</string>
<string name="hostname">Hostname</string>
<string name="wireguard">WireGuard VPN</string>
<string name="leases_enable">Leases Enable</string>
<string name="leases_enable_summary">Enable or disable file leases on a system-wide basis</string>
<string name="lease_break_time">Lease Break Time</string>
<string name="lease_break_time_summary">The grace period that the kernel grants to a process holding a file lease after it has sent a signal to that process notifying it that another process is waiting to open the file.</string>
<string name="auto_sync">Auto-Sync Data</string>
<string name="auto_sync_summary">Allow apps to automatically refresh data.\nPlease Note: It will be applied, irrespective of your on-boot settings.</string>
<string name="cpuset">CPU Sets</string>
<string name="doze">Force Doze</string>
<string name="doze_deep">Deep Doze</string>
<string name="doze_light">Light Doze</string>
<string name="doze_summary">Enable doze mode to prevents certain tasks from running if your device is in idle state.</string>
<string name="selinux">SELinux</string>
<string name="selinux_summary">Set SELinux state</string>
<string name="selinux_permissive">Permissive</string>
<string name="selinux_enforcing">Enforcing</string>
<string name="transmit_queue_length">Transmit Queue Length</string>
<string name="printk_devkmsg">Printk devkmsg</string>
<string name="printk_devkmsg_summary">Control the logging to /dev/kmsg from userspace.</string>
<!-- Performance Tweaks -->
<string name="spectrum">Performance Tweaks</string>
<string name="profileTile">Profile</string>
<string name="spec_title">Performance Tweaks</string>
<string name="spec_info">An adaptation of the Spectrum Manager by frap129.\nSelect one among the available pre-defined profiles.</string>
<string name="spec_balanced">Balanced</string>
<string name="spec_balanced_summary">The default kernel profile designed for smooth performance in basic tasks while maintaining fantastic battery.</string>
<string name="spec_performance">Performance</string>
<string name="spec_performance_summary">Tuned for top-tier performance in standard tasks with many fewer regressions than Balanced, but maintains battery by limiting graphics.</string>
<string name="spec_battery">Battery</string>
<string name="spec_battery_summary">The ultra-conservative profile that lets performance take a hit in order to achieve long-lasting battery life.</string>
<string name="spec_gaming">Gaming</string>
<string name="spec_gaming_summary">Identical to performance in most areas other than the unlocked Graphics performance.</string>
<!-- Custom Controls -->
<string name="welcome">Welcome</string>
<string name="custom_controls_summary">In this section, you can create a custom controller for any feature, which is not officially added to this app yet. <a href="https://smartpack.github.io/spkm/customcontrols/">Documentation<a></string>
<string name="custom_controls_message">You can basically create a custom controller for any existing sysfs path, provided, you have a supported Root File Manager installed. However, please be noted that this feature is too powerful to mess your device.\n\n***USE AT YOUR OWN RISK***</string>
<string name="create">Create</string>
<string name="import_item">Import</string>
<string name="control_switch">Switch</string>
<string name="control_generic">Generic</string>
<string name="documentation">Documentation</string>
<string name="invalid_path">%s is not a valid sysfs path! Aborting.</string>
<string name="invalid_controller">%s is not a valid custom controller! Aborting.</string>
<string name="unsupported_controller">\'%s\' doesn\'t exist in this device! Aborting.</string>
<string name="edit">Edit</string>
<string name="export">Export</string>
<string name="delete">Delete</string>
<string name="share">Share</string>
<string name="share_by">\'%s\' | shared by SmartPack-Kernel Manager</string>
<string name="share_controller">To apply this controller, simply import this file on \'SmartPack-Kernel Manager -> Custom Controls</string>
<string name="share_with">Share with</string>
<string name="sure_question">Are you sure?</string>
<string name="name">Name</string>
<string name="already_exists">%s already exists!</string>
<string name="already_added">The sysfs path %s is already added! Aborting.</string>
<string name="exported_item">%1$s has been exported to %2$s</string>
<string name="name_empty">Name is empty!</string>
<string name="import_malformed">Import file is malformed!</string>
<string name="import_wrong_version">Version of import file is too old!</string>
<string name="got_it">Got it</string>
<!-- Backup -->
<string name="boot_partition">Boot partition</string>
<string name="recovery_partition">Recovery partition</string>
<string name="fota_partition">Fota partition</string>
<string name="flash">Flash</string>
<string name="flasher">Flasher</string>
<string name="flasher_summary">Click the flash button to select and flash a recovery ZIP file without rebooting into custom recovery. The changes will be applied after a reboot.</string>
<string name="file_size_limit">Warning! You\'re selected a file of ~%s MB for flashing. Flashing bigger files, such as ROM\'s, using this app might be dangerous to your device.</string>
<string name="execute">Execute</string>
<string name="sure_message">Are you sure to flash %s?</string>
<string name="select_question">Select %s?</string>
<string name="wrong_extension">Please select a file with %s extension.</string>
<!-- Build prop Editor -->
<string name="build_prop_uneditable">Unfortunately, \'build.prop\' in your device is not writable!</string>
<string name="add">Add</string>
<string name="backup_item">%1$s has been backed up to %2$s</string>
<string name="item_count">%s item</string>
<string name="items_count">%s items</string>
<string name="key">Key</string>
<string name="value">Value</string>
<string name="key_empty">Key can\'t be empty!</string>
<!-- Profile -->
<string name="apply">Apply</string>
<string name="apply_on_boot_not_available">In profiles mode your changes won\'t have an impact on apply on boot.</string>
<string name="profile_warning">Everything you change here is going to be saved to your profile. But attention! Your settings will also get applied, but won\'t get saved to apply on boot.</string>
<string name="no_changes">No changes made!</string>
<string name="apply_question">Apply %s?</string>
<string name="append">Append</string>
<string name="details">Details</string>
<string name="press_again_to_apply">Press %s again to apply.</string>
<string name="applied">Applied</string>
<string name="profile_tasker">Profile Tasker</string>
<string name="profile_tasker_summary">If you want to apply a profile at a specific event, such as launching an application, you have to use Tasker.</string>
<string name="profile_tasker_toast">Show toast when tasker applies a profile</string>
<string name="profile_tile">Profile Tile</string>
<string name="profile_tile_summary">Show a tile which allows you to select a profile.</string>
<string name="profile_select">Select Profile</string>
<string name="applying_profile">Applying %s!</string>
<string name="no_profiles">No profiles found! You have to create them first.</string>
<string name="sections_disabled">All sections disabled! No profiles for you.</string>
<string name="new_mode">New</string>
<string name="current_settings">Current settings</string>
<string name="select_all">Select all</string>
<string name="nothing_selected">Nothing selected</string>
<string name="profile_empty">Profile is empty!</string>
<!-- Script Manager -->
<string name="scripts_manager_summary">In this section, you can create, import, edit and easily execute any properly formatted shell scripts.</string>
<string name="scripts_onboot_summary">If you enable this switch, all the scripts listed in this page will be executed on boot.</string>
<string name="script_executed">%s executed successfully!</string>
<string name="exceute_question">Execute %s?</string>
<string name="exceute_cancel_title">Executing %s cancelled!</string>
<string name="exceute_cancel_question">Cancel executing %s?</string>
<string name="remove_script_question">%s will be also removed from the Script Manager.\n\nAre you sure?</string>
<string name="script_exists">A script named %s is already exists! Aborting.</string>
<string name="executing">Executing</string>
<string name="share_script">To apply this script, simply import this file on \'SmartPack-Kernel Manager -> Script Manager -> Import\'.</string>
<string name="quick_tile">Quick Tile</string>
<string name="quick_tile_empty_message">No scripts are set to apply from this tile!</string>
<!-- On Boot -->
<string name="on_boot_welcome_summary">This section shows you what things will happen when your device boots up. If it\'s blank, then nothing will happen after boot.</string>
<string name="on_boot_swipe_drag_message">You can swipe left or right to remove a command (not a profile or script)!</string>
<string name="delete_question">Delete %s?</string>