summaryrefslogtreecommitdiffstats
path: root/res/values/cm_strings.xml
blob: 400f82e26ee700aed314991be5002df472778490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2012-2013 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <!-- Activity label of BluetoothMasPermissionActivity, also used as Strings in the permission dialog [CHAR LIMIT=none] -->
    <string name="bluetooth_mas_request">"Message Access request"</string>
    <!-- Bluetooth MAS permission Alert Activity text [CHAR LIMIT=none] -->
    <string name="bluetooth_mas_acceptance_dialog_text">%1$s would like to access your messages. Give access to %2$s?</string>
    <!-- Bluetooth MAS permission Alert Activity checkbox text [CHAR LIMIT=none] -->
    <string name="bluetooth_mas_remember_choice">Don\'t ask again</string>

    <!-- Sizes for pattern lockscreen -->
    <string name="lock_pattern_size_3" translatable="false">3x3</string>
    <string name="lock_pattern_size_4" translatable="false">4x4</string>
    <string name="lock_pattern_size_5" translatable="false">5x5</string>
    <string name="lock_pattern_size_6" translatable="false">6x6</string>

    <string name="wifi_mode">Mode</string>
    <string name="wifi_mode_ibss">Ad-Hoc (IBSS) Network</string>
    <string name="wifi_mode_ibss_short">Ad-Hoc</string>

    <!-- Wi-Fi region code -->
    <string name="wifi_setting_countrycode_title">Wi-Fi region code</string>
    <!-- Wi-Fi settings screen, setting summary for setting the wifi frequency band [CHAR LIMIT=50]-->
    <string name="wifi_setting_countrycode_summary">Specify the region code for Wi-Fi</string>
    <!-- Wi-Fi settings screen, error message when the frequency band could not be set [CHAR LIMIT=50]. -->
    <string name="wifi_setting_countrycode_error">There was a problem setting the region code.</string>
    <!-- Wi-Fi settings screen, advanced, title of the item to set the Wi-Fi priority. -->
    <string name="wifi_setting_priority_title">Wi-Fi priority</string>
    <!-- Wi-Fi settings screen, setting summary for setting the Wi-Fi priority-->
    <string name="wifi_setting_priority_summary">Specify the priority of the Wi-Fi networks</string>

    <!-- Sound settings screen, setting check box label -->
    <string name="volume_adjust_sounds_enable_title">Volume adjustment sound</string>
    <!-- Sound settings screen, setting check box summary -->
    <string name="volume_adjust_sounds_enable_summary">Play sound when adjusting volume with volume rocker</string>

    <!-- Security & location settings screen, setting check box title. This setting controls whether a visible red line will be drawn after the user has drawn the unlock pattern incorrectly.  If checked, this line is drawn.  If unchecked, there is nothing drawn so the user does not reveal his pattern while he unlocks the phone.-->
    <string name="lockpattern_settings_enable_error_path_title">Show pattern error</string>
    <!-- Security & location settings screen, setting check box title. This setting controls whether the dots will be drawn when using the lockscreen pattern.-->
    <string name="lockpattern_settings_enable_dots_title">Show pattern dots</string>

    <!-- Setting checkbox title for root access -->
    <string name="root_access">Root access</string>
    <string name="root_access_warning_title">Allow root access?</string>
    <string name="root_access_warning_message">Allowing applications to request root access is very dangerous and could compromise the security of your system!</string>
    <string name="root_access_none">Disabled</string>
    <string name="root_access_apps">Apps only</string>
    <string name="root_access_adb">ADB only</string>
    <string name="root_access_all">Apps and ADB</string>

    <!-- Title for the accessibility preference to home button to answers a call. [CHAR LIMIT=35] -->
    <string name="accessibility_home_button_answers_call_prerefence_title">Home button answers call</string>

    <!-- Category title for headset specific Settings.
         [CHAR LIMIT=40] -->
    <string name="headset_category_title">Headset</string>

    <string name="ok">OK</string>

    <!-- Quiet hours -->
    <string name="quiet_hours_title">Quiet hours</string>
    <string name="quiet_hours_summary">Configure the hours the device should be quiet</string>
    <string name="quiet_hours_note_title">Note</string>
    <string name="quiet_hours_note_summary">Incoming calls will behave like usual during quiet hours</string>
    <string name="quiet_hours_enabled">Enable quiet hours</string>
    <string name="quiet_hours_enabled_on">Quiet hours will be enforced</string>
    <string name="quiet_hours_enabled_off">Notifications will function as normal</string>
    <string name="quiet_hours_start">Start of quiet hours</string>
    <string name="quiet_hours_start_summary">When to start enforcing quiet hours</string>
    <string name="quiet_hours_end">End of quiet hours</string>
    <string name="quiet_hours_end_summary">When to stop enforcing quiet hours</string>
    <string name="quiet_hours_mute">Mute notifications</string>
    <string name="quiet_hours_mute_on">No sounds will be played</string>
    <string name="quiet_hours_mute_off">Sounds will play like normal</string>
    <string name="quiet_hours_still">Disable vibrations</string>
    <string name="quiet_hours_still_on">Device will not vibrate</string>
    <string name="quiet_hours_still_off">Device will vibrate normally</string>
    <string name="quiet_hours_dim">Disable notification light</string>
    <string name="quiet_hours_dim_on">Notification light will be disabled</string>
    <string name="quiet_hours_dim_off">Notification light will function as normal</string>
    <string name="quiet_hours_haptic">Disable haptic feedback</string>
    <string name="quiet_hours_haptic_on">Haptic feedback will be disabled</string>
    <string name="quiet_hours_haptic_off">Haptic feedback will function as normal</string>
    <string name="quiet_hours_active_from">Active from</string>
    <string name="quiet_hours_active_to">to</string>

    <!-- time range preference -->
    <string name="start_time_title">Start</string>
    <string name="end_time_title">End</string>

    <!-- convert sound to vibration toggle -->
    <string name="notification_convert_sound_to_vibration_title">Vibrate on notification</string>
    <string name="notification_convert_sound_to_vibration_summary">In vibrate mode, all notifications will vibrate regardless of individual app settings</string>

    <!-- vibrate during phone calls -->
    <string name="notification_vibrate_during_calls_title">Vibrate during call</string>
    <string name="notification_vibrate_during_calls_summary">Incoming notifications will softly vibrate during phone calls</string>

    <!-- Hostname setting -->
    <string name="device_hostname">Device hostname</string>

    <!-- About phone screen,  setting option name-->
    <string name="mod_version">CyanogenMod version</string>
    <string name="mod_version_default">Unknown</string>
    <!-- About phone screen, build date of ROM -->
    <string name="build_date">Build date</string>
    <string name="build_date_default" translatable="false">2013-01-01-0000</string>
    <!-- About device screen, Cpu info. -->
    <string name="cpu_info">CPU</string>
    <!-- About phone screen, Free memory info -->
    <string name="mem_info">Memory</string>
    <!-- About phone screen, status item label -->

    <!-- Anonymous Statistics #CM -->
    <!-- About device screen, list item title. Takes the user to the screen about opting in or out of anonymous statistics. -->
    <string name="anonymous_statistics_title">CyanogenMod statistics</string>
    <string name="anonymous_statistics_summary">Help make CyanogenMod better by opting into anonymous statistics reporting</string>
    <string name="anonymous_statistics_warning_title">About</string>
    <string name="anonymous_statistics_warning">Opting into CyanogenMod Statistics will allow non-personal data to be submitted to the
        developers of CyanogenMod to track unique installations across devices. The information submitted includes an unique identifier,
        which does not compromise your privacy or personal data. The data is submitted during each boot.\n\nFor an example of the data that is submitted, tap on Preview Data.</string>
    <string name="enable_reporting_title">Enable reporting</string>
    <string name="preview_data_title">Preview data</string>
    <string name="preview_data_summary" translatable="false">%s</string>
    <string name="view_stats_title">View stats</string>
    <string name="anonymous_learn_more">Learn more</string>

    <!-- Anonymous Statistics - Notification -->
    <string name="anonymous_notification_desc">Enable or Disable CyanogenMod Statistics</string>

    <!-- Anonymous Statistics - Preview -->
    <string name="preview_id_title">Unique ID</string>
    <string name="preview_device_title">Device</string>
    <string name="preview_version_title">Version</string>
    <string name="preview_country_title">Country</string>
    <string name="preview_carrier_title">Carrier</string>

    <!-- INTERFACE Settings  -->
    <!-- Settings main menu category heading. Interface (Launcher, Themes, System). [CHAR LIMIT=40] -->
    <string name="header_category_interface">INTERFACE</string>

    <!-- Launcher settings  -->
    <string name="launcher_settings_title">Launcher</string>

    <!-- Themes settings  -->
    <string name="themes_settings_title">Themes</string>

    <!-- System Interface settings  -->
    <string name="system_settings_title">System</string>
    <string name="system_interface_title">System interface</string>

    <!-- Notification Drawer  -->
    <string name="notification_drawer_title">Notification drawer</string>
    <string name="notification_drawer_behaviour_title">Behaviour</string>
    <string name="notification_drawer_collapse_on_dismiss_title">Auto-close drawer</string>
    <string name="collapse_on_dismiss_never">Disabled</string>
    <string name="collapse_on_dismiss_if_empty">If none remaining</string>
    <string name="collapse_on_dismiss_if_no_clearable">If no removable remaining</string>
    <string name="collapse_on_dismiss_never_summary">Leave notification tray open when removing notifications</string>
    <string name="collapse_on_dismiss_if_empty_summary">Close notification tray when removing the last notification</string>
    <string name="collapse_on_dismiss_if_no_clearable_summary">Close notification tray when removing the last removable notification</string>

    <string name="lock_screen_title">Lock screen</string>

    <!-- Lock Screen Shortcuts -->
    <string name="lockscreen_target_info">Drag the slider to targets to assign shortcuts</string>
    <string name="lockscreen_target_title">Slider shortcuts</string>
    <string name="lockscreen_target_summary">View or change custom lock screen shortcuts</string>
    <string name="lockscreen_target_reset">Lock screen shortcuts reset to default</string>
    <string name="lockscreen_target_save">Lock screen shortcuts saved</string>
    <string name="lockscreen_target_reset_title">Reset</string>
    <string name="lockscreen_target_reset_message">Delete all user created lock screen shortcuts and restore to default?</string>
    <string name="lockscreen_target_empty">Empty</string>
    <string name="lockscreen_target_edit_title">Edit shortcut and icon</string>
    <string name="lockscreen_target_edit_msg">Select or change the desired application or activity and the associated icon</string>

    <!-- Lock screen vibrate settings -->
    <string name="lockscreen_vibrate_enabled_title">Vibrate</string>
    <string name="lockscreen_vibrate_enabled_head">Vibrate when unlocking</string>

    <!-- Lock screen misc. settings -->
    <string name="lockscreen_battery_status_title">Battery status</string>
    <string name="lockscreen_battery_status_charging">Only when charging</string>
    <string name="lockscreen_battery_status_alwayson">Always on</string>

    <!-- Profiles settings  -->
    <string name="profiles_settings_title">Profiles</string>
    <string name="profiles_general_title">General</string>
    <string name="profiles_add">Add</string>
    <string name="profile_menu_delete">Delete</string>
    <string name="profile_settings_title">Profile</string>
    <string name="profile_empty_list_profiles_off">To configure and use System profiles, turn Profiles on.</string>

    <!-- Add Profile -->
    <string name="add_profile_dialog_title">Create new profile</string>
    <string name="profile_name_title">Name</string>
    <string name="profile_profile_name_prompt">Enter a name for the new profile</string>
    <string name="menu_new_profile">New profile</string>
    <string name="menu_new_profile_summary">Add and configure a new profile</string>
    <string name="new_profile_name">&lt;new profile&gt;</string>

    <!-- Rename Dialog  -->
    <string name="rename_dialog_title">Rename</string>
    <string name="rename_dialog_message">Enter a new name</string>
    <string name="duplicate_profile_name">Duplicate profile name!</string>
    <string name="duplicate_appgroup_name">Duplicate application group name!</string>

    <!-- Reset Profiles -->
    <string name="profile_reset_title">Reset</string>
    <string name="profile_reset_message">Delete all user created profiles and application groups and restore them to default?</string>

    <!-- Delete confimation messages -->
    <string name="profile_delete_confirm">Delete this profile?</string>
    <string name="profile_app_delete_confirm">Remove this application?</string>
    <string name="profile_cannot_delete">An active profile cannot be deleted</string>

    <!-- Profile network mode -->
    <string name="profile_networkmode_2g">2G</string>
    <string name="profile_networkmode_3g">3G</string>
    <string name="profile_networkmode_2g3g">2G/3G</string>

    <!-- Profile Config screen PreferenceGroup titles -->
    <string name="profile_connectionoverrides_title">Connection overrides</string>
    <string name="profile_volumeoverrides_title">Volume overrides</string>
    <string name="profile_vibratoroverrides_title">Vibrator overrides</string>
    <string name="connection_state_disabled">Disable</string>
    <string name="connection_state_enabled">Enable</string>
    <string name="volume_override_summary">Set to</string>
    <string name="vibrator_state_disabled">Disable</string>
    <string name="vibrator_state_enabled">Enable</string>
    <string name="vibrator_state_silent">Only when silent</string>

    <!-- Menu item for managing profiles -->
    <string name="profile_profiles_manage">Profiles</string>
    <string name="profile_profile_manage">Manage profile</string>
    <string name="profile_applist_manage">Application list</string>
    <string name="profile_appgroups_manage">Application groups</string>
    <string name="profile_appgroup_manage">Manage application group</string>

    <!-- Profile settings screen, section header for settings related to notification profiles -->
    <string name="profile_settings">Profile settings</string>
    <string name="profile_name">Name</string>
    <string name="profile_trigger_connect">On connect</string>
    <string name="profile_trigger_disconnect">On disconnect</string>
    <string name="profile_trigger_notrigger">No trigger</string>

    <!-- Profile Settings sound modes labels -->
    <string name="sound_mode">Notification mode</string>
    <string name="ringer_mode">Ring mode</string>
    <string name="lights_mode">Lights mode</string>
    <string name="vibrate_mode">Vibrate mode</string>
    <string name="choose_soundtone">Choose notification tone</string>
    <string name="choose_ringtone">Choose ringtone</string>

    <!-- Sound settings screen, setting option name to pick ringtone (a list dialog comes up)-->
    <string name="soundtone_title">Notification tone</string>
    <string name="soundtone_summary" translatable="false">""</string>

    <!-- Title for application group setting screen -->
    <string name="profile_appgroups_title">Application groups</string>
    <string name="profile_applist_title">Applications</string>
    <string name="profile_new_appgroup">New application group</string>
    <string name="profile_delete_appgroup">Delete this application group?</string>
    <string name="profile_appgroup_name_prompt">Enter a name for the new application group</string>
    <string name="profile_appgroup_name_title">Name</string>
    <string name="profile_add_app">Add application</string>
    <string name="profile_delete_app">Remove application</string>

    <!-- Add application dialog box title -->
    <string name="profile_choose_app">Choose application</string>
    <string name="profile_settings_header">Profile settings</string>

    <!-- Profiles - system settings -->
    <string name="profile_system_settings_title">System settings</string>
    <string name="profile_lockmode_title">Lock screen mode</string>
    <string name="profile_lockmode_default">Default</string>
    <string name="profile_lockmode_insecure">Insecure</string>
    <string name="profile_lockmode_disabled">Disabled</string>
    <string name="profile_lockmode_default_summary">Use system default</string>
    <string name="profile_lockmode_insecure_summary">Use insecure lock screen</string>
    <string name="profile_lockmode_disabled_summary">Lock screen is disabled</string>
    <string name="profile_airplanemode_title">Airplane mode</string>
    <string name="profile_disable_screen_lock_summary">Disable lock screen security while this profile is active</string>

    <string name="vibrator_type_ringer">Calls</string>
    <string name="vibrator_type_notification">Notifications</string>

    <!-- Connection override toggles (not all are used at this time ) -->
    <string name="possibleButtons">Possible Buttons</string>
    <string name="toggleWifi">Wi-Fi</string>
    <string name="toggleWifiAp">Portable Wi-Fi hotspot</string>
    <string name="toggleBluetooth">Bluetooth</string>
    <string name="toggleGPS">GPS</string>
    <string name="toggleData">Mobile Data</string>
    <string name="toggleSync">Data Sync</string>
    <string name="toggle2g3g">2G/3G</string>
    <string name="toggleSound">Ring Mode</string>
    <string name="toggleBrightness">Brightness</string>
    <string name="toggleAutoRotate">Orientation</string>
    <string name="toggleScreenTimeout">Screen Timeout</string>
    <string name="toggleAirplane">Airplane</string>
    <string name="toggleFlashlight">Flashlight</string>
    <string name="toggleLockScreen">Lock Screen</string>
    <string name="toggleWimax">WiMAX</string>
    <string name="toggleNfc">NFC</string>

    <!-- Screen security - Screen security   -->
    <string name="screen_security_category">Screen security</string>
    <string name="screen_security_title">Lock screen</string>
    <string name="screen_security_summary">View or change lock screen security, delay and timeout settings</string>
    <string name="additional_options_title">Additional options</string>
    <string name="unlock_menu_unlock_title">Menu unlock</string>
    <string name="unlock_menu_unlock_summary">Pressing the menu button unlocks the device</string>
    <string name="unlock_home_unlock_title">Home unlock</string>
    <string name="unlock_home_unlock_summary">Pressing the home button unlocks the device</string>
    <string name="unlock_quick_unlock_control_title">Quick unlock</string>
    <string name="unlock_quick_unlock_control_summary">Unlock automatically when the correct PIN/password is entered</string>

    <!-- Slide lock delay -->
    <string name="delay_and_timeout_title">Lock delay</string>
    <string name="slide_lock_delay_title">Delay screen lock</string>
    <string name="slide_lock_timeout_delay_title">Delay after timeout</string>
    <string name="slide_lock_screenoff_delay_title">Delay after turned off</string>
    <string name="slide_lock_delay_none">None</string>
    <string name="slide_lock_delay_1s">1 second</string>
    <string name="slide_lock_delay_5s">5 seconds</string>
    <string name="slide_lock_delay_10s">10 seconds</string>
    <string name="slide_lock_delay_15s">15 seconds</string>
    <string name="slide_lock_delay_30s">30 seconds</string>
    <string name="slide_lock_delay_1m">1 minute</string>
    <string name="slide_lock_delay_5m">5 minutes</string>
    <string name="slide_lock_delay_10m">10 minutes</string>
    <string name="slide_lock_delay_30m">30 minutes</string>

    <!-- Performance settings  -->
    <string name="performance_settings_title">Performance</string>

    <!-- Performance Settings : Warning dialog  -->
    <string name="performance_settings_warning_title">Proceed with Caution</string>
    <string name="performance_settings_warning">These settings are included for experimentation and any changes made to them have the potential to cause instability, crashes, data loss or hardware failures.\n\nWe request you do not file bug reports if any of these settings have been changed from the defaults.</string>

    <!-- Performance Settings : Processor Settings -->
    <!-- Performance Settings : Processor settings title -->
    <string name="processor_title">Processor</string>
    <!-- Performance Settings : Processor settings summary. -->
    <string name="processor_summary">Change CPU governor and clock speed</string>

    <!-- Performance Settings : Processor settings sub items -->
    <string name="cpu_cur_freq_title">Current CPU frequency</string>
    <string name="cpu_governors_title">CPU governor</string>
    <string name="cpu_governors_summary" translatable="false">%S</string>
    <string name="cpu_min_freq_title">Minimum CPU frequency</string>
    <string name="cpu_min_freq_summary" translatable="false">%s</string>
    <string name="cpu_max_freq_title">Maximum CPU frequency</string>
    <string name="cpu_max_freq_summary" translatable="false">%s</string>
    <string name="cpu_set_on_boot">Set on boot</string>
    <string name="cpu_set_on_boot_summary">Restore the processor settings on boot</string>

    <!-- Performance Settings : I/O scheduler settings title -->
    <string name="io_scheds_title">I/O scheduler</string>
    <!-- Performance Settings : I/O scheduler settings summary. -->
    <string name="io_scheds_summary">Change I/O scheduler</string>

    <!-- Performance Settings : I/O scheduler settings sub items -->
    <string name="io_sched_title">I/O scheduler</string>
    <string name="io_sched_summary" translatable="false">%S</string>
    <string name="io_sched_set_on_boot">Set on boot</string>
    <string name="io_sched_set_on_boot_summary">Restore the I/O scheduler settings on boot</string>

    <!-- Memory Management -->
    <string name="memory_management_title">Memory management</string>
    <string name="memory_management_summary">Customize the usage of memory to alter system performance</string>
    <!-- zRam -->
    <string name="pref_zram_title">zRam</string>
    <string name="pref_zram_summary">Compress memory for increased virtual capacity (requires reboot)</string>
    <!-- KSM -->
    <string name="pref_ksm_title">Kernel samepage merging</string>
    <string name="pref_ksm_summary">KSM reduces physical memory requirements and improves performance</string>
    <!-- Purgeable Assets -->
    <string name="pref_purgeable_assets_title">Allow purging of assets</string>
    <string name="pref_purgeable_assets_summary">Purging of bitmap memory assets allows the freeing of more RAM when needed (requires reboot)</string>

    <!-- Performance Settings : Dithering -->
    <string name="pref_use_dithering_title">Surface improvement</string>
    <string name="dithering_no_dither">Disable dithering</string>
    <string name="dithering_color_banding">Fix color banding (default)</string>
    <string name="dithering_blur_effect">Fix color banding and blur effect</string>

    <!-- Performance Settings : 16bpp Alpha -->
    <string name="pref_use_16bpp_alpha_title">16bit transparency</string>
    <string name="pref_use_16bpp_alpha_summary">Better graphics performance, but lower quality and may cause visual artifacts (requires reboot)</string>

    <!-- Display : Rotation  -->
    <string name="display_rotation_title">Rotation</string>
    <string name="display_rotation_disabled">Disabled</string>
    <string name="display_rotation_unit">degrees</string>
    <string name="display_lockscreen_rotation_title">Rotate lock screen</string>
    <string name="display_rotation_category_title">Rotation modes</string>
    <string name="display_rotation_0_title">0 degrees</string>
    <string name="display_rotation_90_title">90 degrees</string>
    <string name="display_rotation_180_title">180 degrees</string>
    <string name="display_rotation_270_title">270 degrees</string>

    <!-- Lock screen shortcuts -->
    <string name="picker_activities">Activities</string>
    <string name="select_custom_app_title">Select custom app</string>
    <string name="select_custom_activity_title">Select custom activity</string>
    <string name="icon_picker_choose_icon_title">Choose icon</string>
    <string name="icon_picker_alarm">Alarm</string>
    <string name="icon_picker_browser">Browser</string>
    <string name="icon_picker_calendar">Calendar</string>
    <string name="icon_picker_camera">Camera</string>
    <string name="icon_picker_chrome">Chrome</string>
    <string name="icon_picker_contacts">Contacts</string>
    <string name="icon_picker_email">Email</string>
    <string name="icon_picker_email2">Email Holo</string>
    <string name="icon_picker_facebook">Facebook</string>
    <string name="icon_picker_gallery">Gallery</string>
    <string name="icon_picker_google_small">Google (small)</string>
    <string name="icon_picker_googleplus">Google Plus</string>
    <string name="icon_picker_googletalk">Hangouts</string>
    <string name="icon_picker_maps">Maps</string>
    <string name="icon_picker_movie">Movie</string>
    <string name="icon_picker_music">Music</string>
    <string name="icon_picker_nav_normal">Navigation</string>
    <string name="icon_picker_phone">Phone</string>
    <string name="icon_picker_podcast">Podcast</string>
    <string name="icon_picker_rss">Rss</string>
    <string name="icon_picker_search">Search</string>
    <string name="icon_picker_sms">Messaging</string>
    <string name="icon_picker_twitter">Twitter</string>

    <!-- String for IconPicker -->
    <string name="icon_picker_title">Choose icon source</string>
    <string name="icon_picker_system_icons_title">System icons</string>
    <string name="icon_picker_gallery_title">Gallery</string>
    <string name="icon_picker_pack_title">Icon pack</string>

    <string name="increasing_ring_title">Ascending ringtone</string>
    <!-- Sound settings screen, the caption of the checkbox for making incoming calls increase in volume -->
    <string name="checkbox_increasing_ring">Enable</string>
    <!-- Sound settings screen, the title of the volume bar to adjust the minimum increasing ring volume -->
    <string name="increasing_ring_min_volume_title">Ringing start volume</string>
    <string name="increasing_ring_volume_notice">Notice:\nAs the start volume is set higher than the ringer volume, the ring tone will be played using the ringer volume.</string>
    <string name="increasing_ring_interval_title">Increase interval</string>
    <string name="increasing_ring_interval_eachring">On each ring</string>
    <string name="increasing_ring_interval_half_second">0.5 seconds</string>
    <string name="increasing_ring_interval_1second">1 second</string>
    <string name="increasing_ring_interval_2seconds">2 seconds</string>
    <string name="increasing_ring_interval_3seconds">3 seconds</string>
    <string name="increasing_ring_interval_5seconds">5 seconds</string>
    <string name="increasing_ring_interval_10seconds">10 seconds</string>

    <string name="profile_trigger_configure">Configure trigger</string>
    <string name="profile_triggers">Triggers</string>
    <string name="profile_trigger_filter_all">All triggers</string>
    <string name="profile_trigger_filter_wifi">Wi-Fi triggers</string>
    <string name="profile_trigger_filter_bluetooth">Bluetooth triggers</string>
    <string name="profile_write_nfc_tag">Write to NFC tag</string>
    <string name="profile_write_touch_tag">Touch tag to write</string>
    <string name="profile_write_success">Tag successfully written</string>
    <string name="profile_write_failed">Tag writing failed!</string>
    <string name="profile_selected">Profile selected: %1$s</string>
    <string name="profile_nfc_text">Writing a profile to a NFC tag allows for tapping the tag to select the profile. Tapping a second time will select the previously selected profile.</string>
    <string name="profile_unknown_nfc_tag">Unknown profile</string>
    <string name="profile_add_nfc_text">This NFC tag refers to an unknown profile. Attaching this NFC tag to an existing profile will allow for selecting the profile in the future.</string>
    <string name="profile_select">Select profile</string>

    <string name="link_volume_ringtones">Link ringtone &amp; notifications volumes</string>
    <string name="link_volume_mutes">Silent mode affects notifications</string>
    <string name="volume_keys_control_ring_stream">Volume keys control ringtone volume</string>

    <!-- Display settings screen, notification light settings -->
    <string name="notification_pulse_title">Notification light</string>
    <string name="notification_light_general_title">General</string>
    <string name="notification_light_applist_title">Applications</string>
    <string name="notification_light_phonelist_title">Phone</string>
    <string name="notification_light_use_custom">Use custom values</string>
    <string name="notification_light_enabled">Enabled</string>
    <string name="notification_light_disabled">Disabled</string>
    <string name="notification_light_default_value">Default</string>
    <string name="notification_light_missed_call_title">Missed call</string>
    <string name="notification_light_voicemail_title">Voicemail</string>

    <!-- Notification light dialogs -->
    <string name="edit_light_settings">Edit light settings</string>
    <string name="pulse_speed_title">Pulse length and speed</string>
    <string name="picker_arrow">\u2192</string>
    <string name="default_time">Normal</string>
    <string name="custom_time">Custom</string>
    <string name="dialog_test">Test</string>
    <string name="dialog_delete_title">Delete</string>
    <string name="dialog_delete_message">Remove selected item?</string>
    <string name="dialog_test_message">Turn the screen off to see the selected notification in action or dismiss this dialog to stop the test</string>
    <string name="dialog_test_button">Dismiss</string>

    <!-- Values for the notification light pulse spinners -->
    <string name="pulse_length_always_on">Always on</string>
    <string name="pulse_length_very_short">Very short</string>
    <string name="pulse_length_short">Short</string>
    <string name="pulse_length_normal">Normal</string>
    <string name="pulse_length_long">Long</string>
    <string name="pulse_length_very_long">Very long</string>
    <string name="pulse_speed_very_fast">Very fast</string>
    <string name="pulse_speed_fast">Fast</string>
    <string name="pulse_speed_normal">Normal</string>
    <string name="pulse_speed_slow">Slow</string>
    <string name="pulse_speed_very_slow">Very slow</string>

    <!-- Battery light settings  -->
    <string name="battery_light_title">Battery light</string>
    <string name="battery_low_pulse_title">Pulse if battery low</string>
    <string name="battery_light_list_title">Colors</string>
    <string name="battery_light_low_color_title">Battery low</string>
    <string name="battery_light_medium_color_title">Charging</string>
    <string name="battery_light_full_color_title">Fully charged</string>

    <!-- Sound settings screen -->
    <string name="volume_overlay_title">Volume panel style</string>
    <string name="volbtn_music_controls_title">Volume rocker music controls</string>
    <string name="volbtn_music_controls_summary">When screen off, long-pressing the volume rockers will seek music tracks</string>
    <string name="volume_ring_only_description">Ringtone</string>
    <string name="ring_mode_title">Ring mode</string>
    <string name="ring_mode_normal">Normal</string>
    <string name="ring_mode_vibrate">Vibrate</string>
    <string name="ring_mode_mute">Mute</string>

    <!-- Hardware keys -->
    <string name="hardware_keys_title">Hardware keys</string>
    <string name="hardware_keys_bindings_title">Key actions</string>
    <string name="hardware_keys_enable_custom_title">Enable custom actions</string>
    <string name="hardware_keys_home_long_press_title">Home key (long press)</string>
    <string name="hardware_keys_menu_press_title">Menu key</string>
    <string name="hardware_keys_menu_long_press_title">Menu key (long press)</string>
    <string name="hardware_keys_assist_press_title">Search key</string>
    <string name="hardware_keys_assist_long_press_title">Search key (long press)</string>
    <string name="hardware_keys_app_switch_press_title">App switch key</string>
    <string name="hardware_keys_app_switch_long_press_title">App switch key (long press)</string>
    <string name="hardware_keys_show_overflow_title">Show action overflow</string>
    <string name="hardware_keys_show_overflow_summary">Display the 3-dot overflow menu button within apps</string>
    <string name="hardware_keys_show_overflow_toast_enable">The action overflow button may not be visible until apps are restarted</string>
    <string name="hardware_keys_show_overflow_toast_disable">The action overflow button may not be hidden until apps are restarted</string>
    <string name="hardware_keys_action_nothing">No action</string>
    <string name="hardware_keys_action_menu">Open/close menu</string>
    <string name="hardware_keys_action_app_switch">Recent apps switcher</string>
    <string name="hardware_keys_action_search">Search assistant</string>
    <string name="hardware_keys_action_voice_search">Voice search</string>
    <string name="hardware_keys_action_in_app_search">In-app search</string>

    <!-- Swap volume buttons when the screen is rotated -->
    <string name="swap_volume_buttons_title">Swap volume buttons</string>
    <string name="swap_volume_buttons_summary">Swap volume buttons when the screen is rotated</string>

    <!-- Navigation Bar -->
    <string name="navigation_bar_title">Buttons and layout</string>
    <string name="navigation_bar_help_text">1 - To begin editing, tap the lock icon\n\n2 - Tap any button to assign or change functionality\n\n3 - Long press any button to rearrange the order\n\n4 - To save, tap the lock icon again\n\n5 - To restore system default, tap the reset button\n\n</string>
    <string name="navigation_bar_tips">\u2022 Actions can only be assigned to one button at a time\n\n\u2022 The home button cannot be re-assigned\n\n\u2022 Side buttons cannot be rearranged</string>
    <string name="navigation_bar_tips_title">Quick tips</string>
    <string name="navigation_bar_reset_message">Delete current settings and restore to default?</string>
    <string name="navigation_bar_save_message">Navigation bar settings saved</string>
    <string name="navigation_bar_reset_toast">Navigation bar reset to default</string>
    <string name="navigation_bar_menu_editable">Editable</string>
    <string name="navigation_bar_menu_locked">Locked</string>

    <!-- Power Widget  -->
    <string name="power_widget_title">Power widget</string>
    <string name="title_expanded_widget">Power widget</string>
    <string name="title_expanded_hide_onchange">Close drawer on change</string>
    <string name="title_expanded_hide_indicator">Hide indicators</string>
    <string name="title_expanded_hide_scrollbar">Hide scrollbar</string>
    <string name="title_widget_picker">Widget buttons</string>
    <string name="summary_widget_picker">View or change the displayed buttons</string>
    <string name="title_widget_order">Widget button order</string>
    <string name="summary_widget_order">View or change the order of the buttons</string>
    <string name="title_buttons">Buttons</string>
    <string name="title_toggle_wifi">Toggle Wi-Fi</string>
    <string name="title_toggle_bluetooth">Toggle Bluetooth</string>
    <string name="title_toggle_gps">Toggle GPS</string>
    <string name="title_toggle_sound">Toggle Sound</string>
    <string name="title_toggle_brightness">Toggle Brightness</string>
    <string name="title_toggle_sync">Toggle Sync</string>
    <string name="title_toggle_wifiap">Toggle Wi-Fi AP</string>
    <string name="title_toggle_screentimeout">Toggle Screen timeout</string>
    <string name="title_toggle_mobiledata">Toggle Mobile data</string>
    <string name="title_toggle_lockscreen">Toggle Lock screen</string>
    <string name="title_toggle_networkmode">Toggle network mode</string>
    <string name="title_toggle_autorotate">Toggle Orientation</string>
    <string name="title_toggle_airplane">Toggle Airplane mode</string>
    <string name="title_toggle_flashlight">Toggle LED flashlight</string>
    <string name="title_toggle_sleep">Go to sleep</string>
    <string name="title_toggle_media_play_pause">Media: Toggle Play/Pause</string>
    <string name="title_toggle_media_previous">Media: Skip to Previous</string>
    <string name="title_toggle_media_next">Media: Skip to Next</string>
    <string name="title_toggle_lte">Toggle LTE</string>
    <string name="title_toggle_wimax">Toggle WiMAX</string>
    <string name="title_button_modes">Button modes</string>
    <string name="pref_brightness_mode_title">Brightness modes</string>
    <string name="pref_brightness_mode_summary">View or change the Brightness button modes</string>
    <string name="cm_brightness_mode_auto">Auto</string>
    <string name="cm_brightness_mode_dim">Dim</string>
    <string name="pref_network_mode_title">Network modes</string>
    <string name="pref_screentimeout_mode_title">Screen timeout modes</string>
    <string name="pref_ring_mode_title">Sound modes</string>
    <string name="pref_ring_mode_summary">View or change the Sound button modes</string>
    <string name="cm_sound_mode_silent">Silent</string>
    <string name="cm_sound_mode_vibrate">Vibrate</string>
    <string name="cm_sound_mode_sound">Sound</string>
    <string name="cm_sound_mode_soundVibrate">Sound &amp; Vibrate</string>
    <string name="pref_flash_mode_title">Flash mode</string>
    <string name="expanded_haptic_feedback_title">Haptic feedback</string>

    <!-- Kill app long-press back -->
    <string name="kill_app_longpress_back">Kill app back button</string>
    <string name="kill_app_longpress_back_summary">Kill the foreground app by long-pressing the back key</string>

    <!-- Change Log strings -->
    <string name="changelog_title">View changelog</string>
    <string name="changelog_loading">Loading changelog\u2026</string>
    <string name="changelog_error">Unable to load changelog</string>
    <string name="changelog_unknown">Unknown</string>
    <string name="changelog_version">Version</string>

    <!-- Power menu enable disable -->
    <string name="power_menu_title">Power menu</string>
    <string name="power_menu_reboot_title">Reboot menu</string>
    <string name="power_menu_screenshot_title">Screenshot</string>
    <string name="power_menu_expanded_desktop">Expanded desktop</string>
    <string name="expanded_desktop_disabled">Disabled</string>
    <string name="expanded_desktop_status_bar">Status bar visible</string>
    <string name="expanded_desktop_no_status_bar">Status bar hidden</string>
    <string name="power_menu_profiles_title">Profile switcher</string>
    <string name="power_menu_airplane_title">Airplane mode</string>
    <string name="power_menu_user_title">User switcher</string>
    <string name="power_menu_sound_title">Sound panel</string>

    <!-- CM Updater -->
    <string name="cmupdate_settings_title">CyanogenMod updates</string>
    <string name="cmupdate_settings_summary">Check for, view or install available updates</string>

    <!-- Advanced, Device specific (DeviceParts) settings  -->
    <string name="advanced_settings_title">Advanced</string>

    <!-- Whether to display IME switcher notifcation -->
    <string name="ime_switcher_notify">Selector notification</string>
    <string name="ime_switcher_notify_summary">Display input method selector notification</string>

    <!-- Status bar  -->
    <string name="status_bar_title">Status bar</string>
    <string name="status_bar_clock_title">Clock</string>
    <string name="status_bar_general_title">General</string>
    <string name="status_bar_show_clock_title">Show clock</string>
    <string name="status_bar_am_pm_title">AM/PM style</string>
    <string name="status_bar_am_pm_info">24-hour clock is enabled</string>
    <string name="status_bar_battery_title">Battery status style</string>
    <string name="status_bar_toggle_brightness">Brightness control</string>
    <string name="status_bar_toggle_brightness_summary">Adjust brightness by sliding across status bar</string>
    <string name="status_bar_toggle_info">Automatic brightness is enabled</string>
    <string name="status_bar_signal_text_title">Signal status style</string>
    <string name="status_bar_style_icon">Icon</string>
    <string name="status_bar_style_hidden">Hidden</string>
    <string name="status_bar_signal_text_show_text">Text</string>
    <string name="status_bar_battery_status_percentage">Percentage</string>
    <string name="status_bar_battery_status_circle">Circle</string>
    <string name="status_bar_battery_status_circle_percentage">Circle with percentage</string>
    <string name="status_bar_notif_count_title">Show notification count</string>
    <string name="status_bar_notif_count_summary">Display number of pending notifications</string>

    <!-- Wakeup options -->
    <string name="display_category_wakeup_options_title">Wake-up options</string>
    <string name="pref_home_wake_title">Home button</string>
    <string name="pref_home_wake_summary">Pressing the home button will wake your device</string>
    <string name="pref_volume_wake_title">Volume rocker</string>
    <string name="pref_volume_wake_summary">Pressing the volume rocker up or down will wake your device</string>

    <!-- Setting checkbox summary for displaying USB debugging notification -->
    <string name="adb_notify">USB debugging notify</string>
    <string name="adb_notify_summary">Display a notification when USB debugging is connected</string>

    <!-- Launches Dev Tools -->
    <string name="development_tools_title">Launch Tools</string>

    <!-- USB Mass Storage -->
    <string name="usb_mass_storage_title">Mass storage</string>
    <string name="usb_mass_storage_summary">Enable USB mass storage</string>
    <string name="storage_rescan_media">Rescan media for the storage volume</string>
    <string name="storage_rescan_media_complete">Scan completed</string>

    <!-- Android debugging over WiFi -->
    <string name="adb_over_network">ADB over network</string>
    <string name="adb_over_network_summary">Enable TCP/IP debugging over network interfaces (Wi-Fi, USB networks). This setting is reset on reboot</string>
    <!-- Warning for Adb over Network -->
    <string name="adb_over_network_warning">WARNING: When ADB over network is enabled, your phone is open for intrusions on all connected networks, including GSM data network!\n\nOnly use this feature when you are connected on trusted networks.\n\nDo you really want to enable this function?</string>

    <string name="lockscreen_buttons_title">Button actions</string>
    <string name="lockscreen_buttons_summary">View or change lock screen button actions</string>
    <string name="lockscreen_long_press_back_title">Long press Back button</string>
    <string name="lockscreen_long_press_home_title">Long press Home button</string>
    <string name="lockscreen_long_press_menu_title">Long press Menu button</string>
    <string name="lockscreen_buttons_no_action">No action</string>
    <string name="lockscreen_buttons_flashlight">Flashlight</string>
    <string name="lockscreen_buttons_next">Next song</string>
    <string name="lockscreen_buttons_previous">Previous song</string>
    <string name="lockscreen_buttons_playpause">Play/Pause music</string>
    <string name="lockscreen_buttons_toggle_sound">Toggle sound</string>

    <!-- Quick settings panel  -->
    <string name="quick_settings_panel_title">Quick Settings panel</string>
    <string name="quick_settings_title">Quick Settings</string>
    <string name="title_static_tiles">Static tiles</string>
    <string name="tile_picker_title">Tiles and layout</string>
    <string name="tile_picker_summary">View, select or change the layout of the displayed tiles</string>
    <string name="tile_choose_title">Choose a tile</string>

    <string name="title_tile_airplane">Airplane mode</string>
    <string name="title_tile_battery">Battery stats</string>
    <string name="title_tile_bluetooth">Bluetooth</string>
    <string name="title_tile_brightness">Brightness</string>
    <string name="title_tile_camera">Camera</string>
    <string name="title_tile_sleep">Go to sleep</string>
    <string name="title_tile_gps">GPS</string>
    <string name="title_tile_torch">Torch</string>
    <string name="title_tile_lockscreen">Lock screen</string>
    <string name="title_tile_lte">LTE</string>
    <string name="title_tile_mobiledata">Mobile data</string>
    <string name="title_tile_profile">Profile</string>
    <string name="title_tile_autorotate">Orientation</string>
    <string name="title_tile_settings">Settings</string>
    <string name="title_tile_sound">Sound</string>
    <string name="title_tile_sync">Sync</string>
    <string name="title_tile_wifiap">Wi-Fi AP</string>
    <string name="title_tile_wifi">Wi-Fi</string>
    <string name="title_tile_wimax">WiMAX</string>
    <string name="title_tile_user">User switcher</string>
    <string name="title_tile_networkmode">Network mode</string>
    <string name="title_tile_nfc">NFC</string>
    <string name="title_tile_screen_timeout">Screen timeout</string>
    <string name="title_tile_usb_tether">USB Tether</string>
    <string name="title_tile_quiet_hours">Quiet hours</string>
    <string name="title_tile_volume">Volume</string>
    <string name="title_tile_expanded_desktop">Expanded desktop</string>

    <string name="title_dynamic_tiles">Dynamic tiles</string>
    <string name="dynamic_tiles_note_title">Note</string>
    <string name="dynamic_tiles_note_summary">Dynamic tiles are not always visible and will only show up if triggered by a system event</string>
    <string name="title_dynamic_alarm">Alarm clock</string>
    <string name="title_dynamic_bugreport">Bug report</string>
    <string name="title_dynamic_dock_battery">Dock battery</string>
    <string name="title_dynamic_ime">IME changer</string>
    <string name="title_dynamic_usbtether">USB Tether</string>
    <string name="title_dynamic_wifi">Wi-Fi display</string>

    <string name="title_general">General</string>
    <string name="title_quick_pulldown">Quick pulldown</string>
    <string name="summary_quick_pulldown">%1$s edge of the status bar pulls down Quick Settings</string>
    <string name="quick_pulldown_summary_left">Left</string>
    <string name="quick_pulldown_summary_right">Right</string>
    <string name="quick_pulldown_off">Off</string>
    <string name="quick_pulldown_left">Left</string>
    <string name="quick_pulldown_right">Right</string>
    <string name="title_collapse_panel">Auto close panel</string>
    <string name="summary_collapse_panel">Close the Quick Settings panel upon toggle</string>

    <!-- Reset tiles -->
    <string name="tiles_reset_title">Reset</string>
    <string name="tiles_reset_message">Restore the default displayed tiles and layout?</string>

    <!--- Volume key cursor control -->
    <string name="volume_key_cursor_control_title">Volume key cursor control</string>
    <string name="volume_key_cursor_control_off">Disabled</string>
    <string name="volume_key_cursor_control_on">Volume up/down moves cursor left/right</string>
    <string name="volume_key_cursor_control_on_reverse">Volume up/down moves cursor right/left</string>

    <!-- Wireless display -->
    <string name="pref_wifi_disable_hdcp_title">Skip HDCP negotiation</string>
    <string name="pref_wifi_disable_hdcp_summary">Try this option if you can connect but don\'t get any output</string>

    <!--- Sms security limit -->
    <string name="app_security_title">App security</string>
    <string name="sms_security_check_limit_title">SMS message limit</string>
    <string name="sms_security_check_limit_summary">Apps can send %d messages in 30 minutes before requiring confirmation</string>
    <string name="sms_security_check_limit_default">30 (Default)</string>

    <!--- Lock clock -->
    <string name="lock_clock_title">Clock widget</string>
    <string name="lock_clock_summary">View or change how the \'cLock\' Home and Lock screen widgets will display</string>

    <!-- Stylus Icon -->
    <string name="stylus_icon_enabled_title">Show icon when using stylus</string>
    <string name="stylus_icon_enabled_summary">Show the pointer icon when hovering or drawing with the stylus</string>

    <!-- Lock screen widgets -->
    <string name="lockscreen_widgets_category_title">Widgets</string>
    <string name="lockscreen_maximize_widgets_title">Maximize widgets</string>
    <string name="lockscreen_maximize_widgets_summary">Show widgets maximized and the unlock minimized when the screen is turned on</string>
    <string name="lockscreen_enable_widgets_title">Widget pager</string>
    <string name="lockscreen_enable_widgets_summary">Allow multiple widget pages to be added and selected</string>
    <string name="lockscreen_enable_camera_title">Camera widget</string>
    <string name="lockscreen_enable_camera_summary">Show the camera widget to the right of the unlock screen</string>
    <string name="lockscreen_music_controls_title">Music controls</string>
    <string name="lockscreen_music_controls_summary">Show player controls while music is playing</string>

    <!-- Custom lock screen background -->
    <string name="lockscreen_custom_background_title">Background</string>
    <string name="lockscreen_custom_background_dialog_title">Choose color</string>
    <string name="lockscreen_background_result_successful">Background changed successfully</string>
    <string name="lockscreen_background_result_not_successful">Background could not be changed</string>
    <string name="lockscreen_background_color_fill">Color fill</string>
    <string name="lockscreen_background_custom_image">Custom image</string>
    <string name="lockscreen_background_default_wallpaper">Default wallpaper</string>

    <!-- Launch music player when headset is connected -->
    <string name="headset_connect_player_title">Launch music app</string>
    <string name="headset_connect_player_summary">Launch the default music app when headset is connected</string>

    <!-- Safe headset volume restore checkbox -->
    <string name="safe_headset_volume_title">Safe headset volume</string>
    <string name="safe_headset_volume_summary">Prevent loud volume levels when headset is first plugged in</string>

    <!-- Waiver -->
    <string name="cyanogenmod_waiver_title">Waiver</string>
    <string name="cyanogenmod_waiver_body">Changing this setting may be against your state or government laws.\n\nIn selecting \'OK\' below, you acknowledge this warning and waive, indemnify and hold harmless CyanogenMod and its contributors from all legal liabilities.</string>

    <!-- Automatic brightness customization -->
    <string name="light_sensor_current_value">Current light sensor value: <xliff:g id="light_level">%d</xliff:g> lux</string>
    <string name="auto_brightness_dialog_title">Automatic brightness levels</string>
    <string name="auto_brightness_level_format"><xliff:g id="level">%1$d</xliff:g> lux</string>
    <string name="auto_brightness_last_level_format"><xliff:g id="level">%1$d</xliff:g> -\n\u221e lux</string>
    <string name="auto_brightness_brightness_format" translatable="false"><xliff:g id="percent">%s</xliff:g>%%</string>
    <string name="auto_brightness_adjust_button">Adjust</string>
    <string name="auto_brightness_close_button">Close</string>
    <string name="auto_brightness_reset_button">Reset</string>
    <string name="auto_brightness_split_dialog_title">Split brightness level</string>
    <string name="auto_brightness_level_dialog_title">Light level setup</string>
    <string name="auto_brightness_lux">Ambient brightness (lux)</string>
    <string name="auto_brightness_backlight">Screen brightness (%)</string>
    <string name="auto_brightness_reset_dialog_title">Reset levels?</string>
    <string name="auto_brightness_reset_confirmation">All brightness levels will be reset to their default settings.</string>
    <string name="auto_brightness_split_lux_format">Split position (between <xliff:g id="min">%1$d</xliff:g> and <xliff:g id="max">%2$d</xliff:g> lux)</string>
    <string name="auto_brightness_level_options">Light level options</string>
    <string name="auto_brightness_menu_edit">Edit</string>
    <string name="auto_brightness_menu_split">Split</string>
    <string name="auto_brightness_menu_remove">Remove</string>
    <string name="auto_brightness_preview">Preview</string>
    <string name="auto_brightness_preview_dialog_title">Brightness curve preview</string>
    <string name="auto_brightness_help_dialog_title">Help</string>
    <string name="auto_brightness_help_text"><b>How is brightness calculated?</b>
\n\n
The brightness curve is calculated by performing a <i>cubic spline interpolation</i>
on a given number of <i>control points</i>. It\'s not a \'bucket-type\' calculation where
screen brightness will stay constant for a specific range of ambient brightness. That way,
small changes in ambient brightness do not cause a large jump in screen brightness; however,
it can be a little hard to predict the exact consequences of changing control points.\n
To help with that, a preview of the calculated curve can be examined. Please note that the
preview shows the curve in <i>logarithmic</i> scale, so that all control points can be shown
distinctively. When using a linear scale, it wouldn\'t be possible to distinguish the tendentially
more important control points in the lower range of ambient brightness.
\n\n
<b>How to edit the brightness curve?</b>
\n\n
Each line in the brightness list corresponds to one <i>control point</i> of the
brightness curve. To edit the brightness level of the point, you can use the slider
present in each line. The screen brightness will be changed accordingly while touching
the slider to give a preview of the light level.\n
Additional options are available by long-pressing a line. By selecting \'Edit\', you can
both edit the ambient brightness level of the control point as well as manually input the
desired screen brightness. Selecting \'Split\' allows you to to duplicate one line into
two in order to insert additional control points. \'Remove\' deletes the selected line.
    </string>

    <string name="auto_brightness_sensitivity_title">Adjustment sensitivity</string>
    <string name="auto_brightness_sensitivity_verylow">Very low</string>
    <string name="auto_brightness_sensitivity_low">Low</string>
    <string name="auto_brightness_sensitivity_medium">Medium</string>
    <string name="auto_brightness_sensitivity_high">High</string>
    <string name="auto_brightness_sensitivity_veryhigh">Very high</string>

    <!-- Advanced reboot options -->
    <string name="advanced_reboot_title">Advanced reboot</string>
    <string name="advanced_reboot_summary">When unlocked, include options in the power menu for rebooting into recovery or bootloader</string>

    <!-- Navigation bar buttons and shortcuts category title -->
    <string name="navigation_bar_category">Navigation bar</string>

    <!-- Navigation ring shortcuts -->
    <string name="navigation_ring_title">Quick launch shortcuts</string>
    <string name="navring_target_reset_message">Delete all user created navigation bar shortcuts and restore to default?</string>
    <string name="navring_target_reset">Navigation bar shortcuts reset to default</string>
    <string name="navring_target_save">Navigation bar shortcuts saved</string>
    <string name="navring_action_open_ime_switcher">Open IME Switcher</string>
    <string name="navring_action_kill_app">Kill app</string>
    <string name="navring_action_none">None</string>
    <string name="navring_action_take_screenshot">Take screenshot</string>
    <string name="navring_action_ring_vibrate">Ring/Vibration</string>
    <string name="navring_action_ring_silent">Ring/Silent</string>
    <string name="navring_action_ring_vibrate_silent">Ring/Vibration/Silent</string>
    <string name="navring_action_screen_off">Screen off</string>
    <string name="navring_action_torch">Toggle torch</string>
    <string name="navring_action_google_now">Google Now</string>
    <string name="navring_choose_action_title">Choose action</string>

    <!-- Pie controls -->
    <string name="pie_control_title">Pie controls</string>
    <string name="pie_control_enabled">Floating controls when Expanded desktop is enabled</string>
    <string name="pie_control_disabled">Floating controls disabled</string>
    <string name="pie_control_sensitivity_title">Responsiveness</string>
    <string name="pie_control_sensitivity_low">Low</string>
    <string name="pie_control_sensitivity_medium">Medium</string>
    <string name="pie_control_sensitivity_high">High</string>
    <string name="pie_control_sensitivity_very_high">Very high</string>
    <string name="pie_control_size">Navigation key size</string>
    <string name="pie_control_trigger_positions">Trigger positions</string>
    <string name="pie_control_trigger_left">Left screen border</string>
    <string name="pie_control_trigger_bottom">Bottom screen border</string>
    <string name="pie_control_trigger_right">Right screen border</string>
    <string name="pie_control_trigger_top">Top screen border</string>
    <string name="pie_control_trigger_top_summary">Only navigation will be displayed at top</string>

    <!-- Stylus Gestures -->
    <string name="gestures_settings_title">Stylus gestures</string>
    <string name="category_spen_title">Stylus gestures</string>
    <string name="enable_subcat_title">Stylus</string>
    <string name="enable_spen_title_head">Enable gestures</string>
    <string name="enable_spen_summary_head">Use swipe gestures by holding down the stylus button</string>
    <string name="gestures_subcat_title">Gestures</string>
    <string name="gestures_left_spen_title_head">Left swipe</string>
    <string name="gestures_left_spen_summary_head">Launch custom action on left swipe</string>
    <string name="gestures_right_spen_title_head">Right swipe</string>
    <string name="gestures_right_spen_summary_head">Launch custom action on right swipe</string>
    <string name="gestures_up_spen_title_head">Up swipe</string>
    <string name="gestures_up_spen_summary_head">Launch custom action on up swipe</string>
    <string name="gestures_down_spen_title_head">Down swipe</string>
    <string name="gestures_down_spen_summary_head">Launch custom action on down swipe</string>
    <string name="gestures_long_spen_title_head">Long press</string>
    <string name="gestures_long_spen_summary_head">Launch custom action on long press</string>
    <string name="gestures_double_spen_title_head">Double tap</string>
    <string name="gestures_double_spen_summary_head">Launch custom action on double tap</string>

    <!-- Gestures Options -->
    <string name="gestures_action_empty">No action</string>
    <string name="gestures_action_home">Home</string>
    <string name="gestures_action_back">Back</string>
    <string name="gestures_action_menu">Menu</string>
    <string name="gestures_action_search">Invoke search</string>
    <string name="gestures_action_recent">Recent apps</string>

    <!-- Stylus gestures -->
    <string name="stylus_app_not_installed">%s is not installed</string>

    <!-- Wi-Fi frequency selection for new IBSS -->
    <string name="wifi_ibss_freq_title">Channel / Frequency</string>
    <string name="wifi_channel">Channel</string>
    <string name="wifi_mhz">MHz</string>

    <!-- Category title for Charging sounds (Power state change) specific Settings.
         [CHAR LIMIT=40] -->
    <string name="power_notifications_category_title">Charging sounds</string>

    <!-- Sound settings, Charging sounds enable/disable, setting check box label -->
    <string name="power_notifications_enable_title">Enable</string>
    <string name="power_notifications_enable_summary">Play a sound when connecting or disconnecting the charger</string>
    <!-- Sound settings, Charging sounds vibrate enable/disable, setting check box label -->
    <string name="power_notifications_vibrate_title">Vibrate</string>
    <!-- Sound settings, Charging sounds ringtone selection, preference label -->
    <string name="power_notifications_ringtone_title">Notification sound</string>
    <!-- Sound settings, charging sounds label for ringtone == none -->
    <string name="power_notifications_ringtone_silent">Silent</string>

    <!-- Display Screen-on and off Electron beam animations -->
    <string name="screen_off_animation_title">Screen-off animation</string>
    <string name="screen_off_animation_summary">Show the electron beam animation when the screen is turned off</string>

    <!-- Delete apn confirmation dialog message -->
    <string name="confirm_delete_apn">The APN will be deleted.</string>

    <!-- Privacy Guard -->
    <string name="privacy_guard_switch_label">Enable Privacy Guard</string>
    <string name="privacy_guard_dlg_title">Enable Privacy Guard?</string>
    <string name="privacy_guard_dlg_text">When Privacy Guard is enabled, the app will not be able to access personal data such as contacts, messages or call logs.</string>
    <string name="privacy_guard_dlg_system_app_text">When enabling Privacy Guard for a built-in app, the app will not be able to access or provide personal data. This may cause other apps to misbehave.</string>
    <string name="privacy_guard_default_title">Enabled by default</string>
    <string name="privacy_guard_default_summary">Enable by default for newly-installed apps</string>
    <string name="privacy_guard_manager_title">Privacy Guard</string>
    <string name="privacy_guard_manager_summary">Manage which apps have access to your personal data</string>
    <string name="privacy_guard_no_user_apps">No apps are installed</string>
    <string name="privacy_guard_filter_does_not_match">No apps with relevant permissions are installed</string>
    <string name="privacy_guard_help_title">Help</string>
    <string name="privacy_guard_reset_title">Reset</string>
    <string name="privacy_guard_help_text">In this screen you can choose for which apps Privacy Guard should be active by simply tapping on them. Selected apps will not be able to access your personal data, such as contacts, messages or call logs. Long pressing on an entry opens the app details screen for that app.\n\nBy default built-in apps are not shown. If you want to show them or filter apps to show only the ones requesting access to personal data by their permissions, select the respective options in the menu.</string>
    <string name="privacy_guard_manager_show_system_apps">Show built-in apps</string>
    <string name="privacy_guard_manager_filter_permissions">Permission filter</string>

</resources>